diff --git a/.github/workflows/global-api-develop.yml b/.github/workflows/global-api-develop.yml index e5aea87b6..d0310633f 100644 --- a/.github/workflows/global-api-develop.yml +++ b/.github/workflows/global-api-develop.yml @@ -9,9 +9,59 @@ on: - k8s/cc-global-api-deploy.yml - k8s/cc-global-api.yml - k8s/cc-global-api-migrate.yml + - .github/workflows/global-api-develop.yml branches: ["develop"] jobs: + runTests: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./global-api + steps: + - uses: actions/checkout@v3 + + - name: Set up Python 3.11 + uses: actions/setup-python@v2 + with: + python-version: 3.11 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest pytest-cov + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + + - name: Set up database + run: | + docker run --name github_action_postgresql -d -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust -e POSTGRES_PASSWORD="" postgres + sleep 10 + createuser -w -h localhost -p 5432 -U postgres citycatalyst + createdb -w -h localhost -p 5432 -U postgres citycatalyst -O citycatalyst + cp env.example .env + + - name: Build coverage file + run: | + pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=app tests/ | tee pytest-coverage.txt + + - name: Pytest coverage comment + uses: MishaKav/pytest-coverage-comment@main + with: + pytest-coverage-path: ./pytest-coverage.txt + junitxml-path: ./pytest.xml + + - name: Upload coverage reports to Codecov + continue-on-error: true + uses: codecov/codecov-action@v4.0.1 + with: + fail_ci_if_error: false + flags: unittests + name: citycatalyst-global-api + token: ${{ secrets.CODECOV_TOKEN }} + slug: Open-Earth-Foundation/CityCatalyst + + - name: Shut down database + run: docker stop github_action_postgresql pushToGHCR: runs-on: ubuntu-latest @@ -55,4 +105,4 @@ jobs: run: | kubectl create -f k8s/cc-global-api-migrate.yml -n default kubectl apply -f k8s/cc-global-api-deploy.yml -n default - kubectl rollout restart deployment cc-global-api-deploy -n default + kubectl rollout restart deployment cc-global-api-deploy -n default \ No newline at end of file diff --git a/.github/workflows/global-api-tag.yml b/.github/workflows/global-api-tag.yml index 36eb915f0..0cfb8382c 100644 --- a/.github/workflows/global-api-tag.yml +++ b/.github/workflows/global-api-tag.yml @@ -9,6 +9,7 @@ on: - k8s/cc-global-api-deploy.yml - k8s/cc-global-api.yml - k8s/cc-global-api-migrate.yml + - .github/workflows/global-api-tag.yml tags: - '^v\d+\.\d+\.\d+$' diff --git a/.github/workflows/web-develop.yml b/.github/workflows/web-develop.yml index 381f3df18..494c80377 100644 --- a/.github/workflows/web-develop.yml +++ b/.github/workflows/web-develop.yml @@ -3,14 +3,20 @@ name: Push Web app to GHCR and deploy to EKS on: workflow_dispatch: push: + branches: ["develop"] paths: - app/** - k8s/cc-migrate.yml - k8s/cc-web-deploy.yml - k8s/cc-web.yml - - .github/workflows/web-actions.yml - branches: ["develop"] + - .github/workflows/web-develop.yml pull_request: + paths: + - app/** + - k8s/cc-migrate.yml + - k8s/cc-web-deploy.yml + - k8s/cc-web.yml + - .github/workflows/web-develop.yml jobs: runTests: @@ -49,22 +55,9 @@ jobs: # - name: Run Cypress tests # run: npm run cy:test - # ... Generate LCOV files or download it from a different job - name: Run tests and generate coverage file run: npm run ci:test - # - name: Setup LCOV - # uses: hrishikesh-kadam/setup-lcov@v1 - # - name: Report code coverage - # uses: zgosalvez/github-actions-report-lcov@v3 - # with: - # coverage-files: ./app/lcov*.info - # minimum-coverage: 40 - # artifact-name: code-coverage-report - # github-token: ${{ secrets.GITHUB_TOKEN }} - # working-directory: ./app - # update-comment: true - - name: Upload coverage reports to Codecov continue-on-error: true uses: codecov/codecov-action@v4.0.1 diff --git a/.gitignore b/.gitignore index 594383785..d7b650666 100644 --- a/.gitignore +++ b/.gitignore @@ -142,3 +142,10 @@ global-api/data-coverage/*.csv # Test coverage output from ci:test lcov.info +# Data files created by importers +global-api/importer/IEA_energy/IEA_energy.csv +global-api/importer/ghgrp_epa/epa.csv +global-api/importer/mendoza_arg/data/** +global-api/importer/osm/cache/** +global-api/importer/osm/data/** +global-api/data/** diff --git a/app/migrations/20240308152708-add-cityId-to-userFile.cjs b/app/migrations/20240308152708-add-cityId-to-userFile.cjs new file mode 100644 index 000000000..fc97f1739 --- /dev/null +++ b/app/migrations/20240308152708-add-cityId-to-userFile.cjs @@ -0,0 +1,22 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ + +module.exports = { + async up (queryInterface, Sequelize) { + await queryInterface.addColumn('UserFile', 'city_id', { + type: Sequelize.UUID, + allowNull: true, + references: { + model: 'City', + key: 'city_id', + }, + onUpdate: 'CASCADE', + onDelete: 'SET NULL', + }); + }, + + async down (queryInterface, Sequelize) { + await queryInterface.removeColumn('UserFile', 'city_id'); + } +}; \ No newline at end of file diff --git a/app/migrations/20240314122321-add_scope_and_subsector_to_userfile.cjs b/app/migrations/20240314122321-add_scope_and_subsector_to_userfile.cjs new file mode 100644 index 000000000..1d4d3225f --- /dev/null +++ b/app/migrations/20240314122321-add_scope_and_subsector_to_userfile.cjs @@ -0,0 +1,20 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up (queryInterface, Sequelize) { + await queryInterface.addColumn('UserFile', 'scopes', { + type: Sequelize.ARRAY(Sequelize.STRING), + allowNull: true + }) + await queryInterface.addColumn('UserFile', 'subsectors', { + type: Sequelize.ARRAY(Sequelize.STRING), + allowNull: true + }) + }, + + async down (queryInterface, Sequelize) { + await queryInterface.removeColumn('UserFile', 'scopes'); + await queryInterface.removeColumn('UserFile', 'subsectors') + } +}; diff --git a/app/migrations/20240318105130-region-population.cjs b/app/migrations/20240318105130-region-population.cjs new file mode 100644 index 000000000..cb3e1f097 --- /dev/null +++ b/app/migrations/20240318105130-region-population.cjs @@ -0,0 +1,16 @@ +"use strict"; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + await queryInterface.addColumn( + "Population", + "region_population", + Sequelize.BIGINT, + ); + }, + + async down(queryInterface) { + await queryInterface.removeColumn("Population", "region_population"); + }, +}; diff --git a/app/migrations/20240329160302-new-catalog.cjs b/app/migrations/20240329160302-new-catalog.cjs new file mode 100644 index 000000000..298f6ca9b --- /dev/null +++ b/app/migrations/20240329160302-new-catalog.cjs @@ -0,0 +1,79 @@ +"use strict"; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + return queryInterface.sequelize.transaction(async (transaction) => { + await queryInterface.addColumn("DataSource", "methodology_description", { + type: Sequelize.TEXT, + transaction, + }); + await queryInterface.addColumn( + "DataSource", + "transformation_description", + { + type: Sequelize.TEXT, + transaction, + }, + ); + await queryInterface.addColumn("DataSource", "dataset_name", { + type: Sequelize.TEXT, + transaction, + }); + await queryInterface.renameColumn( + "DataSource", + "name", + "datasource_name", + { + transaction, + }, + ); + await queryInterface.renameColumn( + "DataSource", + "description", + "dataset_description", + { + transaction, + }, + ); + }); + }, + + async down(queryInterface) { + return queryInterface.sequelize.transaction(async (transaction) => { + await queryInterface.removeColumn( + "DataSource", + "methodology_description", + { + transaction, + }, + ); + await queryInterface.removeColumn( + "DataSource", + "transformation_description", + { + transaction, + }, + ); + await queryInterface.removeColumn("DataSource", "dataset_name", { + transaction, + }); + await queryInterface.renameColumn( + "DataSource", + "datasource_name", + "name", + { + transaction, + }, + ); + await queryInterface.renameColumn( + "DataSource", + "dataset_description", + "description", + { + transaction, + }, + ); + }); + }, +}; diff --git a/app/package-lock.json b/app/package-lock.json index 3ff06c7a3..60f16664b 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -1,12 +1,12 @@ { "name": "city-catalyst", - "version": "0.5.0-rc.1", + "version": "0.6.0-rc.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "city-catalyst", - "version": "0.5.0-rc.1", + "version": "0.6.0-rc.0", "dependencies": { "@chakra-ui/icons": "^2.1.0", "@chakra-ui/next-js": "^2.2.0", @@ -24,7 +24,7 @@ "@types/jsonwebtoken": "^9.0.4", "@types/node": "20.11.5", "@types/nodemailer": "^6.4.14", - "@types/pg": "^8.11.2", + "@types/pg": "^8.11.4", "@types/react": "18.2.61", "@types/react-dom": "18.2.19", "@types/uuid": "^9.0.8", @@ -50,7 +50,7 @@ "jsonwebtoken": "^9.0.2", "next": "14.1.3", "next-auth": "^4.24.5", - "nodemailer": "^6.9.9", + "nodemailer": "^6.9.13", "openai": "^4.28.0", "pg": "^8.11.3", "pg-hstore": "^2.3.4", @@ -80,7 +80,7 @@ "@storybook/addon-essentials": "^7.6.16", "@storybook/addon-interactions": "^7.4.5", "@storybook/addon-links": "^7.6.17", - "@storybook/blocks": "^7.6.14", + "@storybook/blocks": "^8.0.4", "@storybook/nextjs": "^7.6.16", "@types/glob": "^8.1.0", "cypress": "^13.6.4", @@ -88,7 +88,7 @@ "prettier": "3.2.5", "sequelize-auto": "^0.8.8", "start-server-and-test": "^2.0.3", - "storybook": "^7.6.17" + "storybook": "^8.0.4" }, "engines": { "node": ">=20.5.0" @@ -5977,6 +5977,45 @@ "url": "https://opencollective.com/storybook" } }, + "node_modules/@storybook/addon-controls/node_modules/@storybook/blocks": { + "version": "7.6.16", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.16.tgz", + "integrity": "sha512-rWG9a7BbK0qYvge1oJTIpAbcQ4eOSxetKqgeZc7jxQGeJw0Xvq7C/CmkBY4ZrdP8nj7M7R1Yw49u6OV4aXlyOg==", + "dev": true, + "dependencies": { + "@storybook/channels": "7.6.16", + "@storybook/client-logger": "7.6.16", + "@storybook/components": "7.6.16", + "@storybook/core-events": "7.6.16", + "@storybook/csf": "^0.1.2", + "@storybook/docs-tools": "7.6.16", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.6.16", + "@storybook/preview-api": "7.6.16", + "@storybook/theming": "7.6.16", + "@storybook/types": "7.6.16", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "markdown-to-jsx": "^7.1.8", + "memoizerific": "^1.11.3", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.2.0", + "tocbot": "^4.20.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/@storybook/addon-docs": { "version": "7.6.16", "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.6.16.tgz", @@ -6012,6 +6051,45 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, + "node_modules/@storybook/addon-docs/node_modules/@storybook/blocks": { + "version": "7.6.16", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.16.tgz", + "integrity": "sha512-rWG9a7BbK0qYvge1oJTIpAbcQ4eOSxetKqgeZc7jxQGeJw0Xvq7C/CmkBY4ZrdP8nj7M7R1Yw49u6OV4aXlyOg==", + "dev": true, + "dependencies": { + "@storybook/channels": "7.6.16", + "@storybook/client-logger": "7.6.16", + "@storybook/components": "7.6.16", + "@storybook/core-events": "7.6.16", + "@storybook/csf": "^0.1.2", + "@storybook/docs-tools": "7.6.16", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.6.16", + "@storybook/preview-api": "7.6.16", + "@storybook/theming": "7.6.16", + "@storybook/types": "7.6.16", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "markdown-to-jsx": "^7.1.8", + "memoizerific": "^1.11.3", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.2.0", + "tocbot": "^4.20.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/@storybook/addon-essentials": { "version": "7.6.16", "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.6.16.tgz", @@ -6433,27 +6511,28 @@ } }, "node_modules/@storybook/blocks": { - "version": "7.6.16", - "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.16.tgz", - "integrity": "sha512-rWG9a7BbK0qYvge1oJTIpAbcQ4eOSxetKqgeZc7jxQGeJw0Xvq7C/CmkBY4ZrdP8nj7M7R1Yw49u6OV4aXlyOg==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-8.0.4.tgz", + "integrity": "sha512-9dRXk9zLJVPOmEWsSXm10XUmIfvS/tVgeBgFXNbusFQZXPpexIPNdRgB004pDGg9RvlY78ykpnd3yP143zaXMg==", "dev": true, "dependencies": { - "@storybook/channels": "7.6.16", - "@storybook/client-logger": "7.6.16", - "@storybook/components": "7.6.16", - "@storybook/core-events": "7.6.16", + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/components": "8.0.4", + "@storybook/core-events": "8.0.4", "@storybook/csf": "^0.1.2", - "@storybook/docs-tools": "7.6.16", + "@storybook/docs-tools": "8.0.4", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.6.16", - "@storybook/preview-api": "7.6.16", - "@storybook/theming": "7.6.16", - "@storybook/types": "7.6.16", + "@storybook/icons": "^1.2.5", + "@storybook/manager-api": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", "@types/lodash": "^4.14.167", "color-convert": "^2.0.1", "dequal": "^2.0.2", "lodash": "^4.17.21", - "markdown-to-jsx": "^7.1.8", + "markdown-to-jsx": "7.3.2", "memoizerific": "^1.11.3", "polished": "^4.2.2", "react-colorful": "^5.1.2", @@ -6469,79 +6548,88 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/builder-manager": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.6.17.tgz", - "integrity": "sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==", + "node_modules/@storybook/blocks/node_modules/@storybook/channels": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.0.4.tgz", + "integrity": "sha512-haKV+8RbiSzLjicowUfc7h2fTClZHX/nz9SRUecf4IEZUEu2T78OgM/TzqZvL7rA3+/fKqp5iI+3PN3OA75Sdg==", + "dev": true, "dependencies": { - "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "7.6.17", - "@storybook/manager": "7.6.17", - "@storybook/node-logger": "7.6.17", - "@types/ejs": "^3.1.1", - "@types/find-cache-dir": "^3.2.1", - "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", - "browser-assert": "^1.2.1", - "ejs": "^3.1.8", - "esbuild": "^0.18.0", - "esbuild-plugin-alias": "^0.2.1", - "express": "^4.17.3", - "find-cache-dir": "^3.0.0", - "fs-extra": "^11.1.0", - "process": "^0.11.10", - "util": "^0.12.4" + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@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/builder-manager/node_modules/@storybook/channels": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", - "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "node_modules/@storybook/blocks/node_modules/@storybook/client-logger": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.0.4.tgz", + "integrity": "sha512-2SeEg3PT/d0l/+EAVtyj9hmMLTyTPp+bRBSzxYouBjtJPM1jrdKpFagj1o3uBRovwWm9SIVX6/ZsoRC33PEV1g==", + "dev": true, "dependencies": { - "@storybook/client-logger": "7.6.17", - "@storybook/core-events": "7.6.17", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "@storybook/global": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/client-logger": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.17.tgz", - "integrity": "sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==", + "node_modules/@storybook/blocks/node_modules/@storybook/components": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.0.4.tgz", + "integrity": "sha512-i5ngl5GTOLB9nZ1cmpxTjtWct5IuH9UxzFC73a0jHMkCwN26w16IqufRVDaoQv0AvZN4pd4fNM2in/XVHA10dw==", + "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@radix-ui/react-slot": "^1.0.2", + "@storybook/client-logger": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/icons": "^1.2.5", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "memoizerific": "^1.11.3", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/core-common": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.17.tgz", - "integrity": "sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==", + "node_modules/@storybook/blocks/node_modules/@storybook/core-common": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.0.4.tgz", + "integrity": "sha512-dzFRLm5FxUa2EFE6Rx/KLDTJNLBIp1S2/+Q1K+rG8V+CLvewCc2Cd486rStZqSXEKI7vDnsRs/aMla+N0X/++Q==", + "dev": true, "dependencies": { - "@storybook/core-events": "7.6.17", - "@storybook/node-logger": "7.6.17", - "@storybook/types": "7.6.17", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", + "@storybook/core-events": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/types": "8.0.4", + "@yarnpkg/fslib": "2.10.3", + "@yarnpkg/libzip": "2.3.0", "chalk": "^4.1.0", - "esbuild": "^0.18.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", @@ -6554,6 +6642,23 @@ "pkg-dir": "^5.0.0", "pretty-hrtime": "^1.0.3", "resolve-from": "^5.0.0", + "semver": "^7.3.7", + "tempy": "^1.0.1", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/blocks/node_modules/@storybook/core-events": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.0.4.tgz", + "integrity": "sha512-1FgLacIGi9i6/fyxw7ZJDC621RK47IMaA3keH4lc11ASRzCSwJ4YOrXjBFjfPc79EF2BuX72DDJNbhj6ynfF3g==", + "dev": true, + "dependencies": { "ts-dedent": "^2.0.0" }, "funding": { @@ -6561,11 +6666,20 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/core-events": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.17.tgz", - "integrity": "sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==", + "node_modules/@storybook/blocks/node_modules/@storybook/csf-tools": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.0.4.tgz", + "integrity": "sha512-dMSZxWnXBhmXGOZZOAJ4DKZRCYdA0HaqqZ4/eF9MLLsI+qvW4EklcpjVY6bsIzACgubRWtRZkTpxTnjExi/N1A==", + "dev": true, "dependencies": { + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "8.0.4", + "fs-extra": "^11.1.0", + "recast": "^0.23.5", "ts-dedent": "^2.0.0" }, "funding": { @@ -6573,103 +6687,191 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/node-logger": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.17.tgz", - "integrity": "sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==", + "node_modules/@storybook/blocks/node_modules/@storybook/docs-tools": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-8.0.4.tgz", + "integrity": "sha512-PONfG8j/AOHi79NbEkneFRZIscrShbA0sgA+62zeejH4r9+fuIkIKtLnKcAxvr8Bm6uo9aSQbISJZUcBG42WhQ==", + "dev": true, + "dependencies": { + "@storybook/core-common": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/types": "8.0.4", + "@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/builder-manager/node_modules/@storybook/types": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", - "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "node_modules/@storybook/blocks/node_modules/@storybook/manager-api": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.0.4.tgz", + "integrity": "sha512-TudiRmWlsi8kdjwqW0DDLen76Zp4Sci/AnvTbZvZOWe8C2mruxcr6aaGwuIug6y+uxIyXDvURF6Cek5Twz4isg==", + "dev": true, "dependencies": { - "@storybook/channels": "7.6.17", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/icons": "^1.2.5", + "@storybook/router": "8.0.4", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "store2": "^2.14.2", + "telejson": "^7.2.0", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@types/node": { - "version": "18.19.22", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.22.tgz", - "integrity": "sha512-p3pDIfuMg/aXBmhkyanPshdfJuX5c5+bQjYLIikPLXAUycEogij/c50n/C+8XOA5L93cU4ZRXtn+dNQGi0IZqQ==", + "node_modules/@storybook/blocks/node_modules/@storybook/node-logger": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.0.4.tgz", + "integrity": "sha512-cALLHuX53vLQsoJamGRlquh2pfhPq9copXou2JTmFT6mrCcipo77SzhBDfeeuhaGv6vUWPfmGjPBEHXWGPe4+g==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/blocks/node_modules/@storybook/preview-api": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.0.4.tgz", + "integrity": "sha512-uZCgZ/7BZkFTNudCBWx3YPFVdReMQSZJj9EfQVhQaPmfGORHGMvZMRsQXl0ONhPy7zDD4rVQxu5dSKWmIiYoWQ==", + "dev": true, "dependencies": { - "undici-types": "~5.26.4" + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "8.0.4", + "@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/builder-webpack5": { - "version": "7.6.16", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.6.16.tgz", - "integrity": "sha512-KBUwFXlG+BBp3W7eyZMdTpWqiGsI6bsKcbyEtzbX4pSPWDRVWaJB2wito+Y1VhOAo/pPukzV/3GLVUlyq4wdsw==", + "node_modules/@storybook/blocks/node_modules/@storybook/router": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.0.4.tgz", + "integrity": "sha512-hlR80QvmLBflAqMeGcgtDuSe6TJlzdizwEAkBLE1lDvFI6tvvEyAliCAXBpIDdOZTe0u/zeeJkOUXKSx33caoQ==", "dev": true, "dependencies": { - "@babel/core": "^7.23.2", - "@storybook/channels": "7.6.16", - "@storybook/client-logger": "7.6.16", - "@storybook/core-common": "7.6.16", - "@storybook/core-events": "7.6.16", - "@storybook/core-webpack": "7.6.16", - "@storybook/node-logger": "7.6.16", - "@storybook/preview": "7.6.16", - "@storybook/preview-api": "7.6.16", - "@swc/core": "^1.3.82", - "@types/node": "^18.0.0", - "@types/semver": "^7.3.4", - "babel-loader": "^9.0.0", - "browser-assert": "^1.2.1", - "case-sensitive-paths-webpack-plugin": "^2.4.0", - "cjs-module-lexer": "^1.2.3", - "constants-browserify": "^1.0.0", - "css-loader": "^6.7.1", - "es-module-lexer": "^1.4.1", - "express": "^4.17.3", - "fork-ts-checker-webpack-plugin": "^8.0.0", - "fs-extra": "^11.1.0", - "html-webpack-plugin": "^5.5.0", - "magic-string": "^0.30.5", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "semver": "^7.3.7", - "style-loader": "^3.3.1", - "swc-loader": "^0.2.3", - "terser-webpack-plugin": "^5.3.1", - "ts-dedent": "^2.0.0", - "url": "^0.11.0", - "util": "^0.12.4", - "util-deprecate": "^1.0.2", - "webpack": "5", - "webpack-dev-middleware": "^6.1.1", - "webpack-hot-middleware": "^2.25.1", - "webpack-virtual-modules": "^0.5.0" + "@storybook/client-logger": "8.0.4", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/blocks/node_modules/@storybook/theming": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.0.4.tgz", + "integrity": "sha512-NxtTU2wMC0lj375ejoT3Npdcqwv6NeUpLaJl6EZCMXSR41ve9WG4suUNWQ63olhqKxirjzAz0IL7ggH7c3hPvA==", + "dev": true, + "dependencies": { + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@storybook/client-logger": "8.0.4", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, "peerDependenciesMeta": { - "typescript": { + "react": { + "optional": true + }, + "react-dom": { "optional": true } } }, - "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { - "version": "18.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", - "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "node_modules/@storybook/blocks/node_modules/@storybook/types": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.0.4.tgz", + "integrity": "sha512-OO7QY+qZFCYkItDUBACtIV32p75O7sNziAiyS1V2Oxgo7Ln7fwZwr3mJcA1ruBed6ZcrW3c87k7Xs40T2zAWcg==", "dev": true, "dependencies": { - "undici-types": "~5.26.4" + "@storybook/channels": "8.0.4", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-webpack5/node_modules/lru-cache": { + "node_modules/@storybook/blocks/node_modules/execa": { + "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", + "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/blocks/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==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/blocks/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==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@storybook/blocks/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==", @@ -6681,7 +6883,7 @@ "node": ">=10" } }, - "node_modules/@storybook/builder-webpack5/node_modules/semver": { + "node_modules/@storybook/blocks/node_modules/semver": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", @@ -6696,85 +6898,40 @@ "node": ">=10" } }, - "node_modules/@storybook/builder-webpack5/node_modules/yallist": { + "node_modules/@storybook/blocks/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/@storybook/channels": { - "version": "7.6.16", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.16.tgz", - "integrity": "sha512-LKB0t4OGISez1O4TRJ/CDPxlb2wAW7gg8YRL91VVUHeffVyr4bnpklvMbLbuEcYrysM82Q2UMB9ipQdyK6Issg==", - "dependencies": { - "@storybook/client-logger": "7.6.16", - "@storybook/core-events": "7.6.16", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli": { + "node_modules/@storybook/builder-manager": { "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.6.17.tgz", - "integrity": "sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.6.17.tgz", + "integrity": "sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==", "dependencies": { - "@babel/core": "^7.23.2", - "@babel/preset-env": "^7.23.2", - "@babel/types": "^7.23.0", - "@ndelangen/get-tarball": "^3.0.7", - "@storybook/codemod": "7.6.17", + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", "@storybook/core-common": "7.6.17", - "@storybook/core-events": "7.6.17", - "@storybook/core-server": "7.6.17", - "@storybook/csf-tools": "7.6.17", + "@storybook/manager": "7.6.17", "@storybook/node-logger": "7.6.17", - "@storybook/telemetry": "7.6.17", - "@storybook/types": "7.6.17", - "@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", + "@types/ejs": "^3.1.1", + "@types/find-cache-dir": "^3.2.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "browser-assert": "^1.2.1", + "ejs": "^3.1.8", + "esbuild": "^0.18.0", + "esbuild-plugin-alias": "^0.2.1", "express": "^4.17.3", - "find-up": "^5.0.0", + "find-cache-dir": "^3.0.0", "fs-extra": "^11.1.0", - "get-npm-tarball-url": "^2.0.3", - "get-port": "^5.1.1", - "giget": "^1.0.0", - "globby": "^11.0.2", - "jscodeshift": "^0.15.1", - "leven": "^3.1.0", - "ora": "^5.4.1", - "prettier": "^2.8.0", - "prompts": "^2.4.0", - "puppeteer-core": "^2.1.1", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "strip-json-comments": "^3.0.1", - "tempy": "^1.0.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "bin": { - "getstorybook": "bin/index.js", - "sb": "bin/index.js" + "process": "^0.11.10", + "util": "^0.12.4" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/channels": { + "node_modules/@storybook/builder-manager/node_modules/@storybook/channels": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", @@ -6791,7 +6948,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/client-logger": { + "node_modules/@storybook/builder-manager/node_modules/@storybook/client-logger": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.17.tgz", "integrity": "sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==", @@ -6803,7 +6960,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/core-common": { + "node_modules/@storybook/builder-manager/node_modules/@storybook/core-common": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.17.tgz", "integrity": "sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==", @@ -6837,7 +6994,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/core-events": { + "node_modules/@storybook/builder-manager/node_modules/@storybook/core-events": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.17.tgz", "integrity": "sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==", @@ -6849,27 +7006,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/csf-tools": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.17.tgz", - "integrity": "sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==", - "dependencies": { - "@babel/generator": "^7.23.0", - "@babel/parser": "^7.23.0", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "@storybook/csf": "^0.1.2", - "@storybook/types": "7.6.17", - "fs-extra": "^11.1.0", - "recast": "^0.23.1", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli/node_modules/@storybook/node-logger": { + "node_modules/@storybook/builder-manager/node_modules/@storybook/node-logger": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.17.tgz", "integrity": "sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==", @@ -6878,7 +7015,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/types": { + "node_modules/@storybook/builder-manager/node_modules/@storybook/types": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", @@ -6893,7 +7030,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@types/node": { + "node_modules/@storybook/builder-manager/node_modules/@types/node": { "version": "18.19.22", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.22.tgz", "integrity": "sha512-p3pDIfuMg/aXBmhkyanPshdfJuX5c5+bQjYLIikPLXAUycEogij/c50n/C+8XOA5L93cU4ZRXtn+dNQGi0IZqQ==", @@ -6901,51 +7038,75 @@ "undici-types": "~5.26.4" } }, - "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==", + "node_modules/@storybook/builder-webpack5": { + "version": "7.6.16", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.6.16.tgz", + "integrity": "sha512-KBUwFXlG+BBp3W7eyZMdTpWqiGsI6bsKcbyEtzbX4pSPWDRVWaJB2wito+Y1VhOAo/pPukzV/3GLVUlyq4wdsw==", + "dev": true, "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/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" + "@babel/core": "^7.23.2", + "@storybook/channels": "7.6.16", + "@storybook/client-logger": "7.6.16", + "@storybook/core-common": "7.6.16", + "@storybook/core-events": "7.6.16", + "@storybook/core-webpack": "7.6.16", + "@storybook/node-logger": "7.6.16", + "@storybook/preview": "7.6.16", + "@storybook/preview-api": "7.6.16", + "@swc/core": "^1.3.82", + "@types/node": "^18.0.0", + "@types/semver": "^7.3.4", + "babel-loader": "^9.0.0", + "browser-assert": "^1.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "cjs-module-lexer": "^1.2.3", + "constants-browserify": "^1.0.0", + "css-loader": "^6.7.1", + "es-module-lexer": "^1.4.1", + "express": "^4.17.3", + "fork-ts-checker-webpack-plugin": "^8.0.0", + "fs-extra": "^11.1.0", + "html-webpack-plugin": "^5.5.0", + "magic-string": "^0.30.5", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "semver": "^7.3.7", + "style-loader": "^3.3.1", + "swc-loader": "^0.2.3", + "terser-webpack-plugin": "^5.3.1", + "ts-dedent": "^2.0.0", + "url": "^0.11.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "webpack": "5", + "webpack-dev-middleware": "^6.1.1", + "webpack-hot-middleware": "^2.25.1", + "webpack-virtual-modules": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/cli/node_modules/lru-cache": { + "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { + "version": "18.19.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", + "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/builder-webpack5/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" }, @@ -6953,24 +7114,11 @@ "node": ">=10" } }, - "node_modules/@storybook/cli/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/@storybook/cli/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==", + "node_modules/@storybook/builder-webpack5/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, "dependencies": { "lru-cache": "^6.0.0" }, @@ -6981,49 +7129,85 @@ "node": ">=10" } }, - "node_modules/@storybook/cli/node_modules/yallist": { + "node_modules/@storybook/builder-webpack5/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/@storybook/client-logger": { + "node_modules/@storybook/channels": { "version": "7.6.16", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.16.tgz", - "integrity": "sha512-Vquhmgk/SO0VeAkojcA1juuicBHoTST+f4XwBvyUNiebOSOdGIkxHVxpDFXu2kS0aKflFBEutX2IgoysDup+fQ==", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.16.tgz", + "integrity": "sha512-LKB0t4OGISez1O4TRJ/CDPxlb2wAW7gg8YRL91VVUHeffVyr4bnpklvMbLbuEcYrysM82Q2UMB9ipQdyK6Issg==", "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.16", + "@storybook/core-events": "7.6.16", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod": { + "node_modules/@storybook/cli": { "version": "7.6.17", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.6.17.tgz", - "integrity": "sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.6.17.tgz", + "integrity": "sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==", "dependencies": { "@babel/core": "^7.23.2", "@babel/preset-env": "^7.23.2", "@babel/types": "^7.23.0", - "@storybook/csf": "^0.1.2", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/core-server": "7.6.17", "@storybook/csf-tools": "7.6.17", "@storybook/node-logger": "7.6.17", + "@storybook/telemetry": "7.6.17", "@storybook/types": "7.6.17", - "@types/cross-spawn": "^6.0.2", + "@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", + "express": "^4.17.3", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", + "get-port": "^5.1.1", + "giget": "^1.0.0", "globby": "^11.0.2", "jscodeshift": "^0.15.1", - "lodash": "^4.17.21", + "leven": "^3.1.0", + "ora": "^5.4.1", "prettier": "^2.8.0", - "recast": "^0.23.1" + "prompts": "^2.4.0", + "puppeteer-core": "^2.1.1", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "strip-json-comments": "^3.0.1", + "tempy": "^1.0.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "bin": { + "getstorybook": "bin/index.js", + "sb": "bin/index.js" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/channels": { + "node_modules/@storybook/cli/node_modules/@storybook/channels": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", @@ -7040,7 +7224,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/client-logger": { + "node_modules/@storybook/cli/node_modules/@storybook/client-logger": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.17.tgz", "integrity": "sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==", @@ -7052,7 +7236,41 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/core-events": { + "node_modules/@storybook/cli/node_modules/@storybook/core-common": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.17.tgz", + "integrity": "sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==", + "dependencies": { + "@storybook/core-events": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/find-cache-dir": "^3.2.1", + "@types/node": "^18.0.0", + "@types/node-fetch": "^2.6.4", + "@types/pretty-hrtime": "^1.0.0", + "chalk": "^4.1.0", + "esbuild": "^0.18.0", + "esbuild-register": "^3.5.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", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/cli/node_modules/@storybook/core-events": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.17.tgz", "integrity": "sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==", @@ -7064,7 +7282,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/csf-tools": { + "node_modules/@storybook/cli/node_modules/@storybook/csf-tools": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.17.tgz", "integrity": "sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==", @@ -7084,7 +7302,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/node-logger": { + "node_modules/@storybook/cli/node_modules/@storybook/node-logger": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.17.tgz", "integrity": "sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==", @@ -7093,7 +7311,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/types": { + "node_modules/@storybook/cli/node_modules/@storybook/types": { "version": "7.6.17", "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", @@ -7108,7 +7326,67 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/prettier": { + "node_modules/@storybook/cli/node_modules/@types/node": { + "version": "18.19.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.22.tgz", + "integrity": "sha512-p3pDIfuMg/aXBmhkyanPshdfJuX5c5+bQjYLIikPLXAUycEogij/c50n/C+8XOA5L93cU4ZRXtn+dNQGi0IZqQ==", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "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/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/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==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/prettier": { "version": "2.8.8", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", @@ -7122,9 +7400,164 @@ "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/@storybook/components": { - "version": "7.6.16", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.16.tgz", + "node_modules/@storybook/cli/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==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@storybook/client-logger": { + "version": "7.6.16", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.16.tgz", + "integrity": "sha512-Vquhmgk/SO0VeAkojcA1juuicBHoTST+f4XwBvyUNiebOSOdGIkxHVxpDFXu2kS0aKflFBEutX2IgoysDup+fQ==", + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.6.17.tgz", + "integrity": "sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==", + "dependencies": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/cross-spawn": "^6.0.2", + "cross-spawn": "^7.0.3", + "globby": "^11.0.2", + "jscodeshift": "^0.15.1", + "lodash": "^4.17.21", + "prettier": "^2.8.0", + "recast": "^0.23.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@storybook/client-logger": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.17.tgz", + "integrity": "sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==", + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@storybook/core-events": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.17.tgz", + "integrity": "sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==", + "dependencies": { + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@storybook/csf-tools": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.17.tgz", + "integrity": "sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==", + "dependencies": { + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "7.6.17", + "fs-extra": "^11.1.0", + "recast": "^0.23.1", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@storybook/node-logger": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.17.tgz", + "integrity": "sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dependencies": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@storybook/components": { + "version": "7.6.16", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.16.tgz", "integrity": "sha512-5KZQqxFiVEGM485ceF/7PmiNEkHgouEa8ZUJvDGrW9Ap5MfN0xqAuyTTveHvZzGrKp0YlOcOnpqwu/cSk0HQKA==", "dev": true, "dependencies": { @@ -7546,6 +7979,19 @@ "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==" }, + "node_modules/@storybook/icons": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-1.2.9.tgz", + "integrity": "sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==", + "dev": true, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/@storybook/instrumenter": { "version": "7.4.5", "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.4.5.tgz", @@ -8829,9 +9275,9 @@ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" }, "node_modules/@types/pg": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.11.2.tgz", - "integrity": "sha512-G2Mjygf2jFMU/9hCaTYxJrwdObdcnuQde1gndooZSOHsNSaCehAuwc7EIuSA34Do8Jx2yZ19KtvW8P0j4EuUXw==", + "version": "8.11.4", + "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.11.4.tgz", + "integrity": "sha512-yw3Bwbda6vO+NvI1Ue/YKOwtl31AYvvd/e73O3V4ZkNzuGpTDndLSyc0dQRB2xrQqDePd20pEGIfqSp/GH3pRw==", "dependencies": { "@types/node": "*", "pg-protocol": "*", @@ -10931,12 +11377,12 @@ "dev": true }, "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dependencies": { "bytes": "3.1.2", - "content-type": "~1.0.4", + "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -10944,7 +11390,7 @@ "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", - "raw-body": "2.5.1", + "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, @@ -14846,16 +15292,16 @@ } }, "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.1", + "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -14886,6 +15332,14 @@ "node": ">= 0.10.0" } }, + "node_modules/express/node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -19157,9 +19611,9 @@ "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "node_modules/nodemailer": { - "version": "6.9.9", - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.9.tgz", - "integrity": "sha512-dexTll8zqQoVJEZPwQAKzxxtFn0qTnjdQTchoU6Re9BUUGBJiOy3YMn/0ShTW6J5M0dfQ1NeDeRTTl4oIWgQMA==", + "version": "6.9.13", + "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.13.tgz", + "integrity": "sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==", "engines": { "node": ">=6.0.0" } @@ -21047,9 +21501,9 @@ } }, "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -22358,14 +22812,14 @@ } }, "node_modules/recast": { - "version": "0.23.4", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.4.tgz", - "integrity": "sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==", + "version": "0.23.6", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.6.tgz", + "integrity": "sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==", "dependencies": { - "assert": "^2.0.0", "ast-types": "^0.16.1", "esprima": "~4.0.0", "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", "tslib": "^2.0.1" }, "engines": { @@ -23741,170 +24195,686 @@ "source-map": "^0.6.0" } }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" + }, + "node_modules/split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", + "dev": true, + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "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.0.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.0.0.tgz", + "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==", + "dependencies": { + "swrev": "^4.0.0" + }, + "peerDependencies": { + "svelte": "^4.0.0" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "dev": true + }, + "node_modules/stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/start-server-and-test": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.3.tgz", + "integrity": "sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==", + "dev": true, + "dependencies": { + "arg": "^5.0.2", + "bluebird": "3.7.2", + "check-more-types": "2.24.0", + "debug": "4.3.4", + "execa": "5.1.1", + "lazy-ass": "1.6.0", + "ps-tree": "1.2.0", + "wait-on": "7.2.0" + }, + "bin": { + "server-test": "src/bin/start.js", + "start-server-and-test": "src/bin/start.js", + "start-test": "src/bin/start.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/start-server-and-test/node_modules/execa": { + "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", + "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/start-server-and-test/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==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/start-server-and-test/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==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/store2": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", + "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", + "dev": true + }, + "node_modules/storybook": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.0.4.tgz", + "integrity": "sha512-FUr3Uc2dSAQ80jINH5fSXz7zD7Ncn08OthROjwRtHAH+jMf4wxyZ+RhF3heFy9xLot2/HXOLIWyHyzZZMtGhxg==", + "dev": true, + "dependencies": { + "@storybook/cli": "8.0.4" + }, + "bin": { + "sb": "index.js", + "storybook": "index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/builder-manager": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.0.4.tgz", + "integrity": "sha512-BafYVxq77uuTmXdjYo5by42OyOrb6qcpWYKva3ntWK2ZhTaLJlwwqAOdahT1DVzi4VeUP6465YvsTCzIE8fuIw==", + "dev": true, + "dependencies": { + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", + "@storybook/core-common": "8.0.4", + "@storybook/manager": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@types/ejs": "^3.1.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "browser-assert": "^1.2.1", + "ejs": "^3.1.8", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", + "esbuild-plugin-alias": "^0.2.1", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "process": "^0.11.10", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/channels": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.0.4.tgz", + "integrity": "sha512-haKV+8RbiSzLjicowUfc7h2fTClZHX/nz9SRUecf4IEZUEu2T78OgM/TzqZvL7rA3+/fKqp5iI+3PN3OA75Sdg==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@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/node_modules/@storybook/cli": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.0.4.tgz", + "integrity": "sha512-8jb8hrulRMfyFyNXFEapxHBS51xb42ZZGfVAacXIsHOJtjOd5CnOoSUYn0aOkVl19VF/snoa9JOW7BaW/50Eqw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/types": "^7.23.0", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/core-server": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/telemetry": "8.0.4", + "@storybook/types": "8.0.4", + "@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", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", + "giget": "^1.0.0", + "globby": "^11.0.2", + "jscodeshift": "^0.15.1", + "leven": "^3.1.0", + "ora": "^5.4.1", + "prettier": "^3.1.1", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "strip-json-comments": "^3.0.1", + "tempy": "^1.0.1", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0" + }, + "bin": { + "getstorybook": "bin/index.js", + "sb": "bin/index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/client-logger": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.0.4.tgz", + "integrity": "sha512-2SeEg3PT/d0l/+EAVtyj9hmMLTyTPp+bRBSzxYouBjtJPM1jrdKpFagj1o3uBRovwWm9SIVX6/ZsoRC33PEV1g==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/codemod": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.0.4.tgz", + "integrity": "sha512-bysG46P4wjlR3RCpr/ntNAUaupWpzLcWYWti3iNtIyZ/iPrX6KtXoA9QCIwJZrlv41us6F+KEZbzLzkgWbymtQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/types": "8.0.4", + "@types/cross-spawn": "^6.0.2", + "cross-spawn": "^7.0.3", + "globby": "^11.0.2", + "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/node_modules/@storybook/core-common": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.0.4.tgz", + "integrity": "sha512-dzFRLm5FxUa2EFE6Rx/KLDTJNLBIp1S2/+Q1K+rG8V+CLvewCc2Cd486rStZqSXEKI7vDnsRs/aMla+N0X/++Q==", + "dev": true, + "dependencies": { + "@storybook/core-events": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/types": "8.0.4", + "@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", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "semver": "^7.3.7", + "tempy": "^1.0.1", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/core-events": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.0.4.tgz", + "integrity": "sha512-1FgLacIGi9i6/fyxw7ZJDC621RK47IMaA3keH4lc11ASRzCSwJ4YOrXjBFjfPc79EF2BuX72DDJNbhj6ynfF3g==", + "dev": true, + "dependencies": { + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/core-server": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.0.4.tgz", + "integrity": "sha512-/633Pp7LPcDWXkPLSW+W9VUYUbVkdVBG6peXjuzogV0vzdM0dM9af/T0uV2NQxUhzoy6/7QdSDljE+eEOBs2Lw==", + "dev": true, + "dependencies": { + "@aw-web-design/x-default-browser": "1.4.126", + "@babel/core": "^7.23.9", + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-manager": "8.0.4", + "@storybook/channels": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "8.0.4", + "@storybook/docs-mdx": "3.0.0", + "@storybook/global": "^5.0.0", + "@storybook/manager": "8.0.4", + "@storybook/manager-api": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/telemetry": "8.0.4", + "@storybook/types": "8.0.4", + "@types/detect-port": "^1.3.0", + "@types/node": "^18.0.0", + "@types/pretty-hrtime": "^1.0.0", + "@types/semver": "^7.3.4", + "better-opn": "^3.0.2", + "chalk": "^4.1.0", + "cli-table3": "^0.6.1", + "compression": "^1.7.4", + "detect-port": "^1.3.0", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "globby": "^11.0.2", + "ip": "^2.0.1", + "lodash": "^4.17.21", + "open": "^8.4.0", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "watchpack": "^2.2.0", + "ws": "^8.2.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/storybook/node_modules/@storybook/csf-tools": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.0.4.tgz", + "integrity": "sha512-dMSZxWnXBhmXGOZZOAJ4DKZRCYdA0HaqqZ4/eF9MLLsI+qvW4EklcpjVY6bsIzACgubRWtRZkTpxTnjExi/N1A==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "8.0.4", + "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/node_modules/@storybook/docs-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-3.0.0.tgz", + "integrity": "sha512-NmiGXl2HU33zpwTv1XORe9XG9H+dRUC1Jl11u92L4xr062pZtrShLmD4VKIsOQujxhhOrbxpwhNOt+6TdhyIdQ==", + "dev": true }, - "node_modules/space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "node_modules/storybook/node_modules/@storybook/manager": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.0.4.tgz", + "integrity": "sha512-M5IofDSxbIQIdAglxUtZOGKjZ1EAq1Mdbh4UolVsF1PKF6dAvBQJLVW6TiLjEbmPBtqgeYKMgrmmYiFNqVcdBQ==", "dev": true, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "node_modules/storybook/node_modules/@storybook/manager-api": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.0.4.tgz", + "integrity": "sha512-TudiRmWlsi8kdjwqW0DDLen76Zp4Sci/AnvTbZvZOWe8C2mruxcr6aaGwuIug6y+uxIyXDvURF6Cek5Twz4isg==", + "dev": true, "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/icons": "^1.2.5", + "@storybook/router": "8.0.4", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "store2": "^2.14.2", + "telejson": "^7.2.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "node_modules/storybook/node_modules/@storybook/node-logger": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.0.4.tgz", + "integrity": "sha512-cALLHuX53vLQsoJamGRlquh2pfhPq9copXou2JTmFT6mrCcipo77SzhBDfeeuhaGv6vUWPfmGjPBEHXWGPe4+g==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" - }, - "node_modules/split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", + "node_modules/storybook/node_modules/@storybook/preview-api": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.0.4.tgz", + "integrity": "sha512-uZCgZ/7BZkFTNudCBWx3YPFVdReMQSZJj9EfQVhQaPmfGORHGMvZMRsQXl0ONhPy7zDD4rVQxu5dSKWmIiYoWQ==", "dev": true, "dependencies": { - "through": "2" + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "8.0.4", + "@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" }, - "engines": { - "node": "*" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "engines": { - "node": ">= 10.x" + "node_modules/storybook/node_modules/@storybook/router": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.0.4.tgz", + "integrity": "sha512-hlR80QvmLBflAqMeGcgtDuSe6TJlzdizwEAkBLE1lDvFI6tvvEyAliCAXBpIDdOZTe0u/zeeJkOUXKSx33caoQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "node_modules/storybook/node_modules/@storybook/telemetry": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.0.4.tgz", + "integrity": "sha512-Q3ITY6J46R/TrrPRIU1fs3WNs69ExpTJZ9UlB8087qOUyV90Ex33SYk3i10xVWRczxCmyC1V58Xuht6nxz7mNQ==", "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" + "@storybook/client-logger": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "chalk": "^4.1.0", + "detect-package-manager": "^2.0.1", + "fetch-retry": "^5.0.2", + "fs-extra": "^11.1.0", + "read-pkg-up": "^7.0.1" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/sswr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.0.0.tgz", - "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==", + "node_modules/storybook/node_modules/@storybook/theming": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.0.4.tgz", + "integrity": "sha512-NxtTU2wMC0lj375ejoT3Npdcqwv6NeUpLaJl6EZCMXSR41ve9WG4suUNWQ63olhqKxirjzAz0IL7ggH7c3hPvA==", + "dev": true, "dependencies": { - "swrev": "^4.0.0" + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@storybook/client-logger": "8.0.4", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "svelte": "^4.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" - }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", - "dev": true - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "node_modules/storybook/node_modules/@storybook/types": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.0.4.tgz", + "integrity": "sha512-OO7QY+qZFCYkItDUBACtIV32p75O7sNziAiyS1V2Oxgo7Ln7fwZwr3mJcA1ruBed6ZcrW3c87k7Xs40T2zAWcg==", + "dev": true, "dependencies": { - "type-fest": "^0.7.1" + "@storybook/channels": "8.0.4", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, - "engines": { - "node": ">=6" - } - }, - "node_modules/stacktrace-parser/node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/start-server-and-test": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.3.tgz", - "integrity": "sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==", + "node_modules/storybook/node_modules/@types/node": { + "version": "18.19.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz", + "integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==", "dev": true, "dependencies": { - "arg": "^5.0.2", - "bluebird": "3.7.2", - "check-more-types": "2.24.0", - "debug": "4.3.4", - "execa": "5.1.1", - "lazy-ass": "1.6.0", - "ps-tree": "1.2.0", - "wait-on": "7.2.0" - }, - "bin": { - "server-test": "src/bin/start.js", - "start-server-and-test": "src/bin/start.js", - "start-test": "src/bin/start.js" - }, - "engines": { - "node": ">=16" + "undici-types": "~5.26.4" } }, - "node_modules/start-server-and-test/node_modules/execa": { + "node_modules/storybook/node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", @@ -23927,7 +24897,7 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/start-server-and-test/node_modules/get-stream": { + "node_modules/storybook/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==", @@ -23939,7 +24909,7 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/start-server-and-test/node_modules/human-signals": { + "node_modules/storybook/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==", @@ -23948,48 +24918,39 @@ "node": ">=10.17.0" } }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "node_modules/storybook/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": { - "internal-slot": "^1.0.4" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" } }, - "node_modules/store2": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", - "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", - "dev": true - }, - "node_modules/storybook": { - "version": "7.6.17", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.6.17.tgz", - "integrity": "sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==", + "node_modules/storybook/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { - "@storybook/cli": "7.6.17" + "lru-cache": "^6.0.0" }, "bin": { - "sb": "index.js", - "storybook": "index.js" + "semver": "bin/semver.js" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=10" } }, + "node_modules/storybook/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/stream-browserify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", @@ -24926,9 +25887,9 @@ } }, "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==" }, "node_modules/tmp": { "version": "0.2.1", @@ -26393,9 +27354,9 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.1.tgz", - "integrity": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.2.tgz", + "integrity": "sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==", "dev": true, "dependencies": { "colorette": "^2.0.10", diff --git a/app/package.json b/app/package.json index 1a30d60a7..3a646576b 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "city-catalyst", - "version": "0.5.0-rc.1", + "version": "0.6.0-rc.0", "private": true, "type": "module", "scripts": { @@ -46,7 +46,7 @@ "@types/jsonwebtoken": "^9.0.4", "@types/node": "20.11.5", "@types/nodemailer": "^6.4.14", - "@types/pg": "^8.11.2", + "@types/pg": "^8.11.4", "@types/react": "18.2.61", "@types/react-dom": "18.2.19", "@types/uuid": "^9.0.8", @@ -72,7 +72,7 @@ "jsonwebtoken": "^9.0.2", "next": "14.1.3", "next-auth": "^4.24.5", - "nodemailer": "^6.9.9", + "nodemailer": "^6.9.13", "openai": "^4.28.0", "pg": "^8.11.3", "pg-hstore": "^2.3.4", @@ -102,7 +102,7 @@ "@storybook/addon-essentials": "^7.6.16", "@storybook/addon-interactions": "^7.4.5", "@storybook/addon-links": "^7.6.17", - "@storybook/blocks": "^7.6.14", + "@storybook/blocks": "^8.0.4", "@storybook/nextjs": "^7.6.16", "@types/glob": "^8.1.0", "cypress": "^13.6.4", @@ -110,7 +110,7 @@ "prettier": "3.2.5", "sequelize-auto": "^0.8.8", "start-server-and-test": "^2.0.3", - "storybook": "^7.6.17" + "storybook": "^8.0.4" }, "engines": { "node": ">=20.5.0" diff --git a/app/public/assets/not-found-background.svg b/app/public/assets/not-found-background.svg new file mode 100644 index 000000000..399071405 --- /dev/null +++ b/app/public/assets/not-found-background.svg @@ -0,0 +1,1181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/scripts/catalogue-sync.ts b/app/scripts/catalogue-sync.ts index c36627874..d1b3e4809 100644 --- a/app/scripts/catalogue-sync.ts +++ b/app/scripts/catalogue-sync.ts @@ -6,10 +6,11 @@ import { logger } from "@/services/logger"; interface Source { datasource_id: string; - name: string; + datasource_name: string; + dataset_name: string; source_type: string; url: string; - description: string; + dataset_description: string; access_type: string; geographical_location: string; start_year: number; @@ -23,6 +24,8 @@ interface Source { notes: string; units: string; methodology_url: string; + methodology_description: string; + transformation_description: string; publisher_id: string; retrieval_method: string; api_endpoint: string; @@ -116,7 +119,7 @@ async function syncDataCatalogue() { if (!source.notes) { // publisher_id is still a name at this stage - source.notes = `${source.name} by ${source.publisher_id}. For more details see ${source.url}`; + source.notes = `${source.datasource_name} by ${source.publisher_id}. For more details see ${source.url}`; } if (source.geographical_location === "global") { @@ -171,48 +174,15 @@ async function syncDataCatalogue() { console.dir(sources); logger.debug("Saving sources..."); + /* + * TODO switch to single query when this issue is fixed: + * https://github.com/sequelize/sequelize/issues/15221 + * https://github.com/sequelize/sequelize/issues/13545 + */ for (const source of sources) { await db.models.DataSource.upsert(source); } - /* TODO switch to single query when this issue is fixed: - // https://github.com/sequelize/sequelize/issues/15221 - // https://github.com/sequelize/sequelize/issues/13545 - await db.models.DataSource.bulkCreate( - sources, - { - updateOnDuplicate: [ - "name", - "sourceType", - "url", - "description", - "accessType", - "geographicalLocation", - "startYear", - "endYear", - "latestAccountingYear", - "frequencyOfUpdate", - "spatialResolution", - "language", - "accessibility", - "dataQuality", - "notes", - "units", - "methodologyUrl", - "publisherId", - "retrievalMethod", - "apiEndpoint", - "sectorId", - "subsectorId", - "subcategoryId", - "created", - "lastUpdated", - ], - // ignoreDuplicates: true, - }, - ); - */ - await catalogue.update({ lastUpdate: new Date(lastUpdate) }); logger.debug("Updated Catalogue, done!"); diff --git a/app/src/app/[...not_found]/layout.tsx b/app/src/app/[...not_found]/layout.tsx new file mode 100644 index 000000000..fe824e297 --- /dev/null +++ b/app/src/app/[...not_found]/layout.tsx @@ -0,0 +1,38 @@ +import "../globals.css"; +import type { Metadata } from "next"; +import { Providers } from "../providers"; +import { dir } from "i18next"; +import { languages } from "@/i18n/settings"; +import { NavigationBar } from "@/components/navigation-bar"; + +export const metadata: Metadata = { + title: "CityCatalyst", + description: "Make building a climate inventory a breeze", +}; + +export async function generateStaticParams() { + return languages.map((lng: string) => ({ lng })); +} + +export default function RootLayout({ + children, + params: { lng }, +}: { + children: React.ReactNode; + params: { lng: string }; +}) { + return ( + + + + + + + + + {children} + + + + ); +} diff --git a/app/src/app/[...not_found]/page.tsx b/app/src/app/[...not_found]/page.tsx new file mode 100644 index 000000000..9903373c9 --- /dev/null +++ b/app/src/app/[...not_found]/page.tsx @@ -0,0 +1,71 @@ +"use client"; +import { useTranslation } from "@/i18n/client"; +import { api } from "@/services/api"; +import { ArrowForwardIcon } from "@chakra-ui/icons"; +import { Box, Text } from "@chakra-ui/layout"; +import { Button, IconButton } from "@chakra-ui/react"; +import Image from "next/image"; +import { useRouter } from "next/navigation"; +import React from "react"; + +const NotFound = ({ params: { lng } }: { params: { lng: string } }) => { + const { data: userInfo, isLoading: isUserInfoLoading } = + api.useGetUserInfoQuery(); + const router = useRouter(); + const { t } = useTranslation(lng, "not-found"); + + return ( + + not-found page background + + + 404 + + + {t("not-found-description")} + + + + + ); +}; + +export default NotFound; diff --git a/app/src/app/[lng]/data/[step]/ActivityDataTab.tsx b/app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx similarity index 98% rename from app/src/app/[lng]/data/[step]/ActivityDataTab.tsx rename to app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx index 170faa23e..4694909fe 100644 --- a/app/src/app/[lng]/data/[step]/ActivityDataTab.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx @@ -50,7 +50,7 @@ const activityDataUnits: Record = { export function determineEmissionsFactorType(factor: EmissionsFactorData) { let sourceName = factor.dataSources - ? factor.dataSources[0].name || "Unknown data source" + ? factor.dataSources[0].datasetName || "Unknown data source" : "Unknown data source"; if (sourceName.includes("IPCC") && sourceName.includes("US")) { return "National (US)"; @@ -108,7 +108,8 @@ export function ActivityDataTab({ : Object.keys(factorsByUnit); // TODO this should happen in default form value, as the form still contains null/ undefined here - const selectedUnit = watch(prefix + "activityDataUnit") ?? scopeUnits[0] ?? ""; + const selectedUnit = + watch(prefix + "activityDataUnit") ?? scopeUnits[0] ?? ""; const selectedUnitShort = selectedUnit.split(" ")[0]; useEffect(() => { diff --git a/app/src/app/[lng]/data/[step]/DirectMeasureForm.tsx b/app/src/app/[lng]/[inventory]/data/[step]/DirectMeasureForm.tsx similarity index 100% rename from app/src/app/[lng]/data/[step]/DirectMeasureForm.tsx rename to app/src/app/[lng]/[inventory]/data/[step]/DirectMeasureForm.tsx diff --git a/app/src/app/[lng]/data/[step]/EmissionsForm.tsx b/app/src/app/[lng]/[inventory]/data/[step]/EmissionsForm.tsx similarity index 100% rename from app/src/app/[lng]/data/[step]/EmissionsForm.tsx rename to app/src/app/[lng]/[inventory]/data/[step]/EmissionsForm.tsx diff --git a/app/src/app/[lng]/data/[step]/SourceDrawer.tsx b/app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx similarity index 91% rename from app/src/app/[lng]/data/[step]/SourceDrawer.tsx rename to app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx index 071611e2e..5e52423d1 100644 --- a/app/src/app/[lng]/data/[step]/SourceDrawer.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx @@ -54,10 +54,13 @@ export function SourceDrawer({ t: TFunction; }) { const emissionsData = sourceData?.totals?.emissions?.co2eq_100yr; - // TODO scale this down for country data sources - const totalEmissions = emissionsData + let totalEmissions = emissionsData ? ((Number(emissionsData) * sourceData?.scaleFactor) / 1000).toFixed(2) : "?"; + if (sourceData?.issue) { + totalEmissions = "?"; + } + return ( - {source.name} + {source.datasetName} - + {source.subCategory?.referenceNumber || source.subSector?.referenceNumber}{" "} {source.subCategory?.subcategoryName || @@ -141,7 +144,7 @@ export function SourceDrawer({ - + {t("total-emissions-included")}{" "} + {sourceData?.issue && ( + + {t("error")}: {t(sourceData?.issue)} + + )} + - {t("inside-dataset")} - {source.description} + {t("inside-dataset")} + + {source.datasetDescription} + - {/* - // TODO add methodology description to data source model/ data catalog - */} + + {source.methodologyDescription} + - {t("transform-data-description")} + {source.transformationDescription} diff --git a/app/src/app/[lng]/data/[step]/SubsectorDrawer.tsx b/app/src/app/[lng]/[inventory]/data/[step]/SubsectorDrawer.tsx similarity index 100% rename from app/src/app/[lng]/data/[step]/SubsectorDrawer.tsx rename to app/src/app/[lng]/[inventory]/data/[step]/SubsectorDrawer.tsx diff --git a/app/src/app/[lng]/data/[step]/page.tsx b/app/src/app/[lng]/[inventory]/data/[step]/page.tsx similarity index 87% rename from app/src/app/[lng]/data/[step]/page.tsx rename to app/src/app/[lng]/[inventory]/data/[step]/page.tsx index 9d7c9813c..2ac9c5b0b 100644 --- a/app/src/app/[lng]/data/[step]/page.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/page.tsx @@ -60,7 +60,6 @@ import { MdOutlineEdit, MdOutlineHomeWork, MdOutlineSkipNext, - MdPlaylistAddCheck, MdRefresh, } from "react-icons/md"; import { useDispatch, useSelector } from "react-redux"; @@ -72,9 +71,8 @@ import type { SubSectorWithRelations, } from "./types"; -import { v4 as uuidv4 } from "uuid"; +import AddFileDataModal from "@/components/Modals/add-file-data-modal"; import { InventoryValueAttributes } from "@/models/InventoryValue"; -import { DataSource } from "@/models/DataSource"; function getMailURI(locode?: string, sector?: string, year?: number): string { const emails = @@ -170,9 +168,9 @@ function NoDataSourcesMessage({ } export default function AddDataSteps({ - params: { lng, step }, + params: { lng, step, inventory }, }: { - params: { lng: string; step: string }; + params: { lng: string; step: string; inventory: string }; }) { const { t } = useTranslation(lng, "data"); const router = useRouter(); @@ -427,7 +425,7 @@ export default function AddDataSteps({ await new Promise((resolve) => setTimeout(resolve, 1000)); setConfirming(false); if (activeStep >= steps.length - 1) { - router.push("/data/review"); + router.push(`/${inventory}/data/review`); } else { window.scrollTo({ top: 0, behavior: "smooth" }); goToNext(); @@ -436,7 +434,7 @@ export default function AddDataSteps({ const onSkip = () => { if (activeStep >= steps.length - 1) { - router.push("/data/review"); + router.push(`/${inventory}/data/review`); } else { window.scrollTo({ top: 0, behavior: "smooth" }); goToNext(); @@ -449,35 +447,18 @@ export default function AddDataSteps({ (state: RootState) => state.inventoryData, ); const dispatch = useDispatch(); - function fileToBase64(file: File) { - return new Promise((resolve, reject) => { - const reader = new FileReader(); - reader.readAsDataURL(file); - reader.onload = () => resolve(reader.result); - reader.onerror = (error) => reject(error); - }); - } // Add file data to rudux state object + const { + isOpen: isfileDataModalOpen, + onOpen: onFileDataModalOpen, + onClose: onfileDataModalClose, + } = useDisclosure(); + + const [uploadedFile, setUploadedFile] = useState(); + const handleFileSelect = async (file: File) => { - const base64FileString = await fileToBase64(file); - const filename = file.name; - dispatch( - addFile({ - sectorName: currentStep.title!, - fileData: { - fileId: uuidv4(), - fileName: filename, - userId: userInfo?.userId, - sector: currentStep.title, - data: base64FileString, - // TODO this should not be passed in but rather set on the server (only necessary for AWS S3 or external hosting) - url: "http://localhost", - size: file.size, - fileType: filename.split(".").pop(), - }, - }), - ); + onFileDataModalOpen(); }; const sectorData = getInventoryData.sectors.filter( @@ -716,7 +697,7 @@ export default function AddDataSteps({ {/* TODO add icon to DataSource */} - {source.name} + {source.datasetName} @@ -748,7 +729,8 @@ export default function AddDataSteps({ noOfLines={5} minHeight={120} > - {source.description} + {source.datasetDescription || + source.methodologyDescription} - + {t("files-uploaded")} {sectorData && - sectorData[0]?.files.map((file: any, i: number) => ( - - - - - - - - {file.fileName} - - { + return ( + + + + + + - {bytesToMB(file.size)} - - - - + + + + + {file.subsectors.split(",").map((item: any) => ( + + {item} + + ))} - - - ))} + + ); + })} @@ -1005,6 +1010,16 @@ export default function AddDataSteps({ + {/* Add fole data modal */} + {/*** Bottom bar ***/}
diff --git a/app/src/app/[lng]/data/[step]/subsectors.json b/app/src/app/[lng]/[inventory]/data/[step]/subsectors.json similarity index 100% rename from app/src/app/[lng]/data/[step]/subsectors.json rename to app/src/app/[lng]/[inventory]/data/[step]/subsectors.json diff --git a/app/src/app/[lng]/data/[step]/types.d.ts b/app/src/app/[lng]/[inventory]/data/[step]/types.d.ts similarity index 100% rename from app/src/app/[lng]/data/[step]/types.d.ts rename to app/src/app/[lng]/[inventory]/data/[step]/types.d.ts diff --git a/app/src/app/[lng]/data/layout.tsx b/app/src/app/[lng]/[inventory]/data/layout.tsx similarity index 100% rename from app/src/app/[lng]/data/layout.tsx rename to app/src/app/[lng]/[inventory]/data/layout.tsx diff --git a/app/src/app/[lng]/data/page.tsx b/app/src/app/[lng]/[inventory]/data/page.tsx similarity index 96% rename from app/src/app/[lng]/data/page.tsx rename to app/src/app/[lng]/[inventory]/data/page.tsx index f4d2a0de4..1c7e17a38 100644 --- a/app/src/app/[lng]/data/page.tsx +++ b/app/src/app/[lng]/[inventory]/data/page.tsx @@ -14,7 +14,7 @@ import { Text, } from "@chakra-ui/react"; import NextLink from "next/link"; -import { useRouter } from "next/navigation"; +import { useParams, useRouter } from "next/navigation"; import { Trans } from "react-i18next/TransWithoutContext"; import { MdOutlineHomeWork } from "react-icons/md"; import { FiTrash2, FiTruck } from "react-icons/fi"; @@ -26,6 +26,7 @@ export default function AddDataIntro({ }) { const { t } = useTranslation(lng, "data"); const router = useRouter(); + const { inventory } = useParams(); return ( @@ -129,7 +130,7 @@ export default function AddDataIntro({
- + diff --git a/app/src/app/[lng]/auth/login/page.tsx b/app/src/app/[lng]/auth/login/page.tsx index 89c708cdf..fef69b33e 100644 --- a/app/src/app/[lng]/auth/login/page.tsx +++ b/app/src/app/[lng]/auth/login/page.tsx @@ -51,11 +51,11 @@ export default function Login({ } = useForm(); const searchParams = useSearchParams(); - const [error, setError] = useState(""); + const [error, setError] = useState(""); + const defaultUrl = `https://${document.location.host}/${lng}`; + const callbackUrl = searchParams.get("callbackUrl") || defaultUrl; const onSubmit: SubmitHandler = async (data) => { - const defaultUrl = `https://${document.location.host}/${lng}`; - const callbackUrl = searchParams.get("callbackUrl") || defaultUrl; try { const res = await signIn("credentials", { redirect: false, @@ -108,7 +108,10 @@ export default function Login({ color="content.tertiary" > {t("no-account")}{" "} - + {t("sign-up")} diff --git a/app/src/app/[lng]/auth/signup/page.tsx b/app/src/app/[lng]/auth/signup/page.tsx index 805e292f0..c7035c86a 100644 --- a/app/src/app/[lng]/auth/signup/page.tsx +++ b/app/src/app/[lng]/auth/signup/page.tsx @@ -16,8 +16,8 @@ import { Input, Text, } from "@chakra-ui/react"; -import { useRouter } from "next/navigation"; -import { useState } from "react"; +import { useRouter, useSearchParams } from "next/navigation"; +import { useEffect, useState } from "react"; import { useForm, SubmitHandler } from "react-hook-form"; import { Trans } from "react-i18next/TransWithoutContext"; import { logger } from "@/services/logger"; @@ -29,6 +29,7 @@ type Inputs = { confirmPassword: string; inviteCode: string; acceptTerms: boolean; + inventory: string; }; export default function Signup({ @@ -42,11 +43,21 @@ export default function Signup({ handleSubmit, register, setError: setFormError, + setValue, formState: { errors, isSubmitting }, } = useForm(); const [error, setError] = useState(""); + const fullUrl = window.location.href; + const urlParams = new URL(fullUrl); + const params = urlParams.searchParams.get("callbackUrl"); + const inventory = params?.split("/").pop(); + + useEffect(() => { + setValue("inventory", inventory!); + }, [setValue, inventory]); + const onSubmit: SubmitHandler = async (data) => { if (data.password !== data.confirmPassword) { setFormError("confirmPassword", { @@ -72,7 +83,7 @@ export default function Signup({ return; } - const callbackUrl = `/auth/check-email?email=${data.email}`; + const callbackUrl = `/auth/check-email?email=${data.email}&callbackUrl=${params}`; router.push(callbackUrl); // TODO automatic login required? diff --git a/app/src/app/[lng]/layout.tsx b/app/src/app/[lng]/layout.tsx index 7159ec914..953a281cc 100644 --- a/app/src/app/[lng]/layout.tsx +++ b/app/src/app/[lng]/layout.tsx @@ -23,11 +23,7 @@ export default function RootLayout({ return ( - + diff --git a/app/src/app/[lng]/onboarding/done/[cityId]/[year]/page.tsx b/app/src/app/[lng]/onboarding/done/[cityId]/[year]/[inventory]/page.tsx similarity index 91% rename from app/src/app/[lng]/onboarding/done/[cityId]/[year]/page.tsx rename to app/src/app/[lng]/onboarding/done/[cityId]/[year]/[inventory]/page.tsx index e9efe14bb..f17ebc586 100644 --- a/app/src/app/[lng]/onboarding/done/[cityId]/[year]/page.tsx +++ b/app/src/app/[lng]/onboarding/done/[cityId]/[year]/[inventory]/page.tsx @@ -10,9 +10,9 @@ import { Trans } from "react-i18next/TransWithoutContext"; import { logger } from "@/services/logger"; export default function OnboardingDone({ - params: { lng, year }, + params: { lng, year, inventory }, }: { - params: { lng: string; year: number }; + params: { lng: string; year: number; inventory: string }; }) { const data = useAppSelector((state) => state.openClimateCity.city); const { t } = useTranslation(lng, "onboarding"); @@ -43,7 +43,7 @@ export default function OnboardingDone({
- + + + + + + ); +}; + +export default AddFileDataModal; diff --git a/app/src/components/Modals/add-user-modal.tsx b/app/src/components/Modals/add-user-modal.tsx index a498ef15e..a0c3d4681 100644 --- a/app/src/components/Modals/add-user-modal.tsx +++ b/app/src/components/Modals/add-user-modal.tsx @@ -1,6 +1,6 @@ "use client"; -import { ProfileInputs } from "@/app/[lng]/settings/page"; +import { ProfileInputs } from "@/app/[lng]/[inventory]/settings/page"; import type { UserAttributes } from "@/models/User"; import { api } from "@/services/api"; import { @@ -23,6 +23,7 @@ import FormInput from "../form-input"; import FormSelectInput from "../form-select-input"; import FormSelectOrganization from "../form-select-organization"; import { TFunction } from "i18next"; +import { useParams } from "next/navigation"; interface AddUserModalProps { isOpen: boolean; @@ -47,12 +48,11 @@ const AddUserModal: FC = ({ const [checkUser] = api.useCheckUserMutation(); const [inviteUser, { isLoading: isInviteLoading }] = api.useInviteUserMutation(); - const [inputValue, setInputValue] = useState(""); - const [userId, setUserId] = useState(""); + const toast = useToast(); - const onInputChange = (e: any) => { - setInputValue(e.target.value); - }; + + const { inventory: cityParam } = useParams(); + const inventoryId = cityParam as string; const onSubmit: SubmitHandler<{ name: string; email: string }> = async ( data, ) => { @@ -101,6 +101,7 @@ const AddUserModal: FC = ({ email: data.email!, userId: res?.data?.userId, invitingUserId: userInfo! && userInfo?.userId!, + inventoryId, }).then((res: any) => { onClose(); if (res?.error?.status == 400) { diff --git a/app/src/components/Modals/delete-city-modal.tsx b/app/src/components/Modals/delete-city-modal.tsx index c015d1f85..b9c57b1c7 100644 --- a/app/src/components/Modals/delete-city-modal.tsx +++ b/app/src/components/Modals/delete-city-modal.tsx @@ -1,6 +1,6 @@ "use client"; -import { UserDetails } from "@/app/[lng]/settings/page"; +import { UserDetails } from "@/app/[lng]/[inventory]/settings/page"; import { Modal, Button, diff --git a/app/src/components/Modals/delete-file-modal.tsx b/app/src/components/Modals/delete-file-modal.tsx index 25e9ecaf2..a5a9e6f61 100644 --- a/app/src/components/Modals/delete-file-modal.tsx +++ b/app/src/components/Modals/delete-file-modal.tsx @@ -37,7 +37,7 @@ const DeleteFileModal: FC = ({ const [deleteUserFile] = api.useDeleteUserFileMutation(); const onDeleteFile = async () => { try { - await deleteUserFile({ fileId: fileData?.id }); + await deleteUserFile({ fileId: fileData?.id, cityId: fileData?.cityId }); } catch (error) { console.error(error); } finally { diff --git a/app/src/components/Modals/delete-inventory-modal.tsx b/app/src/components/Modals/delete-inventory-modal.tsx index fd00af31d..996b2a61d 100644 --- a/app/src/components/Modals/delete-inventory-modal.tsx +++ b/app/src/components/Modals/delete-inventory-modal.tsx @@ -1,6 +1,6 @@ "use client"; -import { UserDetails } from "@/app/[lng]/settings/page"; +import { UserDetails } from "@/app/[lng]/[inventory]/settings/page"; import { Modal, Button, diff --git a/app/src/components/Tabs/my-files-tab.tsx b/app/src/components/Tabs/my-files-tab.tsx index ce594bb04..9ff17c8dc 100644 --- a/app/src/components/Tabs/my-files-tab.tsx +++ b/app/src/components/Tabs/my-files-tab.tsx @@ -35,16 +35,17 @@ import { } from "@chakra-ui/react"; import React, { FC, useEffect, useMemo, useState } from "react"; -import { ChevronRightIcon, SearchIcon } from "@chakra-ui/icons"; +import { CheckIcon, ChevronRightIcon, SearchIcon } from "@chakra-ui/icons"; import { MdMoreVert, + MdOutlineCheck, MdOutlineFileDownload, MdOutlineFolder, } from "react-icons/md"; import { FiTrash2 } from "react-icons/fi"; import { FaFileCsv } from "react-icons/fa"; -import { CityData } from "@/app/[lng]/settings/page"; +import { CityData } from "@/app/[lng]/[inventory]/settings/page"; import { Session } from "next-auth"; import DeleteFileModal from "@/components/Modals/delete-file-modal"; @@ -54,6 +55,7 @@ import { UserAttributes } from "@/models/User"; import { UserFileAttributes } from "@/models/UserFile"; import Link from "next/link"; +import { PiCheckFatLight } from "react-icons/pi"; interface MyFilesTabProps { session: Session | null; @@ -416,8 +418,8 @@ const MyFilesTab: FC = ({ > = ({ }} > @@ -495,6 +497,33 @@ const MyFilesTab: FC = ({ {t("delete-file")} + + + + {t("mark-as-completed")} + + diff --git a/app/src/components/Tabs/my-profile-tab.tsx b/app/src/components/Tabs/my-profile-tab.tsx index 00cea56b8..5c6203476 100644 --- a/app/src/components/Tabs/my-profile-tab.tsx +++ b/app/src/components/Tabs/my-profile-tab.tsx @@ -1,6 +1,6 @@ "use client"; -import { ProfileInputs } from "@/app/[lng]/settings/page"; +import { ProfileInputs } from "@/app/[lng]/[inventory]/settings/page"; import AddUserModal from "@/components/Modals/add-user-modal"; import DeleteUserModal from "@/components/Modals/delete-user-modal"; import UpdateUserModal from "@/components/Modals/update-user-modal"; @@ -190,9 +190,8 @@ const MyProfileTab: FC = ({ }, [role, searchTerm, cityUsers]); useEffect(() => { - const selectedUsersByRole = filteredUsers.filter( - (users) => - users?.role?.toLocaleLowerCase().includes(role.toLocaleLowerCase()), + const selectedUsersByRole = filteredUsers.filter((users) => + users?.role?.toLocaleLowerCase().includes(role.toLocaleLowerCase()), ); if (role !== "all") { setFilteredUsersByRole(selectedUsersByRole); diff --git a/app/src/components/dropdown-select-input.tsx b/app/src/components/dropdown-select-input.tsx new file mode 100644 index 000000000..3af7b564a --- /dev/null +++ b/app/src/components/dropdown-select-input.tsx @@ -0,0 +1,180 @@ +import React, { useEffect, useState } from "react"; +import { + Box, + Tag, + TagLabel, + TagCloseButton, + Checkbox, + List, + ListItem, + Text, + Input, + FormLabel, +} from "@chakra-ui/react"; +import { MdArrowDropDown, MdArrowDropUp } from "react-icons/md"; +import { SubSectorWithRelations } from "@/app/[lng]/[inventory]/data/[step]/types"; +import { + UseFormRegister, + UseFormSetValue, + UseFormWatch, + useForm, +} from "react-hook-form"; +import { FileData } from "./Modals/add-file-data-modal"; +import { TFunction } from "i18next"; + +interface DropdownSelectProps { + subsectors: SubSectorWithRelations[] | null; + setValue: UseFormSetValue; + t: TFunction; + watch: UseFormWatch; + register: UseFormRegister; +} + +const DropdownSelectInput: React.FC = ({ + subsectors, + setValue, + t, + watch, + register, +}) => { + const [selectedItems, setSelectedItems] = useState([]); + + const handleCheckboxChange = ( + event: React.ChangeEvent, + value: string, + ) => { + if (event.target.checked) { + setSelectedItems([...selectedItems, value]); + } else { + setSelectedItems(selectedItems.filter((item) => item !== value)); + } + }; + + useEffect(() => { + const subsectorValues = selectedItems.slice().join(","); + setValue("subsectors", subsectorValues); + }, [setValue, selectedItems]); + + const handleRemoveItem = (item: string) => { + setSelectedItems( + selectedItems.filter((selectedItem) => selectedItem !== item), + ); + }; + + const [showDropdown, setShowDropdown] = useState(false); + const handleShowdropDown = () => { + setShowDropdown((prev) => !prev); + }; + + return ( + + 2 ? "12px" : "0px"} + > + + {selectedItems.length ? ( + "" + ) : ( + + {t("select-placeholder")} + + )} + {selectedItems.map((item) => ( + + {item} + handleRemoveItem(item)} + color="content.alternative" + /> + + ))} + + + + {!showDropdown ? ( + + ) : ( + + )} + + + {showDropdown && ( + + + {subsectors?.map((subsector) => ( + + + handleCheckboxChange(e, subsector.subsectorName!) + } + /> + + {subsector.subsectorName} + + + ))} + + + )} + + ); +}; + +export default DropdownSelectInput; diff --git a/app/src/components/file-input.tsx b/app/src/components/file-input.tsx index c2ebf06ac..d59d6f596 100644 --- a/app/src/components/file-input.tsx +++ b/app/src/components/file-input.tsx @@ -1,14 +1,25 @@ import { Box, FormLabel, Heading, Input, Text, VStack } from "@chakra-ui/react"; import { TFunction } from "i18next"; -import React, { useState, DragEvent, ChangeEvent } from "react"; +import React, { + useState, + DragEvent, + ChangeEvent, + Dispatch, + SetStateAction, +} from "react"; import { FiUpload } from "react-icons/fi"; interface FileUploadProps { onFileSelect: (file: File) => void; // Define a type for the onFileSelect prop t: TFunction; + setUploadedFile: Dispatch>; } -const FileInput: React.FC = ({ onFileSelect, t }) => { +const FileInput: React.FC = ({ + onFileSelect, + t, + setUploadedFile, +}) => { const [dragging, setDragging] = useState(false); const handleDragOver = (e: DragEvent) => { @@ -27,12 +38,14 @@ const FileInput: React.FC = ({ onFileSelect, t }) => { setDragging(false); if (e.dataTransfer.files && e.dataTransfer.files[0]) { onFileSelect(e.dataTransfer.files[0]); + setUploadedFile(e.dataTransfer.files[0]); } }; const handleChange = (e: ChangeEvent) => { if (e.target.files && e.target.files[0]) { onFileSelect(e.target.files[0]); + setUploadedFile(e.target.files[0]); } }; diff --git a/app/src/components/icons.tsx b/app/src/components/icons.tsx index 65e47235b..e38cdf8c8 100644 --- a/app/src/components/icons.tsx +++ b/app/src/components/icons.tsx @@ -223,7 +223,7 @@ export const ScaleIcon = (props: any) => { xmlns="http://www.w3.org/2000/svg" {...props} > - + { Cookies.set("i18next", language); const cookieLanguage = Cookies.get("i18next"); @@ -47,16 +54,18 @@ export function NavigationBar({ // change language in URL without reloading page const newPath = location.pathname.replace(/^\/[A-Za-z]+/, `/${language}`); - history.replaceState("", "", newPath); + history.replaceState(null, "", newPath); }; const { data: session, status } = useSession(); - + const { data: userInfo, isLoading: isUserInfoLoading } = + api.useGetUserInfoQuery(); + const currentInventoryId = userInfo?.defaultInventoryId; return ( - + - + {t("title")} @@ -176,7 +185,7 @@ export function NavigationBar({ height="128px" zIndex={2000} > - + signOut()} + onClick={() => logOut()} > { path: "Argentina {" > "} Capital Federal", }, ]; - const hasRecentSearches = true; + const hasRecentSearches = false; return ( diff --git a/app/src/features/city/inventoryDataSlice.ts b/app/src/features/city/inventoryDataSlice.ts index 16083c7cd..9cce568b4 100644 --- a/app/src/features/city/inventoryDataSlice.ts +++ b/app/src/features/city/inventoryDataSlice.ts @@ -2,11 +2,16 @@ import { RootState } from "@/lib/store"; import { UserFileAttributes } from "@/models/UserFile"; import { PayloadAction, createSlice } from "@reduxjs/toolkit"; -export type InventoryUserFileAttributes = Omit & { +export type InventoryUserFileAttributes = Omit< + UserFileAttributes, + "id" | "subsectors" | "scopes" +> & { // unique identifier to be used to access the files fileId: string; fileName: string; size: number; + subsectors: string; + scopes: string; }; interface SectorFileData { @@ -43,7 +48,10 @@ export const inventoryDataSlice = createSlice({ state.sectors[sectorIndex].files.push(fileData); } else { // Sector does not exist, create a new sector entry - state.sectors.push({ sectorName, files: [fileData] }); + state.sectors.push({ + sectorName, + files: [fileData], + }); } }, removeSectorData: ( diff --git a/app/src/features/city/openclimateCityDataSlice.ts b/app/src/features/city/openclimateCityDataSlice.ts index 00ccf9bd8..94c5ef55b 100644 --- a/app/src/features/city/openclimateCityDataSlice.ts +++ b/app/src/features/city/openclimateCityDataSlice.ts @@ -1,5 +1,4 @@ import { RootState } from "@/lib/store"; -import { OCCityArributes } from "@/models/City"; import { PayloadAction, createSlice } from "@reduxjs/toolkit"; export interface CityDataAttributes { diff --git a/app/src/features/city/openclimateCitySlice.ts b/app/src/features/city/openclimateCitySlice.ts index 34aadbb19..e9ebdcc4d 100644 --- a/app/src/features/city/openclimateCitySlice.ts +++ b/app/src/features/city/openclimateCitySlice.ts @@ -1,9 +1,9 @@ import { RootState } from "@/lib/store"; -import { OCCityArributes } from "@/models/City"; +import { OCCityAttributes } from "@/util/types"; import { PayloadAction, createSlice } from "@reduxjs/toolkit"; interface CityState { - city?: OCCityArributes; + city?: OCCityAttributes; } const initialState = { @@ -15,7 +15,7 @@ export const openclimateCitySlice = createSlice({ // state type is inferred from the initial state initialState, reducers: { - set: (state, action: PayloadAction) => { + set: (state, action: PayloadAction) => { state.city = action.payload; }, clear: (state) => { diff --git a/app/src/i18n/locales/de/data.json b/app/src/i18n/locales/de/data.json index 65a22ef19..7b1a45058 100644 --- a/app/src/i18n/locales/de/data.json +++ b/app/src/i18n/locales/de/data.json @@ -118,5 +118,18 @@ "files-uploaded": "Dateien hochgeladen", "add-custom": "Benutzerdefiniert", "save-missing-scope-info": "Speichern oder fehlende Informationen ausfüllen, bevor Sie fortfahren.", - "disconnect-data": "Datenquelle trennen" + "disconnect-data": "Datenquelle trennen", + + "error": "Fehler", + "missing-population": "Der Stadt fehlt die Bevölkerungszahl/ Regionsbevölkerungszahl/ Landesbevölkerungszahl für ein Jahr nahe dem Inventarjahr", + + "transform-data-description": "Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.", + "file-context": "Erzählen Sie uns mehr über diese Datei", + "file-data-subtitle": "Welche Art von Daten enthält sie?", + "file-data-description": "Wählen Sie aus den folgenden Optionen. Dies wird uns helfen, diese Informationen besser zu identifizieren und in Ihre Bestandsaufnahme aufzunehmen.", + "select-subsector-label": "Untersektoren auswählen", + "scopes": "Bereiche", + "cancel": "Abbrechen", + "upload": "Hochladen", + "select-placeholder": "Wählen Sie die Untersektoren aus, die in dieser Datei enthalten sind" } diff --git a/app/src/i18n/locales/de/settings.json b/app/src/i18n/locales/de/settings.json index e920da700..428ee1f49 100644 --- a/app/src/i18n/locales/de/settings.json +++ b/app/src/i18n/locales/de/settings.json @@ -58,5 +58,6 @@ "email-address": "E-Mail", "remove-user-prompt": "Sind Sie sicher, dass Sie diesen Benutzer <2>dauerhaft entfernen möchten aus Ihrem Team?", "city-deleted": "Stadt erfolgreich gelöscht", - "delete-file-prompt": "Sind Sie sicher, dass Sie diese Datei <2>dauerhaft löschen möchten aus dem Repository der Stadt?" + "delete-file-prompt": "Sind Sie sicher, dass Sie diese Datei <2>dauerhaft löschen möchten aus dem Repository der Stadt?", + "mark-as-completed": "Als abgeschlossen markieren" } diff --git a/app/src/i18n/locales/en/data.json b/app/src/i18n/locales/en/data.json index 699dedbba..c1fd460d7 100644 --- a/app/src/i18n/locales/en/data.json +++ b/app/src/i18n/locales/en/data.json @@ -169,5 +169,17 @@ "inside-dataset": "What's inside this dataset", "transform-data-heading": "How do we transform this data?", "transform-data-description": "Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.", - "disconnect-data": "Disconnect Data" + "disconnect-data": "Disconnect Data", + + "error": "Error", + "missing-population": "City is missing population/ region population/ country population for a year close to the inventory year", + + "file-context": "Tell Us More About This File", + "file-data-subtitle": "What type of data is contained in it?", + "file-data-description": " Choose from the options below. This will help us to better identify and include this information in your inventory.", + "select-subsector-label": "Select Sub-sectors", + "scopes": "Scopes", + "cancel": "Cancel", + "upload": "Upload", + "select-placeholder": "Select the sub-sectors included in this file" } diff --git a/app/src/i18n/locales/en/not-found.json b/app/src/i18n/locales/en/not-found.json new file mode 100644 index 000000000..6ab84fd98 --- /dev/null +++ b/app/src/i18n/locales/en/not-found.json @@ -0,0 +1,4 @@ +{ + "not-found-description": "Seems like we've wandered into the emission mist. Please go back to the dashboard", + "goto-dashboard": "Go to dashboard" +} \ No newline at end of file diff --git a/app/src/i18n/locales/en/onboarding.json b/app/src/i18n/locales/en/onboarding.json index bc0557cf5..d19d7a666 100644 --- a/app/src/i18n/locales/en/onboarding.json +++ b/app/src/i18n/locales/en/onboarding.json @@ -14,7 +14,7 @@ "inventory-year": "Inventory year", "inventory-year-placeholder": "Select year", "inventory-year-required": "Year is required", - "gpc-basic-message": "Only GPC Basic Inventories are supported momentarily", + "gpc-basic-message": "Only GPC Basic Inventories are supported momentarily. For population values the closest year to the city inventory is recommended, as it will be used for calculations and included in your GPC report.", "save-button": "Save and Continue", "search-city-button": "Search for another City", "confirm-button": "Confirm and Continue", @@ -28,5 +28,17 @@ "done-heading": "Your City Inventory Profile
Was Successfully Created", "inventory-title": "GPC Basic Emission Inventory - Year {{year}}", "done-details": "You created your city profile to start your GPC Basic GHG inventory.", - "check-dashboard": "Check Dashboard" + "check-dashboard": "Check Dashboard", + + "information-required": "This information is required and affects your GHG inventory accuracy.", + "year-placeholder": "Year", + "required": "Required", + "population-required": "Please enter value & year for population", + "city-population-title": "City population", + "city-population-placeholder": "City population number", + "population-year": "Population year", + "region-population-title": "Region population", + "region-population-placeholder": "Region population number", + "country-population-title": "Country population", + "country-population-placeholder": "Country population number" } diff --git a/app/src/i18n/locales/en/settings.json b/app/src/i18n/locales/en/settings.json index 6f7e9ee03..99aa4c161 100644 --- a/app/src/i18n/locales/en/settings.json +++ b/app/src/i18n/locales/en/settings.json @@ -58,5 +58,6 @@ "email-address": "Email", "remove-user-prompt": " Are you sure you want to <2> permanently remove this user from your team?", "city-deleted": "City deleted successfully", - "delete-file-prompt": "Are you sure you want to <2> permanently delete this file from the city's repository?" + "delete-file-prompt": "Are you sure you want to <2> permanently delete this file from the city's repository?", + "mark-as-completed": "Mark as completed" } \ No newline at end of file diff --git a/app/src/i18n/locales/es/data.json b/app/src/i18n/locales/es/data.json index 4e694a38c..57892c5e4 100644 --- a/app/src/i18n/locales/es/data.json +++ b/app/src/i18n/locales/es/data.json @@ -114,5 +114,19 @@ "files-uploaded": "Archivos subidos", "add-custom": "Agregar personalizado", "save-missing-scope-info": "Guarde o complete la información faltante antes de continuar.", - "disconnect-data": "Desconectar fuente de datos" + "disconnect-data": "Desconectar fuente de datos", + + "error": "Error", + "missing-population": "A la ciudad le falta población/población de región/población de país para un año cercano al año del inventario", + + "transform-data-description": "Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.", + "file-context": "Cuéntanos más sobre este archivo", + "file-data-subtitle": "¿Qué tipo de datos contiene?", + "file-data-description": "Elija entre las opciones a continuación. Esto nos ayudará a identificar e incluir mejor esta información en su inventario.", + "select-subsector-label": "Seleccionar subsectores", + "scopes": "Ámbitos", + "cancel": "Cancelar", + "upload": "Subir", + "select-placeholder": "Seleccione los subsectores incluidos en este archivo", + "mark-as-completed": "Marcar como completado" } diff --git a/app/src/i18n/locales/es/onboarding.json b/app/src/i18n/locales/es/onboarding.json index 3bf04c033..d6ef3f086 100644 --- a/app/src/i18n/locales/es/onboarding.json +++ b/app/src/i18n/locales/es/onboarding.json @@ -14,13 +14,13 @@ "inventory-year": "Año del inventario", "inventory-year-placeholder": "Seleccionar año", "inventory-year-required": "El año es requerido", - "gpc-basic-message": "Solo los inventarios básicos de GPC son compatibles momentáneamente", + "gpc-basic-message": "Solo los inventarios básicos de GPC son compatibles momentáneamente. Utilice datos del año más cercano al año de inventario seleccionado.", "save-button": "Guardar y Continuar", "search-city-button": "Buscar otra Ciudad", "confirm-button": "Confirmar y Continuar", "confirm-heading": "Confirmar Información de la Ciudad", - "confirm-details": "Revisa y confirma esta información sobre tu ciudad. Si hay un error, por favor envíanos un correo electrónico para editarlo.

Utilizamos <2>fuentes de datos abiertos para completar previamente el perfil de la ciudad.", + "confirm-details": "Revisa y confirma esta información sobre tu ciudad. Si hay un error, por favor envíanos un correo electrónico para editarlo.

Utilizamos <2>fuentes de datos abiertos para completar previamente el perfil de la ciudad.", "total-population": "Población total", "total-land-area": "Superficie total del terreno", "geographical-boundaries": "Límites geográficos", @@ -28,5 +28,17 @@ "done-heading": "Inventario creado con éxito
", "inventory-title": "Inventario Básico de Emisiones GPC - Año {{year}}", "done-details": "Creaste tu perfil de ciudad para comenzar tu inventario de GEI con metodología GPC Básico.", - "check-dashboard": "Ir al Inicio" + "check-dashboard": "Ir al Inicio", + + "information-required": "Esta información es obligatoria y afecta la precisión de su inventario de GEI.", + "year-placeholder": "Año", + "required": "Necesario", + "population-required": "Por favor ingrese el valor y el año de la población", + "city-population-title": "Población de la ciudad", + "city-population-placeholder": "Número de población de la ciudad", + "population-year": "Año de población", + "region-population-title": "Población de la región", + "region-population-placeholder": "Número de población de la región", + "country-population-title": "Población del país", + "country-population-placeholder": "Número de población del país" } diff --git a/app/src/lib/app-theme.ts b/app/src/lib/app-theme.ts index 8bed37b5d..3f659d290 100644 --- a/app/src/lib/app-theme.ts +++ b/app/src/lib/app-theme.ts @@ -34,6 +34,9 @@ export const appTheme = extendTheme({ neutral: "#D7D8FA", overlay: "#E6E7FF", }, + divider: { + neutral: "#F0F0F0", + }, background: { default: "#FFFFFF", @@ -82,6 +85,7 @@ export const appTheme = extendTheme({ fontSizes: { display: { + xl: "140px", lg: "57px", md: "45px", sm: "36px", diff --git a/app/src/models/City.ts b/app/src/models/City.ts index ec2356834..e8a79aa41 100644 --- a/app/src/models/City.ts +++ b/app/src/models/City.ts @@ -17,13 +17,6 @@ export interface CityAttributes { lastUpdated?: Date; } -export interface OCCityArributes { - actor_id: string; - name: string; - is_part_of: string; - root_path_geo: any; -} - export type CityPk = "cityId"; export type CityId = City[CityPk]; export type CityOptionalAttributes = diff --git a/app/src/models/DataSource.ts b/app/src/models/DataSource.ts index f060a1d78..58f970a90 100644 --- a/app/src/models/DataSource.ts +++ b/app/src/models/DataSource.ts @@ -34,10 +34,11 @@ import { InventoryValue, InventoryValueId } from "./InventoryValue"; export interface DataSourceAttributes { datasourceId: string; - name?: string; + datasetName?: string; + datasourceName?: string; sourceType?: string; url?: string; - description?: string; + datasetDescription?: string; accessType?: string; geographicalLocation?: string; // comma separated list of locodes for either EARTH, country, region or city startYear?: number; // inclusive @@ -51,6 +52,8 @@ export interface DataSourceAttributes { notes?: string; units?: string; methodologyUrl?: string; + methodologyDescription?: string; + transformationDescription?: string; publisherId?: string; retrievalMethod?: string; apiEndpoint?: string; @@ -64,10 +67,11 @@ export interface DataSourceAttributes { export type DataSourcePk = "datasourceId"; export type DataSourceId = DataSource[DataSourcePk]; export type DataSourceOptionalAttributes = - | "name" + | "datasetName" + | "datasourceName" | "sourceType" | "url" - | "description" + | "datasetDescription" | "accessType" | "geographicalLocation" | "startYear" @@ -81,6 +85,8 @@ export type DataSourceOptionalAttributes = | "notes" | "units" | "methodologyUrl" + | "methodologyDescription" + | "transformationDescription" | "publisherId" | "retrievalMethod" | "apiEndpoint" @@ -99,10 +105,11 @@ export class DataSource implements DataSourceAttributes { datasourceId!: string; - name?: string; + datasetName?: string; + datasourceName?: string; sourceType?: string; url?: string; - description?: string; + datasetDescription?: string; accessType?: string; geographicalLocation?: string; startYear?: number; // inclusive @@ -116,6 +123,8 @@ export class DataSource notes?: string; units?: string; methodologyUrl?: string; + methodologyDescription?: string; + transformationDescription?: string; publisherId?: string; retrievalMethod?: string; apiEndpoint?: string; @@ -359,10 +368,7 @@ export class DataSource // DataSource hasOne Sector via sectorId sector!: Sector; getSector!: Sequelize.HasOneGetAssociationMixin; - setSector!: Sequelize.HasOneSetAssociationMixin< - Sector, - SectorId - >; + setSector!: Sequelize.HasOneSetAssociationMixin; createSector!: Sequelize.HasOneCreateAssociationMixin; // DataSource hasOne SubCategory via subCategoryId subCategory!: SubCategory; @@ -375,10 +381,7 @@ export class DataSource // DataSource hasOneSubSector via subSectorId subSector!: SubSector; getSubSector!: Sequelize.HasOneGetAssociationMixin; - setSubSector!: Sequelize.HasOneSetAssociationMixin< - SubSector, - SubSectorId - >; + setSubSector!: Sequelize.HasOneSetAssociationMixin; createSubSector!: Sequelize.HasOneCreateAssociationMixin; // DataSource belongsToMany EmissionsFactor via datasourceId and emissionsFactorId emissionsFactorIdEmissionsFactors!: EmissionsFactor[]; @@ -575,29 +578,14 @@ export class DataSource // DataSource belongsToMany Scope via datasourceId and scopeId scopes!: Scope[]; getScopes!: Sequelize.BelongsToManyGetAssociationsMixin; - setScopes!: Sequelize.BelongsToManySetAssociationsMixin< - Scope, - ScopeId - >; + setScopes!: Sequelize.BelongsToManySetAssociationsMixin; addScope!: Sequelize.BelongsToManyAddAssociationMixin; - addScopes!: Sequelize.BelongsToManyAddAssociationsMixin< - Scope, - ScopeId - >; + addScopes!: Sequelize.BelongsToManyAddAssociationsMixin; createScope!: Sequelize.BelongsToManyCreateAssociationMixin; - removeScope!: Sequelize.BelongsToManyRemoveAssociationMixin< - Scope, - ScopeId - >; - removeScopes!: Sequelize.BelongsToManyRemoveAssociationsMixin< - Scope, - ScopeId - >; + removeScope!: Sequelize.BelongsToManyRemoveAssociationMixin; + removeScopes!: Sequelize.BelongsToManyRemoveAssociationsMixin; hasScope!: Sequelize.BelongsToManyHasAssociationMixin; - hasScopes!: Sequelize.BelongsToManyHasAssociationsMixin< - Scope, - ScopeId - >; + hasScopes!: Sequelize.BelongsToManyHasAssociationsMixin; countScopes!: Sequelize.BelongsToManyCountAssociationsMixin; // DataSource belongsToMany Sector via datasourceId and sectorId sectorIdSectors!: Sector[]; @@ -745,9 +733,15 @@ export class DataSource primaryKey: true, field: "datasource_id", }, - name: { + datasetName: { type: DataTypes.STRING(255), allowNull: true, + field: "dataset_name", + }, + datasourceName: { + type: DataTypes.STRING(255), + allowNull: true, + field: "datasource_name", }, sourceType: { type: DataTypes.STRING(255), @@ -759,9 +753,10 @@ export class DataSource allowNull: true, field: "URL", }, - description: { + datasetDescription: { type: DataTypes.TEXT, allowNull: true, + field: "dataset_description", }, accessType: { type: DataTypes.STRING(255), @@ -824,6 +819,16 @@ export class DataSource allowNull: true, field: "methodology_url", }, + methodologyDescription: { + type: DataTypes.TEXT, + allowNull: true, + field: "methodology_description", + }, + transformationDescription: { + type: DataTypes.TEXT, + allowNull: true, + field: "transformation_description", + }, publisherId: { type: DataTypes.UUID, allowNull: true, diff --git a/app/src/models/Population.ts b/app/src/models/Population.ts index 086009cde..bdd8ba814 100644 --- a/app/src/models/Population.ts +++ b/app/src/models/Population.ts @@ -7,6 +7,7 @@ export interface PopulationAttributes { cityId: string; population?: number; countryPopulation?: number; + regionPopulation?: number; year: number; created?: Date; lastUpdated?: Date; @@ -18,6 +19,7 @@ export type PopulationId = Population[PopulationPk]; export type PopulationOptionalAttributes = | "population" | "countryPopulation" + | "regionPopulation" | "created" | "lastUpdated" | "datasourceId"; @@ -33,6 +35,7 @@ export class Population cityId!: string; population?: number; countryPopulation?: number; + regionPopulation?: number; year!: number; created?: Date; lastUpdated?: Date; @@ -74,6 +77,11 @@ export class Population allowNull: true, field: "country_population", }, + regionPopulation: { + type: DataTypes.BIGINT, + allowNull: true, + field: "region_population", + }, year: { type: DataTypes.INTEGER, allowNull: false, diff --git a/app/src/models/UserFile.ts b/app/src/models/UserFile.ts index 3f4c6bcad..55d86a9cc 100644 --- a/app/src/models/UserFile.ts +++ b/app/src/models/UserFile.ts @@ -5,11 +5,14 @@ import { User, UserId } from "./User"; export interface UserFileAttributes { id: string; userId?: string; + cityId?: string; fileReference?: string; data?: Buffer | any; fileType?: string; fileName?: string; sector?: string; + subsectors?: string[]; + scopes?: string[]; status?: string; url?: string; gpcRefNo?: string; @@ -21,11 +24,14 @@ export type UserFilePk = "id"; export type UserFileId = UserFile[UserFilePk]; export type UserFileOptionalAttributes = | "userId" + | "cityId" | "fileReference" | "data" | "fileType" | "fileName" | "sector" + | "subsectors" + | "scopes" | "url" | "status" | "gpcRefNo" @@ -42,11 +48,14 @@ export class UserFile { id!: string; userId?: string; + cityId?: string; fileReference?: string; data?: Buffer; fileType?: string; fileName?: string; sector?: string; + subsectors?: string[]; + scopes?: string[]; url?: string; status?: string; gpcRefNo?: string; @@ -77,6 +86,15 @@ export class UserFile }, field: "user_id", }, + cityId: { + type: DataTypes.UUID, + allowNull: true, + references: { + model: "City", + key: "city_id", + }, + field: "city_id", + }, fileReference: { type: DataTypes.STRING(255), allowNull: true, @@ -100,6 +118,14 @@ export class UserFile type: DataTypes.STRING(255), allowNull: true, }, + subsectors: { + type: DataTypes.ARRAY(DataTypes.STRING(255)), + allowNull: true, + }, + scopes: { + type: DataTypes.ARRAY(DataTypes.NUMBER), + allowNull: true, + }, url: { type: DataTypes.STRING(255), allowNull: true, diff --git a/app/src/models/init-models.ts b/app/src/models/init-models.ts index 6ff4f8f05..bbf517e49 100644 --- a/app/src/models/init-models.ts +++ b/app/src/models/init-models.ts @@ -601,6 +601,8 @@ export function initModels(sequelize: Sequelize) { }); User.hasMany(UserFile, { foreignKey: "userId", as: "user" }); UserFile.belongsTo(User, { as: "userFiles", foreignKey: "userId" }); + UserFile.belongsTo(City, { foreignKey: "cityId", as: "city" }); + City.hasMany(UserFile, { foreignKey: "cityId", as: "userFiles" }); City.hasMany(CityInvite, { as: "cityInvite", foreignKey: "cityId" }); CityInvite.belongsTo(City, { as: "cityInvites", foreignKey: "cityId" }); GasValue.belongsTo(InventoryValue, { diff --git a/app/src/services/api.ts b/app/src/services/api.ts index 31cd21a25..253e6af11 100644 --- a/app/src/services/api.ts +++ b/app/src/services/api.ts @@ -178,9 +178,12 @@ export const api = createApi({ { cityId: string; locode: string; - population: number; + cityPopulation: number; + regionPopulation: number; countryPopulation: number; - year: number; + cityPopulationYear: number; + regionPopulationYear: number; + countryPopulationYear: number; } >({ query: (data) => { @@ -319,10 +322,10 @@ export const api = createApi({ transformResponse: (response: { data: any }) => response.data, }), addUserFile: builder.mutation({ - query: (formData) => { + query: ({ formData, cityId }) => { return { method: "POST", - url: `/user/file`, + url: `city/${cityId}/file`, body: formData, }; }, @@ -331,9 +334,9 @@ export const api = createApi({ invalidatesTags: ["FileData"], }), getUserFiles: builder.query({ - query: () => ({ + query: (cityId: string) => ({ method: "GET", - url: `/user/file`, + url: `/city/${cityId}/file`, }), transformResponse: (response: { data: UserFileResponse }) => { return response.data; @@ -344,7 +347,7 @@ export const api = createApi({ deleteUserFile: builder.mutation({ query: (params) => ({ method: "DELETE", - url: `/user/file/${params.fileId}`, + url: `/city/${params.cityId}/file/${params.fileId}`, }), transformResponse: (response: { data: UserFileResponse }) => response.data, @@ -373,6 +376,7 @@ export const api = createApi({ email: string; userId: string; invitingUserId: string; + inventoryId: string; } >({ query: (data) => { @@ -392,7 +396,9 @@ export const api = createApi({ export const openclimateAPI = createApi({ reducerPath: "openclimateapi", baseQuery: fetchBaseQuery({ - baseUrl: process.env.NEXT_PUBLIC_OPENCLIMATE_API_URL, + baseUrl: + process.env.NEXT_PUBLIC_OPENCLIMATE_API_URL || + "https://app.openclimate.network", }), endpoints: (builder) => ({ getOCCity: builder.query({ @@ -403,6 +409,9 @@ export const openclimateAPI = createApi({ }), getOCCityData: builder.query({ query: (locode) => `/api/v1/actor/${locode}`, + transformResponse: (response: any) => { + return response.data; + }, }), }), }); diff --git a/app/src/util/types.d.ts b/app/src/util/types.d.ts index a15158e51..8bb7ad0f7 100644 --- a/app/src/util/types.d.ts +++ b/app/src/util/types.d.ts @@ -1,7 +1,7 @@ import type { DataSourceWithRelations, InventoryValueData, -} from "@/app/[lng]/data/[step]/types"; +} from "@/app/[lng]/[inventory]/data/[step]/types"; import type { ScopeAttributes } from "@/models/Scope"; import type { SectorAttributes } from "@/models/Sector"; import type { SubCategoryAttributes } from "@/models/SubCategory"; @@ -80,6 +80,14 @@ type EmissionsFactorResponse = EmissionsFactorWithDataSources[]; type InventoryWithCity = InventoryAttributes & { city: CityAttributes }; +interface OCCityAttributes { + actor_id: string; + name: string; + is_part_of: string; + root_path_geo: any; + area: number; +} + declare module "next-auth" { interface Session { user: { diff --git a/app/src/util/validation.ts b/app/src/util/validation.ts index f8f63785d..93b3ccc62 100644 --- a/app/src/util/validation.ts +++ b/app/src/util/validation.ts @@ -44,6 +44,7 @@ export const signupRequest = z confirmPassword: z.string().min(4), inviteCode: z.string().min(6).max(6), acceptTerms: z.literal(true), + inventory: z.string().uuid().optional(), }) .refine((data) => data.password === data.confirmPassword, { message: "Passwords don't match", @@ -105,9 +106,12 @@ export type CreateUserRequest = z.infer; export const createPopulationRequest = z.object({ cityId: z.string().uuid(), - population: z.number().optional(), - countryPopulation: z.number().optional(), - year: z.number(), + cityPopulation: z.number().gte(0), + regionPopulation: z.number().gte(0), + countryPopulation: z.number().gte(0), + cityPopulationYear: z.number().gte(0), + regionPopulationYear: z.number().gte(0), + countryPopulationYear: z.number().gte(0), datasourceId: z.string().optional(), }); @@ -115,12 +119,15 @@ export type CreatePopulationRequest = z.infer; // user file schema validation export const createUserFileRequset = z.object({ - userId: z.string().uuid().optional(), + userId: z.string().uuid(), + cityId: z.string().uuid(), fileReference: z.string().optional(), data: z.any(), fileType: z.string().optional(), fileName: z.string().optional(), - sector: z.string().optional(), + sector: z.string(), + subsectors: z.string().array(), + scopes: z.string().array(), url: z.string().url().optional(), status: z.string().optional(), gpcRefNo: z.string().optional(), @@ -132,6 +139,7 @@ export type CreateUserFileRequetData = z.infer; export const createUserInvite = z.object({ userId: z.string().optional(), invitingUserId: z.string().uuid(), + inventoryId: z.string().uuid(), email: z.string().email(), name: z.string(), cityId: z.string(), diff --git a/app/tests/api/city.test.ts b/app/tests/api/city.test.ts index eb6859621..7248d02eb 100644 --- a/app/tests/api/city.test.ts +++ b/app/tests/api/city.test.ts @@ -51,7 +51,10 @@ describe("City API", () => { before(async () => { setupTests(); await db.initialize(); - [user] = await db.models.User.upsert({ userId: testUserID, name: "TEST_USER" }); + [user] = await db.models.User.upsert({ + userId: testUserID, + name: "TEST_USER", + }); Auth.getServerSession = mock.fn(() => Promise.resolve(mockSession)); }); diff --git a/app/tests/api/datasource.test.ts b/app/tests/api/datasource.test.ts index 0e604c1e8..47402c5a6 100644 --- a/app/tests/api/datasource.test.ts +++ b/app/tests/api/datasource.test.ts @@ -66,7 +66,7 @@ describe("DataSource API", () => { where: { year: inventoryData.year }, }); await db.models.DataSource.destroy({ - where: { name: { [Op.like]: "XX_DATASOURCE_TEST%" } }, + where: { datasetName: { [Op.like]: "XX_DATASOURCE_TEST%" } }, }); await db.models.City.destroy({ where: { locode } }); city = await db.models.City.create({ @@ -105,7 +105,7 @@ describe("DataSource API", () => { for (let i = 0; i < 3; i++) { const source = await db.models.DataSource.create({ datasourceId: randomUUID(), - name: "XX_DATASOURCE_TEST_" + i, + datasetName: "XX_DATASOURCE_TEST_" + i, sectorId: sector.sectorId, apiEndpoint, startYear: 4000 + i, @@ -134,7 +134,7 @@ describe("DataSource API", () => { const { data } = await res.json(); assert.equal(data.length, 1); const { source } = data[0]; - assert.equal(source.name, "XX_DATASOURCE_TEST_0"); + assert.equal(source.datasetName, "XX_DATASOURCE_TEST_0"); assert.equal(source.sectorId, sector.sectorId); assert.equal(source.apiEndpoint, apiEndpoint); assert.equal(source.geographicalLocation, "EARTH"); diff --git a/app/tests/api/inventory.test.ts b/app/tests/api/inventory.test.ts index c426890cc..f0d168f37 100644 --- a/app/tests/api/inventory.test.ts +++ b/app/tests/api/inventory.test.ts @@ -66,7 +66,7 @@ describe("Inventory API", () => { where: { inventoryName }, }); await db.models.DataSource.destroy({ - where: { name: { [Op.like]: "XX_INVENTORY_TEST_%" } }, + where: { datasetName: { [Op.like]: "XX_INVENTORY_TEST_%" } }, }); await db.models.Sector.destroy({ where: { sectorName: { [Op.like]: "XX_INVENTORY_TEST%" } }, @@ -280,12 +280,12 @@ describe("Inventory API", () => { const userSource = await db.models.DataSource.create({ datasourceId: randomUUID(), sourceType: "user", - name: "XX_INVENTORY_TEST_USER", + datasetName: "XX_INVENTORY_TEST_USER", }); const thirdPartySource = await db.models.DataSource.create({ datasourceId: randomUUID(), sourceType: "third_party", - name: "XX_INVENTORY_TEST_THIRD_PARTY", + datasetName: "XX_INVENTORY_TEST_THIRD_PARTY", }); const sources = [userSource, thirdPartySource, null]; diff --git a/app/tests/api/population.test.ts b/app/tests/api/population.test.ts new file mode 100644 index 000000000..bc9900527 --- /dev/null +++ b/app/tests/api/population.test.ts @@ -0,0 +1,151 @@ +import { POST as savePopulations } from "@/app/api/v0/city/[city]/population/route"; +import { db } from "@/models"; +import assert from "node:assert"; +import { after, before, describe, it } from "node:test"; +import { mockRequest, setupTests, testUserID } from "../helpers"; +import { CreatePopulationRequest } from "@/util/validation"; +import { Op } from "sequelize"; +import { keyBy } from "@/util/helpers"; + +const cityId = "76bb1ab7-5177-45a1-a61f-cfdee9c448e8"; + +const validPopulationUpdate: CreatePopulationRequest = { + cityId, + cityPopulation: 1, + cityPopulationYear: 1337, + regionPopulation: 2, + regionPopulationYear: 1338, + countryPopulation: 3, + countryPopulationYear: 1339, +}; + +const overlappingPopulationUpdate: CreatePopulationRequest = { + cityId, + cityPopulation: 4, + cityPopulationYear: 1340, + regionPopulation: 5, + regionPopulationYear: 1340, + countryPopulation: 6, + countryPopulationYear: 1340, +}; + +const invalidPopulationUpdate: CreatePopulationRequest = { + cityId, + cityPopulation: -4, + cityPopulationYear: -1340, + regionPopulation: -5, + regionPopulationYear: -1340, + countryPopulation: -6, + countryPopulationYear: -1340, +}; + +describe("Population API", () => { + before(async () => { + setupTests(); + await db.initialize(); + await db.models.Population.destroy({ where: { cityId } }); + await db.models.City.destroy({ where: { cityId } }); + const city = await db.models.City.create({ + cityId, + name: "Population Test City", + }); + await db.models.User.upsert({ userId: testUserID, name: "TEST_USER" }); + await city.addUser(testUserID); + }); + + after(async () => { + if (db.sequelize) await db.sequelize.close(); + }); + + it("should save correct population information", async () => { + const req = mockRequest(validPopulationUpdate); + const res = await savePopulations(req, { params: { city: cityId } }); + assert.equal(res.status, 200); + const data = await res.json(); + + assert.equal( + data.data.cityPopulation.population, + validPopulationUpdate.cityPopulation, + ); + assert.equal( + data.data.cityPopulation.year, + validPopulationUpdate.cityPopulationYear, + ); + assert.equal( + data.data.regionPopulation.regionPopulation, + validPopulationUpdate.regionPopulation, + ); + assert.equal( + data.data.regionPopulation.year, + validPopulationUpdate.regionPopulationYear, + ); + assert.equal( + data.data.countryPopulation.countryPopulation, + validPopulationUpdate.countryPopulation, + ); + assert.equal( + data.data.countryPopulation.year, + validPopulationUpdate.countryPopulationYear, + ); + + const populations = await db.models.Population.findAll({ + where: { cityId, year: { [Op.in]: [1337, 1338, 1339] } }, + }); + assert.equal(populations.length, 3); + const populationByYear = keyBy(populations, (p) => p.year.toString()); + assert.equal(populationByYear["1337"].population, 1); + assert.equal(populationByYear["1338"].regionPopulation, 2); + assert.equal(populationByYear["1339"].countryPopulation, 3); + }); + + it("should correctly save population information for the same year", async () => { + const req = mockRequest(overlappingPopulationUpdate); + const res = await savePopulations(req, { params: { city: cityId } }); + assert.equal(res.status, 200); + const data = await res.json(); + + assert.equal( + data.data.cityPopulation.population, + overlappingPopulationUpdate.cityPopulation, + ); + assert.equal( + data.data.cityPopulation.year, + overlappingPopulationUpdate.cityPopulationYear, + ); + assert.equal( + data.data.regionPopulation.regionPopulation, + overlappingPopulationUpdate.regionPopulation, + ); + assert.equal( + data.data.regionPopulation.year, + overlappingPopulationUpdate.regionPopulationYear, + ); + assert.equal( + data.data.countryPopulation.countryPopulation, + overlappingPopulationUpdate.countryPopulation, + ); + assert.equal( + data.data.countryPopulation.year, + overlappingPopulationUpdate.countryPopulationYear, + ); + + const populations = await db.models.Population.findAll({ + where: { cityId, year: 1340 }, + }); + assert.equal(populations.length, 1); + console.dir(populations[0].dataValues); + assert.equal(populations[0].population, 4); + assert.equal(populations[0].regionPopulation, 5); + assert.equal(populations[0].countryPopulation, 6); + }); + + it("should not save invalid population information", async () => { + const req = mockRequest(invalidPopulationUpdate); + const res = await savePopulations(req, { params: { city: cityId } }); + assert.equal(res.status, 400); + const populations = await db.models.Population.findAll({ + where: { cityId, year: -1340 }, + }); + assert.equal(populations.length, 0); + }); +}); diff --git a/app/tests/api/userfile.test.ts b/app/tests/api/userfile.test.ts index 731aebfd6..54884b66c 100644 --- a/app/tests/api/userfile.test.ts +++ b/app/tests/api/userfile.test.ts @@ -1,12 +1,12 @@ import { POST as createUserFile, GET as findUserFiles, -} from "@/app/api/v0/user/file/route"; +} from "@/app/api/v0/city/[city]/file/route"; import { DELETE as deleteUserfile, GET as findUserFile, -} from "@/app/api/v0/user/file/[file]/route"; +} from "@/app/api/v0/city/[city]/file/[file]/route"; import { db } from "@/models"; import assert from "node:assert"; @@ -19,6 +19,7 @@ import { mockRequestFormData, setupTests, testUserID, + testCityID, } from "../helpers"; import { randomUUID } from "node:crypto"; import fs from "fs"; @@ -28,13 +29,18 @@ enum STATUS { PENDING = "pending", } +const fileId = "9218f7d2-383c-43ab-8c05-867bc783e672"; + const fileData = { - id: randomUUID(), + id: fileId, userId: testUserID, + cityId: testCityID, sector: "Energy Sector", url: "http://www.acme.com", status: STATUS.INPROGRESS, data: testFileFormat, + subsectors: "test1, test2, test3", + scopes: "1,2,3", gpc_ref_no: "XXXTESTXXX", file_reference: "XXXTESTXXX", }; @@ -43,7 +49,10 @@ const invalidFileData = { id: "1", userId: "2", sector: "333", + subsectors: "INVALID_SUBSECTOR", + scopes: "INVALID_SCOPE", url: "invalid.com", + cityId: "XXINVALID_ID", status: "7", data: "", gpc_ref_no: "43", @@ -56,6 +65,7 @@ describe("UserFile API", () => { await db.initialize(); await db.models.UserFile.destroy({ where: { userId: testUserID } }); await db.models.User.upsert({ userId: testUserID, name: "TEST_USER" }); + await db.models.City.upsert({ cityId: testCityID, name: "TEST_CITY" }); }); after(async () => { if (db.sequelize) await db.sequelize.close(); @@ -72,19 +82,24 @@ describe("UserFile API", () => { const fileStream = await getFileDataFromStream(path); const formData = new FormData(); - formData.append("id", randomUUID()); + formData.append("id", fileData.id); formData.append("userId", fileData.userId); + formData.append("cityId", fileData.cityId); formData.append("sector", fileData.sector); + formData.append("subsectors", fileData.subsectors); + formData.append("scopes", fileData.scopes); formData.append("url", fileData.url); formData.append("data", fileStream); formData.append("status", fileData.status); formData.append("fileReference", fileData.file_reference); formData.append("gpcRefNo", fileData.gpc_ref_no); const req = mockRequestFormData(formData); - const res = await createUserFile(req, { params: { user: testUserID } }); + const res = await createUserFile(req, { + params: { city: testCityID }, + }); assert.equal(res.status, 200); const { data } = await res.json(); - assert.equal(data?.sector, fileData.sector); + assert.equal(data?.sector, fileData?.sector); assert.equal(data?.url, fileData.url); assert.equal(data?.status, fileData.status); assert.equal(data?.gpcRefNo, fileData.gpc_ref_no); @@ -98,10 +113,13 @@ describe("UserFile API", () => { const formData = new FormData(); formData.append("id", invalidFileData.id); formData.append("userId", invalidFileData.userId); + formData.append("cityId", invalidFileData.cityId); formData.append("sector", invalidFileData.sector); formData.append("url", invalidFileData.url); formData.append("data", fileStream); formData.append("status", invalidFileData.status); + formData.append("subsectors", invalidFileData.subsectors); + formData.append("scopes", invalidFileData.scopes); formData.append("fileReference", invalidFileData.file_reference); formData.append("gpcRefNo", invalidFileData.gpc_ref_no); const req = mockRequestFormData(formData); @@ -112,7 +130,7 @@ describe("UserFile API", () => { it("should find all user files", async () => { const req = mockRequest(); const res = await findUserFiles(req, { - params: { user: testUserID }, + params: { user: testUserID, city: testCityID }, }); const { data } = await res.json(); @@ -126,17 +144,16 @@ describe("UserFile API", () => { it("should find a user file", async () => { const getFilesReq = mockRequest(); const getFilesRes = await findUserFiles(getFilesReq, { - params: { user: testUserID }, + params: { user: testUserID, file: randomUUID(), city: testCityID }, }); const { data: userFilesData } = await getFilesRes.json(); const userFiles = userFilesData[0]; const req = mockRequest(); const res = await findUserFile(req, { - params: { user: testUserID, file: userFiles.id }, + params: { user: testUserID, file: userFiles.id, city: testCityID }, }); const { data: userFile } = await res.json(); - assert.equal(userFile?.sector, fileData.sector); assert.equal(userFile?.url, fileData.url); assert.equal(userFile?.status, fileData.status); @@ -146,7 +163,7 @@ describe("UserFile API", () => { it("should not find a user file", async () => { const req = mockRequest(); const res = await findUserFile(req, { - params: { user: testUserID, file: randomUUID() }, + params: { user: testUserID, file: randomUUID(), city: testCityID }, }); assert.equal(res.status, 404); @@ -158,18 +175,23 @@ describe("UserFile API", () => { formData.append("id", randomUUID()); formData.append("userId", fileData.userId); formData.append("sector", fileData.sector); + formData.append("subsectors", fileData.subsectors); + formData.append("scopes", fileData.scopes); formData.append("url", fileData.url); + formData.append("cityId", fileData.cityId); formData.append("data", fileStream); formData.append("status", fileData.status); formData.append("fileReference", fileData.file_reference); formData.append("gpcRefNo", fileData.gpc_ref_no); const req = mockRequestFormData(formData); - const res = await createUserFile(req, { params: { user: testUserID } }); + const res = await createUserFile(req, { + params: { user: testUserID, city: testCityID }, + }); assert.equal(res.status, 200); const { data } = await res.json(); const deletRequest = mockRequest(); const deleteResponse = await deleteUserfile(deletRequest, { - params: { user: testUserID, file: data.id }, + params: { user: testUserID, file: data.id, city: testCityID }, }); const { deleted } = await deleteResponse.json(); @@ -180,7 +202,7 @@ describe("UserFile API", () => { it("should not delete a non-existent user file", async () => { const deletRequest = mockRequest(); const deleteResponse = await deleteUserfile(deletRequest, { - params: { user: testUserID, file: randomUUID() }, + params: { user: testUserID, file: randomUUID(), city: testCityID }, }); assert.equal(deleteResponse.status, 404); diff --git a/app/tests/helpers.ts b/app/tests/helpers.ts index 5bc1c0d54..26fe93901 100644 --- a/app/tests/helpers.ts +++ b/app/tests/helpers.ts @@ -75,6 +75,8 @@ export const testFileFormat = { }; export const testUserID = "beb9634a-b68c-4c1b-a20b-2ab0ced5e3c2"; +export const testCityID = "ceb9634a-b68c-4c1b-a20b-2ab0ced5e3cc"; + export const testUserData = { id: testUserID, name: "Test User", diff --git a/global-api/Dockerfile b/global-api/Dockerfile index 84a703499..cb7866e6c 100644 --- a/global-api/Dockerfile +++ b/global-api/Dockerfile @@ -1,5 +1,9 @@ FROM python:3.11 +RUN apt-get update && \ + apt-get install -y postgresql-client gdal-bin libgdal-dev && \ + rm -rf /var/lib/apt/lists/* + WORKDIR /opt/app COPY ./requirements.txt /opt/app/requirements.txt diff --git a/global-api/import_everything.sh b/global-api/import_everything.sh new file mode 100755 index 000000000..1e7217a70 --- /dev/null +++ b/global-api/import_everything.sh @@ -0,0 +1,104 @@ +#!/bin/bash + +if command -v python3 &>/dev/null; then + python_cmd=python3 +else + python_cmd=python +fi + +export PGPASSWORD=$CC_GLOBAL_API_DB_PASSWORD +export DB_URI="postgresql://$CC_GLOBAL_API_DB_USER:$CC_GLOBAL_API_DB_PASSWORD@$CC_GLOBAL_API_DB_HOST/$CC_GLOBAL_API_DB_NAME" + +# A script to import all of our data into the Global API database + +# Import OSM + +pushd importer/osm +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./osm_geometry_import.sql +popd + +# Import Carbon Monitor + +pushd importer/carbon_monitor +$python_cmd importer.py \ + --database_uri $DB_URI \ + --file ./processed/carbon-monitor-cities-all-cities-FUA-v0325_processed.csv +popd + +# Import Climate Trace + +pushd importer/climatetrace +$python_cmd climatetrace_importer.py \ + --database_uri $DB_URI \ + --file ./climatetrace_data.tar.gz +$python_cmd climatetrace_importer_road_transportation.py \ + --database_uri $DB_URI \ + --file ./climatetrace_data.tar.gz +popd + +# Import Crosswalk Labs + +# Import EDGAR + +pushd importer/edgar +$python_cmd citycelloverlapedgar_importer.py --database_uri $DB_URI +$python_cmd gridcellemissionsedgar_importer.py --database_uri $DB_URI +popd + +# Import EPA + +pushd importer/ghgrp_epa +$python_cmd ./ghgrp_importer.py \ + --file ./2022_data_summary_spreadsheets_0.zip \ + --output ./epa.csv \ + --apibase $CC_GLOBAL_API_BASE +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./ghgrp_epa_load.sql +popd + +# Import IEA + +pushd importer/IEA_energy +$python_cmd ./IEA_energy_transformation.py +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./IEA_energy_load.sql +popd + +# Import Mendoza stationary energy + +pushd importer/mendoza_arg +mkdir -p data +$python_cmd ./extraction_mendoza_stationary_energy.py --filepath data +$python_cmd ./transformation_mendoza_stationary_energy.py --filepath data +popd +pushd importer/.. +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./importer/mendoza_arg/load_mendoza_stationary_energy.sql +popd + +# Import Google EIE + +pushd importer/google_EIE +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./load_transportation_Mendoza.sql +popd + +# Import datasources + +pushd importer/datasource_seeder +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./import_datasource_seeder.sql +popd diff --git a/global-api/importer/argentinian_datasets/ENARGAS/README.md b/global-api/importer/argentinian_datasets/ENARGAS/README.md new file mode 100644 index 000000000..9aeac3251 --- /dev/null +++ b/global-api/importer/argentinian_datasets/ENARGAS/README.md @@ -0,0 +1,22 @@ +# ENARGAS +Gas consumption data for argentinian provinces + +1. Extract the activity data from the source [ENARGAS](https://dod.enargas.gob.ar/) (manually): + - variable: consumo de gas + - aspectos: tipo de usuario + - distribuidora: todos + - desagregación espacial: provincia + - desagregación temporal: anual + - año: 2018 al 2022 (para tener años completos) + + **data accesed: March, 12th 2023** + +2. Transform activity data into emissions data aligned with the global API schema: +```bash +python ./importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py --filepath [path where the transformed data will be saved] +``` + +3. Extract the activity row from the source: +```bash +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/ENARGAS/load_ENARGAS.sql +``` diff --git a/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql b/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql new file mode 100644 index 000000000..3fcc66507 --- /dev/null +++ b/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql @@ -0,0 +1,34 @@ +-- Create a staging table +CREATE TEMP TABLE IF NOT EXISTS ENARGAS_staging (LIKE regionwide_emissions INCLUDING ALL); + +-- Clear the staging table +TRUNCATE ENARGAS_staging; + +-- Load the staging table from the downloaded file +\copy ENARGAS_staging ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) FROM '/Users/maureenfonseca/Documents/OEF/Cities/CityCatalyst/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv' WITH (FORMAT CSV, HEADER); + +-- Update the main table with the staging table +INSERT INTO regionwide_emissions ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) + SELECT "GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year + FROM ENARGAS_staging + ON CONFLICT ON CONSTRAINT regionwide_emissions_pkey + DO UPDATE SET + id = excluded.id, + source_name = excluded.source_name, + "GPC_refno" = excluded."GPC_refno", + region_name = excluded.region_name, + region_code = excluded.region_code, + temporal_granularity = excluded.temporal_granularity, + year = excluded.year, + activity_name = excluded.activity_name, + activity_value = excluded.activity_value, + activity_units = excluded.activity_units, + gas_name = excluded.gas_name, + emission_factor_value = excluded.emission_factor_value, + emission_factor_units = excluded.emission_factor_units, + emissions_value = excluded.emissions_value, + emissions_units = excluded.emissions_units; + +-- Drop the staging table +DROP TABLE ENARGAS_staging; + diff --git a/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv b/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv new file mode 100644 index 000000000..4b332ab92 --- /dev/null +++ b/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv @@ -0,0 +1,1549 @@ +GPC_refno,activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_code,region_name,source_name,temporal_granularity,year +I.2.1,natural gas consumption by commercial buildings,TJ,16809.542802669082,kg/TJ,56100.0,kg,943015351.2297355,CO2,8e3ace5b-883d-357b-a1df-3211049b1223,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,146786.40084474,kg/TJ,56100.0,kg,8234717087.3899145,CO2,d95b11e6-7d11-360d-a2a2-8cf32219a8db,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,5984.119720620001,kg/TJ,56100.0,kg,335709116.32678205,CO2,af51fc6e-273d-3db1-b32a-ef5893dd0ca0,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,189238.92168875044,kg/TJ,56100.0,kg,10616303506.7389,CO2,9542ae7d-9dcc-3dcd-86f3-0a2b46a1a05f,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,4930.846448040001,kg/TJ,56100.0,kg,276620485.73504406,CO2,d72460c2-cce2-3913-bf0f-f9016893f912,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,37187.04359526001,kg/TJ,56100.0,kg,2086193145.6940866,CO2,874924f8-5ea8-353f-b9ec-7d531a65c07b,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1674.7189067400002,kg/TJ,56100.0,kg,93951730.668114,CO2,8ec2ed43-7354-3848-963f-92a3b110441d,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,2606.3423668200003,kg/TJ,56100.0,kg,146215806.778602,CO2,3f1e17d8-55c1-38d9-8c5b-b8a53baeeb50,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,120.98803752000002,kg/TJ,56100.0,kg,6787428.904872001,CO2,ff1f50bf-1be7-3e19-a899-cf20874b10a0,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,550.9860627600001,kg/TJ,56100.0,kg,30910318.120836005,CO2,a2045e3f-1ff5-35ac-af13-56410f64c380,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,11.639454060000002,kg/TJ,56100.0,kg,652973.3727660001,CO2,2975bdfa-be1d-396a-bc34-08044ddaea46,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,3309.1473955800006,kg/TJ,56100.0,kg,185643168.89203805,CO2,0f947a8e-ec58-3a8e-a2e3-f245a40f9b63,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3450.4558177800004,kg/TJ,56100.0,kg,193570571.37745804,CO2,5235c5df-b63b-3ad3-9131-16732805674b,AR-U,CHUBUT,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,24588.054742200005,kg/TJ,56100.0,kg,1379389871.0374203,CO2,95046398-b20d-3a41-b13a-a66abc895628,AR-U,CHUBUT,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1591.4520430800003,kg/TJ,56100.0,kg,89280459.61678801,CO2,1e636409-f354-3c5f-991a-5203bcbf8a31,AR-U,CHUBUT,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,22059.178975980005,kg/TJ,56100.0,kg,1237519940.5524783,CO2,2ce9921c-43e2-36b9-9808-cc03b83a8728,AR-U,CHUBUT,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3381.6701478000004,kg/TJ,56100.0,kg,189711695.29158002,CO2,bd18a692-8306-3b55-b46b-cd2fb0564d5a,AR-X,CORDOBA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,22210.997941980004,kg/TJ,56100.0,kg,1246036984.5450783,CO2,eb5ec795-9ee5-30e9-a601-3bd495549762,AR-X,CORDOBA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,508.3210405200001,kg/TJ,56100.0,kg,28516810.373172008,CO2,60e1ee43-f65e-3954-b8cc-98d2cab01957,AR-X,CORDOBA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,19592.042922600005,kg/TJ,56100.0,kg,1099113607.9578602,CO2,bed36eab-949e-3815-8419-0957a49bc2f2,AR-X,CORDOBA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,0.08836642380000001,kg/TJ,56100.0,kg,4957.35637518,CO2,99059266-cec9-3c58-a3ea-82e347169818,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,0.0031142352000000004,kg/TJ,56100.0,kg,174.70859472000004,CO2,66b17d1c-11f0-3866-920f-0cc976ebd75d,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,850.3808493000001,kg/TJ,56100.0,kg,47706365.64573001,CO2,4910c274-e115-3249-8978-a2ef7a0dbc5d,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3559.3372659600004,kg/TJ,56100.0,kg,199678820.62035602,CO2,20491d9a-0e99-3d27-a5dc-172323a5b70f,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,56.71800858000001,kg/TJ,56100.0,kg,3181880.2813380007,CO2,731f3dfe-fcdf-3873-9f51-997930f4ac53,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,4484.109408600001,kg/TJ,56100.0,kg,251558537.82246006,CO2,ff03845b-5c9b-3ed5-ba0e-6119acd385a4,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,342.6088095178201,kg/TJ,56100.0,kg,19220354.213949706,CO2,d8181ea4-f23a-352e-bf81-12689815b0a4,AR-Y,JUJUY,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,1898.9438411400004,kg/TJ,56100.0,kg,106530749.48795402,CO2,7b22653e-512b-3185-bfa7-5e691fba4ed7,AR-Y,JUJUY,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,86.67998758332001,kg/TJ,56100.0,kg,4862747.303424253,CO2,29e377c3-952f-3872-b242-88571c088ae3,AR-Y,JUJUY,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,5888.236194822181,kg/TJ,56100.0,kg,330330050.5295243,CO2,eb6362b8-26ed-3bc3-b71d-55838b7fcdac,AR-Y,JUJUY,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,780.1159176000001,kg/TJ,56100.0,kg,43764502.97736,CO2,c5431950-64af-347e-8122-2a23872ddf6e,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,9036.031288680002,kg/TJ,56100.0,kg,506921355.2949481,CO2,ee11bccb-1c5e-3940-a1c4-d3f50e9734c5,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,541.7990689200001,kg/TJ,56100.0,kg,30394927.766412005,CO2,d9e18469-301c-3b34-be39-6ed19984704e,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,1222.2594601200003,kg/TJ,56100.0,kg,68568755.71273202,CO2,9ab10331-c2db-3182-b30d-b0aa18e7b512,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,87.43215324000002,kg/TJ,56100.0,kg,4904943.796764001,CO2,26ce85d6-a125-36f0-9a98-92823ee6cfd1,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,423.14670780000006,kg/TJ,56100.0,kg,23738530.30758,CO2,3fd5a0fd-beb0-3186-a81b-75516959d37a,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,14.403337800000003,kg/TJ,56100.0,kg,808027.2505800001,CO2,6e75228b-c652-3efc-b840-c6449a86f022,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,492.2827292400001,kg/TJ,56100.0,kg,27617061.110364005,CO2,a9a47a52-bb95-3951-8dbd-0dfd3668f13a,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1751.0565970800003,kg/TJ,56100.0,kg,98234275.09618802,CO2,0f01aab8-aaf2-3027-bd70-302054d84a62,AR-M,MENDOZA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,16814.7290433,kg/TJ,56100.0,kg,943306299.32913,CO2,8c4318ac-e53c-39b6-bca4-8d4d8ce79a13,AR-M,MENDOZA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,550.16857602,kg/TJ,56100.0,kg,30864457.114722002,CO2,cabe4cc0-18b3-36b8-839b-0584ecc434d7,AR-M,MENDOZA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,16230.809943300002,kg/TJ,56100.0,kg,910548437.8191302,CO2,20fd9494-bb62-3e3d-b6fe-22cc50b0788e,AR-M,MENDOZA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3006.9497973600005,kg/TJ,56100.0,kg,168689883.63189602,CO2,229c57e3-bbe3-3dbb-996d-70eb49c43c5a,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,23504.417676420006,kg/TJ,56100.0,kg,1318597831.6471622,CO2,2144b17a-bd66-3935-abb1-675c50e5656f,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1357.5729795600002,kg/TJ,56100.0,kg,76159844.15331602,CO2,5c3a9c24-e6be-3891-855f-2049e7338478,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,1811.1224085000003,kg/TJ,56100.0,kg,101603967.11685002,CO2,91407476-42b1-3526-9814-1c3b0fb0339f,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,4211.263477140001,kg/TJ,56100.0,kg,236251881.06755406,CO2,2e891239-dfdf-366d-a9a2-e3e07bfeecf3,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,25182.562241880005,kg/TJ,56100.0,kg,1412741741.7694683,CO2,69159adc-f01e-3e88-911a-19462fb1bbce,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1351.4612929800003,kg/TJ,56100.0,kg,75816978.53617802,CO2,fcc8504a-0ae4-3f97-8c48-e6e744609f3e,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,5563.191905400001,kg/TJ,56100.0,kg,312095065.89294004,CO2,983e20b9-1986-345d-9a9d-9174e2fb75b3,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,703.8553824370802,kg/TJ,56100.0,kg,39486286.9547202,CO2,81e5302b-d4e8-3ff8-ba1b-4ff1ea274297,AR-A,SALTA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,4266.035088720001,kg/TJ,56100.0,kg,239324568.47719207,CO2,3b7e8757-70d4-3d58-aa63-59a611f1c7d6,AR-A,SALTA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,157.12916522334004,kg/TJ,56100.0,kg,8814946.169029376,CO2,fa29ad48-0848-3fe0-acc3-62eb96a39243,AR-A,SALTA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,4351.300240324021,kg/TJ,56100.0,kg,244107943.48217756,CO2,6495ec35-93c5-30cf-b2f6-7233062855d1,AR-A,SALTA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,408.1205229600001,kg/TJ,56100.0,kg,22895561.338056006,CO2,63ef7781-20c4-377e-801e-5c5c9a44fbda,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3790.5303016200005,kg/TJ,56100.0,kg,212648749.92088202,CO2,533dd1f5-e9a1-35b3-a171-40316b153624,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,80.89225932000001,kg/TJ,56100.0,kg,4538055.747852,CO2,b679491a-a57c-3ec1-b790-06ac28e0c6aa,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,6303.484540380001,kg/TJ,56100.0,kg,353625482.715318,CO2,c4e1681a-b5c2-3ea2-a29b-04335cc5df3d,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,970.6681839000001,kg/TJ,56100.0,kg,54454485.11679001,CO2,f972ce4b-2212-32a1-b153-0859adb8cec0,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3410.6325351600008,kg/TJ,56100.0,kg,191336485.22247604,CO2,48d2e35f-adce-3a9d-94e3-725150fb9a0e,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,122.58408306000003,kg/TJ,56100.0,kg,6876967.059666001,CO2,688250f9-450e-312e-b2b9-ca727cfc5ef5,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,3730.581274020001,kg/TJ,56100.0,kg,209285609.47252205,CO2,70dbcf58-50f4-3ec4-a415-acf38407cfad,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1589.1552946200002,kg/TJ,56100.0,kg,89151612.02818201,CO2,e40d1f59-4a09-3cf6-a087-4b81799f95df,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,12953.855954100001,kg/TJ,56100.0,kg,726711319.0250101,CO2,21e31090-6863-3c19-aafb-83e0608edf64,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1111.12019142,kg/TJ,56100.0,kg,62333842.738662004,CO2,a4eef1d9-d9ae-3771-84a3-1d5106188b4f,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,80.58083580000002,kg/TJ,56100.0,kg,4520584.888380001,CO2,62a821cf-b7f5-38e5-afe1-c9c0a4951313,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1663.5855159000002,kg/TJ,56100.0,kg,93327147.44199002,CO2,2ee91349-6090-39c4-9a94-2741fd749eea,AR-S,SANTA FE,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,18438.167667546328,kg/TJ,56100.0,kg,1034381206.149349,CO2,c784c937-6862-36d4-87c3-c31f13ceb68c,AR-S,SANTA FE,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,199.42783662000002,kg/TJ,56100.0,kg,11187901.634382002,CO2,17e6f6a2-069a-346a-bce4-ed080c7b8347,AR-S,SANTA FE,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,72102.05797242,kg/TJ,56100.0,kg,4044925452.2527623,CO2,3d85ab5a-88d0-3f07-809a-4cb865730371,AR-S,SANTA FE,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,316.56200808000006,kg/TJ,56100.0,kg,17759128.653288003,CO2,fad4a5f2-19d4-381d-8602-2b83e1c921d2,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,1220.1184234200002,kg/TJ,56100.0,kg,68448643.553862,CO2,ebfec5ff-cfe6-3d64-92a3-a34c4fdc236d,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,45.05375742222001,kg/TJ,56100.0,kg,2527515.7913865424,CO2,b68a9707-7853-385b-a3eb-079d11466047,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,932.4794854806001,kg/TJ,56100.0,kg,52312099.135461666,CO2,12e83cdd-2dce-3fa0-9bc3-38cd5bcef2b4,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,2825.3509572600005,kg/TJ,56100.0,kg,158502188.70228603,CO2,0ebdee0e-8f3c-33d4-bdc5-069a2f5b352e,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,12237.036866940001,kg/TJ,56100.0,kg,686497768.235334,CO2,95c7b1ca-f63b-3d46-9832-8d7cdf45670a,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1269.2454837000002,kg/TJ,56100.0,kg,71204671.63557002,CO2,1d718edb-64f9-31f8-80a4-d7447a9bfa6c,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,771.7074825600001,kg/TJ,56100.0,kg,43292789.771616004,CO2,78e72c8f-e82a-3e50-a30c-c7dd8e11138c,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,786.0841547211002,kg/TJ,56100.0,kg,44099321.07985372,CO2,a6b46b7b-87f9-33a2-8dfb-15650af84121,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,4450.31995668,kg/TJ,56100.0,kg,249662949.569748,CO2,f2c489c0-c551-3217-b754-00e66cc7e2e3,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,78.56709346380002,kg/TJ,56100.0,kg,4407613.943319181,CO2,a974c726-8033-36d1-a875-352b5ef3d2f8,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,12182.842673494022,kg/TJ,56100.0,kg,683457473.9830147,CO2,1d7c1ad4-25f9-3308-9eb3-8d7341eb0ee1,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,20654.135942834044,kg/TJ,56100.0,kg,1158697026.3929899,CO2,57e512cf-e4dc-33d2-b823-6b4d119593b7,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,138548.80613006224,kg/TJ,56100.0,kg,7772588023.896491,CO2,f567784d-0940-3b7e-9460-4ff06488a5a1,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,5355.793183785601,kg/TJ,56100.0,kg,300459997.61037225,CO2,2cc4fdd3-dad0-367b-8976-ef39fa0556df,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,207413.53058133484,kg/TJ,56100.0,kg,11635899065.612885,CO2,74cef4dd-c220-3ef0-91e5-5741596a3261,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,6759.0192942600015,kg/TJ,56100.0,kg,379180982.4079861,CO2,fea8482d-42a2-34e7-b70e-9335091cfdc2,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,35899.112700360005,kg/TJ,56100.0,kg,2013940222.4901962,CO2,d6a7a200-53c5-3261-bb95-c4bfd1950667,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1840.1237238000003,kg/TJ,56100.0,kg,103230940.90518002,CO2,c6a1afba-77ab-3f3e-9104-610628ed0aee,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,2546.6658348000005,kg/TJ,56100.0,kg,142867953.33228004,CO2,657ac2e5-1702-3fb6-b51b-312c5cfb3515,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,113.78636862000002,kg/TJ,56100.0,kg,6383415.279582001,CO2,664750ae-999b-3fbc-b6b4-fc420e548397,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,478.8525899400001,kg/TJ,56100.0,kg,26863630.295634005,CO2,63484970-f3af-341a-91c7-a495a9e9f8c0,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,12.573724620000002,kg/TJ,56100.0,kg,705385.9511820001,CO2,bc2a0606-baf0-36d3-8490-84f990e69a22,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,3008.3901311400004,kg/TJ,56100.0,kg,168770686.35695404,CO2,13d45d1e-af0a-35af-b207-cd0fbe6484c6,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3313.6630366200006,kg/TJ,56100.0,kg,185896496.35438204,CO2,2a0926f4-32a0-3824-8791-2cc3ed04402a,AR-U,CHUBUT,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,24322.137984060006,kg/TJ,56100.0,kg,1364471940.9057662,CO2,49e7bbaa-97fe-3fe1-99df-7e3746f5287c,AR-U,CHUBUT,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1586.4303388200003,kg/TJ,56100.0,kg,88998742.00780202,CO2,63ff5ee8-3ded-307c-8266-3204f02213ef,AR-U,CHUBUT,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,26178.767154420006,kg/TJ,56100.0,kg,1468628837.3629622,CO2,2434f045-0ba3-3aec-83f2-30edfb746c53,AR-U,CHUBUT,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3129.9231598200004,kg/TJ,56100.0,kg,175588689.265902,CO2,bba2b7b5-cbb0-3698-b93b-70200310327b,AR-X,CORDOBA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,20998.236899220003,kg/TJ,56100.0,kg,1178001090.0462422,CO2,8aecc0b1-d337-3a30-96b4-3752e31fe9c1,AR-X,CORDOBA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,623.8202385000001,kg/TJ,56100.0,kg,34996315.37985001,CO2,b36cb668-36b9-34f2-b71d-e2b3ae843e14,AR-X,CORDOBA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,18499.724926200004,kg/TJ,56100.0,kg,1037834568.3598202,CO2,dcdd6899-310e-3680-a97c-6bbb286a2125,AR-X,CORDOBA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,0.31142352000000006,kg/TJ,56100.0,kg,17470.859472000004,CO2,74d7e4aa-e148-3425-813a-ca6499beb6e4,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,0.0,kg/TJ,56100.0,kg,0.0,CO2,0c648bee-3ce2-3900-9e67-c80fb9592176,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,56100.0,kg,0.0,CO2,73ecbe5c-26fd-33f4-bb36-2bdf8f2f5fe7,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,796.0374450600001,kg/TJ,56100.0,kg,44657700.66786601,CO2,4be47e9d-a77f-3489-b945-4899a7758d50,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3134.2052332200005,kg/TJ,56100.0,kg,175828913.58364204,CO2,973a9c7a-f701-303c-8a76-5c7293838471,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,66.13857006,kg/TJ,56100.0,kg,3710373.7803660003,CO2,f011d2fb-6a0e-32ff-bf0d-eb7ca93937de,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4585.399908480001,kg/TJ,56100.0,kg,257240934.86572805,CO2,b791a29b-d5c3-332d-b1f9-a1dd95bf7379,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,324.56364614700004,kg/TJ,56100.0,kg,18208020.548846703,CO2,d5166964-f06c-347f-8d60-fb193f39ea37,AR-Y,JUJUY,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,1858.5366394200003,kg/TJ,56100.0,kg,104263905.47146201,CO2,1f9bad3b-4af0-302b-b990-4a7be2f5b677,AR-Y,JUJUY,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,81.72924895794002,kg/TJ,56100.0,kg,4585010.866540435,CO2,de6425ca-7789-316a-bef9-ba7e7872764e,AR-Y,JUJUY,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4436.271758476621,kg/TJ,56100.0,kg,248874845.6505384,CO2,f2b93fd8-09cd-3a5a-9d30-097b894e3811,AR-Y,JUJUY,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,730.1713705800001,kg/TJ,56100.0,kg,40962613.889538005,CO2,a30354a2-4813-3abf-97f9-af4a75ebfb30,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,8952.725497080002,kg/TJ,56100.0,kg,502247900.38618815,CO2,053c23f1-0590-3023-99c2-0fc6344c11ec,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,548.1443231400001,kg/TJ,56100.0,kg,30750896.528154004,CO2,406e49ad-1fb8-303c-8f97-47633515d08f,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,1189.5210625800003,kg/TJ,56100.0,kg,66732131.61073802,CO2,8413261a-25e4-305f-98f0-d0bd61aa7a0c,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,81.08689902000002,kg/TJ,56100.0,kg,4548975.035022001,CO2,5ac3c962-3238-38d9-a36b-501eecd75c3a,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,349.06683798000006,kg/TJ,56100.0,kg,19582649.610678002,CO2,b007c682-5a48-38dd-8608-a6e5810216a6,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,14.247626040000002,kg/TJ,56100.0,kg,799291.8208440001,CO2,e3522cae-48de-3655-941c-219b05182c8b,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,509.8392301800001,kg/TJ,56100.0,kg,28601980.813098002,CO2,5bb910e8-7d12-32aa-9be8-e08961716a7c,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,1640.1119680800002,kg/TJ,56100.0,kg,92010281.40928802,CO2,be3c0ed8-9d90-3943-b792-471d4b995b06,AR-M,MENDOZA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,16033.250647800003,kg/TJ,56100.0,kg,899465361.3415802,CO2,18eb0a31-1de9-3733-a687-815054d22ea1,AR-M,MENDOZA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,726.1617927600001,kg/TJ,56100.0,kg,40737676.573836006,CO2,6ffe57bd-f8fe-3dc7-849e-1520d3e9fe31,AR-M,MENDOZA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,16059.059872020003,kg/TJ,56100.0,kg,900913258.8203222,CO2,74a9e5b9-6547-3353-a1af-8dc55c61cc60,AR-M,MENDOZA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,2966.9708029800004,kg/TJ,56100.0,kg,166447062.04717803,CO2,c383398c-a89b-3f42-92e1-4a9fbee39f68,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,22095.926951340003,kg/TJ,56100.0,kg,1239581501.970174,CO2,adda4cb7-c7ce-3b22-a567-1377b85cce79,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1359.4415206800002,kg/TJ,56100.0,kg,76264669.31014802,CO2,393ca176-2a66-3572-952c-d151207c180c,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,9213.620550960002,kg/TJ,56100.0,kg,516884112.90885615,CO2,2b055780-2f00-3ead-ac2a-5d8441dabf07,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3992.2548867000005,kg/TJ,56100.0,kg,223965499.14387003,CO2,07fe3e78-ee7e-3490-b26a-9d446367580f,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,23735.143576800005,kg/TJ,56100.0,kg,1331541554.6584802,CO2,e09efc4d-9472-3bf0-8d57-87bfdbe1a7dd,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1386.8078625000003,kg/TJ,56100.0,kg,77799921.08625002,CO2,c08d5d9b-b78d-359f-b4a7-e634840c0833,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,5744.751817560001,kg/TJ,56100.0,kg,322280576.965116,CO2,79dd1fdc-f62d-359c-84b9-363f98294f8e,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,667.5416482477801,kg/TJ,56100.0,kg,37449086.466700464,CO2,e81f44ca-8e40-3326-955f-d2b985699934,AR-A,SALTA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,4166.0681388,kg/TJ,56100.0,kg,233716422.58668002,CO2,50d02b8c-47da-3f92-99d9-953f6828608c,AR-A,SALTA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,156.24553991328003,kg/TJ,56100.0,kg,8765374.789135009,CO2,54f38c29-0618-3fa9-a174-a808b69f40e4,AR-A,SALTA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4109.45842774908,kg/TJ,56100.0,kg,230540617.7967234,CO2,e35c70f3-6c98-3aa1-8a68-8b1e5f2d928a,AR-A,SALTA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,380.4816855600001,kg/TJ,56100.0,kg,21345022.559916005,CO2,d8ec5c4f-1c96-325a-9b78-8e2f9d1ddcca,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3667.9462185600005,kg/TJ,56100.0,kg,205771782.86121604,CO2,3ce16ef8-f4ce-3142-8d97-d66c5faf678e,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,105.41686152000001,kg/TJ,56100.0,kg,5913885.931272001,CO2,8416f523-de96-36b5-8258-25369ef44727,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,6259.573824060001,kg/TJ,56100.0,kg,351162091.5297661,CO2,3cb060e4-ea3d-386f-9474-2f42dc22c0c8,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,912.4709136000001,kg/TJ,56100.0,kg,51189618.252960004,CO2,cfd10edf-9361-3b2d-b8af-b953694c45d3,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3134.2052332200005,kg/TJ,56100.0,kg,175828913.58364204,CO2,2d076887-2553-3574-bb65-172eff2bc9e7,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,165.63838470000002,kg/TJ,56100.0,kg,9292313.381670002,CO2,1028b498-96f2-388b-acfa-d6d43cac1e26,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,3609.3207409200004,kg/TJ,56100.0,kg,202482893.56561202,CO2,ae794b18-3bf8-3844-8a6d-402d67eebfc6,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,1446.4065386400002,kg/TJ,56100.0,kg,81143406.817704,CO2,99520f6e-0877-3366-979c-da4b8e3e7bf2,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,12430.002665520002,kg/TJ,56100.0,kg,697323149.5356721,CO2,555b8155-1994-368d-8469-d24095623fee,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1103.68495488,kg/TJ,56100.0,kg,61916725.96876801,CO2,cc870b29-9b90-387a-910c-e68617d2abc3,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,60.61080258000001,kg/TJ,56100.0,kg,3400266.0247380007,CO2,2108c025-b071-3d64-84ee-ec74a7014f8e,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,4970.080128080761,kg/TJ,56100.0,kg,278821495.1853307,CO2,4880c31f-3e3b-3a8e-a4b1-a7889ff3415f,AR-S,SANTA FE,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,17949.859209553204,kg/TJ,56100.0,kg,1006987101.6559347,CO2,3f48bc79-e344-3d09-bc5f-e6bc999c8018,AR-S,SANTA FE,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,676.0693195680001,kg/TJ,56100.0,kg,37927488.8277648,CO2,db43a105-bd2d-3bb2-b45b-07212ca88e99,AR-S,SANTA FE,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,61964.22155908261,kg/TJ,56100.0,kg,3476192829.4645343,CO2,0f80e4b7-ca64-340a-92d0-645b99fc6a8a,AR-S,SANTA FE,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,313.8273981508801,kg/TJ,56100.0,kg,17605717.03626437,CO2,a96f26a2-4d1d-3116-9d5d-958cdab48b71,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,1245.14908884,kg/TJ,56100.0,kg,69852863.883924,CO2,c817e14d-1a14-3cab-bbfb-ea62fc5393ba,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,41.93488979736001,kg/TJ,56100.0,kg,2352547.3176318966,CO2,893b290c-9f45-32e2-ac2e-366382870400,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,602.0421971067001,kg/TJ,56100.0,kg,33774567.25768588,CO2,d893c6e0-571d-33c9-8bd5-bd608f025c63,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,2834.1875996400004,kg/TJ,56100.0,kg,158997924.33980402,CO2,09f62a31-6c5d-3b95-b856-8830853decb7,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,14654.773364460003,kg/TJ,56100.0,kg,822132785.7462062,CO2,78353480-11e5-3bac-9ea2-17e1a2010567,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1315.8422278800003,kg/TJ,56100.0,kg,73818748.98406802,CO2,5b8778f4-ec2f-3164-a715-ae237cc3b913,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,691.7494938000001,kg/TJ,56100.0,kg,38807146.602180004,CO2,9f3e4d96-bae0-3f4f-bfb6-8098febc5ede,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,732.8711010748801,kg/TJ,56100.0,kg,41114068.770300776,CO2,343d49ac-5efd-3da7-8e3e-f2b728798fd2,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,4257.860221320001,kg/TJ,56100.0,kg,238865958.41605207,CO2,12154094-021c-3421-9142-e108c0b55a79,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,73.94385559764001,kg/TJ,56100.0,kg,4148250.2990276045,CO2,b0c68e7f-a213-30b0-9088-1a4fc0c4d7df,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,9984.093044623502,kg/TJ,56100.0,kg,560107619.8033785,CO2,2f20003b-2275-34b8-8923-fca7e8b99836,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,15860.245695446163,kg/TJ,56100.0,kg,889759783.5145297,CO2,3bb593da-ffb8-3b59-a5f1-48ed621b3700,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,147219.14484686762,kg/TJ,56100.0,kg,8258994025.909274,CO2,caf7f1b4-a610-3b76-bb51-42f461963eb5,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,3959.0045867490007,kg/TJ,56100.0,kg,222100157.31661895,CO2,aed31c41-0ba0-37fc-a144-e2bf17176262,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,223741.9690342711,kg/TJ,56100.0,kg,12551924462.822609,CO2,1a1b8478-eb75-3162-b0ca-08ba77d238d9,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,3762.8525362800005,kg/TJ,56100.0,kg,211096027.28530803,CO2,e85231b3-88af-3f4c-9b23-2a7f1720faef,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,36566.726871360006,kg/TJ,56100.0,kg,2051393377.4832964,CO2,4154e0c5-f3ff-30ab-ac09-df72b307ac1f,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,975.6120322800002,kg/TJ,56100.0,kg,54731835.010908015,CO2,06fd6a5c-9ffe-3c78-931a-8663c1631453,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,2184.0131457600005,kg/TJ,56100.0,kg,122523137.47713603,CO2,20ed06bc-b7af-38a7-b98a-78b4370aea94,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,89.72890170000001,kg/TJ,56100.0,kg,5033791.38537,CO2,049325db-82c9-3b60-b699-740cd5708a20,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,475.3880032800001,kg/TJ,56100.0,kg,26669266.984008003,CO2,17cffcee-496d-361c-8c7c-08bcf4b1ca4c,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,8.447362980000001,kg/TJ,56100.0,kg,473897.06317800004,CO2,b2599c0b-79a0-3924-8081-c6db8c5c7fdb,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,3157.0948619400006,kg/TJ,56100.0,kg,177113021.75483403,CO2,b4c24e69-cebc-3001-b851-4a592dcf6b44,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2246.2589218200005,kg/TJ,56100.0,kg,126015125.51410203,CO2,d765057e-3927-3fc5-ac77-c58dc84f5a0a,AR-U,CHUBUT,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,25193.267425380003,kg/TJ,56100.0,kg,1413342302.5638182,CO2,f148f06d-54c8-33f8-95f7-4dc764b43895,AR-U,CHUBUT,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,1138.9925964600002,kg/TJ,56100.0,kg,63897484.66140601,CO2,47cb4371-7606-3b39-99ec-f010450c3fff,AR-U,CHUBUT,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,28008.808541760005,kg/TJ,56100.0,kg,1571294159.1927364,CO2,760398ee-0269-3dcd-9ea3-e8e4bbade8bf,AR-U,CHUBUT,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2363.5098771000003,kg/TJ,56100.0,kg,132592904.10531001,CO2,9fcb181d-4260-3979-906c-b02e2206f2b7,AR-X,CORDOBA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,21938.930569320004,kg/TJ,56100.0,kg,1230774004.9388523,CO2,8ecf7fbd-895b-3cf0-9c30-48a55f515629,AR-X,CORDOBA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,414.23220954000004,kg/TJ,56100.0,kg,23238426.955194004,CO2,bb7d338f-ee90-3287-83e5-9d29a8a71d85,AR-X,CORDOBA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,18547.178085060004,kg/TJ,56100.0,kg,1040496690.5718663,CO2,da47e6ec-5cf0-3bab-8229-fec08de1c850,AR-X,CORDOBA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2.2578205200000006,kg/TJ,56100.0,kg,126663.73117200003,CO2,5cadda4f-7e4b-3d9d-ac45-6fadedf3a8ed,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,0.0,kg/TJ,56100.0,kg,0.0,CO2,40a0f1f7-d150-3d3e-a5af-eb3ec2c8975d,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,30.830928480000004,kg/TJ,56100.0,kg,1729615.0877280002,CO2,dd4ddae8-35a7-3162-bfba-275733392740,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,528.6024972600001,kg/TJ,56100.0,kg,29654600.096286003,CO2,2d9bfe38-9e41-3a0b-90f9-26b8b91e118f,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3316.2322806600005,kg/TJ,56100.0,kg,186040630.94502604,CO2,53e73315-afdd-31a9-8dff-bab2c66773a8,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,60.06581142000001,kg/TJ,56100.0,kg,3369692.0206620004,CO2,6daf4f84-0a9a-359b-99d1-631859ee197b,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4437.123385020001,kg/TJ,56100.0,kg,248922621.89962202,CO2,85cbc775-38fd-374b-a436-36977d59980f,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,248.59382484000005,kg/TJ,56100.0,kg,13946113.573524004,CO2,c368019f-c776-3f8e-8546-9b069200d480,AR-Y,JUJUY,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,1896.0242456400003,kg/TJ,56100.0,kg,106366960.18040402,CO2,2c59e451-8f0a-3bbf-a53e-7fc1c3d774aa,AR-Y,JUJUY,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,63.37468632000001,kg/TJ,56100.0,kg,3555319.9025520007,CO2,bc9b9c80-f4b6-3805-a07b-cb6235ed95c7,AR-Y,JUJUY,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4244.624721720001,kg/TJ,56100.0,kg,238123446.88849205,CO2,f9299d81-76d9-3e90-af07-7c1966e1a84f,AR-Y,JUJUY,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,612.0640006200001,kg/TJ,56100.0,kg,34336790.434782006,CO2,14399806-ea1f-32b7-a8d0-6954e96f7b9b,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,9804.390968400001,kg/TJ,56100.0,kg,550026333.3272401,CO2,a17f2ff5-f9b3-339e-a355-6e50c4a06c84,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,427.70127678000006,kg/TJ,56100.0,kg,23994041.627358004,CO2,0d061f9d-b8bd-3181-9d5b-a4335b5364f4,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,1125.0174660000002,kg/TJ,56100.0,kg,63113479.84260001,CO2,900ef839-28f1-3fe6-a9fd-bbaa929ea66c,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,65.28215538,kg/TJ,56100.0,kg,3662328.9168180004,CO2,059cb424-fe54-33da-8008-6336f7e4ab14,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,339.68520444000006,kg/TJ,56100.0,kg,19056339.969084002,CO2,7d33c3ed-e6dd-3e5e-9687-642d31fbbb13,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,10.860895260000001,kg/TJ,56100.0,kg,609296.2240860001,CO2,e45561fb-0998-3b93-a08a-e7e44eb503b1,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,392.12113962000006,kg/TJ,56100.0,kg,21997995.932682004,CO2,41cd7bc7-e1d8-3ddc-8d72-bb2c395c3215,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1232.1082289400001,kg/TJ,56100.0,kg,69121271.643534,CO2,b605612d-8ef7-3d0b-8cd7-97f9adf8c0a3,AR-M,MENDOZA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,16810.641609600003,kg/TJ,56100.0,kg,943076994.2985601,CO2,cd90231d-4cff-331a-991c-6b312fdda0d6,AR-M,MENDOZA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,446.9706070800001,kg/TJ,56100.0,kg,25075051.057188004,CO2,9510f320-9130-3e6e-bd1e-d9fc839f4af6,AR-M,MENDOZA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,15838.533091920002,kg/TJ,56100.0,kg,888541706.4567121,CO2,81ade873-8cc2-3867-a34a-463c7cab05a3,AR-M,MENDOZA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1955.4282820800004,kg/TJ,56100.0,kg,109699526.62468801,CO2,6c819009-4c8f-387a-b5c4-c0eb706495a9,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,22395.166026120005,kg/TJ,56100.0,kg,1256368814.0653322,CO2,fc97d424-6791-3799-ba54-e263eb7a54e0,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,870.1173148800001,kg/TJ,56100.0,kg,48813581.364768006,CO2,c421e918-c144-369d-9b96-6da82fbcc5df,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,10418.440293960002,kg/TJ,56100.0,kg,584474500.4911561,CO2,c77683b6-4cc9-32fa-8635-2e68ad56ef57,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2519.8834120800007,kg/TJ,56100.0,kg,141365459.41768804,CO2,10486bd7-6c64-387a-a362-a26ab385d0a2,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,25649.658593940003,kg/TJ,56100.0,kg,1438945847.1200342,CO2,eb11bd0e-9140-3fa8-9666-4783cd64a5b4,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,970.5514000800001,kg/TJ,56100.0,kg,54447933.544488005,CO2,04dd0c94-76ab-3750-88f0-22add37b8fae,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,6203.6733022200015,kg/TJ,56100.0,kg,348026072.25454205,CO2,4cf04011-c4aa-33bb-8a5b-a17302da7dee,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,357.35848920000007,kg/TJ,56100.0,kg,20047811.24412,CO2,72729e37-002a-3636-aedf-eaf0c6803b65,AR-A,SALTA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,4408.005285900001,kg/TJ,56100.0,kg,247289096.53899005,CO2,faeea1d2-acfc-3d6a-800d-9fb30d39f0f9,AR-A,SALTA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,64.65930834000001,kg/TJ,56100.0,kg,3627387.1978740008,CO2,0b33e033-2bd3-3ebc-857f-4566b234d748,AR-A,SALTA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4666.097528100001,kg/TJ,56100.0,kg,261768071.32641006,CO2,7a680745-2d72-31a9-9793-2f7ba79f9cac,AR-A,SALTA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,319.67624328000005,kg/TJ,56100.0,kg,17933837.248008,CO2,410385a1-3838-3faa-af57-9dd7192b0f9a,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3797.8487543400006,kg/TJ,56100.0,kg,213059315.11847404,CO2,673ca442-6271-3d8b-be41-3481dac816fb,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,74.66378892000002,kg/TJ,56100.0,kg,4188638.558412001,CO2,3c91c086-425e-390d-96d0-8d591c47c7b1,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,5156.978851500001,kg/TJ,56100.0,kg,289306513.56915003,CO2,e6559f49-8cbc-3020-ac35-7634765ae1be,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,708.8388594600001,kg/TJ,56100.0,kg,39765860.015706,CO2,8b7ec4d7-b400-3fe5-9369-eb4ec78960b2,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3117.9722822400004,kg/TJ,56100.0,kg,174918245.03366402,CO2,cda5c45d-0ca8-3e06-90c8-c8f5c7f7925d,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,114.25350390000001,kg/TJ,56100.0,kg,6409621.568790001,CO2,93859562-3a17-31f2-90d4-ffdedb3065ea,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,3141.0954786000007,kg/TJ,56100.0,kg,176215456.34946004,CO2,4b912614-b0a4-397f-8926-0aacdb3a306d,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1174.7284453800003,kg/TJ,56100.0,kg,65902265.78581802,CO2,5e0336eb-c0ee-3028-b816-92df864db82f,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,12993.796020540001,kg/TJ,56100.0,kg,728951956.7522941,CO2,7f66df55-32ac-365c-badc-76cd475f6024,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,930.6113336400001,kg/TJ,56100.0,kg,52207295.817204006,CO2,ec71460f-a905-3e35-afe6-aeaef3bc6348,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,51.38488080000001,kg/TJ,56100.0,kg,2882691.8128800006,CO2,48019617-28f7-34ef-a420-de5381f83b0e,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,4820.927336691361,kg/TJ,56100.0,kg,270454023.58838534,CO2,71154836-fa61-3710-b2c0-66278de69a02,AR-S,SANTA FE,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,18992.980853940004,kg/TJ,56100.0,kg,1065506225.9060342,CO2,6ad01342-ccc6-3531-9a61-17570cdb1325,AR-S,SANTA FE,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,431.83153121400005,kg/TJ,56100.0,kg,24225748.901105404,CO2,c297ba10-a65a-3270-9aa8-d527fdf2ecf0,AR-S,SANTA FE,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,51037.77947263855,kg/TJ,56100.0,kg,2863219428.4150224,CO2,85b3be26-7867-3140-862f-77affee095a3,AR-S,SANTA FE,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,204.95560410000004,kg/TJ,56100.0,kg,11498009.390010003,CO2,86698917-6d02-3839-8873-b6443c8cf12c,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,1227.5925879000001,kg/TJ,56100.0,kg,68867944.18119001,CO2,6e585e6a-8569-3536-9437-dffa01da646a,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,31.726271100000005,kg/TJ,56100.0,kg,1779843.8087100002,CO2,2053b5ed-3471-3e48-ae53-c549c21d46cd,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,450.0459143400001,kg/TJ,56100.0,kg,25247575.794474006,CO2,7ab9de81-920c-398c-beb6-dab2fafba546,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2477.6465971800003,kg/TJ,56100.0,kg,138995974.10179803,CO2,a51a72a4-de93-35dc-a4ef-d82edd691bf0,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,14844.313504320002,kg/TJ,56100.0,kg,832765987.5923522,CO2,4ed04564-d5c2-3704-8f9c-a6df0e4c4b71,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,1192.9467213000003,kg/TJ,56100.0,kg,66924311.064930014,CO2,b5a17412-b164-30a8-b56d-bdbc9e7000f4,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,713.4323563800001,kg/TJ,56100.0,kg,40023555.192918,CO2,e3d2599f-05ad-36b1-aa40-10a3510ec0fa,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,569.7882577800001,kg/TJ,56100.0,kg,31965121.261458006,CO2,a2713c5a-77aa-3d5d-b601-c1c6aee242c4,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,4418.048694420001,kg/TJ,56100.0,kg,247852531.75696206,CO2,a2ccdd30-b415-3f73-910f-5d03f3760a5f,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,56.83479240000001,kg/TJ,56100.0,kg,3188431.853640001,CO2,774fa68f-67ab-37bf-b8ea-543e1e01aa8a,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,7720.2669166800015,kg/TJ,56100.0,kg,433106974.0257481,CO2,d2559db1-5ab1-3e7b-97ab-f90442cdff60,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,15277.002618052202,kg/TJ,56100.0,kg,857039846.8727285,CO2,7235634c-c98f-3efb-86bc-5ced860aff7a,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,153297.18484048743,kg/TJ,56100.0,kg,8599972069.551346,CO2,85026f0c-31c5-30a5-a390-5c3848580779,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,4810.104045821401,kg/TJ,56100.0,kg,269846836.9705806,CO2,df8be044-3c76-3c5a-ba77-165382295ddd,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,184850.69607844384,kg/TJ,56100.0,kg,10370124050.0007,CO2,4aae2d5e-1bfb-33b6-b3cd-4bd1d87ed540,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,4354.71293604,kg/TJ,56100.0,kg,244299395.71184403,CO2,1a7c15e9-1278-3fa1-9f37-21d084118479,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,36228.910208040004,kg/TJ,56100.0,kg,2032441862.6710443,CO2,42fc6950-4a31-3813-921e-17d8dc727d2f,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1391.1288638400003,kg/TJ,56100.0,kg,78042329.26142402,CO2,c8e0ac7b-5093-351e-ae8a-415dbc829578,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,2553.7117919400002,kg/TJ,56100.0,kg,143263231.52783403,CO2,d57ba7a1-db3e-38d2-be54-ca9629dded40,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,101.67977928000002,kg/TJ,56100.0,kg,5704235.617608001,CO2,4c08755d-6ff5-3c5e-aa3f-0f773aa17c69,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,471.06700194000007,kg/TJ,56100.0,kg,26426858.808834005,CO2,2186f113-8753-3670-b86a-e7c0cdd55eb5,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,6.384182160000001,kg/TJ,56100.0,kg,358152.61917600007,CO2,b6eeb8d9-3eac-33b2-9a24-bfad0c9bcf4a,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,3327.1321038600004,kg/TJ,56100.0,kg,186652111.02654603,CO2,725bb9e7-51e1-313d-a85e-343b6a20b0f2,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2629.4266352400005,kg/TJ,56100.0,kg,147510834.23696402,CO2,ca913064-9dfc-3906-8027-780f888fc1ce,AR-U,CHUBUT,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,24314.352396060003,kg/TJ,56100.0,kg,1364035169.4189663,CO2,edb29c2c-de12-3504-b355-a63f43dfc66e,AR-U,CHUBUT,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1503.4748986800003,kg/TJ,56100.0,kg,84344941.81594801,CO2,e288456a-40e9-39b3-95f2-a2140e55a41a,AR-U,CHUBUT,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,22628.110819080004,kg/TJ,56100.0,kg,1269437016.9503882,CO2,f2795d6d-60a2-3833-b2c7-dd6c647d3b2f,AR-U,CHUBUT,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2809.0790783400003,kg/TJ,56100.0,kg,157589336.294874,CO2,4f409180-2e3f-3b59-bbb9-45bb9ec9aa08,AR-X,CORDOBA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,21901.715458680002,kg/TJ,56100.0,kg,1228686237.2319481,CO2,aaad4464-6f73-36e5-acef-ff57fdc20fd4,AR-X,CORDOBA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,541.3708615800001,kg/TJ,56100.0,kg,30370905.334638007,CO2,b19bc515-f6a4-3a03-9924-79ced7add20e,AR-X,CORDOBA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,24079.227638460005,kg/TJ,56100.0,kg,1350844670.5176063,CO2,346594bd-3774-3fff-b7f7-515016b2a173,AR-X,CORDOBA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2.9195955000000007,kg/TJ,56100.0,kg,163789.30755000003,CO2,590548d8-3e7a-3745-a13e-86c1df178813,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,0.03892794000000001,kg/TJ,56100.0,kg,2183.8574340000005,CO2,93e6bd71-4a19-3aef-8197-7b4b6db57c40,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,56100.0,kg,0.0,CO2,90baa49f-ccae-3912-b08f-4d045291ef91,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,125.73724620000002,kg/TJ,56100.0,kg,7053859.511820001,CO2,f66b39c2-c7e8-3b91-a5d0-5304caf1aa88,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,655.1183022600001,kg/TJ,56100.0,kg,36752136.756786,CO2,44241448-ba08-3ef9-bb97-fc224f202ea7,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3454.3096838400006,kg/TJ,56100.0,kg,193786773.26342404,CO2,1d18835e-26b3-316a-974e-16e9b6311596,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,64.58145246000001,kg/TJ,56100.0,kg,3623019.4830060005,CO2,11f979df-e7b8-3ab1-be80-1dd36a6f4a11,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,4876.38625998,kg/TJ,56100.0,kg,273565269.18487805,CO2,1cde17c8-c961-32a1-ad36-5fd80be2f6c0,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,388.30620150000004,kg/TJ,56100.0,kg,21783977.90415,CO2,da06878e-fb88-3449-8127-18eb7e54f6ab,AR-Y,JUJUY,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,2028.0678181200003,kg/TJ,56100.0,kg,113774604.59653202,CO2,133ec3f8-35c9-3874-9663-e54f09c1367a,AR-Y,JUJUY,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,108.10288938000002,kg/TJ,56100.0,kg,6064572.094218001,CO2,02b7339e-d213-332f-84a5-cf34e49f6da9,AR-Y,JUJUY,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,4615.170783997391,kg/TJ,56100.0,kg,258911080.9822536,CO2,effb82f5-daed-3429-b414-2e18617db22e,AR-Y,JUJUY,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,685.1317440000001,kg/TJ,56100.0,kg,38435890.83840001,CO2,86249cee-ff33-3970-9e88-db7172decd89,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,9747.322608360002,kg/TJ,56100.0,kg,546824798.3289961,CO2,6cefba6c-6117-36ab-9e35-7c3263aed340,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,549.7403686800001,kg/TJ,56100.0,kg,30840434.682948004,CO2,03104782-fdcb-3b07-bc29-b17ef40c2d33,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,1295.2493476200002,kg/TJ,56100.0,kg,72663488.40148202,CO2,bd9380a0-d93a-3cd6-aff2-3757898bbceb,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,71.62740960000001,kg/TJ,56100.0,kg,4018297.6785600004,CO2,1983d802-f904-32ed-b2fc-d2a1c0721eb4,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,327.5007592200001,kg/TJ,56100.0,kg,18372792.592242002,CO2,9f5d2b6b-0301-3217-9994-e3aee412284e,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,11.717309940000002,kg/TJ,56100.0,kg,657341.0876340001,CO2,2be37dc5-fb2d-3e9c-b5ef-359b5cbccbf6,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,519.0262240200001,kg/TJ,56100.0,kg,29117371.167522006,CO2,aa16a4bd-25ed-3f3c-9293-e043ea32f863,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,1461.8609308200002,kg/TJ,56100.0,kg,82010398.21900201,CO2,0707e539-dab6-3211-8e56-c79ef7421878,AR-M,MENDOZA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,16964.87410788,kg/TJ,56100.0,kg,951729437.4520681,CO2,e5aeaf88-5bbf-39b9-af30-472e177d86fd,AR-M,MENDOZA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,672.9862267200001,kg/TJ,56100.0,kg,37754527.318992004,CO2,ea09a368-73a9-3475-b296-166807191f75,AR-M,MENDOZA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,17084.888946900002,kg/TJ,56100.0,kg,958462269.9210901,CO2,d5fdf209-9a4b-38c3-888a-9932d0c5c672,AR-M,MENDOZA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2375.2271870400004,kg/TJ,56100.0,kg,133250245.19294402,CO2,0aa83e5a-20aa-3a02-ad3e-a53e6ef9aecc,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,21737.789903340003,kg/TJ,56100.0,kg,1219490013.5773742,CO2,70bfeef5-c5db-3db3-a68c-9ed9d0c41ecc,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1237.6749243600002,kg/TJ,56100.0,kg,69433563.25659601,CO2,9d716180-0006-3806-91ca-b4b7912e5b77,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,9276.45024612,kg/TJ,56100.0,kg,520408858.80733204,CO2,bc3921e2-c3ed-3766-ba96-8c01ed1cb893,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,3034.8222024000006,kg/TJ,56100.0,kg,170253525.55464002,CO2,9650dd0f-7b1e-3737-937e-b10a0fda49a6,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,25632.569228280005,kg/TJ,56100.0,kg,1437987133.7065082,CO2,7e271089-91c4-35dc-b4b7-83ad71a173d5,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1347.7631386800003,kg/TJ,56100.0,kg,75609512.07994802,CO2,56446eb3-3cbf-3f90-93dc-a9998258c98e,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,6303.134188920001,kg/TJ,56100.0,kg,353605827.9984121,CO2,5a00b25e-eb71-3d62-bae0-62b8e2333b9b,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,446.6591835600001,kg/TJ,56100.0,kg,25057580.197716005,CO2,a9b5a791-4ba6-32e6-b2cd-0c617ea68a41,AR-A,SALTA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,4608.289537200001,kg/TJ,56100.0,kg,258525043.03692007,CO2,86c39487-c1e6-3f09-95f7-76d86ac655aa,AR-A,SALTA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,97.59234558000001,kg/TJ,56100.0,kg,5474930.587038001,CO2,d5284cad-b861-34c0-981a-c14f6cf2e0e4,AR-A,SALTA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,5601.360328591131,kg/TJ,56100.0,kg,314236314.43396246,CO2,3e23e491-5661-3273-9806-5a2731e977ff,AR-A,SALTA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,332.9117428800001,kg/TJ,56100.0,kg,18676348.775568005,CO2,71a80970-f3e5-3fb7-bae5-b7c40292bbbc,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3729.3745078800007,kg/TJ,56100.0,kg,209217909.89206803,CO2,5f143211-0895-311c-babe-0aa92227e5d4,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,89.80675758000001,kg/TJ,56100.0,kg,5038159.100238001,CO2,952eda85-dfc3-3e5b-afaa-43d705b1174e,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,5768.420005080001,kg/TJ,56100.0,kg,323608362.28498805,CO2,b18ccf5a-90c1-3fd1-9459-d182da8c0154,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,880.1217954600002,kg/TJ,56100.0,kg,49374832.72530601,CO2,8b7a4e85-40c0-3c1b-903e-0af46300676e,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3299.4932664600005,kg/TJ,56100.0,kg,185101572.24840602,CO2,086663a8-1959-3701-b76b-1c61db65a2cf,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,158.08636434000002,kg/TJ,56100.0,kg,8868645.039474001,CO2,6f66e3f0-c848-37a8-81a0-99ff17364d85,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,3924.130991700001,kg/TJ,56100.0,kg,220143748.63437003,CO2,63869f1e-03dc-3f92-9991-55b94f63f200,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,1267.37694258,kg/TJ,56100.0,kg,71099846.47873801,CO2,8536198b-e3a1-3cfb-8698-f95553fb0b1b,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,12444.444931260003,kg/TJ,56100.0,kg,698133360.6436862,CO2,8c807287-2f0c-38d7-9867-4b082f73997b,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,992.6235420600002,kg/TJ,56100.0,kg,55686180.70956601,CO2,2515aa3f-1342-3e93-a1b0-22a284303b2f,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,98.13733674000002,kg/TJ,56100.0,kg,5505504.591114001,CO2,a8287c25-caf1-3863-b4f6-8caeda145e5e,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,4482.705277804201,kg/TJ,56100.0,kg,251479766.08481565,CO2,91063bd1-71e8-3dfe-a4eb-402e2492a7ec,AR-S,SANTA FE,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,17534.841434184003,kg/TJ,56100.0,kg,983704604.4577225,CO2,d9716e69-6f12-3688-840c-d8048fe77fcf,AR-S,SANTA FE,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,788.3343842928001,kg/TJ,56100.0,kg,44225558.95882609,CO2,0a946338-06df-347e-b230-21c4b4dc4fdf,AR-S,SANTA FE,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,65704.1097249978,kg/TJ,56100.0,kg,3686000555.5723767,CO2,4f969037-0c48-3a6e-84ce-c981a725179f,AR-S,SANTA FE,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,240.14646186000004,kg/TJ,56100.0,kg,13472216.510346003,CO2,11139470-fb79-3887-b246-5174c6a50f66,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,1272.6322144800001,kg/TJ,56100.0,kg,71394667.23232801,CO2,746d4b6a-dab8-357c-81e7-a32bc2f33f97,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,64.11431718000001,kg/TJ,56100.0,kg,3596813.193798001,CO2,4a5b7702-fbfa-3fef-81e5-455342a93935,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,514.2632737771801,kg/TJ,56100.0,kg,28850169.658899803,CO2,9033d52d-036d-3665-b7fc-5adaa20dff8e,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2707.4382270000006,kg/TJ,56100.0,kg,151887284.53470004,CO2,3537f285-3154-3d6d-b384-b73011580fd9,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,14803.400239380002,kg/TJ,56100.0,kg,830470753.429218,CO2,01934ff9-5cef-3405-b0c6-fde5c8ece9aa,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1313.7790470600003,kg/TJ,56100.0,kg,73703004.54006602,CO2,78d2683f-1de4-3198-9c87-b2725dc2ade8,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,716.8190871600001,kg/TJ,56100.0,kg,40213550.789676,CO2,e525f974-b13f-3438-b99f-a5782ebcf024,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,913.9891032600002,kg/TJ,56100.0,kg,51274788.69288601,CO2,bb81d699-c720-3905-9226-9f1bb8785bb0,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,4530.316873380001,kg/TJ,56100.0,kg,254150776.59661806,CO2,c5a7f770-f856-33f2-9e31-62789c065218,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,160.77239220000004,kg/TJ,56100.0,kg,9019331.202420002,CO2,e6e95b7a-7612-35cd-bfed-66d452409767,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,8682.000562216488,kg/TJ,56100.0,kg,487060231.54034495,CO2,61dc94d0-4676-3637-ac61-153c8acb708c,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,14230.922450225402,kg/TJ,56100.0,kg,798354749.457645,CO2,ea3e853d-da51-330f-95bf-82a4213e0dad,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,163326.94794967922,kg/TJ,56100.0,kg,9162641779.977005,CO2,40b5a54a-c71d-31d9-8959-91298ea633cb,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,5037.835998336001,kg/TJ,56100.0,kg,282622599.5066496,CO2,42591456-7bf1-387e-9c77-d338dcfee3f8,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,198467.63265565143,kg/TJ,56100.0,kg,11134034191.982044,CO2,5e2a386c-4143-3c92-a2a4-7bbd8a15b6bb,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,6093.740799660001,kg/TJ,56100.0,kg,341858858.8609261,CO2,0e8a8e87-8725-3ddf-a1f9-fa73d3cc87a9,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,37167.15141792001,kg/TJ,56100.0,kg,2085077194.5453126,CO2,e0a1a7e2-0ac0-3504-9b23-92e232457b85,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1652.1407015400002,kg/TJ,56100.0,kg,92685093.35639401,CO2,93a093c6-e738-3587-8124-7449a21daad9,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,2882.1468217200004,kg/TJ,56100.0,kg,161688436.69849202,CO2,3502d10e-a110-3d9c-a03b-80025afcfb41,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,109.58215110000002,kg/TJ,56100.0,kg,6147558.676710001,CO2,24da8743-3a92-3b2b-b80d-828cd6cc0f33,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,485.82069120000006,kg/TJ,56100.0,kg,27254540.776320003,CO2,e2900307-3457-3f0e-ac0b-c300e129aaee,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,7.902371820000002,kg/TJ,56100.0,kg,443323.0591020001,CO2,0315358a-9591-30dc-bc03-bea21e9dae81,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,3996.4980321600005,kg/TJ,56100.0,kg,224203539.60417604,CO2,bc1f6f79-5a1f-30e5-b094-8ebd15023a17,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3191.7453998928004,kg/TJ,56100.0,kg,179056916.9339861,CO2,c08edefe-0a02-3311-8ffa-f04ebe27ccd0,AR-U,CHUBUT,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,27194.831544830406,kg/TJ,56100.0,kg,1525630049.6649857,CO2,0a776b6e-f177-3a7b-ac5b-17466448441a,AR-U,CHUBUT,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1745.0379482766002,kg/TJ,56100.0,kg,97896628.89831728,CO2,796923ef-96f5-39f3-8b19-3e68e3c6ec1e,AR-U,CHUBUT,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,15392.725651687202,kg/TJ,56100.0,kg,863531909.0596521,CO2,99428d77-56c2-33e0-b96f-06b92f8d9a7a,AR-U,CHUBUT,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3160.2480250800004,kg/TJ,56100.0,kg,177289914.20698804,CO2,41093754-7aa1-3f5a-bf0f-23f04cc93389,AR-X,CORDOBA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,24655.867213680005,kg/TJ,56100.0,kg,1383194150.6874483,CO2,3828313e-2089-31c8-8897-c212180a8ee1,AR-X,CORDOBA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,621.99062532,kg/TJ,56100.0,kg,34893674.080452,CO2,20afec42-bd42-3e84-8409-3f87db68ad40,AR-X,CORDOBA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,26182.465308720006,kg/TJ,56100.0,kg,1468836303.8191924,CO2,586e39de-0ef6-3a13-8429-85f09746a11f,AR-X,CORDOBA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,5.255271900000001,kg/TJ,56100.0,kg,294820.7535900001,CO2,212f64c0-a3fc-365c-8678-07ad2d855f0d,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,0.7007029200000001,kg/TJ,56100.0,kg,39309.43381200001,CO2,ca4f57f0-c9ac-33b9-a7a3-ecd477752d30,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,56100.0,kg,0.0,CO2,918cdeae-42eb-3a42-a690-c81d2cbbc7e8,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,155.71176000000003,kg/TJ,56100.0,kg,8735429.736000001,CO2,f36e8d1e-075b-3a0b-a420-44dd57c547e2,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,834.8875291800001,kg/TJ,56100.0,kg,46837190.386998005,CO2,cc58f8ef-ecd2-3ba6-a001-42ae27bf2315,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3613.524958440001,kg/TJ,56100.0,kg,202718750.16848403,CO2,7ec8a642-b892-32f3-ae62-96f8bff12142,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,79.68549318000001,kg/TJ,56100.0,kg,4470356.167398,CO2,c74dcfef-aef8-3994-99a3-8629d2b3b915,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4972.343632080001,kg/TJ,56100.0,kg,278948477.7596881,CO2,bc51bf2c-f076-3c09-8ad1-0c7151c5f941,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,417.8135800200001,kg/TJ,56100.0,kg,23439341.839122005,CO2,01e56a82-bd9d-3c59-a55a-3835d2867baa,AR-Y,JUJUY,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,2026.1214211200004,kg/TJ,56100.0,kg,113665411.72483203,CO2,255da3ff-6bd4-30cc-87fc-967015e3f813,AR-Y,JUJUY,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,139.05060168000003,kg/TJ,56100.0,kg,7800738.754248002,CO2,778aad1d-d0c5-31ae-a2eb-ee3a4a10123a,AR-Y,JUJUY,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4623.494556607081,kg/TJ,56100.0,kg,259378044.62565723,CO2,f2268647-4572-3bb2-a77b-16710a05eade,AR-Y,JUJUY,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,820.1221615380001,kg/TJ,56100.0,kg,46008853.262281805,CO2,d6ab6bc4-4cd8-37c4-aa5f-513c8339d7ed,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,10228.849547778002,kg/TJ,56100.0,kg,573838459.630346,CO2,8c5a06cc-074e-3628-aede-bad87fdc2a40,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,636.6898154640002,kg/TJ,56100.0,kg,35718298.64753041,CO2,dfc1bd70-45d7-3a50-886e-b9248c8bbf15,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,1445.0479535340003,kg/TJ,56100.0,kg,81067190.19325742,CO2,075d2da8-6e14-3f62-9f45-97b4136c99c8,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,74.04094188000002,kg/TJ,56100.0,kg,4153696.839468001,CO2,53c157b0-50eb-3e04-87ac-08d61589b5ac,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,344.3176293000001,kg/TJ,56100.0,kg,19316219.003730003,CO2,1c9b2b2a-60b8-3177-abbc-dd916e9766c8,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,12.573724620000002,kg/TJ,56100.0,kg,705385.9511820001,CO2,9985c23e-a811-3efb-93ca-09283c74b64a,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,577.1067105000001,kg/TJ,56100.0,kg,32375686.459050003,CO2,1a921118-de2e-3d83-815b-94dc837e7d11,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1649.0653942800002,kg/TJ,56100.0,kg,92512568.619108,CO2,9d0ba9b0-3206-3d60-848d-abe9f9b0a036,AR-M,MENDOZA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,18207.609664440002,kg/TJ,56100.0,kg,1021446902.1750841,CO2,59e3f989-09cd-375e-8219-d62e32c02927,AR-M,MENDOZA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,764.9340210000001,kg/TJ,56100.0,kg,42912798.57810001,CO2,11ad43f7-f7d5-3e33-8356-5c4f5b414ba9,AR-M,MENDOZA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,17322.349380900003,kg/TJ,56100.0,kg,971783800.2684902,CO2,226558c0-79ea-38ff-ae9c-e884c5d8df9f,AR-M,MENDOZA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,2851.1885988762006,kg/TJ,56100.0,kg,159951680.39695486,CO2,e34924b7-d5e0-3719-9a6d-90aad565aac2,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,24089.911022313605,kg/TJ,56100.0,kg,1351444008.3517933,CO2,7015e4b5-5a71-37f3-b581-03bd0e3333b1,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1466.2084031592003,kg/TJ,56100.0,kg,82254291.41723114,CO2,67e2c92a-1f28-3e48-bd8e-e3c36d7a9642,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,5337.006559941601,kg/TJ,56100.0,kg,299406068.0127238,CO2,f01c05fa-5de4-323e-bfbc-191780066997,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3789.7015257774005,kg/TJ,56100.0,kg,212602255.59611216,CO2,2e5eaed6-1563-345a-83e6-c7af42673769,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,29254.269443399404,kg/TJ,56100.0,kg,1641164515.7747066,CO2,b235d5c5-bb91-398b-aded-3ae668c815e8,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1548.6293626830002,kg/TJ,56100.0,kg,86878107.24651632,CO2,a412e1f5-313f-3879-8a9f-7fba3203fdfe,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,2566.1278584030006,kg/TJ,56100.0,kg,143959772.85640833,CO2,402c256e-5360-308c-9641-b9ea4387c736,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,476.75048118000007,kg/TJ,56100.0,kg,26745701.994198002,CO2,01a551c7-b74e-3a23-a215-9aea3bdbdd54,AR-A,SALTA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,4690.972481760001,kg/TJ,56100.0,kg,263163556.22673604,CO2,c8ae8617-2184-3e88-84f5-19b16dfeb38d,AR-A,SALTA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,123.55728156000002,kg/TJ,56100.0,kg,6931563.495516001,CO2,634b3f73-0dd6-3640-b44b-b13697836763,AR-A,SALTA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,6855.414216405601,kg/TJ,56100.0,kg,384588737.54035425,CO2,1638667a-d59f-3332-b0e3-85aaa2b49b49,AR-A,SALTA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,370.20470940000007,kg/TJ,56100.0,kg,20768484.197340004,CO2,1497fd4e-d36c-3fdb-aa5b-a42c0381479d,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3943.5949617000006,kg/TJ,56100.0,kg,221235677.35137004,CO2,de544db0-27fb-312a-91f0-0e35c758d621,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,103.82081598000002,kg/TJ,56100.0,kg,5824347.776478001,CO2,5c054c2f-f0ae-3c4d-b5f5-b5d6bc475fb8,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,6683.654802420001,kg/TJ,56100.0,kg,374953034.41576207,CO2,b45ce357-624d-3c08-a172-6130db49fcd9,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,701.2479111600002,kg/TJ,56100.0,kg,39340007.81607601,CO2,ff5183f3-45f9-37c9-8182-5092fc2f994b,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3478.3282228200005,kg/TJ,56100.0,kg,195134213.30020204,CO2,603c745d-13db-3665-8fbe-30203caab106,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,172.84005360000003,kg/TJ,56100.0,kg,9696327.006960003,CO2,85836285-3348-3d05-984b-5efbee48386f,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4046.0922277200007,kg/TJ,56100.0,kg,226985773.97509202,CO2,173ca067-e716-3747-9d41-a07641d7e0f5,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1473.9324850140003,kg/TJ,56100.0,kg,82687612.40928543,CO2,f7003434-9f02-3fd4-8f88-1dd50763c5ae,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,12408.136452342602,kg/TJ,56100.0,kg,696096454.9764199,CO2,3564b2a0-7c74-313f-9021-dbccba13abd7,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1103.3065753032001,kg/TJ,56100.0,kg,61895498.87450953,CO2,e4f4c347-99af-3911-9e7f-2216f198af5f,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,272.3764605036001,kg/TJ,56100.0,kg,15280319.434251964,CO2,57b6d762-be8f-3740-9759-5fbb89367852,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3441.4685242722007,kg/TJ,56100.0,kg,193066384.21167046,CO2,376af60d-c017-351c-b2a6-e93a9c2e36d8,AR-S,SANTA FE,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,19718.523303174603,kg/TJ,56100.0,kg,1106209157.3080952,CO2,e101b6e5-fc57-3e76-a4b3-acf224313aab,AR-S,SANTA FE,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,998.1178315116001,kg/TJ,56100.0,kg,55994410.34780077,CO2,3ec1d589-88b5-3cdc-9fb7-5a77c5d3f015,AR-S,SANTA FE,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,61225.63124291881,kg/TJ,56100.0,kg,3434757912.7277455,CO2,3baea8c3-0734-39cd-88e0-14a9dcb79c87,AR-S,SANTA FE,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,255.44514228000006,kg/TJ,56100.0,kg,14330472.481908003,CO2,50d78252-10c6-3a69-965c-a789a683837a,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,1256.0878399800001,kg/TJ,56100.0,kg,70466527.822878,CO2,9c802807-58eb-3314-b32b-c68eec36eaea,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,81.94331370000002,kg/TJ,56100.0,kg,4597019.898570001,CO2,fcf5188f-e676-35bd-b7bb-edeea78ec097,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,525.6608296180201,kg/TJ,56100.0,kg,29489572.541570928,CO2,2b90085c-890c-3068-94e0-c1a314bd4b6c,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,2873.3942636904003,kg/TJ,56100.0,kg,161197418.19303146,CO2,9f1e5b79-f8cf-3e50-a468-30aa7c8cb7f8,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,15437.931889850403,kg/TJ,56100.0,kg,866067979.0206076,CO2,3c283bb6-5dfc-39db-bbbb-a07797b31ffb,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1400.8791449718003,kg/TJ,56100.0,kg,78589320.03291799,CO2,72a87d47-33ab-3804-96a5-06037f6d712d,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,836.5871230404001,kg/TJ,56100.0,kg,46932537.60256644,CO2,e2d0a785-813c-3a48-9daf-65b676c81525,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1043.6580714000002,kg/TJ,56100.0,kg,58549217.80554001,CO2,95898a7f-f668-38be-b9a8-634310b1060c,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,4561.031018040001,kg/TJ,56100.0,kg,255873840.11204407,CO2,2f04e2b0-9c2b-3108-8da5-eb80489692d6,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,270.549183,kg/TJ,56100.0,kg,15177809.166300002,CO2,28cc9a35-2d9d-355b-937d-d4696171c7b2,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,7436.5408381472735,kg/TJ,56100.0,kg,417189941.020062,CO2,41318c3d-270f-3232-bb06-4e5b6a837191,AR-T,TUCUMAN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,40806.79702410001,kg/TJ,1466.7,kg,59851329.195247486,CO2,9772c432-58fc-3296-9d70-144fc12d11c4,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,6863.540813160002,kg/TJ,1466.7,kg,10066755.310661774,CO2,b1699f90-9dc7-353c-b579-59b2407e899d,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,596.9599599000001,kg/TJ,1466.7,kg,875561.1731853301,CO2,234c56d3-fdfc-369d-9c34-979af1073c0a,AR-K,CATAMARCA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,56.79586446000001,kg/TJ,1466.7,kg,83302.49440348202,CO2,1f8ef48f-960b-38c8-a8c4-547f697ead1f,AR-U,CHUBUT,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,14443.861785540003,kg/TJ,1466.7,kg,21184812.08085152,CO2,1c0af11e-8e7a-3b91-b8a0-0aba8dffb6d0,AR-X,CORDOBA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,17.167221540000003,kg/TJ,1466.7,kg,25179.163832718004,CO2,70f3bf59-f652-3396-885c-181ddc6ff931,AR-W,CORRIENTES,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1669.5414907200002,kg/TJ,1466.7,kg,2448716.5044390243,CO2,a3617a25-fd95-339a-814b-0ca45a5f2405,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1752.9251382000002,kg/TJ,1466.7,kg,2571015.3001979403,CO2,ff92a205-960c-3d75-a72d-309c80b4d3d7,AR-Y,JUJUY,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,345.7190351400001,kg/TJ,1466.7,kg,507066.1088398381,CO2,32bdfe29-1005-3b37-9b74-671bcdc81e61,AR-L,LA PAMPA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,239.25111924000004,kg/TJ,1466.7,kg,350909.6165893081,CO2,80753497-fabd-31f2-9001-4d9a584a5817,AR-F,LA RIOJA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,5696.169748440001,kg/TJ,1466.7,kg,8354572.17003695,CO2,30f2d807-b20e-3127-ad96-690856de10a5,AR-M,MENDOZA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,375.45998130000004,kg/TJ,1466.7,kg,550687.15457271,CO2,5048a526-9346-37b1-a523-0c03e48b9fc9,AR-Q,NEUQUEN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,660.5682138600001,kg/TJ,1466.7,kg,968855.3992684622,CO2,5756c618-8543-36f0-8fd5-882003e0aab1,AR-R,RIO NEGRO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,2779.6495557000003,kg/TJ,1466.7,kg,4076912.0033451905,CO2,27e75445-bf6e-315d-ac32-8500302a084b,AR-A,SALTA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1876.2877800600004,kg/TJ,1466.7,kg,2751951.2870140024,CO2,d62cbf6c-b9cb-3a1e-ae94-eaf3bf7de517,AR-J,SAN JUAN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1696.3239134400003,kg/TJ,1466.7,kg,2487998.2838424486,CO2,115e247c-cae6-31bc-8579-95f61a104838,AR-D,SAN LUIS,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,7755.263134740001,kg/TJ,1466.7,kg,11374644.43972316,CO2,8e0a0563-a702-3585-a3f1-5ceed1c78017,AR-S,SANTA FE,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1583.5107433200003,kg/TJ,1466.7,kg,2322535.2072274447,CO2,b88d1b42-e7fc-3755-b04a-488db03b4b27,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,25.419944820000005,kg/TJ,1466.7,kg,37283.43306749401,CO2,a126a918-089e-3710-b463-8398815eec07,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,4180.7050442400005,kg/TJ,1466.7,kg,6131840.0883868085,CO2,91cbb142-5ca0-3ed4-b3b8-742c6aba4afa,AR-T,TUCUMAN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,42708.00530350981,kg/TJ,1466.7,kg,62639831.37865784,CO2,712f2605-e172-342e-9db1-09ca89901f35,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,7064.837190900002,kg/TJ,1466.7,kg,10361996.707893033,CO2,6b769cc7-3f5c-348a-b75b-20061c213fb1,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,630.2822765400001,kg/TJ,1466.7,kg,924435.0150012182,CO2,672934bd-f0e6-38ee-a350-3bc587bd9c0c,AR-K,CATAMARCA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,57.96370266000001,kg/TJ,1466.7,kg,85015.36269142202,CO2,434ea0cb-264a-3fd7-ac22-915ba90c3cbd,AR-U,CHUBUT,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,14999.947408440003,kg/TJ,1466.7,kg,22000422.86395895,CO2,bd7d4634-57f1-3a14-8668-a0f0cecaa27b,AR-X,CORDOBA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,21.721790520000003,kg/TJ,1466.7,kg,31859.350155684006,CO2,32675822-c886-3079-83ac-1631ead3f750,AR-W,CORRIENTES,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1724.8970214000003,kg/TJ,1466.7,kg,2529906.4612873807,CO2,486dd4fd-a864-3b1c-b514-e3186ef04bc5,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1811.0834805600002,kg/TJ,1466.7,kg,2656316.1409373526,CO2,52f250e3-9642-3a46-9847-bb20231c7b6d,AR-Y,JUJUY,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,339.33485298000005,kg/TJ,1466.7,kg,497702.4288657661,CO2,c6831c5e-e573-3500-8e29-23dc934b7a4c,AR-L,LA PAMPA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,240.45788538000005,kg/TJ,1466.7,kg,352679.5804868461,CO2,efd2ab49-eb63-3afd-a698-cc9220c52e0c,AR-F,LA RIOJA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,5740.820095620001,kg/TJ,1466.7,kg,8420060.834245855,CO2,3415863b-2aca-3e73-80cb-fb5cac6cf94d,AR-M,MENDOZA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,355.80137160000004,kg/TJ,1466.7,kg,521853.87172572006,CO2,ee9d91ef-2203-33cd-9f66-597f91738406,AR-Q,NEUQUEN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,600.3856186200001,kg/TJ,1466.7,kg,880585.5868299541,CO2,dc27a124-7193-30d1-88ae-88afb769dbd2,AR-R,RIO NEGRO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,2857.0772283600004,kg/TJ,1466.7,kg,4190475.170835613,CO2,342b82da-3704-38e3-ab58-2896db64d5dd,AR-A,SALTA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1896.6470926800002,kg/TJ,1466.7,kg,2781812.2908337563,CO2,4fe26521-c9fd-3243-a90e-a1df3cdf4922,AR-J,SAN JUAN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1753.6258411200004,kg/TJ,1466.7,kg,2572043.0211707046,CO2,2fcd3275-1501-327c-9b72-8216ca12fda7,AR-D,SAN LUIS,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,7865.1897981090015,kg/TJ,1466.7,kg,11535873.876886472,CO2,4cb99627-42e6-3616-b957-a96fe63039d4,AR-S,SANTA FE,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1588.2210240600002,kg/TJ,1466.7,kg,2329443.7759888023,CO2,04b2d8c8-f54d-3691-890e-ddbdb87623d7,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,27.366341820000006,kg/TJ,1466.7,kg,40138.21354739401,CO2,538a4ce4-b5b5-3454-a393-436b482826ac,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,4242.9508203000005,kg/TJ,1466.7,kg,6223135.968134011,CO2,41eb17fb-5068-3cd4-9a7e-62e39e116af6,AR-T,TUCUMAN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,31990.607383776005,kg/TJ,1466.7,kg,46920623.84978427,CO2,6a135121-f405-3304-ac55-180862ce4df1,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,4984.294509660001,kg/TJ,1466.7,kg,7310464.7573183235,CO2,ed91f175-5582-3b9a-ad2f-57eaf41e2061,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,501.0415157400001,kg/TJ,1466.7,kg,734877.5911358581,CO2,8031ef5c-52cd-36ed-9e88-7d4132aeb472,AR-K,CATAMARCA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,44.02750014000001,kg/TJ,1466.7,kg,64575.13445533801,CO2,e518f701-69cd-3d40-8e37-6036dc887601,AR-U,CHUBUT,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,11422.820073900002,kg/TJ,1466.7,kg,16753850.202389134,CO2,f5f6108f-4549-3956-9fed-1777c5c630ec,AR-X,CORDOBA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,13.663706940000003,kg/TJ,1466.7,kg,20040.558968898004,CO2,5742f5a6-3baa-3a6e-88f4-016d05bdbfdd,AR-W,CORRIENTES,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1299.5703489600003,kg/TJ,1466.7,kg,1906079.8308196324,CO2,86bc9030-7aa0-37cd-b9de-ff5b2b2822a3,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1335.6176214000002,kg/TJ,1466.7,kg,1958950.3653073804,CO2,2846ecc6-775a-379f-9601-937574afebc3,AR-Y,JUJUY,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,245.09031024000004,kg/TJ,1466.7,kg,359473.95802900806,CO2,76d72415-70db-36ff-ade8-4b942ad4778a,AR-L,LA PAMPA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,137.76597966000003,kg/TJ,1466.7,kg,202061.36236732206,CO2,6fd3cf33-798d-3215-a80f-27b6441c176f,AR-F,LA RIOJA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,4338.8692644600005,kg/TJ,1466.7,kg,6363819.550183483,CO2,928b604b-f735-3f58-9d32-9aa6c77f8e5b,AR-M,MENDOZA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,224.14707852000004,kg/TJ,1466.7,kg,328756.52006528404,CO2,29864e70-73b5-3f51-a47f-0f5751cd3c27,AR-Q,NEUQUEN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,417.8914359000001,kg/TJ,1466.7,kg,612921.3690345301,CO2,c54c1ec5-9bf3-377f-8696-fae9116f3892,AR-R,RIO NEGRO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,2235.8262339000003,kg/TJ,1466.7,kg,3279286.3372611306,CO2,72c793a2-6f5f-393c-92ac-634537b8892a,AR-A,SALTA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1539.7168108200003,kg/TJ,1466.7,kg,2258302.6464296947,CO2,aa336679-e36a-388f-8a1f-d6575bc4492e,AR-J,SAN JUAN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1368.3949468800001,kg/TJ,1466.7,kg,2007024.8685888962,CO2,6ac6aab5-1d1a-3e62-beea-e7063c3773d8,AR-D,SAN LUIS,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,6038.259531733801,kg/TJ,1466.7,kg,8856315.255193966,CO2,e33bdbf6-28ec-3585-8ad7-6e736efc857a,AR-S,SANTA FE,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1072.1143955400003,kg/TJ,1466.7,kg,1572470.1839385184,CO2,af76903f-6157-30aa-802b-29b45acf0443,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,24.018538980000002,kg/TJ,1466.7,kg,35227.991121966006,CO2,c9914cfb-0ed0-3cf6-a498-c95d427cd737,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,3467.194831980001,kg/TJ,1466.7,kg,5085334.660065067,CO2,ec2812ab-bc76-3d4f-b2d2-5690f91dfd54,AR-T,TUCUMAN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,40726.08032978941,kg/TJ,1466.7,kg,59732942.01970213,CO2,120c966e-dfcc-3928-b5ce-e986174396cc,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,6498.085312440001,kg/TJ,1466.7,kg,9530741.72775575,CO2,3f6eea23-1b79-3932-aa7c-0fa736acd4a8,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,567.9975725400001,kg/TJ,1466.7,kg,833082.0396444182,CO2,81f9f68e-6ebd-3131-a9ec-d834f80a3ccd,AR-K,CATAMARCA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,53.525917500000006,kg/TJ,1466.7,kg,78506.46319725,CO2,9e346f9d-435d-3698-aae4-4a13aebd5cb2,AR-U,CHUBUT,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,14180.786767020003,kg/TJ,1466.7,kg,20798959.95118824,CO2,5f5a5b6a-7cb9-3cf7-aa1b-8cc8f76dfe0e,AR-X,CORDOBA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,12.534796680000003,kg/TJ,1466.7,kg,18384.786290556003,CO2,5dc01606-b44a-36fc-8c1d-fe70f36bfecf,AR-W,CORRIENTES,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1728.0112566000003,kg/TJ,1466.7,kg,2534474.1100552203,CO2,d9c31f33-a413-3931-babc-c6cd4ea1e1eb,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1697.7253192800003,kg/TJ,1466.7,kg,2490053.7257879768,CO2,6b127e71-5147-3e98-b9e4-ea8cfb586cb9,AR-Y,JUJUY,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,293.55559554000007,kg/TJ,1466.7,kg,430557.99197851814,CO2,e8c62d28-b924-3c19-a6c4-9c1378647dc3,AR-L,LA PAMPA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,191.09725746000004,kg/TJ,1466.7,kg,280282.34751658206,CO2,c4e93466-6b06-3301-906f-74e1f23ebe44,AR-F,LA RIOJA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,5321.605109760001,kg/TJ,1466.7,kg,7805198.214484994,CO2,d3cba296-ee94-37a4-853b-378acfaaba3c,AR-M,MENDOZA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,244.62317496000003,kg/TJ,1466.7,kg,358788.81071383203,CO2,2b5a608c-ec67-3c4a-bdd5-6379353e73a1,AR-Q,NEUQUEN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,556.5916861200001,kg/TJ,1466.7,kg,816353.0260322042,CO2,3586bd6e-0c0e-3930-9ef4-9ce119c5cc29,AR-R,RIO NEGRO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,2773.5378691200003,kg/TJ,1466.7,kg,4067947.992638305,CO2,050192a5-ab2b-3856-93bf-9766cc7556a0,AR-A,SALTA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1808.3974527000003,kg/TJ,1466.7,kg,2652376.5438750903,CO2,38c73116-bcdc-399a-876c-9807bcbab1ab,AR-J,SAN JUAN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1689.3168842400003,kg/TJ,1466.7,kg,2477721.0741148083,CO2,ba6f741d-2b2e-3049-9143-85f21ce207ab,AR-D,SAN LUIS,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,7378.001179097401,kg/TJ,1466.7,kg,10821314.329382159,CO2,6a849f51-57a3-366b-975c-7ffb9d3dc37e,AR-S,SANTA FE,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1375.9469672400003,kg/TJ,1466.7,kg,2018101.4168509084,CO2,a16a1d9c-80ef-32cd-8a9c-b72ecb627561,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,27.405269760000003,kg/TJ,1466.7,kg,40195.30915699201,CO2,5b1bea10-86dc-39fb-9a2b-2e9e319cc591,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,4165.795643220001,kg/TJ,1466.7,kg,6109972.469910775,CO2,4fa0b964-0f33-3ccc-85cc-3a9c576a8c9d,AR-T,TUCUMAN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,41136.247294555214,kg/TJ,1466.7,kg,60334533.906924136,CO2,1ac6a3a7-3cc8-364c-98b5-97c8f4e528ec,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,6432.491733540001,kg/TJ,1466.7,kg,9434535.62558312,CO2,9e8ddc5f-3d42-3f03-b1ba-32898b0a6043,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,595.3249864200001,kg/TJ,1466.7,kg,873163.1575822141,CO2,9997dcd7-8ba8-35fc-8d4d-4f694863d59c,AR-K,CATAMARCA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,52.35029371200001,kg/TJ,1466.7,kg,76782.17578739041,CO2,ef3a5d2f-d1ce-3419-abee-9634cf82bf7e,AR-U,CHUBUT,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,14626.200256500002,kg/TJ,1466.7,kg,21452247.916208554,CO2,5f59429a-9752-30e7-8098-21eea2513253,AR-X,CORDOBA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,21.488222880000002,kg/TJ,1466.7,kg,31516.776498096006,CO2,7a39fa2e-5e29-3824-b116-040a1854ec59,AR-W,CORRIENTES,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1750.7451735600002,kg/TJ,1466.7,kg,2567817.9460604526,CO2,e8be4cea-f798-352b-adf9-1005a8df0db5,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1677.8331419400004,kg/TJ,1466.7,kg,2460877.8692833986,CO2,7b805360-59bc-391b-90be-87e4f50cfbbe,AR-Y,JUJUY,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,309.47712300000006,kg/TJ,1466.7,kg,453910.0963041001,CO2,faaa8dbf-0be7-3e99-81e4-ef1744fbe18a,AR-L,LA PAMPA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,198.57142194000002,kg/TJ,1466.7,kg,291244.70455939806,CO2,a96bef75-7b56-3ee6-8916-c51acd6b7237,AR-F,LA RIOJA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,5316.5834055000005,kg/TJ,1466.7,kg,7797832.880846851,CO2,6b582ce6-070b-37ee-9687-508d909e74c0,AR-M,MENDOZA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,240.36679400040003,kg/TJ,1466.7,kg,352545.9767603867,CO2,24df151f-fe50-3e15-95be-6029b20f97b2,AR-Q,NEUQUEN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,592.3197494520001,kg/TJ,1466.7,kg,868755.3765212486,CO2,a5e63964-b988-3b58-b682-b984b611004c,AR-R,RIO NEGRO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,2819.2781986200007,kg/TJ,1466.7,kg,4135035.333915955,CO2,7660a34b-a1fe-3337-92c8-d9a45a4dd918,AR-A,SALTA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1808.4753085800003,kg/TJ,1466.7,kg,2652490.7350942865,CO2,a01de791-ef24-3485-8d03-d2fa8e488cb6,AR-J,SAN JUAN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1778.1504433200002,kg/TJ,1466.7,kg,2608013.2552174446,CO2,77a5310a-8523-3c51-adc2-e4c62279b9df,AR-D,SAN LUIS,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,7496.704925098201,kg/TJ,1466.7,kg,10995417.113641532,CO2,06fcabdd-c847-30e2-bf9d-5b4b427adbe1,AR-S,SANTA FE,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1450.1825488200002,kg/TJ,1466.7,kg,2126982.744354294,CO2,b94ce8a6-6571-3c76-8c4f-012fc0c6139e,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,27.418894539000004,kg/TJ,1466.7,kg,40215.292620351305,CO2,c7413686-dab1-3166-b91e-635eab2c926a,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,4156.18044204,kg/TJ,1466.7,kg,6095869.854340069,CO2,6413d3b9-43fc-3932-bbcb-39148f638cb3,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,16809.542802669082,kg/TJ,5.0,kg,84047.71401334541,CH4,002f0957-df75-3a50-84d0-330de476c634,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,146786.40084474,kg/TJ,5.0,kg,733932.0042237,CH4,d73ccb12-ff19-3e09-b0c5-b44d5177c554,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,5984.119720620001,kg/TJ,5.0,kg,29920.598603100007,CH4,ac53366d-b95a-3e3f-bd0f-95d567f0463e,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,189238.92168875044,kg/TJ,5.0,kg,946194.6084437522,CH4,08634950-0ff5-3a3f-b97a-d098ee4412d0,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,4930.846448040001,kg/TJ,5.0,kg,24654.232240200003,CH4,15578aef-bed5-3528-9a01-bd2c717aa5fc,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,37187.04359526001,kg/TJ,5.0,kg,185935.21797630005,CH4,c20886b9-661f-3ef4-9d4a-6d46dea7769d,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1674.7189067400002,kg/TJ,5.0,kg,8373.594533700001,CH4,5fed9a1c-5f68-338d-b02b-0e5e9565453f,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,2606.3423668200003,kg/TJ,5.0,kg,13031.711834100002,CH4,30267dec-e868-3f46-a3d0-b8f83955815a,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,120.98803752000002,kg/TJ,5.0,kg,604.9401876000001,CH4,d1f10dea-a30d-357d-b697-61583b2aa2e1,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,550.9860627600001,kg/TJ,5.0,kg,2754.9303138000005,CH4,f916d1f8-6d9d-38da-8826-93a21d55e6d8,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,11.639454060000002,kg/TJ,5.0,kg,58.197270300000014,CH4,db5b4f0a-9287-3f57-8d08-78527ad27991,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,3309.1473955800006,kg/TJ,5.0,kg,16545.736977900004,CH4,3b8682c2-5692-341e-8abb-2e93dab96037,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3450.4558177800004,kg/TJ,5.0,kg,17252.279088900003,CH4,310e3683-8973-35ac-81d4-02cecd720e00,AR-U,CHUBUT,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,24588.054742200005,kg/TJ,5.0,kg,122940.27371100003,CH4,d0543bce-b90a-3b33-a167-9398005e8e47,AR-U,CHUBUT,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1591.4520430800003,kg/TJ,5.0,kg,7957.2602154000015,CH4,1605b06e-835c-3006-bbd7-bc606f4362ba,AR-U,CHUBUT,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,22059.178975980005,kg/TJ,5.0,kg,110295.89487990002,CH4,f54118c9-3c9b-3357-9401-6f6063909d7d,AR-U,CHUBUT,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3381.6701478000004,kg/TJ,5.0,kg,16908.350739,CH4,0adc0fa4-0bed-3b97-8118-4557b4b6bf30,AR-X,CORDOBA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,22210.997941980004,kg/TJ,5.0,kg,111054.98970990002,CH4,ed6ebb9e-3de2-336c-be07-ff45ae9778a1,AR-X,CORDOBA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,508.3210405200001,kg/TJ,5.0,kg,2541.6052026000007,CH4,45bc0a02-bed9-3a99-b648-0e93fc01dc22,AR-X,CORDOBA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,19592.042922600005,kg/TJ,5.0,kg,97960.21461300002,CH4,51a587df-5833-3c7f-b61f-ee4b1977860b,AR-X,CORDOBA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,0.08836642380000001,kg/TJ,5.0,kg,0.4418321190000001,CH4,1496b799-0da6-303e-9948-8372e8c0f0e0,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,0.0031142352000000004,kg/TJ,5.0,kg,0.015571176000000003,CH4,fa1cd66f-4711-358b-91a0-d010adf2350b,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,850.3808493000001,kg/TJ,5.0,kg,4251.9042465,CH4,048a14d4-43dc-3803-9ef8-e85dbbd362e2,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3559.3372659600004,kg/TJ,5.0,kg,17796.686329800003,CH4,0c6ad926-5bd1-310b-aa83-d07af1756968,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,56.71800858000001,kg/TJ,5.0,kg,283.59004290000007,CH4,d4b0190b-09c8-3ae3-a2d1-8f90b3981813,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,4484.109408600001,kg/TJ,5.0,kg,22420.547043000006,CH4,e295ad93-db6f-32ff-801d-41611afcb602,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,342.6088095178201,kg/TJ,5.0,kg,1713.0440475891005,CH4,7dec0d1b-cdea-35e4-bebc-af843940efaa,AR-Y,JUJUY,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,1898.9438411400004,kg/TJ,5.0,kg,9494.719205700001,CH4,9d055d18-27a8-38ee-80ef-6cf5b28de353,AR-Y,JUJUY,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,86.67998758332001,kg/TJ,5.0,kg,433.39993791660004,CH4,0b1cfaf8-d480-3cd8-a8de-f418319f1811,AR-Y,JUJUY,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,5888.236194822181,kg/TJ,5.0,kg,29441.180974110903,CH4,b1d42c22-1c75-3579-9a28-9067521291bf,AR-Y,JUJUY,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,780.1159176000001,kg/TJ,5.0,kg,3900.5795880000005,CH4,3781ab7f-6740-3316-ad38-f87996725548,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,9036.031288680002,kg/TJ,5.0,kg,45180.15644340001,CH4,55914c40-9eae-3152-9300-a2f83d49417f,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,541.7990689200001,kg/TJ,5.0,kg,2708.9953446000004,CH4,27885917-7fcf-34f1-b3bd-e09db110f5c0,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,1222.2594601200003,kg/TJ,5.0,kg,6111.297300600001,CH4,883a800e-3224-3b51-a3f1-f982504882e9,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,87.43215324000002,kg/TJ,5.0,kg,437.1607662000001,CH4,ee71019b-983c-309d-839e-4389afd6e8bb,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,423.14670780000006,kg/TJ,5.0,kg,2115.7335390000003,CH4,48728689-f46a-3305-a981-ffd4dcf5a6a0,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,14.403337800000003,kg/TJ,5.0,kg,72.01668900000001,CH4,2587c19f-d97d-32bf-8167-d2cb19b85f0d,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,492.2827292400001,kg/TJ,5.0,kg,2461.4136462000006,CH4,27eccd3d-b640-34c8-a4fa-a8f11a83b224,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1751.0565970800003,kg/TJ,5.0,kg,8755.282985400001,CH4,e086f555-8d89-3a64-92e6-298dd226bb2e,AR-M,MENDOZA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,16814.7290433,kg/TJ,5.0,kg,84073.64521650001,CH4,b8e56167-7a8a-394f-97be-2bc0728641cc,AR-M,MENDOZA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,550.16857602,kg/TJ,5.0,kg,2750.8428801,CH4,291c7644-3d3b-3ea3-891b-5b89bccef0c7,AR-M,MENDOZA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,16230.809943300002,kg/TJ,5.0,kg,81154.04971650001,CH4,f5d11fd3-59bc-38cc-8ffc-d4f61ded3557,AR-M,MENDOZA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3006.9497973600005,kg/TJ,5.0,kg,15034.748986800003,CH4,118a5fe3-5804-332f-93a9-d5d1d333f2f2,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,23504.417676420006,kg/TJ,5.0,kg,117522.08838210003,CH4,f86774b8-da24-3c16-abd7-9df51d87b203,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1357.5729795600002,kg/TJ,5.0,kg,6787.864897800001,CH4,21d2a14b-1d1a-3277-9b4d-0d2595cc74e2,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,1811.1224085000003,kg/TJ,5.0,kg,9055.6120425,CH4,ca78107b-237c-3f1f-b03f-05fc661f682f,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,4211.263477140001,kg/TJ,5.0,kg,21056.317385700004,CH4,32c5aec9-bd05-3370-80ee-7e080933b97b,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,25182.562241880005,kg/TJ,5.0,kg,125912.81120940002,CH4,9f1ba016-c1c9-348c-a604-66b36c2db740,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1351.4612929800003,kg/TJ,5.0,kg,6757.306464900002,CH4,653cfb77-62ea-3707-876b-f04e24019758,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,5563.191905400001,kg/TJ,5.0,kg,27815.959527000006,CH4,a00e0f2e-89ee-3d0c-9753-52906e8ed2f2,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,703.8553824370802,kg/TJ,5.0,kg,3519.2769121854008,CH4,48f7770c-f129-30cf-806c-6bd7bfb6f3bd,AR-A,SALTA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,4266.035088720001,kg/TJ,5.0,kg,21330.175443600005,CH4,d54a1a56-63b1-33a4-90ed-ce7bd1743120,AR-A,SALTA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,157.12916522334004,kg/TJ,5.0,kg,785.6458261167002,CH4,e169033d-cb9c-38d8-abe3-51864d5e15d0,AR-A,SALTA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,4351.300240324021,kg/TJ,5.0,kg,21756.501201620104,CH4,037b9671-ac93-3ecc-a212-9870c73d1559,AR-A,SALTA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,408.1205229600001,kg/TJ,5.0,kg,2040.6026148000003,CH4,5a2df304-5bdb-323f-87f4-634c93d2ccd2,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3790.5303016200005,kg/TJ,5.0,kg,18952.651508100003,CH4,cca5c889-ee9f-396f-9edd-098e5aaaa35a,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,80.89225932000001,kg/TJ,5.0,kg,404.4612966,CH4,80c2925a-eb1a-3e20-b45d-4f68b739f672,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,6303.484540380001,kg/TJ,5.0,kg,31517.422701900003,CH4,d1f91e99-be51-3fff-b0e9-358fe6c12885,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,970.6681839000001,kg/TJ,5.0,kg,4853.3409195,CH4,f15dba1d-4919-3a18-8ac6-0cf265174b70,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3410.6325351600008,kg/TJ,5.0,kg,17053.162675800006,CH4,bf09afe1-dabc-3a8e-be35-64b711c30262,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,122.58408306000003,kg/TJ,5.0,kg,612.9204153000002,CH4,6597ad89-ada7-3986-962c-30d597a22d47,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,3730.581274020001,kg/TJ,5.0,kg,18652.906370100005,CH4,417a3ea2-4af6-3811-901f-dcd2a4c67b19,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1589.1552946200002,kg/TJ,5.0,kg,7945.776473100001,CH4,0559ba0d-f189-3b4c-a6b3-a03669b749b0,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,12953.855954100001,kg/TJ,5.0,kg,64769.279770500005,CH4,565215a7-9d0d-3abb-b2ed-c55b168a7620,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1111.12019142,kg/TJ,5.0,kg,5555.6009571,CH4,43d07ec7-1a3d-33a1-9a3a-04e9eb7f8ae9,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,80.58083580000002,kg/TJ,5.0,kg,402.9041790000001,CH4,dec72de8-9899-3be5-a098-6eead17f70d0,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1663.5855159000002,kg/TJ,5.0,kg,8317.927579500001,CH4,34c60c0f-31b6-3f4c-9f18-a24cac4fe7d6,AR-S,SANTA FE,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,18438.167667546328,kg/TJ,5.0,kg,92190.83833773163,CH4,e2892363-a1a5-379c-8ddb-f4e5e210bdb1,AR-S,SANTA FE,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,199.42783662000002,kg/TJ,5.0,kg,997.1391831000001,CH4,4540c736-d353-39dc-868c-0fc07fc39ae1,AR-S,SANTA FE,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,72102.05797242,kg/TJ,5.0,kg,360510.28986210003,CH4,00e66816-f924-3874-af3e-cb9cb2a3917e,AR-S,SANTA FE,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,316.56200808000006,kg/TJ,5.0,kg,1582.8100404000002,CH4,feaf99cb-183b-3385-a17c-c1f90d276ea6,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,1220.1184234200002,kg/TJ,5.0,kg,6100.592117100001,CH4,234d952d-2a44-3d69-8d33-06f83f8b41d9,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,45.05375742222001,kg/TJ,5.0,kg,225.26878711110004,CH4,48a9432b-09e5-3653-88b3-21cc155fc099,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,932.4794854806001,kg/TJ,5.0,kg,4662.397427403001,CH4,28d6e5f4-cbe4-3f1a-9059-9c616cc00911,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,2825.3509572600005,kg/TJ,5.0,kg,14126.754786300004,CH4,5d55c689-d040-3344-81b2-b33b005dd370,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,12237.036866940001,kg/TJ,5.0,kg,61185.18433470001,CH4,3e082118-8784-31a0-9ae8-74175cc7e64d,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1269.2454837000002,kg/TJ,5.0,kg,6346.2274185000015,CH4,6991f608-fb8d-3d5e-aebe-1ed145dec258,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,771.7074825600001,kg/TJ,5.0,kg,3858.5374128000008,CH4,fea40004-04f9-345b-b166-527dcd30112f,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,786.0841547211002,kg/TJ,5.0,kg,3930.420773605501,CH4,333c7fa2-5294-3ec5-a347-b8fbfdd6ad04,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,4450.31995668,kg/TJ,5.0,kg,22251.5997834,CH4,96072bc2-5b83-3144-8443-95aef6f84ee4,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,78.56709346380002,kg/TJ,5.0,kg,392.8354673190001,CH4,127b29c4-e929-3059-b7f0-9b8b3b349897,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,12182.842673494022,kg/TJ,5.0,kg,60914.21336747011,CH4,9c643e5f-859c-307d-b1cf-ab7031b88126,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,20654.135942834044,kg/TJ,5.0,kg,103270.67971417023,CH4,014d1a0b-8dc0-32b5-9eca-9fb7fd1fe0dd,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,138548.80613006224,kg/TJ,5.0,kg,692744.0306503111,CH4,bd6f0f23-2d3c-3623-be2d-3b80f5970089,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,5355.793183785601,kg/TJ,5.0,kg,26778.965918928006,CH4,6d03dc3a-ad05-363e-a54c-2085929d03fe,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,207413.53058133484,kg/TJ,5.0,kg,1037067.6529066742,CH4,704e273e-8439-3ff2-807b-afd2a5485f12,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,6759.0192942600015,kg/TJ,5.0,kg,33795.09647130001,CH4,32bb1c36-44c7-396c-879f-401e959fe041,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,35899.112700360005,kg/TJ,5.0,kg,179495.56350180003,CH4,859b8dc4-20b7-3c70-b277-65644ffed0e6,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1840.1237238000003,kg/TJ,5.0,kg,9200.618619,CH4,13921cc3-cb1e-33be-a47e-cb39bcbe6215,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,2546.6658348000005,kg/TJ,5.0,kg,12733.329174000002,CH4,975a0a38-1972-3244-83fe-27c967bdc2ce,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,113.78636862000002,kg/TJ,5.0,kg,568.9318431000002,CH4,68a27d42-4433-35b8-86c4-c86666ca5576,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,478.8525899400001,kg/TJ,5.0,kg,2394.2629497000003,CH4,83fccf86-b8bd-378d-955b-380d9210e0c8,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,12.573724620000002,kg/TJ,5.0,kg,62.86862310000001,CH4,7adb9062-1562-348c-b7be-ae651b17b927,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,3008.3901311400004,kg/TJ,5.0,kg,15041.950655700002,CH4,d5c144b9-fe29-3e3a-8849-c3f08a340674,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3313.6630366200006,kg/TJ,5.0,kg,16568.315183100003,CH4,a1a947f8-7051-3c04-87f2-0126b8067b60,AR-U,CHUBUT,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,24322.137984060006,kg/TJ,5.0,kg,121610.68992030004,CH4,21cd56ec-67f2-38af-ba23-01cd94072c5a,AR-U,CHUBUT,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1586.4303388200003,kg/TJ,5.0,kg,7932.151694100002,CH4,2732ac04-6562-3a2d-be18-bb890458c99d,AR-U,CHUBUT,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,26178.767154420006,kg/TJ,5.0,kg,130893.83577210002,CH4,386bbcd4-8e72-3a82-9cd3-3d097825a2fa,AR-U,CHUBUT,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3129.9231598200004,kg/TJ,5.0,kg,15649.615799100002,CH4,aed70dea-d740-3400-96b7-6ec1f3d855e7,AR-X,CORDOBA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,20998.236899220003,kg/TJ,5.0,kg,104991.18449610002,CH4,00c79ba5-e1d3-39ef-bc1f-a5e5bf473804,AR-X,CORDOBA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,623.8202385000001,kg/TJ,5.0,kg,3119.1011925000003,CH4,3632f915-7f17-3c71-9113-9aa6a39720cb,AR-X,CORDOBA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,18499.724926200004,kg/TJ,5.0,kg,92498.62463100001,CH4,e81dbbe7-20f3-340e-af66-212d60e84650,AR-X,CORDOBA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,0.31142352000000006,kg/TJ,5.0,kg,1.5571176000000002,CH4,22917801-8d5e-3c82-8c6f-421e4b2a5e2f,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,0.0,kg/TJ,5.0,kg,0.0,CH4,d39b0727-970d-30ce-abed-e124dc7ee997,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,5.0,kg,0.0,CH4,67a8ec35-7f8d-3f3f-aae5-5513b26b0a5e,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,796.0374450600001,kg/TJ,5.0,kg,3980.1872253000006,CH4,70b34fa3-5daf-3ed2-8538-d86338d244d4,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3134.2052332200005,kg/TJ,5.0,kg,15671.026166100002,CH4,9ce53ddf-e52f-328c-9a12-b5ac10152038,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,66.13857006,kg/TJ,5.0,kg,330.69285030000003,CH4,6f265ce2-b35f-391d-a0c2-85bdb5bb2349,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4585.399908480001,kg/TJ,5.0,kg,22926.999542400004,CH4,bc367984-a987-3ec9-a326-4ac20a50ea04,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,324.56364614700004,kg/TJ,5.0,kg,1622.8182307350003,CH4,233aaf2a-5241-39c7-a0b7-6b066b2fd643,AR-Y,JUJUY,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,1858.5366394200003,kg/TJ,5.0,kg,9292.683197100001,CH4,9c5378f1-f840-3b99-b922-cd4cf66ed012,AR-Y,JUJUY,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,81.72924895794002,kg/TJ,5.0,kg,408.64624478970006,CH4,01ac5833-7820-3e33-a9fe-e501d7fb03a4,AR-Y,JUJUY,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4436.271758476621,kg/TJ,5.0,kg,22181.358792383104,CH4,0937a1ee-c3ef-3784-a1ae-7133bca38b04,AR-Y,JUJUY,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,730.1713705800001,kg/TJ,5.0,kg,3650.856852900001,CH4,6ce16baf-9cc2-335a-ba61-b7da7e324bfa,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,8952.725497080002,kg/TJ,5.0,kg,44763.62748540001,CH4,a851c2b4-1c20-3629-bb67-ee95820e6ed9,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,548.1443231400001,kg/TJ,5.0,kg,2740.7216157000003,CH4,edede23d-cd8a-3327-836f-c6aea1f0fa1f,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,1189.5210625800003,kg/TJ,5.0,kg,5947.605312900001,CH4,a36f4771-1bff-397b-8a9e-7d2ad04b9f23,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,81.08689902000002,kg/TJ,5.0,kg,405.4344951000001,CH4,b43b2365-d93d-3ee8-8864-c13223832a1f,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,349.06683798000006,kg/TJ,5.0,kg,1745.3341899000002,CH4,b01002ff-ec67-3de5-9724-1b5d666904c8,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,14.247626040000002,kg/TJ,5.0,kg,71.23813020000001,CH4,a7dc80c1-a85e-37b2-8e92-4363c45541eb,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,509.8392301800001,kg/TJ,5.0,kg,2549.1961509000002,CH4,35a8a4a0-5d26-3d42-899c-03db0401eae2,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,1640.1119680800002,kg/TJ,5.0,kg,8200.559840400001,CH4,3122e92e-a1dd-3476-8aba-5e66e60c708b,AR-M,MENDOZA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,16033.250647800003,kg/TJ,5.0,kg,80166.25323900001,CH4,0f788517-ec77-3575-8c99-b697110f0c75,AR-M,MENDOZA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,726.1617927600001,kg/TJ,5.0,kg,3630.8089638000006,CH4,b8dc5283-0d15-34ea-b7b0-dcf12ac08c84,AR-M,MENDOZA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,16059.059872020003,kg/TJ,5.0,kg,80295.29936010002,CH4,3193f7e6-9dcc-3cf4-b8b0-c6ff570a3a42,AR-M,MENDOZA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,2966.9708029800004,kg/TJ,5.0,kg,14834.854014900002,CH4,840a1c7f-474d-3624-a7b2-d874519dfc06,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,22095.926951340003,kg/TJ,5.0,kg,110479.63475670002,CH4,8053116c-4bba-3992-ad7a-bdeb229c4270,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1359.4415206800002,kg/TJ,5.0,kg,6797.207603400001,CH4,8fa7b274-91f3-3b2c-bd43-4edb2575bfc5,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,9213.620550960002,kg/TJ,5.0,kg,46068.10275480001,CH4,191b6332-6dfb-3049-859f-cb1bbe85eb60,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3992.2548867000005,kg/TJ,5.0,kg,19961.274433500002,CH4,4cf9e153-38c4-382e-8b29-11e429d1d65e,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,23735.143576800005,kg/TJ,5.0,kg,118675.71788400003,CH4,780e7dbf-2818-30ec-9836-be69577febd8,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1386.8078625000003,kg/TJ,5.0,kg,6934.039312500001,CH4,51f1289e-6993-33c9-8f95-961c9f4e9581,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,5744.751817560001,kg/TJ,5.0,kg,28723.759087800005,CH4,f1933912-ffc7-3370-927b-5a0374a5d6b7,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,667.5416482477801,kg/TJ,5.0,kg,3337.708241238901,CH4,52e9ef1e-6717-323a-a5e2-2f3343f20a77,AR-A,SALTA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,4166.0681388,kg/TJ,5.0,kg,20830.340694000002,CH4,0a779951-6387-3931-bf45-08931918f915,AR-A,SALTA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,156.24553991328003,kg/TJ,5.0,kg,781.2276995664001,CH4,9753afaf-0710-33ed-a0ee-6c488800ea49,AR-A,SALTA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4109.45842774908,kg/TJ,5.0,kg,20547.2921387454,CH4,81b49293-7797-31b8-b860-ca33b131242e,AR-A,SALTA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,380.4816855600001,kg/TJ,5.0,kg,1902.4084278000005,CH4,8e474513-28ed-3cd7-a3df-eb1085ee7068,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3667.9462185600005,kg/TJ,5.0,kg,18339.7310928,CH4,78df56a6-ae5b-3437-8c7f-ab46008a8ae7,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,105.41686152000001,kg/TJ,5.0,kg,527.0843076000001,CH4,7a2e22ba-0ab2-396d-a03d-ce6e5f37722b,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,6259.573824060001,kg/TJ,5.0,kg,31297.869120300005,CH4,39e9362c-e3c9-3f26-abe6-bb8111a0b92b,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,912.4709136000001,kg/TJ,5.0,kg,4562.354568000001,CH4,94f4d74a-0230-34c9-8d3b-e2425f650369,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3134.2052332200005,kg/TJ,5.0,kg,15671.026166100002,CH4,62effd4e-aa9a-3377-a10a-be9d1895efe7,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,165.63838470000002,kg/TJ,5.0,kg,828.1919235,CH4,c3a6da3b-dcbc-3ccb-a802-f316fa798fed,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,3609.3207409200004,kg/TJ,5.0,kg,18046.603704600002,CH4,08e8b033-ef9f-36ef-b93a-649beea66fd8,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,1446.4065386400002,kg/TJ,5.0,kg,7232.032693200001,CH4,4879ef10-3e70-3cb9-99d6-6195b0e31e07,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,12430.002665520002,kg/TJ,5.0,kg,62150.01332760001,CH4,74c9138a-ae7a-3f5c-a2ec-1a4f26d23e52,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1103.68495488,kg/TJ,5.0,kg,5518.4247744,CH4,31e29240-7e15-3f06-8ae4-85835ceb0c24,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,60.61080258000001,kg/TJ,5.0,kg,303.0540129000001,CH4,dd868320-5765-3313-94ea-bb66782c9b73,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,4970.080128080761,kg/TJ,5.0,kg,24850.400640403805,CH4,33e586af-f698-3719-be93-4851980c36bb,AR-S,SANTA FE,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,17949.859209553204,kg/TJ,5.0,kg,89749.29604776602,CH4,19499c73-7f03-37d9-a208-ecd10aa98471,AR-S,SANTA FE,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,676.0693195680001,kg/TJ,5.0,kg,3380.3465978400004,CH4,2fd35640-912c-3940-afce-a5aa82747cd1,AR-S,SANTA FE,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,61964.22155908261,kg/TJ,5.0,kg,309821.10779541306,CH4,6ebae501-132d-308f-917c-edda29e6a878,AR-S,SANTA FE,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,313.8273981508801,kg/TJ,5.0,kg,1569.1369907544004,CH4,1b18ee64-82ba-37e6-b405-a6ac67ab6ed8,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,1245.14908884,kg/TJ,5.0,kg,6225.745444200001,CH4,6ac3c50e-8a7c-3fa5-bed8-df8174958453,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,41.93488979736001,kg/TJ,5.0,kg,209.67444898680003,CH4,d7a0d403-6788-38ff-a53a-defcb55742a9,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,602.0421971067001,kg/TJ,5.0,kg,3010.2109855335,CH4,5dc0ddb6-4822-3408-bfa3-ed1e536d7ff8,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,2834.1875996400004,kg/TJ,5.0,kg,14170.937998200003,CH4,5b3beac1-7370-38d2-a98b-9b9c5b269d96,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,14654.773364460003,kg/TJ,5.0,kg,73273.86682230001,CH4,da7fbfcd-8065-3355-9296-05ad88e1e4b1,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1315.8422278800003,kg/TJ,5.0,kg,6579.211139400002,CH4,b3314804-ccac-36e7-bc63-4aa1643caa40,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,691.7494938000001,kg/TJ,5.0,kg,3458.7474690000004,CH4,88ac5e93-774d-3be6-8a2b-02e3303b3b35,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,732.8711010748801,kg/TJ,5.0,kg,3664.3555053744008,CH4,839ed306-c7ad-34fb-a239-794f71b5216f,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,4257.860221320001,kg/TJ,5.0,kg,21289.301106600004,CH4,35e06fbe-25e9-34b6-aa02-6faeb93fe3fc,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,73.94385559764001,kg/TJ,5.0,kg,369.7192779882,CH4,39ef7c23-1751-32a7-9e63-5afdb8f48b93,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,9984.093044623502,kg/TJ,5.0,kg,49920.465223117506,CH4,77520993-1b7a-3304-9d41-6abdef5c063a,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,15860.245695446163,kg/TJ,5.0,kg,79301.22847723082,CH4,3cee9bb4-e932-3a35-bc34-57a3fdc14070,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,147219.14484686762,kg/TJ,5.0,kg,736095.7242343382,CH4,cbe25753-d44c-3b0d-b206-8cf2434add39,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,3959.0045867490007,kg/TJ,5.0,kg,19795.022933745004,CH4,cdd4da02-6a0e-33f9-8a60-d04a3f344114,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,223741.9690342711,kg/TJ,5.0,kg,1118709.8451713556,CH4,20c8c04d-9201-3b73-a8fa-c79393f0ffa3,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,3762.8525362800005,kg/TJ,5.0,kg,18814.262681400003,CH4,46fd1ea1-1143-3810-855c-77e5b721d182,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,36566.726871360006,kg/TJ,5.0,kg,182833.63435680003,CH4,ed46bc1e-f290-38c3-bdc5-6e4f64acd952,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,975.6120322800002,kg/TJ,5.0,kg,4878.060161400001,CH4,edcdce57-6813-3e21-8aa3-9f8e93b85222,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,2184.0131457600005,kg/TJ,5.0,kg,10920.065728800002,CH4,c4774989-7ae8-37bb-9fb1-bd3d22ab70cb,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,89.72890170000001,kg/TJ,5.0,kg,448.64450850000003,CH4,1bd74668-f058-3feb-8afc-be8aa884b69a,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,475.3880032800001,kg/TJ,5.0,kg,2376.9400164000003,CH4,69b9cb78-8627-3cdd-984d-0bb50ff5c58f,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,8.447362980000001,kg/TJ,5.0,kg,42.236814900000006,CH4,cdd1309d-87fb-3c42-9255-0cca0f7ecb79,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,3157.0948619400006,kg/TJ,5.0,kg,15785.474309700003,CH4,9f7a1e22-5fb1-3ad8-a768-3817a53eefb6,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2246.2589218200005,kg/TJ,5.0,kg,11231.294609100003,CH4,845de74e-be29-3e17-bf6b-bf252c2d1213,AR-U,CHUBUT,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,25193.267425380003,kg/TJ,5.0,kg,125966.33712690002,CH4,9d6652dd-7fc2-3d54-bec2-76f79c3218af,AR-U,CHUBUT,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,1138.9925964600002,kg/TJ,5.0,kg,5694.962982300001,CH4,a6511ddc-9a2c-30a3-968c-cd90853eb284,AR-U,CHUBUT,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,28008.808541760005,kg/TJ,5.0,kg,140044.04270880003,CH4,dc1ab019-5c62-3d1a-a4c1-c74728933d56,AR-U,CHUBUT,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2363.5098771000003,kg/TJ,5.0,kg,11817.549385500002,CH4,928a08d0-a912-32fc-819e-57f59b1c6576,AR-X,CORDOBA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,21938.930569320004,kg/TJ,5.0,kg,109694.65284660002,CH4,4e98dbca-3183-356b-80c3-2b93831676c8,AR-X,CORDOBA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,414.23220954000004,kg/TJ,5.0,kg,2071.1610477000004,CH4,1731d6f7-98f6-390b-ab8a-e3fe813316e3,AR-X,CORDOBA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,18547.178085060004,kg/TJ,5.0,kg,92735.89042530002,CH4,44cbf82f-ea56-3d23-a4a8-8514c53b21c8,AR-X,CORDOBA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2.2578205200000006,kg/TJ,5.0,kg,11.289102600000003,CH4,a1c39eb0-02e1-3dd8-8c9a-1db4c766fb82,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,0.0,kg/TJ,5.0,kg,0.0,CH4,7565f1e1-7f82-30aa-b6f7-550a7a69146f,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,30.830928480000004,kg/TJ,5.0,kg,154.15464240000003,CH4,c4e6450b-05fc-3204-8c15-b05604ebf042,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,528.6024972600001,kg/TJ,5.0,kg,2643.0124863,CH4,d3831be8-e3b0-3b5f-ad14-e03214495d4f,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3316.2322806600005,kg/TJ,5.0,kg,16581.1614033,CH4,47fb94a5-b596-3e7b-a223-360c607c26af,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,60.06581142000001,kg/TJ,5.0,kg,300.32905710000006,CH4,ce02c309-b07e-3a61-a4c1-9cf519ef8d8e,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4437.123385020001,kg/TJ,5.0,kg,22185.616925100003,CH4,2d7fe137-1f80-3306-ad57-3564d6018428,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,248.59382484000005,kg/TJ,5.0,kg,1242.9691242000004,CH4,5ba4ec0f-8127-3dd9-b0ab-2d83b2ab4988,AR-Y,JUJUY,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,1896.0242456400003,kg/TJ,5.0,kg,9480.121228200001,CH4,757f8093-25c1-378b-8f24-f22e54e9265a,AR-Y,JUJUY,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,63.37468632000001,kg/TJ,5.0,kg,316.87343160000006,CH4,f703a9ae-bc1e-3d3c-8cda-16f28cb6456d,AR-Y,JUJUY,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4244.624721720001,kg/TJ,5.0,kg,21223.123608600003,CH4,d3f33fd4-90b9-3d61-b44d-f3679c137f8e,AR-Y,JUJUY,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,612.0640006200001,kg/TJ,5.0,kg,3060.3200031000006,CH4,a95e018c-e82f-3def-884f-4b0352280796,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,9804.390968400001,kg/TJ,5.0,kg,49021.95484200001,CH4,3817d2e1-192f-3a5a-adec-fed958f8f293,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,427.70127678000006,kg/TJ,5.0,kg,2138.5063839000004,CH4,acd00fc1-a822-3ae4-a575-843fe988fee1,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,1125.0174660000002,kg/TJ,5.0,kg,5625.087330000001,CH4,b2e533da-413e-3e85-8196-2c8fa9d2d71d,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,65.28215538,kg/TJ,5.0,kg,326.41077690000003,CH4,5c13992b-ab40-3da8-b6ab-ce331d14340e,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,339.68520444000006,kg/TJ,5.0,kg,1698.4260222000003,CH4,15c128ab-99a8-3f24-9a67-5fe97efa2ea5,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,10.860895260000001,kg/TJ,5.0,kg,54.304476300000005,CH4,9cd9233b-9307-31c2-a881-716112f13145,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,392.12113962000006,kg/TJ,5.0,kg,1960.6056981000004,CH4,495bffc9-3ec0-3e24-afef-d35e29bee200,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1232.1082289400001,kg/TJ,5.0,kg,6160.541144700001,CH4,f6b434fb-cba6-387a-9cb7-5cfdc5538cf0,AR-M,MENDOZA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,16810.641609600003,kg/TJ,5.0,kg,84053.20804800001,CH4,3766c4fb-d916-3328-91d1-104715cfd7a5,AR-M,MENDOZA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,446.9706070800001,kg/TJ,5.0,kg,2234.8530354000004,CH4,10ea9f0f-15e9-3c75-b1b1-70324d7ef300,AR-M,MENDOZA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,15838.533091920002,kg/TJ,5.0,kg,79192.66545960002,CH4,a016eeaa-b9e8-3715-a1e9-c3e800e76536,AR-M,MENDOZA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1955.4282820800004,kg/TJ,5.0,kg,9777.141410400001,CH4,4becc839-776c-3ccb-ac15-0ccce250e1eb,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,22395.166026120005,kg/TJ,5.0,kg,111975.83013060002,CH4,fffb19e5-0f3a-3d30-9566-964e897f869b,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,870.1173148800001,kg/TJ,5.0,kg,4350.5865744,CH4,4498a843-8045-3fc8-b05d-b70cec887f2e,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,10418.440293960002,kg/TJ,5.0,kg,52092.20146980001,CH4,18c4a9ed-6729-3ab7-a50c-87b05ef566f5,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2519.8834120800007,kg/TJ,5.0,kg,12599.417060400003,CH4,4bd15ab3-4a60-3e82-b089-e8c1bce53964,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,25649.658593940003,kg/TJ,5.0,kg,128248.2929697,CH4,042f2281-9e04-30c0-ab0f-0a44be6827d5,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,970.5514000800001,kg/TJ,5.0,kg,4852.757000400001,CH4,3105daa2-5578-3f85-a98c-21af4b0c913c,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,6203.6733022200015,kg/TJ,5.0,kg,31018.36651110001,CH4,4c01b5ff-5446-3273-9ed2-6355615a1b75,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,357.35848920000007,kg/TJ,5.0,kg,1786.7924460000004,CH4,28bb1ef4-5bf3-377d-aefa-40c65fc50401,AR-A,SALTA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,4408.005285900001,kg/TJ,5.0,kg,22040.0264295,CH4,02cb2fc7-f3f2-3ca3-807f-58e9a83f36f6,AR-A,SALTA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,64.65930834000001,kg/TJ,5.0,kg,323.29654170000003,CH4,16a67593-37f6-391b-b31a-85e60377a290,AR-A,SALTA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4666.097528100001,kg/TJ,5.0,kg,23330.487640500003,CH4,482c75b1-b477-35e5-a5b4-878b3638d5f0,AR-A,SALTA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,319.67624328000005,kg/TJ,5.0,kg,1598.3812164000003,CH4,fbd6078b-e03f-39f6-a815-ffc448241a75,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3797.8487543400006,kg/TJ,5.0,kg,18989.243771700003,CH4,bdca074e-0f48-3b3e-b336-7f90c2c836c7,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,74.66378892000002,kg/TJ,5.0,kg,373.31894460000007,CH4,7c5781b7-74e3-3ac4-9188-e472dc21d3a2,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,5156.978851500001,kg/TJ,5.0,kg,25784.894257500004,CH4,ac5114b1-61c9-3956-9851-052f40e2f223,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,708.8388594600001,kg/TJ,5.0,kg,3544.1942973000005,CH4,7ce20554-f3aa-36f8-88de-101bc6edc140,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3117.9722822400004,kg/TJ,5.0,kg,15589.861411200001,CH4,d25213bf-ecf7-3501-95f4-d8610a57c1d5,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,114.25350390000001,kg/TJ,5.0,kg,571.2675195,CH4,e079f5c5-aa3e-34a4-b74d-d55824158b38,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,3141.0954786000007,kg/TJ,5.0,kg,15705.477393000003,CH4,4fd58eab-c5d2-3541-a7c9-0d0243f19f13,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1174.7284453800003,kg/TJ,5.0,kg,5873.642226900001,CH4,8c078fc6-5bcb-3db0-ab4f-808521cff145,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,12993.796020540001,kg/TJ,5.0,kg,64968.98010270001,CH4,c6135bc0-857d-3401-8104-81f8f8bd0b2a,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,930.6113336400001,kg/TJ,5.0,kg,4653.056668200001,CH4,09eff59c-99b1-3477-8b8f-49ae7a0f4e51,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,51.38488080000001,kg/TJ,5.0,kg,256.92440400000004,CH4,92ed8638-c6a8-3342-bfb4-3cecd25c4923,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,4820.927336691361,kg/TJ,5.0,kg,24104.636683456807,CH4,8114f3e9-221e-3925-9ecd-32b4648c41f2,AR-S,SANTA FE,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,18992.980853940004,kg/TJ,5.0,kg,94964.90426970003,CH4,bd1abdb6-c1e7-35ea-ac2f-0c15a28a09a0,AR-S,SANTA FE,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,431.83153121400005,kg/TJ,5.0,kg,2159.1576560700005,CH4,55914cfe-73b8-3181-a6fd-3f6e281be6e1,AR-S,SANTA FE,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,51037.77947263855,kg/TJ,5.0,kg,255188.89736319275,CH4,9d209301-cf84-3304-801f-b1dab4c94c1b,AR-S,SANTA FE,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,204.95560410000004,kg/TJ,5.0,kg,1024.7780205000001,CH4,2cf70d24-4f77-3f9b-9cd2-dbc2d13d37c1,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,1227.5925879000001,kg/TJ,5.0,kg,6137.962939500001,CH4,b0f5fb7c-fe01-3b91-beaa-30a392a1d61c,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,31.726271100000005,kg/TJ,5.0,kg,158.63135550000004,CH4,30296342-8115-3561-9221-aba2131f6b31,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,450.0459143400001,kg/TJ,5.0,kg,2250.2295717000006,CH4,297b0579-b925-38ff-803d-290b7610a408,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2477.6465971800003,kg/TJ,5.0,kg,12388.232985900002,CH4,03e236a3-09e6-3c49-8697-ccbd78fb89c7,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,14844.313504320002,kg/TJ,5.0,kg,74221.56752160001,CH4,60e4ad1d-dc91-3216-86f5-7217ee66ee78,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,1192.9467213000003,kg/TJ,5.0,kg,5964.733606500002,CH4,faca1039-8ff1-337a-b61b-ef16967d8025,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,713.4323563800001,kg/TJ,5.0,kg,3567.1617819000003,CH4,d9df17ae-1c74-3303-8269-947152f3cb3e,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,569.7882577800001,kg/TJ,5.0,kg,2848.9412889000005,CH4,9e1b3436-eb64-3122-8b52-73ed7f7e9eb6,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,4418.048694420001,kg/TJ,5.0,kg,22090.243472100006,CH4,9ceec188-550b-3265-8c5e-6491f9d10839,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,56.83479240000001,kg/TJ,5.0,kg,284.1739620000001,CH4,38ed4a00-7114-36ed-adc9-90e4e1431400,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,7720.2669166800015,kg/TJ,5.0,kg,38601.33458340001,CH4,4a50fd59-90c6-325b-8548-a9f046ace842,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,15277.002618052202,kg/TJ,5.0,kg,76385.01309026101,CH4,9e09e0b9-00a8-3d6e-8d18-d2548daef8f7,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,153297.18484048743,kg/TJ,5.0,kg,766485.9242024372,CH4,0d7d3671-d1bd-3171-8db2-36a877bac718,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,4810.104045821401,kg/TJ,5.0,kg,24050.520229107005,CH4,30fbfd2e-8729-3cc2-8a9a-c5a95534fac4,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,184850.69607844384,kg/TJ,5.0,kg,924253.4803922193,CH4,9fde167b-6df6-350a-99f6-cfdcabfbda27,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,4354.71293604,kg/TJ,5.0,kg,21773.5646802,CH4,1d3b3faf-be44-3c9e-a8f9-7b63c5714087,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,36228.910208040004,kg/TJ,5.0,kg,181144.55104020002,CH4,46491c04-0aab-35c2-b4f4-64cde2ced202,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1391.1288638400003,kg/TJ,5.0,kg,6955.6443192000015,CH4,fa008d91-2713-3c94-a83c-359673fa8985,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,2553.7117919400002,kg/TJ,5.0,kg,12768.558959700002,CH4,a3d360ad-1a3b-3798-ad5a-2eeccf229d7e,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,101.67977928000002,kg/TJ,5.0,kg,508.3988964000001,CH4,36d44a3b-2eb8-34ae-9f11-7771e3e85a9c,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,471.06700194000007,kg/TJ,5.0,kg,2355.3350097000002,CH4,3c69e0e7-9c6f-3c73-91e1-09b46cc31776,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,6.384182160000001,kg/TJ,5.0,kg,31.920910800000005,CH4,62142698-0dd8-3c0e-91e7-74bdcceb4f09,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,3327.1321038600004,kg/TJ,5.0,kg,16635.660519300003,CH4,cc847b37-621e-3120-9171-02e2a37f8f78,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2629.4266352400005,kg/TJ,5.0,kg,13147.133176200003,CH4,63c5c14a-236c-3343-9107-69b8e45c2660,AR-U,CHUBUT,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,24314.352396060003,kg/TJ,5.0,kg,121571.76198030001,CH4,c992abc9-71a7-3521-8570-8d647d07b684,AR-U,CHUBUT,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1503.4748986800003,kg/TJ,5.0,kg,7517.3744934000015,CH4,08b96e03-de34-3fb3-9df0-a967b03b29f1,AR-U,CHUBUT,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,22628.110819080004,kg/TJ,5.0,kg,113140.55409540002,CH4,eabef12e-4fc8-3e15-b0a1-c2c00e7003bb,AR-U,CHUBUT,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2809.0790783400003,kg/TJ,5.0,kg,14045.395391700002,CH4,c194341f-cde1-330e-b02d-1151c04743cb,AR-X,CORDOBA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,21901.715458680002,kg/TJ,5.0,kg,109508.57729340001,CH4,d04ad139-49db-373c-a19c-b951e8ae008e,AR-X,CORDOBA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,541.3708615800001,kg/TJ,5.0,kg,2706.8543079000005,CH4,1104570f-a9d2-353a-8904-350361370d03,AR-X,CORDOBA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,24079.227638460005,kg/TJ,5.0,kg,120396.13819230002,CH4,08432786-4321-39c5-9c0d-02760d5c2457,AR-X,CORDOBA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2.9195955000000007,kg/TJ,5.0,kg,14.597977500000002,CH4,8e388170-5482-3503-8aa7-f076a6b20b72,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,0.03892794000000001,kg/TJ,5.0,kg,0.19463970000000003,CH4,cddabe00-0c57-311b-9d8f-051a15e967da,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,5.0,kg,0.0,CH4,1b3c4583-f329-37aa-abc3-faeb9ee63f3c,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,125.73724620000002,kg/TJ,5.0,kg,628.6862310000001,CH4,15019b9e-66cb-3098-9fc7-1cc61750c85f,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,655.1183022600001,kg/TJ,5.0,kg,3275.5915113,CH4,4c696550-a919-37a2-b8f1-70dddb14746f,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3454.3096838400006,kg/TJ,5.0,kg,17271.548419200004,CH4,05ca1410-68d7-3d94-aaef-0dc7b344b536,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,64.58145246000001,kg/TJ,5.0,kg,322.90726230000007,CH4,41f5925a-c414-38fa-9703-d2736843cf90,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,4876.38625998,kg/TJ,5.0,kg,24381.931299900003,CH4,f9c0dd7a-db14-3936-95c3-3eeefb796a0c,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,388.30620150000004,kg/TJ,5.0,kg,1941.5310075000002,CH4,168a02ff-c74b-354e-b764-c151e7e8ad2e,AR-Y,JUJUY,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,2028.0678181200003,kg/TJ,5.0,kg,10140.339090600002,CH4,0f2cde80-506e-380e-b57f-766ee30f7f56,AR-Y,JUJUY,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,108.10288938000002,kg/TJ,5.0,kg,540.5144469000002,CH4,28321e02-bfe4-306c-a19e-74e2f8d26951,AR-Y,JUJUY,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,4615.170783997391,kg/TJ,5.0,kg,23075.853919986952,CH4,04364733-e1e1-3bcd-a3f6-146d77664924,AR-Y,JUJUY,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,685.1317440000001,kg/TJ,5.0,kg,3425.658720000001,CH4,e071d01f-6bd0-3383-b83b-67033ec9be42,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,9747.322608360002,kg/TJ,5.0,kg,48736.61304180001,CH4,0b57aeb9-ad17-38ae-93fe-054dbc46659a,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,549.7403686800001,kg/TJ,5.0,kg,2748.7018434,CH4,0673b11c-d8cf-3fe5-856c-d1d3311fe7fe,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,1295.2493476200002,kg/TJ,5.0,kg,6476.246738100001,CH4,088ea588-086c-3d0e-97be-e007ae6f050a,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,71.62740960000001,kg/TJ,5.0,kg,358.13704800000005,CH4,9a228501-2bba-3f46-9cc8-33f364977076,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,327.5007592200001,kg/TJ,5.0,kg,1637.5037961000003,CH4,32b21924-1197-3c65-b734-8de7b3c04734,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,11.717309940000002,kg/TJ,5.0,kg,58.586549700000006,CH4,b9e0d512-9040-3cd4-844a-8fc1b646f5c5,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,519.0262240200001,kg/TJ,5.0,kg,2595.1311201000003,CH4,8886cd49-2ea6-3be1-98ba-c7283b5edd3d,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,1461.8609308200002,kg/TJ,5.0,kg,7309.304654100001,CH4,a35e012d-e836-3be3-acd6-6c9508304c63,AR-M,MENDOZA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,16964.87410788,kg/TJ,5.0,kg,84824.3705394,CH4,d83af40f-86a6-3dd2-b99c-d8bfd79a5d88,AR-M,MENDOZA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,672.9862267200001,kg/TJ,5.0,kg,3364.9311336000005,CH4,9866ac47-30a4-35b8-a13e-ae01b7f6e895,AR-M,MENDOZA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,17084.888946900002,kg/TJ,5.0,kg,85424.44473450001,CH4,9dd55a22-960b-3a33-8279-ec3570d0809d,AR-M,MENDOZA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2375.2271870400004,kg/TJ,5.0,kg,11876.135935200002,CH4,fe6e5c81-24c3-3b29-a7ab-1846a93b6087,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,21737.789903340003,kg/TJ,5.0,kg,108688.94951670001,CH4,10d2d954-a3f2-356d-97ae-a1b331636b5e,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1237.6749243600002,kg/TJ,5.0,kg,6188.3746218000015,CH4,6b7b0522-7ac1-33c6-b960-f388c0311805,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,9276.45024612,kg/TJ,5.0,kg,46382.251230600006,CH4,8e14c8d7-7938-3860-9f95-2c28ef2fc5a0,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,3034.8222024000006,kg/TJ,5.0,kg,15174.111012000003,CH4,f55a8574-4fc9-32c9-8ee6-78e5e7c38f0d,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,25632.569228280005,kg/TJ,5.0,kg,128162.84614140002,CH4,f099db16-a2e8-32b2-b7cc-94cda3e31cc9,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1347.7631386800003,kg/TJ,5.0,kg,6738.815693400002,CH4,9e00f7c1-b9ff-3e46-a4f4-b83c0489bc18,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,6303.134188920001,kg/TJ,5.0,kg,31515.670944600006,CH4,28289395-d1d3-3fee-819c-04cd903c91b9,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,446.6591835600001,kg/TJ,5.0,kg,2233.2959178000006,CH4,242803e7-6071-31c3-8e1d-5464c474b1d9,AR-A,SALTA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,4608.289537200001,kg/TJ,5.0,kg,23041.447686000007,CH4,0ad50218-3de8-3597-84ae-8d88ad6a2285,AR-A,SALTA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,97.59234558000001,kg/TJ,5.0,kg,487.9617279000001,CH4,ec30b388-44ee-3392-a1cc-e2519ae5b89e,AR-A,SALTA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,5601.360328591131,kg/TJ,5.0,kg,28006.801642955656,CH4,9a4b62b1-65b2-393f-b129-ef6be3a545f3,AR-A,SALTA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,332.9117428800001,kg/TJ,5.0,kg,1664.5587144000003,CH4,ddb1f17c-5978-35d6-8fda-a3e8644b6506,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3729.3745078800007,kg/TJ,5.0,kg,18646.872539400003,CH4,b7a262a5-aadc-36d5-9af0-fdf450235f9a,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,89.80675758000001,kg/TJ,5.0,kg,449.03378790000005,CH4,0fd2cd28-dbf7-34a1-8860-6c4e2f7c38ec,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,5768.420005080001,kg/TJ,5.0,kg,28842.100025400003,CH4,c9c70237-d477-3243-afb5-e34660e1e4d1,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,880.1217954600002,kg/TJ,5.0,kg,4400.6089773,CH4,2a181588-5bbc-3439-b4bc-0adc06a53af6,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3299.4932664600005,kg/TJ,5.0,kg,16497.466332300002,CH4,3c8c9144-dae1-37ab-bf0c-fb2d8c33d614,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,158.08636434000002,kg/TJ,5.0,kg,790.4318217000001,CH4,55cc3f18-bc9f-3340-bdfd-f513bc9c732f,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,3924.130991700001,kg/TJ,5.0,kg,19620.654958500003,CH4,38b36ee8-7786-3733-b7c4-cc6abc03126b,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,1267.37694258,kg/TJ,5.0,kg,6336.8847129000005,CH4,57428c7c-aef6-3c2e-9848-285b3a2175cf,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,12444.444931260003,kg/TJ,5.0,kg,62222.224656300015,CH4,be98928d-2ad4-3efb-aa51-d584b3a1d60a,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,992.6235420600002,kg/TJ,5.0,kg,4963.117710300001,CH4,16c17439-4f2f-3625-9b63-3054e0ad597c,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,98.13733674000002,kg/TJ,5.0,kg,490.6866837000001,CH4,46b16f13-ea57-3736-b32f-5e7ecb002585,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,4482.705277804201,kg/TJ,5.0,kg,22413.526389021004,CH4,fa2e5cc7-2448-374a-b52a-674976ddfa5d,AR-S,SANTA FE,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,17534.841434184003,kg/TJ,5.0,kg,87674.20717092001,CH4,7dd78ec7-8554-3ef1-9b63-81025de52189,AR-S,SANTA FE,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,788.3343842928001,kg/TJ,5.0,kg,3941.6719214640007,CH4,32b02bb8-34f5-3b80-91f0-7e124d002e54,AR-S,SANTA FE,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,65704.1097249978,kg/TJ,5.0,kg,328520.548624989,CH4,420ff58b-f054-30dd-b7e9-86e9e693a5de,AR-S,SANTA FE,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,240.14646186000004,kg/TJ,5.0,kg,1200.7323093000002,CH4,f02542d0-4f1b-3271-9568-67ee5c09c115,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,1272.6322144800001,kg/TJ,5.0,kg,6363.1610724,CH4,2fb1c6a1-d6bb-3771-ae8d-3b6c0ebca6a7,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,64.11431718000001,kg/TJ,5.0,kg,320.57158590000006,CH4,cb7463c1-e79f-37b2-80b4-9e1ae6f95b21,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,514.2632737771801,kg/TJ,5.0,kg,2571.3163688859004,CH4,8dcb8a83-1810-3e63-8e70-c6cccf39f756,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2707.4382270000006,kg/TJ,5.0,kg,13537.191135000003,CH4,bcedf809-0afb-33a3-86d1-15fcccdf7bd2,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,14803.400239380002,kg/TJ,5.0,kg,74017.0011969,CH4,82e1ea50-24c1-30ee-bd7c-f6e78eff8956,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1313.7790470600003,kg/TJ,5.0,kg,6568.895235300001,CH4,f8e3b24f-6e86-31b5-8d14-936e72f89191,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,716.8190871600001,kg/TJ,5.0,kg,3584.0954358000004,CH4,f98cad45-ab39-3412-ad60-d87df2d0fb63,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,913.9891032600002,kg/TJ,5.0,kg,4569.945516300001,CH4,632c4fc1-8dfe-3786-8a07-218a1f596baa,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,4530.316873380001,kg/TJ,5.0,kg,22651.584366900006,CH4,027eff47-f8ab-37da-a59a-ac6b35881745,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,160.77239220000004,kg/TJ,5.0,kg,803.8619610000002,CH4,2353e5c8-3cee-3eb9-b382-b9a2f2a38c80,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,8682.000562216488,kg/TJ,5.0,kg,43410.00281108244,CH4,766650df-3585-3265-9cf6-618b133b7741,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,14230.922450225402,kg/TJ,5.0,kg,71154.61225112701,CH4,9197c7e6-89e6-3ed0-99c0-4f96d23f2276,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,163326.94794967922,kg/TJ,5.0,kg,816634.7397483961,CH4,d389a27b-a893-3135-910a-762da79cd75f,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,5037.835998336001,kg/TJ,5.0,kg,25189.17999168,CH4,bc0ed9d3-d6d3-318c-b108-5800154402cf,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,198467.63265565143,kg/TJ,5.0,kg,992338.1632782571,CH4,e0ec43bd-770c-3a48-bc22-c27184c5fba5,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,6093.740799660001,kg/TJ,5.0,kg,30468.703998300007,CH4,8b104c99-817e-33c4-b3d5-2faa7a1946e7,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,37167.15141792001,kg/TJ,5.0,kg,185835.75708960005,CH4,ed241bdd-e681-34e5-ba7c-467a56020a9d,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1652.1407015400002,kg/TJ,5.0,kg,8260.703507700002,CH4,02c4d1c2-4270-3b20-aa63-8877dd948e4b,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,2882.1468217200004,kg/TJ,5.0,kg,14410.734108600001,CH4,398853be-addb-3b6a-8df0-1a911f6d8900,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,109.58215110000002,kg/TJ,5.0,kg,547.9107555,CH4,e5f0f2a4-da78-362e-a081-1da522854c15,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,485.82069120000006,kg/TJ,5.0,kg,2429.1034560000003,CH4,61a5cab7-c186-3d1b-ac83-3d89792aabca,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,7.902371820000002,kg/TJ,5.0,kg,39.51185910000001,CH4,966b9543-6150-3312-93b0-7209c2901b4c,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,3996.4980321600005,kg/TJ,5.0,kg,19982.490160800004,CH4,740cd071-d92b-3bf4-b0a0-f97de041474f,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3191.7453998928004,kg/TJ,5.0,kg,15958.726999464001,CH4,ad586fdf-2131-38ca-b0a7-e5770920afd7,AR-U,CHUBUT,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,27194.831544830406,kg/TJ,5.0,kg,135974.15772415203,CH4,03d7981b-7195-3ff4-a786-17e577c66cb0,AR-U,CHUBUT,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1745.0379482766002,kg/TJ,5.0,kg,8725.189741383001,CH4,bd78c74d-a3e0-3583-9244-8592471494ff,AR-U,CHUBUT,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,15392.725651687202,kg/TJ,5.0,kg,76963.62825843602,CH4,b9f38481-45f3-3ebf-a349-9617b5e1ab15,AR-U,CHUBUT,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3160.2480250800004,kg/TJ,5.0,kg,15801.240125400001,CH4,5181bd87-7240-3321-8a5d-56f0037c31fc,AR-X,CORDOBA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,24655.867213680005,kg/TJ,5.0,kg,123279.33606840002,CH4,28d25ed0-91f5-39a2-bda3-924b777aa28e,AR-X,CORDOBA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,621.99062532,kg/TJ,5.0,kg,3109.9531266000004,CH4,945f9e9f-ca7c-3c3c-b7fe-20683b118b41,AR-X,CORDOBA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,26182.465308720006,kg/TJ,5.0,kg,130912.32654360004,CH4,44fbf864-65c9-3a0b-a134-864971794a5b,AR-X,CORDOBA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,5.255271900000001,kg/TJ,5.0,kg,26.276359500000005,CH4,37ea7986-ddf0-3763-831c-5edcf47ca3a0,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,0.7007029200000001,kg/TJ,5.0,kg,3.503514600000001,CH4,e58a9d5f-65d8-3395-9662-b9bdec1395f6,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,5.0,kg,0.0,CH4,1667b163-8d24-3570-880e-38f1ce578d1d,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,155.71176000000003,kg/TJ,5.0,kg,778.5588000000001,CH4,d6a7e1b2-0691-313b-bbaa-cf6931d601f8,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,834.8875291800001,kg/TJ,5.0,kg,4174.4376459000005,CH4,8c0e7f01-c892-3797-8581-c01c1b78619f,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3613.524958440001,kg/TJ,5.0,kg,18067.624792200004,CH4,b556ab71-a4a9-3b01-bf73-3cf03b3448c2,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,79.68549318000001,kg/TJ,5.0,kg,398.4274659,CH4,28250cb1-5744-3873-b4ed-d3fa2390a0fe,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4972.343632080001,kg/TJ,5.0,kg,24861.718160400007,CH4,87559784-c9cc-368c-ab23-abca3cde22b8,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,417.8135800200001,kg/TJ,5.0,kg,2089.0679001000003,CH4,092c5c93-6f85-3f19-ade2-79f948eee56e,AR-Y,JUJUY,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,2026.1214211200004,kg/TJ,5.0,kg,10130.607105600002,CH4,25d2b174-1369-3d3c-bbf6-0b579a5ad9c5,AR-Y,JUJUY,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,139.05060168000003,kg/TJ,5.0,kg,695.2530084000001,CH4,d786970b-9b9f-3336-b9bf-ccea071fcea2,AR-Y,JUJUY,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4623.494556607081,kg/TJ,5.0,kg,23117.472783035406,CH4,d19c402f-ccf2-3053-aa33-498d603ac41d,AR-Y,JUJUY,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,820.1221615380001,kg/TJ,5.0,kg,4100.610807690001,CH4,4ae7bb2c-bbb5-35bd-8be3-db08ab908421,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,10228.849547778002,kg/TJ,5.0,kg,51144.24773889001,CH4,2739201a-bc79-3690-8d52-28e3f334a4b0,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,636.6898154640002,kg/TJ,5.0,kg,3183.449077320001,CH4,efc6ba46-d37d-3583-b648-22ceeff59fc3,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,1445.0479535340003,kg/TJ,5.0,kg,7225.239767670001,CH4,31562ee8-d969-3ba6-9dca-a1ccebc122a9,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,74.04094188000002,kg/TJ,5.0,kg,370.20470940000007,CH4,e454dec1-9ed4-31d9-9587-74c5303e95a0,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,344.3176293000001,kg/TJ,5.0,kg,1721.5881465000004,CH4,8b9ca739-0ad0-3feb-8078-4bae39f25078,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,12.573724620000002,kg/TJ,5.0,kg,62.86862310000001,CH4,dc312e80-a7dc-39e3-8c06-2e57d3dbe622,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,577.1067105000001,kg/TJ,5.0,kg,2885.5335525000005,CH4,193d8b18-a3b5-372b-ad39-0103dd1b0e6f,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1649.0653942800002,kg/TJ,5.0,kg,8245.326971400002,CH4,e49209f9-2d3d-337b-be45-47c7736fec92,AR-M,MENDOZA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,18207.609664440002,kg/TJ,5.0,kg,91038.04832220002,CH4,2fbb1a20-3715-3e27-877a-2bae49115638,AR-M,MENDOZA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,764.9340210000001,kg/TJ,5.0,kg,3824.6701050000006,CH4,d45d1a18-01d6-3e5b-96b4-8c94e5116973,AR-M,MENDOZA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,17322.349380900003,kg/TJ,5.0,kg,86611.74690450002,CH4,9b56e400-1040-3c36-9f1f-266de37fbf2d,AR-M,MENDOZA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,2851.1885988762006,kg/TJ,5.0,kg,14255.942994381003,CH4,29810d2b-e9d1-3047-97af-d197c24d61c6,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,24089.911022313605,kg/TJ,5.0,kg,120449.55511156803,CH4,1b7f9c0e-1269-376d-a692-6f7f8d75bb01,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1466.2084031592003,kg/TJ,5.0,kg,7331.042015796002,CH4,c0ebf762-0756-3efb-9c2d-160cec5702b8,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,5337.006559941601,kg/TJ,5.0,kg,26685.032799708006,CH4,2a612335-2a91-3366-bf2b-5c24095cbd02,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3789.7015257774005,kg/TJ,5.0,kg,18948.507628887004,CH4,b80f9dfe-5d4d-3d6a-aefa-8c24439256df,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,29254.269443399404,kg/TJ,5.0,kg,146271.347216997,CH4,b0a1f6b9-ab7d-3d9b-8480-b637cd41577f,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1548.6293626830002,kg/TJ,5.0,kg,7743.146813415001,CH4,aff7747b-5023-371f-aee3-54f790c3ca4a,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,2566.1278584030006,kg/TJ,5.0,kg,12830.639292015003,CH4,a3915e7b-4150-3fe2-a3fe-2ddcfc6a27ce,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,476.75048118000007,kg/TJ,5.0,kg,2383.7524059,CH4,86f03b32-a010-3a49-a636-e471168625e8,AR-A,SALTA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,4690.972481760001,kg/TJ,5.0,kg,23454.862408800003,CH4,4f5c54a0-d30a-3dc4-8066-5e02aa953673,AR-A,SALTA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,123.55728156000002,kg/TJ,5.0,kg,617.7864078000001,CH4,f9fe8956-058d-392f-aafb-551a46235303,AR-A,SALTA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,6855.414216405601,kg/TJ,5.0,kg,34277.07108202801,CH4,c2e6e6ac-48e8-315d-ad33-ce66b6a63a4b,AR-A,SALTA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,370.20470940000007,kg/TJ,5.0,kg,1851.0235470000002,CH4,29baac24-2f32-3c05-8246-27f73c7a2360,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3943.5949617000006,kg/TJ,5.0,kg,19717.974808500003,CH4,6cd44721-f024-39f0-8f74-3e4acb6c9b6f,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,103.82081598000002,kg/TJ,5.0,kg,519.1040799000001,CH4,5ce5e264-7d7d-3b16-89ff-b0d91edadc6c,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,6683.654802420001,kg/TJ,5.0,kg,33418.2740121,CH4,d602335d-96e3-37ba-aac2-7b123303142e,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,701.2479111600002,kg/TJ,5.0,kg,3506.2395558000007,CH4,862ddd18-696e-3ee8-adb8-e011b6c19912,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3478.3282228200005,kg/TJ,5.0,kg,17391.641114100003,CH4,ccad0496-4b12-39fb-a978-7e30d55888ac,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,172.84005360000003,kg/TJ,5.0,kg,864.2002680000002,CH4,27d12511-8db8-303f-9020-f5d5101db6b4,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4046.0922277200007,kg/TJ,5.0,kg,20230.461138600003,CH4,2cf1fffb-8de4-3e0f-b76a-3907f7855d83,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1473.9324850140003,kg/TJ,5.0,kg,7369.6624250700015,CH4,09eec2d5-58f3-31b4-aef7-2398b210fc74,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,12408.136452342602,kg/TJ,5.0,kg,62040.68226171301,CH4,0cad65f5-5f98-3692-bec0-1fb0cd76ec67,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1103.3065753032001,kg/TJ,5.0,kg,5516.532876516001,CH4,535e4dbb-c416-3fc4-9f92-3e3deb9d4269,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,272.3764605036001,kg/TJ,5.0,kg,1361.8823025180004,CH4,1d48db6b-8d2b-364a-b45b-72bd89f4830c,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3441.4685242722007,kg/TJ,5.0,kg,17207.342621361004,CH4,ab9da3ab-9a8b-34e1-9b86-7c7577102048,AR-S,SANTA FE,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,19718.523303174603,kg/TJ,5.0,kg,98592.61651587301,CH4,4cc43e64-501e-39fb-9609-11520630501c,AR-S,SANTA FE,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,998.1178315116001,kg/TJ,5.0,kg,4990.589157558001,CH4,c5732a18-d39b-3489-88f2-a2efe39ace48,AR-S,SANTA FE,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,61225.63124291881,kg/TJ,5.0,kg,306128.156214594,CH4,fa634480-4716-3e9b-9bbe-80826868ff38,AR-S,SANTA FE,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,255.44514228000006,kg/TJ,5.0,kg,1277.2257114000004,CH4,de7126c7-e4c9-3a1a-a54f-367b61008867,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,1256.0878399800001,kg/TJ,5.0,kg,6280.439199900001,CH4,16723d35-fbfc-3a37-8b6c-071b90b1ee5b,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,81.94331370000002,kg/TJ,5.0,kg,409.7165685000001,CH4,85783371-2cbd-33e6-ad85-2f010162a2f0,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,525.6608296180201,kg/TJ,5.0,kg,2628.3041480901006,CH4,2a7e949a-e357-3267-a66b-64559b93a819,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,2873.3942636904003,kg/TJ,5.0,kg,14366.971318452,CH4,cd85263e-7317-32f9-9563-c031b2912709,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,15437.931889850403,kg/TJ,5.0,kg,77189.65944925201,CH4,92a02c0b-4728-34dd-b9fa-87d4ee071ae4,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1400.8791449718003,kg/TJ,5.0,kg,7004.395724859001,CH4,8e26745d-af90-3d8e-8e64-204f5b760bf9,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,836.5871230404001,kg/TJ,5.0,kg,4182.935615202001,CH4,dc020262-cd19-33b7-859e-556ccf2a85dc,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1043.6580714000002,kg/TJ,5.0,kg,5218.290357000001,CH4,9238734f-fe0f-34de-8d90-cdc2208d1e15,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,4561.031018040001,kg/TJ,5.0,kg,22805.155090200005,CH4,fa990e0e-fa79-3bd1-8a07-cf9d382ae38f,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,270.549183,kg/TJ,5.0,kg,1352.7459150000002,CH4,e2b3e0de-51a8-35a0-8412-68be104bbf87,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,7436.5408381472735,kg/TJ,5.0,kg,37182.70419073637,CH4,52b26ab0-7d79-3115-91cf-814009d2ddd4,AR-T,TUCUMAN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,40806.79702410001,kg/TJ,50.0,kg,2040339.8512050004,CH4,9237b1ab-e835-3c49-be3e-6c263333ce74,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,6863.540813160002,kg/TJ,50.0,kg,343177.0406580001,CH4,b67d7cb5-e94c-35d8-8eb6-137cde905af5,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,596.9599599000001,kg/TJ,50.0,kg,29847.997995,CH4,99b1fa8a-fb68-3e01-bd74-8aa257da10f5,AR-K,CATAMARCA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,56.79586446000001,kg/TJ,50.0,kg,2839.7932230000006,CH4,3d2e084b-f3cc-3a36-bc68-25a4c87de9b0,AR-U,CHUBUT,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,14443.861785540003,kg/TJ,50.0,kg,722193.0892770002,CH4,199f7c8a-7e6b-337c-acaa-58ed227cc8ac,AR-X,CORDOBA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,17.167221540000003,kg/TJ,50.0,kg,858.3610770000001,CH4,2ad07486-1f82-396b-85f9-c42dcaf96893,AR-W,CORRIENTES,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1669.5414907200002,kg/TJ,50.0,kg,83477.07453600001,CH4,d555cb1e-b151-3e59-8ccf-a35bb1a63f23,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1752.9251382000002,kg/TJ,50.0,kg,87646.25691000001,CH4,84fec819-2eeb-35e9-a1a7-8e00e6846f84,AR-Y,JUJUY,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,345.7190351400001,kg/TJ,50.0,kg,17285.951757000003,CH4,5d7c95e3-459b-34a3-bcce-83f32603f228,AR-L,LA PAMPA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,239.25111924000004,kg/TJ,50.0,kg,11962.555962000002,CH4,ea63b06f-a10a-3cd2-9c24-23b4d2f97727,AR-F,LA RIOJA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,5696.169748440001,kg/TJ,50.0,kg,284808.48742200003,CH4,a4603f63-d71f-312b-a77b-6ee261a07d5c,AR-M,MENDOZA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,375.45998130000004,kg/TJ,50.0,kg,18772.999065000004,CH4,dfad328e-5e18-39bd-82fe-ee533d16c459,AR-Q,NEUQUEN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,660.5682138600001,kg/TJ,50.0,kg,33028.410693000005,CH4,4560c8b7-062f-30a4-be1c-2223dd571ce9,AR-R,RIO NEGRO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,2779.6495557000003,kg/TJ,50.0,kg,138982.47778500002,CH4,5aebb548-de2e-3de6-894a-d31eb70f52e4,AR-A,SALTA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1876.2877800600004,kg/TJ,50.0,kg,93814.38900300002,CH4,550427f2-08d2-3aab-82c4-494f7a8f9b62,AR-J,SAN JUAN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1696.3239134400003,kg/TJ,50.0,kg,84816.19567200002,CH4,595b6022-0989-34da-b2dd-b91b17400f41,AR-D,SAN LUIS,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,7755.263134740001,kg/TJ,50.0,kg,387763.15673700004,CH4,74629a6a-f884-3e78-8b82-efa36c543a56,AR-S,SANTA FE,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1583.5107433200003,kg/TJ,50.0,kg,79175.53716600001,CH4,d6870126-694d-33de-af40-9c8b50a7b0f4,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,25.419944820000005,kg/TJ,50.0,kg,1270.9972410000003,CH4,b831029f-9523-374d-aa0b-408f48776a52,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,4180.7050442400005,kg/TJ,50.0,kg,209035.25221200002,CH4,bc56c121-50e6-3638-8509-beab1b0ffe70,AR-T,TUCUMAN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,42708.00530350981,kg/TJ,50.0,kg,2135400.2651754906,CH4,ed0315ba-7c09-33e1-afe6-4f90ae959941,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,7064.837190900002,kg/TJ,50.0,kg,353241.8595450001,CH4,ad274d9a-ae60-3ddf-8d28-42d91b754a50,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,630.2822765400001,kg/TJ,50.0,kg,31514.113827000005,CH4,f29472f8-630b-3043-b4cd-3c12654ecf66,AR-K,CATAMARCA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,57.96370266000001,kg/TJ,50.0,kg,2898.1851330000004,CH4,a968f49a-6a58-3275-8760-9d491d912e1e,AR-U,CHUBUT,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,14999.947408440003,kg/TJ,50.0,kg,749997.3704220002,CH4,d595bb08-00d5-3eff-9917-13ec6ef3b434,AR-X,CORDOBA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,21.721790520000003,kg/TJ,50.0,kg,1086.0895260000002,CH4,de62c948-2632-3987-b1f8-59c91bdb941e,AR-W,CORRIENTES,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1724.8970214000003,kg/TJ,50.0,kg,86244.85107000002,CH4,46355ae0-d09d-37c5-a524-b8325531920a,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1811.0834805600002,kg/TJ,50.0,kg,90554.17402800001,CH4,f979c71c-52af-3c6b-874a-c04c096a1227,AR-Y,JUJUY,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,339.33485298000005,kg/TJ,50.0,kg,16966.742649000003,CH4,8fd276aa-0d8e-35b9-aec8-19a0784b96d7,AR-L,LA PAMPA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,240.45788538000005,kg/TJ,50.0,kg,12022.894269000002,CH4,b4779e37-eab3-3a3a-8222-d2932d4eaf18,AR-F,LA RIOJA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,5740.820095620001,kg/TJ,50.0,kg,287041.004781,CH4,2677dc9d-60d9-382f-aadd-804dbb9e9c1f,AR-M,MENDOZA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,355.80137160000004,kg/TJ,50.0,kg,17790.068580000003,CH4,000d5675-c3ff-3a61-a959-3b742db73476,AR-Q,NEUQUEN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,600.3856186200001,kg/TJ,50.0,kg,30019.280931,CH4,c3e80c5e-19a9-3fdd-9ae7-2487029e11ab,AR-R,RIO NEGRO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,2857.0772283600004,kg/TJ,50.0,kg,142853.86141800001,CH4,fadfcb07-28a6-3c81-8adf-a9f1a02847d2,AR-A,SALTA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1896.6470926800002,kg/TJ,50.0,kg,94832.35463400002,CH4,d48fe418-6290-3dec-b6fc-d564c95366e2,AR-J,SAN JUAN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1753.6258411200004,kg/TJ,50.0,kg,87681.29205600002,CH4,6c0396ef-1f07-35dc-9085-61f23bf42cbd,AR-D,SAN LUIS,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,7865.1897981090015,kg/TJ,50.0,kg,393259.4899054501,CH4,d2d267b2-85ca-33f8-a728-060e28604545,AR-S,SANTA FE,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1588.2210240600002,kg/TJ,50.0,kg,79411.05120300001,CH4,4c11c9c8-d0c2-3819-b98b-b26569c0a94b,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,27.366341820000006,kg/TJ,50.0,kg,1368.3170910000003,CH4,3e7b4318-eddf-3d74-9fc5-0ffdc0c5572c,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,4242.9508203000005,kg/TJ,50.0,kg,212147.54101500002,CH4,dfd3afff-d7f2-3deb-af32-8b9811907e3b,AR-T,TUCUMAN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,31990.607383776005,kg/TJ,50.0,kg,1599530.3691888002,CH4,5f997de0-4ae2-3225-9f8a-b21363cdcbb7,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,4984.294509660001,kg/TJ,50.0,kg,249214.72548300002,CH4,58259b7f-10f1-339e-b0c1-339bd8164bc4,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,501.0415157400001,kg/TJ,50.0,kg,25052.075787000005,CH4,5ae66883-d550-3738-beae-2264c573ab1d,AR-K,CATAMARCA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,44.02750014000001,kg/TJ,50.0,kg,2201.3750070000006,CH4,4537a845-eeb8-3e03-99c7-6342cd68f928,AR-U,CHUBUT,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,11422.820073900002,kg/TJ,50.0,kg,571141.0036950001,CH4,a5207e81-1dc7-3ac8-8297-7652493ed6b3,AR-X,CORDOBA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,13.663706940000003,kg/TJ,50.0,kg,683.1853470000001,CH4,904aa0f8-0434-3599-a4f9-5f19faf1db20,AR-W,CORRIENTES,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1299.5703489600003,kg/TJ,50.0,kg,64978.51744800001,CH4,b534667c-80e6-3bff-ac88-651093247aa5,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1335.6176214000002,kg/TJ,50.0,kg,66780.88107,CH4,f7784209-98cc-329c-86ad-d196134f54df,AR-Y,JUJUY,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,245.09031024000004,kg/TJ,50.0,kg,12254.515512000002,CH4,49214953-6f82-3121-89d4-a84cdf65cd95,AR-L,LA PAMPA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,137.76597966000003,kg/TJ,50.0,kg,6888.2989830000015,CH4,615cb6b5-319d-3e81-a60a-22350a2c5a15,AR-F,LA RIOJA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,4338.8692644600005,kg/TJ,50.0,kg,216943.46322300003,CH4,e15fdbc0-cdaa-353d-a220-59be42bb35cd,AR-M,MENDOZA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,224.14707852000004,kg/TJ,50.0,kg,11207.353926000002,CH4,9061427b-68ca-30a4-89c1-70084a38c322,AR-Q,NEUQUEN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,417.8914359000001,kg/TJ,50.0,kg,20894.571795000003,CH4,15a46e28-34a8-3218-8083-8a6895ddad67,AR-R,RIO NEGRO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,2235.8262339000003,kg/TJ,50.0,kg,111791.31169500001,CH4,eb886fa7-0518-3742-8fb0-3497e2999e83,AR-A,SALTA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1539.7168108200003,kg/TJ,50.0,kg,76985.84054100001,CH4,182829ed-f300-376c-b241-c05bc6ab7118,AR-J,SAN JUAN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1368.3949468800001,kg/TJ,50.0,kg,68419.747344,CH4,f7b75077-e153-3afd-80a9-40441e0c01a7,AR-D,SAN LUIS,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,6038.259531733801,kg/TJ,50.0,kg,301912.97658669006,CH4,5503feb0-465a-3043-a354-86bb7e42060d,AR-S,SANTA FE,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1072.1143955400003,kg/TJ,50.0,kg,53605.71977700001,CH4,22234d4f-9151-3948-8343-7daeb1ff5e2a,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,24.018538980000002,kg/TJ,50.0,kg,1200.9269490000001,CH4,bb175c9c-eb71-35cb-a38e-c5a3e160ec73,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,3467.194831980001,kg/TJ,50.0,kg,173359.74159900003,CH4,019c481b-6601-3c8f-b2fe-80cefed63f49,AR-T,TUCUMAN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,40726.08032978941,kg/TJ,50.0,kg,2036304.0164894704,CH4,049f16a0-983d-3552-a118-bc7276c0f5e2,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,6498.085312440001,kg/TJ,50.0,kg,324904.26562200004,CH4,97361b7f-2e69-3e3a-9bd7-23ef715b4088,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,567.9975725400001,kg/TJ,50.0,kg,28399.878627000006,CH4,afe47715-b079-3037-9113-7940936dff11,AR-K,CATAMARCA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,53.525917500000006,kg/TJ,50.0,kg,2676.2958750000003,CH4,f04184a3-403f-3927-8caa-a5f93a284521,AR-U,CHUBUT,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,14180.786767020003,kg/TJ,50.0,kg,709039.3383510001,CH4,29a630d1-9841-3196-8ecf-001dad62bc34,AR-X,CORDOBA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,12.534796680000003,kg/TJ,50.0,kg,626.7398340000002,CH4,1b503bc5-5ac0-313a-9697-bdc70c88b646,AR-W,CORRIENTES,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1728.0112566000003,kg/TJ,50.0,kg,86400.56283000001,CH4,386f276c-6e63-35c6-a86a-2264681233d8,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1697.7253192800003,kg/TJ,50.0,kg,84886.26596400002,CH4,44854775-710d-351c-a1eb-0afa7b9db29d,AR-Y,JUJUY,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,293.55559554000007,kg/TJ,50.0,kg,14677.779777000003,CH4,5ec0efcd-1cca-33c5-b1cf-b5c50cc4c1b0,AR-L,LA PAMPA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,191.09725746000004,kg/TJ,50.0,kg,9554.862873000002,CH4,cce9ce55-1ba6-379f-a4f2-c5621cdf2a3a,AR-F,LA RIOJA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,5321.605109760001,kg/TJ,50.0,kg,266080.25548800005,CH4,ba6dc2b6-68cb-3795-9025-cb7dd04bbced,AR-M,MENDOZA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,244.62317496000003,kg/TJ,50.0,kg,12231.158748000002,CH4,b797231f-63a9-3a2a-90eb-a2c536a5ea3f,AR-Q,NEUQUEN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,556.5916861200001,kg/TJ,50.0,kg,27829.584306000004,CH4,23f5149f-6843-3eda-808a-fae174ae77ad,AR-R,RIO NEGRO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,2773.5378691200003,kg/TJ,50.0,kg,138676.89345600002,CH4,e4bf873d-7913-3891-8ace-7eb64d7b9468,AR-A,SALTA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1808.3974527000003,kg/TJ,50.0,kg,90419.872635,CH4,096e989d-05f8-3b0d-b453-bec92eae3d03,AR-J,SAN JUAN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1689.3168842400003,kg/TJ,50.0,kg,84465.84421200001,CH4,22756b81-9bde-3452-8c5b-5919f179f8d2,AR-D,SAN LUIS,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,7378.001179097401,kg/TJ,50.0,kg,368900.05895487004,CH4,a624d7fc-584b-34d4-97d3-9979f96f8aec,AR-S,SANTA FE,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1375.9469672400003,kg/TJ,50.0,kg,68797.34836200002,CH4,5033b344-00ab-3a63-9603-0f070fcdc60c,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,27.405269760000003,kg/TJ,50.0,kg,1370.263488,CH4,bc847fa7-da5e-315e-8fc4-115291015e32,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,4165.795643220001,kg/TJ,50.0,kg,208289.78216100004,CH4,c18843ef-0365-3801-a68b-5232b7b5e954,AR-T,TUCUMAN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,41136.247294555214,kg/TJ,50.0,kg,2056812.3647277607,CH4,5dbd10f2-5651-3478-899d-e2e5e802931f,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,6432.491733540001,kg/TJ,50.0,kg,321624.58667700004,CH4,3b8523c5-542b-3dd0-9454-82b26658890d,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,595.3249864200001,kg/TJ,50.0,kg,29766.249321000003,CH4,2f0bfef1-bdb5-33c7-994b-01dc05651aba,AR-K,CATAMARCA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,52.35029371200001,kg/TJ,50.0,kg,2617.5146856000006,CH4,128895f4-7656-3597-aa0e-96b391e19162,AR-U,CHUBUT,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,14626.200256500002,kg/TJ,50.0,kg,731310.0128250001,CH4,12c86951-8c05-3ad8-a090-7dfcc6f999fc,AR-X,CORDOBA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,21.488222880000002,kg/TJ,50.0,kg,1074.4111440000001,CH4,35c66986-479a-3a27-b92c-5da3fbb45798,AR-W,CORRIENTES,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1750.7451735600002,kg/TJ,50.0,kg,87537.25867800001,CH4,8cf0352d-5ebc-3394-901d-8695c32f3990,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1677.8331419400004,kg/TJ,50.0,kg,83891.65709700002,CH4,5ba456e4-2318-34d0-b456-ad1cc9314a60,AR-Y,JUJUY,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,309.47712300000006,kg/TJ,50.0,kg,15473.856150000003,CH4,890d0df9-5019-3abc-8e75-0532f56c7d37,AR-L,LA PAMPA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,198.57142194000002,kg/TJ,50.0,kg,9928.571097000002,CH4,711f64eb-ab4d-3620-9bb3-89044ac3698a,AR-F,LA RIOJA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,5316.5834055000005,kg/TJ,50.0,kg,265829.17027500004,CH4,8394dfe8-fd01-3ccf-9736-0de311144aef,AR-M,MENDOZA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,240.36679400040003,kg/TJ,50.0,kg,12018.339700020002,CH4,5500f570-cec5-3d7a-b43b-457c3a8af37f,AR-Q,NEUQUEN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,592.3197494520001,kg/TJ,50.0,kg,29615.987472600005,CH4,a8cbca7d-7dad-32a5-9520-7beec442f506,AR-R,RIO NEGRO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,2819.2781986200007,kg/TJ,50.0,kg,140963.90993100003,CH4,7825b351-70fd-3e69-a9a1-d09f6fc90b08,AR-A,SALTA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1808.4753085800003,kg/TJ,50.0,kg,90423.76542900002,CH4,0e915596-8abf-3af6-90b3-883320f2808d,AR-J,SAN JUAN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1778.1504433200002,kg/TJ,50.0,kg,88907.52216600001,CH4,75c4e5c5-a67c-3eed-9482-0fd676d1dd45,AR-D,SAN LUIS,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,7496.704925098201,kg/TJ,50.0,kg,374835.24625491,CH4,5d42bb57-ce3a-3ca7-956e-ad38d419bd69,AR-S,SANTA FE,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1450.1825488200002,kg/TJ,50.0,kg,72509.127441,CH4,b520e8fe-e0dd-33ee-821e-392bb138823d,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,27.418894539000004,kg/TJ,50.0,kg,1370.9447269500001,CH4,fb6cd796-a6f2-3168-9c88-4d68083f7f20,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,4156.18044204,kg/TJ,50.0,kg,207809.02210200002,CH4,6a8faa31-c699-32ba-91e4-8ad31fa2da59,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,16809.542802669082,kg/TJ,0.1,kg,1680.9542802669084,N2O,27a605ef-a679-3440-b6b1-7eac528745a2,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,146786.40084474,kg/TJ,0.1,kg,14678.640084474002,N2O,d0c8edce-cf41-3348-a7ba-a04f3bf7a70d,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,5984.119720620001,kg/TJ,0.1,kg,598.4119720620001,N2O,364feb93-e446-32f1-b398-23c1109f2721,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,189238.92168875044,kg/TJ,0.1,kg,18923.892168875045,N2O,558acba0-ea6a-3b90-9167-96b7c6832bd6,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,4930.846448040001,kg/TJ,0.1,kg,493.0846448040001,N2O,308741b8-8f84-3148-8688-719abdb4ec96,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,37187.04359526001,kg/TJ,0.1,kg,3718.704359526001,N2O,c8841273-7675-3397-9849-8087f6287a1b,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1674.7189067400002,kg/TJ,0.1,kg,167.47189067400004,N2O,79994a24-2bc8-3fd4-94f0-5ca972963fea,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,2606.3423668200003,kg/TJ,0.1,kg,260.63423668200005,N2O,85fac0c5-d90a-3152-be76-4be34a14cda8,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,120.98803752000002,kg/TJ,0.1,kg,12.098803752000002,N2O,da6a1171-fa77-378b-b627-a67fa4ba2203,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,550.9860627600001,kg/TJ,0.1,kg,55.09860627600001,N2O,20fe28bc-9154-35bf-a4b3-17c14c101ac8,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,11.639454060000002,kg/TJ,0.1,kg,1.1639454060000003,N2O,dea37208-7c5a-33a0-b444-dceffe31f122,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,3309.1473955800006,kg/TJ,0.1,kg,330.91473955800006,N2O,fc43d06b-6b33-3ffb-bafb-90cc5edef0c3,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3450.4558177800004,kg/TJ,0.1,kg,345.04558177800004,N2O,81af66b3-529e-3772-aed9-51c2e4fbee17,AR-U,CHUBUT,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,24588.054742200005,kg/TJ,0.1,kg,2458.8054742200006,N2O,ea614156-ca14-36a5-95b8-d4af6e11cc56,AR-U,CHUBUT,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1591.4520430800003,kg/TJ,0.1,kg,159.14520430800005,N2O,9d4c1284-1dca-3ea4-ad45-24a2a3b1a222,AR-U,CHUBUT,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,22059.178975980005,kg/TJ,0.1,kg,2205.9178975980008,N2O,63aa9b29-d372-30dc-b6e5-836e621ec01b,AR-U,CHUBUT,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3381.6701478000004,kg/TJ,0.1,kg,338.16701478000004,N2O,b1f18f86-5bc7-3456-9ee6-14d95cca033b,AR-X,CORDOBA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,22210.997941980004,kg/TJ,0.1,kg,2221.0997941980004,N2O,05ba25a9-a4d6-3b38-a668-a1e97bf205cb,AR-X,CORDOBA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,508.3210405200001,kg/TJ,0.1,kg,50.83210405200001,N2O,7be2b56d-3efa-3c87-b81b-cd7538f7a8b2,AR-X,CORDOBA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,19592.042922600005,kg/TJ,0.1,kg,1959.2042922600006,N2O,0d4105c7-3204-30c7-8e6a-01e7cf48452e,AR-X,CORDOBA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,0.08836642380000001,kg/TJ,0.1,kg,0.00883664238,N2O,4f022850-38db-3d5e-aecf-e12e3317971f,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,0.0031142352000000004,kg/TJ,0.1,kg,0.00031142352000000005,N2O,69adf2b6-744c-3e65-9a87-91e0c6543a4e,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,850.3808493000001,kg/TJ,0.1,kg,85.03808493000002,N2O,1d0202b9-5b95-3f61-9165-bcf4a377294d,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3559.3372659600004,kg/TJ,0.1,kg,355.93372659600004,N2O,901a0e76-289e-3558-8417-ec1b304ec400,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,56.71800858000001,kg/TJ,0.1,kg,5.671800858000001,N2O,d52cfc04-7317-395e-bc33-592ae4d5dcc6,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,4484.109408600001,kg/TJ,0.1,kg,448.41094086000015,N2O,c9907560-71a5-37b2-bf34-56edbfce0355,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,342.6088095178201,kg/TJ,0.1,kg,34.260880951782006,N2O,cb4b29ad-310a-3243-ac90-d8adfb0cf664,AR-Y,JUJUY,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,1898.9438411400004,kg/TJ,0.1,kg,189.89438411400005,N2O,5010b083-a0cd-35a6-b0f9-e63fccfa7f2a,AR-Y,JUJUY,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,86.67998758332001,kg/TJ,0.1,kg,8.667998758332002,N2O,cfe69bb4-7b77-39a6-b797-5a9401c87a33,AR-Y,JUJUY,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,5888.236194822181,kg/TJ,0.1,kg,588.8236194822181,N2O,ff36cc43-6163-3a1d-affa-bf4a2f8dfebd,AR-Y,JUJUY,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,780.1159176000001,kg/TJ,0.1,kg,78.01159176000002,N2O,b205fee6-8e6f-38db-862b-fb743eb91cf6,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,9036.031288680002,kg/TJ,0.1,kg,903.6031288680002,N2O,494df1f4-182b-3f33-8b68-4d4b8aa264dc,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,541.7990689200001,kg/TJ,0.1,kg,54.17990689200001,N2O,739296a4-6bfb-3a21-ba34-1ae2201ede4e,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,1222.2594601200003,kg/TJ,0.1,kg,122.22594601200004,N2O,499c8f4d-a6ab-3f0b-983d-6ec0ac48dd73,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,87.43215324000002,kg/TJ,0.1,kg,8.743215324000003,N2O,5368f331-7149-391e-a879-3cdb9b1d020e,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,423.14670780000006,kg/TJ,0.1,kg,42.31467078000001,N2O,4b2b367a-5931-35e5-8cfa-4d95fabf0aea,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,14.403337800000003,kg/TJ,0.1,kg,1.4403337800000005,N2O,3ff34b18-8b89-3cec-b24c-10fb2f5daf21,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,492.2827292400001,kg/TJ,0.1,kg,49.22827292400001,N2O,45381472-c5d6-3a24-bb0c-4c9f9980bacb,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1751.0565970800003,kg/TJ,0.1,kg,175.10565970800005,N2O,23ccd004-57bf-3370-9b07-9dd8916497ea,AR-M,MENDOZA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,16814.7290433,kg/TJ,0.1,kg,1681.4729043300003,N2O,b9f6bb28-816c-3a40-954f-820f0946e817,AR-M,MENDOZA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,550.16857602,kg/TJ,0.1,kg,55.01685760200001,N2O,98ee7ecb-e315-3d44-a10c-ffb417bc8743,AR-M,MENDOZA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,16230.809943300002,kg/TJ,0.1,kg,1623.0809943300003,N2O,3377b21a-36f0-3f08-80f7-263946b5c015,AR-M,MENDOZA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,3006.9497973600005,kg/TJ,0.1,kg,300.69497973600005,N2O,c321866d-1fd1-37e0-a170-1ddf5f159f38,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,23504.417676420006,kg/TJ,0.1,kg,2350.4417676420007,N2O,0aa5b511-b3b4-30e5-812a-64695e8c075a,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1357.5729795600002,kg/TJ,0.1,kg,135.75729795600003,N2O,4a143a4a-0764-312b-8722-2350fdd118f1,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,1811.1224085000003,kg/TJ,0.1,kg,181.11224085000003,N2O,b359bc25-3f20-3071-92c5-45570483a599,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,4211.263477140001,kg/TJ,0.1,kg,421.1263477140001,N2O,3b4aaa95-035a-35b3-bf84-495260475fd1,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,25182.562241880005,kg/TJ,0.1,kg,2518.2562241880005,N2O,566a2649-ea62-3bfb-8159-587aafb50204,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1351.4612929800003,kg/TJ,0.1,kg,135.14612929800003,N2O,37a77754-ffbf-3b12-977c-5880b8a70fb0,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,5563.191905400001,kg/TJ,0.1,kg,556.3191905400001,N2O,1a3f1f56-bd31-3997-9ddb-29631f225858,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,703.8553824370802,kg/TJ,0.1,kg,70.38553824370801,N2O,6dd49be1-9eb9-3b0d-a9c7-986ea9146a24,AR-A,SALTA,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,4266.035088720001,kg/TJ,0.1,kg,426.60350887200013,N2O,e6e2804d-3778-3dd3-a230-77b572050e5a,AR-A,SALTA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,157.12916522334004,kg/TJ,0.1,kg,15.712916522334005,N2O,4e3ee6cf-ece8-3826-ba92-2240e97f574c,AR-A,SALTA,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,4351.300240324021,kg/TJ,0.1,kg,435.1300240324021,N2O,366c923b-b1e7-36b1-9754-bc9d91d2a450,AR-A,SALTA,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,408.1205229600001,kg/TJ,0.1,kg,40.81205229600001,N2O,3a188db7-00bc-35aa-bb87-962901553c45,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3790.5303016200005,kg/TJ,0.1,kg,379.0530301620001,N2O,14d26aa5-cc5d-329d-8e8f-c8a53935d6ba,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,80.89225932000001,kg/TJ,0.1,kg,8.089225932000002,N2O,3f085d81-7bab-3b26-a861-c36b03778810,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,6303.484540380001,kg/TJ,0.1,kg,630.3484540380001,N2O,6b19c0c2-fe91-31f2-93af-1f4d2f6e8e1c,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,970.6681839000001,kg/TJ,0.1,kg,97.06681839000002,N2O,f78acb53-bcba-356f-8be5-3e42345042bd,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,3410.6325351600008,kg/TJ,0.1,kg,341.0632535160001,N2O,920d9d4f-6d53-32bf-a923-8ffda4a36dbf,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,122.58408306000003,kg/TJ,0.1,kg,12.258408306000003,N2O,10225f99-917d-313e-90ee-a6bb6b8afcf5,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,3730.581274020001,kg/TJ,0.1,kg,373.0581274020001,N2O,1194bd33-9c25-3a24-8734-0b6457d445e6,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1589.1552946200002,kg/TJ,0.1,kg,158.91552946200002,N2O,cc27df11-0afc-3104-9d96-7103d22ec827,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,12953.855954100001,kg/TJ,0.1,kg,1295.3855954100002,N2O,a8d9117e-ce18-3bd4-b0d9-99c98f53ca30,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1111.12019142,kg/TJ,0.1,kg,111.11201914200001,N2O,a7991f21-c25e-34da-a09b-594219b8bfa8,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,80.58083580000002,kg/TJ,0.1,kg,8.058083580000002,N2O,c14248af-1cf8-3faf-acc4-4b5356943ee4,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,1663.5855159000002,kg/TJ,0.1,kg,166.35855159000005,N2O,d61d27f1-dfc7-38c5-9738-c1b442a9ef55,AR-S,SANTA FE,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,18438.167667546328,kg/TJ,0.1,kg,1843.816766754633,N2O,efebbdc8-6888-301b-82ea-cf6d38b9662b,AR-S,SANTA FE,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,199.42783662000002,kg/TJ,0.1,kg,19.942783662000004,N2O,52fe2257-bf27-3e3b-a792-02944dd0524e,AR-S,SANTA FE,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,72102.05797242,kg/TJ,0.1,kg,7210.205797242001,N2O,0521050e-9e3c-34b7-8013-08907100bbf9,AR-S,SANTA FE,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,316.56200808000006,kg/TJ,0.1,kg,31.65620080800001,N2O,0f144fbf-3ef3-3302-af11-e20dfc2ed484,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,1220.1184234200002,kg/TJ,0.1,kg,122.01184234200002,N2O,9e15972b-6609-3de8-ab1e-23cf259e47d8,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,45.05375742222001,kg/TJ,0.1,kg,4.505375742222001,N2O,5f7aefc7-fc7c-385a-9e17-dcd3535b643d,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,932.4794854806001,kg/TJ,0.1,kg,93.24794854806002,N2O,b57eaa50-a045-32f0-b749-ab8b7b4f64a2,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,2825.3509572600005,kg/TJ,0.1,kg,282.53509572600007,N2O,0f291dd3-b22e-30c3-ae43-c95d08088f6c,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,12237.036866940001,kg/TJ,0.1,kg,1223.7036866940002,N2O,26f609a4-46cc-32e9-9c3e-83467dc1e393,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,1269.2454837000002,kg/TJ,0.1,kg,126.92454837000002,N2O,3ee7f5ec-ac18-30bf-a3bd-1daccbe9dd80,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,771.7074825600001,kg/TJ,0.1,kg,77.17074825600002,N2O,344d36b1-6c8c-3100-b53f-a6174f2280ae,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,786.0841547211002,kg/TJ,0.1,kg,78.60841547211002,N2O,805ed261-718e-3a5c-876a-2458bcbd5b48,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.1.1,natural gas consumption by residential buildings,TJ,4450.31995668,kg/TJ,0.1,kg,445.03199566800004,N2O,2038b9a3-34d3-3fab-b2b0-02ac70665d83,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by official entities,TJ,78.56709346380002,kg/TJ,0.1,kg,7.856709346380002,N2O,25d99d09-d807-3f43-bed8-19a7a7ab37fa,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.3.1,natural gas consumption by industrial buildings,TJ,12182.842673494022,kg/TJ,0.1,kg,1218.2842673494022,N2O,25514b4f-52d3-35fb-a7c4-463dc34c5655,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.2.1,natural gas consumption by commercial buildings,TJ,20654.135942834044,kg/TJ,0.1,kg,2065.4135942834046,N2O,326fa627-70e9-366c-97fa-7110eabdc024,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,138548.80613006224,kg/TJ,0.1,kg,13854.880613006224,N2O,f146da69-d149-3ed6-be35-7e852f73f88d,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,5355.793183785601,kg/TJ,0.1,kg,535.5793183785602,N2O,f94cf7cd-7100-3ce6-b33b-f47c2231ec17,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,207413.53058133484,kg/TJ,0.1,kg,20741.353058133485,N2O,8cbd142e-09b5-3a12-a2b5-5a2326720286,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,6759.0192942600015,kg/TJ,0.1,kg,675.9019294260002,N2O,6f5f10ab-e5e8-365f-b6f0-a9a689251e53,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,35899.112700360005,kg/TJ,0.1,kg,3589.9112700360006,N2O,60a0f4a1-9808-3bbf-9a55-5fa0890373bc,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1840.1237238000003,kg/TJ,0.1,kg,184.01237238000004,N2O,b43e538e-2c19-3345-86be-d83464c5b61a,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,2546.6658348000005,kg/TJ,0.1,kg,254.66658348000007,N2O,2cc4b1c8-216e-32ec-8e73-951d815be01e,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,113.78636862000002,kg/TJ,0.1,kg,11.378636862000002,N2O,7ec117d0-8c23-39e1-94de-f3f26638122f,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,478.8525899400001,kg/TJ,0.1,kg,47.88525899400001,N2O,7152f498-b1d3-365c-95c6-06efa85b0483,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,12.573724620000002,kg/TJ,0.1,kg,1.2573724620000002,N2O,5a586f2c-f1d5-3bea-9d68-7760c6138037,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,3008.3901311400004,kg/TJ,0.1,kg,300.83901311400007,N2O,e6e24729-f601-3f24-9886-58d1bc61c5a4,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3313.6630366200006,kg/TJ,0.1,kg,331.36630366200006,N2O,91c02d1f-adc0-34fc-980d-e74027656ad4,AR-U,CHUBUT,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,24322.137984060006,kg/TJ,0.1,kg,2432.2137984060005,N2O,e2c83d3e-d973-3565-aef8-d409d4bcd3a1,AR-U,CHUBUT,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1586.4303388200003,kg/TJ,0.1,kg,158.64303388200005,N2O,e2d8c8f7-0c76-3b94-9d90-1c66cec243ff,AR-U,CHUBUT,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,26178.767154420006,kg/TJ,0.1,kg,2617.8767154420007,N2O,173f4d5f-59a9-3182-a5b1-265bd85f9453,AR-U,CHUBUT,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3129.9231598200004,kg/TJ,0.1,kg,312.99231598200004,N2O,00164740-00d5-3bc7-9129-216b666d090a,AR-X,CORDOBA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,20998.236899220003,kg/TJ,0.1,kg,2099.8236899220005,N2O,016ea2b2-51aa-326e-b965-b8c7c142f21a,AR-X,CORDOBA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,623.8202385000001,kg/TJ,0.1,kg,62.38202385000001,N2O,a532929f-f7c8-3d69-9ecc-6e0ec24d052e,AR-X,CORDOBA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,18499.724926200004,kg/TJ,0.1,kg,1849.9724926200006,N2O,ebe7c90f-a608-3449-8999-1dedc7ffc554,AR-X,CORDOBA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,0.31142352000000006,kg/TJ,0.1,kg,0.03114235200000001,N2O,63e85f44-e716-345c-be02-bf87d9dab0d3,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,0.0,kg/TJ,0.1,kg,0.0,N2O,77e9ece1-836f-3a6f-ab0a-0f68f08912fe,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,0.1,kg,0.0,N2O,5cb24de0-aa7b-32b3-803f-5239e3f18a00,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,796.0374450600001,kg/TJ,0.1,kg,79.60374450600001,N2O,da4e4249-8b07-3296-ab30-b7160c72566f,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3134.2052332200005,kg/TJ,0.1,kg,313.42052332200007,N2O,c9b32d28-b288-38e7-bc5f-78c03ef5df6a,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,66.13857006,kg/TJ,0.1,kg,6.613857006000001,N2O,d8761a3a-1c15-3799-8538-adfad3087c7c,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4585.399908480001,kg/TJ,0.1,kg,458.5399908480001,N2O,645847db-986f-3fb7-85e1-ab09be4bf06d,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,324.56364614700004,kg/TJ,0.1,kg,32.45636461470001,N2O,08e93e66-0306-3c0f-85e8-43f59f614c10,AR-Y,JUJUY,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,1858.5366394200003,kg/TJ,0.1,kg,185.85366394200003,N2O,0b4e3368-5b08-30bb-8092-ffa3f8b6e8f4,AR-Y,JUJUY,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,81.72924895794002,kg/TJ,0.1,kg,8.172924895794003,N2O,77665590-351b-3ab3-8e54-e9e71c1a9573,AR-Y,JUJUY,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4436.271758476621,kg/TJ,0.1,kg,443.6271758476621,N2O,7b445a32-4d4d-3395-9e67-3c5ca704eaa7,AR-Y,JUJUY,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,730.1713705800001,kg/TJ,0.1,kg,73.01713705800002,N2O,0d150ec4-ac6e-3db9-a5f3-a51463f2e373,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,8952.725497080002,kg/TJ,0.1,kg,895.2725497080003,N2O,68f25401-7466-32aa-8044-758e1adb6609,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,548.1443231400001,kg/TJ,0.1,kg,54.814432314000015,N2O,917334c0-da53-345e-af2e-16529adf16cd,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,1189.5210625800003,kg/TJ,0.1,kg,118.95210625800003,N2O,c52baa9e-94c4-3547-837d-7f6a4110a061,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,81.08689902000002,kg/TJ,0.1,kg,8.108689902000002,N2O,46ab5670-327d-385b-ad6e-96e6ac3a5903,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,349.06683798000006,kg/TJ,0.1,kg,34.90668379800001,N2O,51d39ea2-0481-3f54-b3e0-4645c542b8c9,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,14.247626040000002,kg/TJ,0.1,kg,1.4247626040000003,N2O,e7123654-dbb8-3cbb-b0c0-0dc9738f6eb8,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,509.8392301800001,kg/TJ,0.1,kg,50.98392301800001,N2O,6db6f47b-c1ee-343a-8972-2fe463504e42,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,1640.1119680800002,kg/TJ,0.1,kg,164.01119680800002,N2O,72c7e6dc-def4-331e-ac47-2654faf96b75,AR-M,MENDOZA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,16033.250647800003,kg/TJ,0.1,kg,1603.3250647800005,N2O,c5d24156-1cdf-347d-ac2b-8e253855e359,AR-M,MENDOZA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,726.1617927600001,kg/TJ,0.1,kg,72.61617927600001,N2O,51fb1bcb-c05e-3096-8b22-99b9c369b33d,AR-M,MENDOZA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,16059.059872020003,kg/TJ,0.1,kg,1605.9059872020005,N2O,f591c2f3-63b0-3eb4-9ec6-cbbb8f30128c,AR-M,MENDOZA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,2966.9708029800004,kg/TJ,0.1,kg,296.69708029800006,N2O,4e45839b-b753-3fbf-b6b2-ad0663b857e9,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,22095.926951340003,kg/TJ,0.1,kg,2209.592695134,N2O,584f0074-d18b-3795-acc3-31239e28f539,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1359.4415206800002,kg/TJ,0.1,kg,135.94415206800002,N2O,b3a51948-a38e-3eb1-97af-28b3f5ec8ddc,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,9213.620550960002,kg/TJ,0.1,kg,921.3620550960003,N2O,a275277b-3d9e-3e7a-bc2b-f606d5407f2f,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,3992.2548867000005,kg/TJ,0.1,kg,399.22548867000006,N2O,d81bde23-c713-306f-b3ca-a589ceb307c2,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,23735.143576800005,kg/TJ,0.1,kg,2373.5143576800006,N2O,e20058ad-df44-3a06-8b0e-b0a24a20d405,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1386.8078625000003,kg/TJ,0.1,kg,138.68078625000004,N2O,3baddb89-45f2-3adc-b48d-9efba4db7ff0,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,5744.751817560001,kg/TJ,0.1,kg,574.4751817560001,N2O,81f2237f-8c7a-305a-a796-1e3cd129ee09,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,667.5416482477801,kg/TJ,0.1,kg,66.75416482477802,N2O,d6dfde83-72af-3d1b-915c-6259016b1986,AR-A,SALTA,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,4166.0681388,kg/TJ,0.1,kg,416.60681388000006,N2O,9604cd44-4e13-3d0d-8543-aaecd1130ae4,AR-A,SALTA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,156.24553991328003,kg/TJ,0.1,kg,15.624553991328003,N2O,67dbd947-d04d-37b5-9882-6f68fa9a768d,AR-A,SALTA,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,4109.45842774908,kg/TJ,0.1,kg,410.94584277490804,N2O,f81c2d5b-184f-3fe1-ad7c-8a1fb27ec553,AR-A,SALTA,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,380.4816855600001,kg/TJ,0.1,kg,38.04816855600001,N2O,161c1c16-9938-349d-ade8-689f0c476e0a,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3667.9462185600005,kg/TJ,0.1,kg,366.79462185600005,N2O,63959d34-d77d-3a79-a06f-3a550b7f5771,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,105.41686152000001,kg/TJ,0.1,kg,10.541686152000002,N2O,e1625730-0568-34e4-b241-9e3075614c8f,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,6259.573824060001,kg/TJ,0.1,kg,625.9573824060002,N2O,a826af69-1b3b-356d-b90b-e1b4452ea57c,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,912.4709136000001,kg/TJ,0.1,kg,91.24709136000001,N2O,3576d67a-b145-3624-b8d9-378e653df661,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,3134.2052332200005,kg/TJ,0.1,kg,313.42052332200007,N2O,8498756b-fe2a-344b-a968-6d1015178750,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,165.63838470000002,kg/TJ,0.1,kg,16.563838470000004,N2O,eb2afb27-2da0-3ed9-951a-e5ac7c2d7cd7,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,3609.3207409200004,kg/TJ,0.1,kg,360.93207409200005,N2O,0ab048b9-5b01-3671-99b9-0993262b8f39,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,1446.4065386400002,kg/TJ,0.1,kg,144.64065386400003,N2O,3ab7bbaa-6e54-3246-826d-cd22c6d9a3da,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,12430.002665520002,kg/TJ,0.1,kg,1243.0002665520003,N2O,16255b03-1314-32b7-94f2-0bb876596aa7,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1103.68495488,kg/TJ,0.1,kg,110.36849548800001,N2O,4a62405d-69bd-38d3-85f2-4456da90efe8,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,60.61080258000001,kg/TJ,0.1,kg,6.061080258000001,N2O,4bf8e74c-ce9b-36f3-ad7d-dce7ff35209f,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,4970.080128080761,kg/TJ,0.1,kg,497.0080128080761,N2O,64b316c4-a6ef-3652-9c2f-fb6fc3901b3a,AR-S,SANTA FE,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,17949.859209553204,kg/TJ,0.1,kg,1794.9859209553206,N2O,2aeb8e0b-8440-337e-aa63-413b34f66398,AR-S,SANTA FE,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,676.0693195680001,kg/TJ,0.1,kg,67.60693195680001,N2O,43dd4bd8-6101-3e12-953a-388b6c0ca229,AR-S,SANTA FE,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,61964.22155908261,kg/TJ,0.1,kg,6196.422155908262,N2O,945b54d1-bcbc-3ab0-ae7f-16a0b1f9ab8d,AR-S,SANTA FE,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,313.8273981508801,kg/TJ,0.1,kg,31.38273981508801,N2O,7c40f3d4-4031-348f-9f58-af4a0c7d2772,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,1245.14908884,kg/TJ,0.1,kg,124.51490888400002,N2O,b4a61cb8-c168-3449-a4d6-c9c32cb122fb,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,41.93488979736001,kg/TJ,0.1,kg,4.193488979736001,N2O,f06e7692-b502-3879-bae3-e51a506a3e2e,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,602.0421971067001,kg/TJ,0.1,kg,60.20421971067001,N2O,d3db3547-c5a9-3dbf-9df0-6c31082eb48e,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,2834.1875996400004,kg/TJ,0.1,kg,283.41875996400006,N2O,fa7091cf-a914-3ed3-b202-9f64d171eda0,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,14654.773364460003,kg/TJ,0.1,kg,1465.4773364460004,N2O,d746ec98-5ea5-3b7e-9468-41186bad8325,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,1315.8422278800003,kg/TJ,0.1,kg,131.58422278800003,N2O,7d20e850-f5b7-3ffa-9035-41b510d47322,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,691.7494938000001,kg/TJ,0.1,kg,69.17494938000002,N2O,09f317dd-65c0-3e8a-99dc-8718512f7b91,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,732.8711010748801,kg/TJ,0.1,kg,73.28711010748802,N2O,0c0dd5d1-c008-39ad-a535-928e58b27c35,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.1.1,natural gas consumption by residential buildings,TJ,4257.860221320001,kg/TJ,0.1,kg,425.78602213200014,N2O,e3ca099e-416c-3db7-ac65-2941b4e25307,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by official entities,TJ,73.94385559764001,kg/TJ,0.1,kg,7.394385559764001,N2O,9586697b-36a0-34a7-b755-c5fadf213344,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.3.1,natural gas consumption by industrial buildings,TJ,9984.093044623502,kg/TJ,0.1,kg,998.4093044623502,N2O,9303adf6-37af-38a3-813f-35d531e35cb1,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.2.1,natural gas consumption by commercial buildings,TJ,15860.245695446163,kg/TJ,0.1,kg,1586.0245695446165,N2O,ceb9cd3a-32d1-3606-8d79-63179b4b3d19,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,147219.14484686762,kg/TJ,0.1,kg,14721.914484686764,N2O,fc524f11-337d-3f8b-b902-c6c8c9621e61,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,3959.0045867490007,kg/TJ,0.1,kg,395.9004586749001,N2O,50fa219f-0c44-3605-a8c8-5f112313c09c,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,223741.9690342711,kg/TJ,0.1,kg,22374.196903427113,N2O,012ac324-0657-3431-97d2-968be8267db9,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,3762.8525362800005,kg/TJ,0.1,kg,376.2852536280001,N2O,85145ab0-1d20-3052-ae1e-1ef72e0f3ff0,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,36566.726871360006,kg/TJ,0.1,kg,3656.6726871360006,N2O,175e7116-4937-3c3f-8e23-d47a60d5aaf5,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,975.6120322800002,kg/TJ,0.1,kg,97.56120322800002,N2O,eb09c7c2-e04d-34d2-8025-245b9352aad2,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,2184.0131457600005,kg/TJ,0.1,kg,218.40131457600006,N2O,36aaabd2-5660-3b4c-89eb-2b376fb6c2ab,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,89.72890170000001,kg/TJ,0.1,kg,8.972890170000001,N2O,adb6cede-777a-31d0-9916-46cb2efc2153,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,475.3880032800001,kg/TJ,0.1,kg,47.53880032800001,N2O,1551c49a-1b50-3c8a-a229-2e620b442ec2,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,8.447362980000001,kg/TJ,0.1,kg,0.8447362980000002,N2O,01e9b721-075c-3e3b-8c70-63a01916bca7,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,3157.0948619400006,kg/TJ,0.1,kg,315.7094861940001,N2O,bbc080e7-4c0c-3b89-b018-9bb1edeb9704,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2246.2589218200005,kg/TJ,0.1,kg,224.62589218200006,N2O,79fbe5e1-4981-3e93-9fbf-4f452f18086c,AR-U,CHUBUT,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,25193.267425380003,kg/TJ,0.1,kg,2519.3267425380004,N2O,99555d8f-0e14-3d1d-9fb2-19c9ab46980d,AR-U,CHUBUT,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,1138.9925964600002,kg/TJ,0.1,kg,113.89925964600002,N2O,6c52e004-bea0-323f-9896-b2c2b94a505e,AR-U,CHUBUT,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,28008.808541760005,kg/TJ,0.1,kg,2800.880854176001,N2O,3c0e2b7d-ca6f-3781-85bc-9f0a6a7efcff,AR-U,CHUBUT,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2363.5098771000003,kg/TJ,0.1,kg,236.35098771000003,N2O,15c1628d-0c7d-3810-ad0c-a25f034be2d3,AR-X,CORDOBA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,21938.930569320004,kg/TJ,0.1,kg,2193.8930569320005,N2O,427ecfad-9080-321b-9bfc-ae0338893381,AR-X,CORDOBA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,414.23220954000004,kg/TJ,0.1,kg,41.42322095400001,N2O,2bd38155-5138-30be-b124-906c5f457425,AR-X,CORDOBA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,18547.178085060004,kg/TJ,0.1,kg,1854.7178085060004,N2O,78ec3b9a-4a6f-37ee-b3c4-9948b9b4981e,AR-X,CORDOBA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2.2578205200000006,kg/TJ,0.1,kg,0.22578205200000007,N2O,61ae0685-0ff8-3743-8b17-25be704abf67,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,0.0,kg/TJ,0.1,kg,0.0,N2O,d1e110f9-22ca-3df1-a66b-ee714b7ecaff,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,30.830928480000004,kg/TJ,0.1,kg,3.0830928480000006,N2O,64704a55-b64b-3cba-bc20-f48a59ffff2b,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,528.6024972600001,kg/TJ,0.1,kg,52.860249726000006,N2O,b0899a3a-ce04-3dff-a83c-9144ff77fcfc,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3316.2322806600005,kg/TJ,0.1,kg,331.6232280660001,N2O,81aa31dd-3141-3055-a0bc-3e48db8ecfa5,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,60.06581142000001,kg/TJ,0.1,kg,6.006581142000002,N2O,9bd820d3-e80e-3b38-80d0-f35fee8e3dff,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4437.123385020001,kg/TJ,0.1,kg,443.7123385020001,N2O,8930ae97-fb4d-3c56-a349-1fa6b01e77e0,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,248.59382484000005,kg/TJ,0.1,kg,24.859382484000008,N2O,fcb54a39-579b-30fe-ac86-99373225892a,AR-Y,JUJUY,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,1896.0242456400003,kg/TJ,0.1,kg,189.60242456400005,N2O,b2dc3110-b861-3e78-9eb7-5f330b9ea86b,AR-Y,JUJUY,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,63.37468632000001,kg/TJ,0.1,kg,6.337468632000001,N2O,41fcc948-f1e2-375d-a424-7c6047b0ddef,AR-Y,JUJUY,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4244.624721720001,kg/TJ,0.1,kg,424.4624721720001,N2O,fe522e0c-6476-3c6c-9c2d-f939a02813be,AR-Y,JUJUY,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,612.0640006200001,kg/TJ,0.1,kg,61.206400062000014,N2O,e4bec9e9-423d-3cb3-b95c-c7a1a2224d45,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,9804.390968400001,kg/TJ,0.1,kg,980.4390968400002,N2O,dbcffe4e-299e-3eb1-90c0-e14c88d412e0,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,427.70127678000006,kg/TJ,0.1,kg,42.77012767800001,N2O,54bec922-646a-37fa-961b-03f596c9c6d1,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,1125.0174660000002,kg/TJ,0.1,kg,112.50174660000003,N2O,6aa72d69-bbdd-33d6-b394-2f49481138d3,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,65.28215538,kg/TJ,0.1,kg,6.528215538000001,N2O,2791d189-4e6a-382b-87d5-5a18abf0dd00,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,339.68520444000006,kg/TJ,0.1,kg,33.968520444000006,N2O,308e4673-a2f9-3dd4-a722-d768cf11f900,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,10.860895260000001,kg/TJ,0.1,kg,1.086089526,N2O,011c700d-8175-3d92-b7b2-8cdcab9a137c,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,392.12113962000006,kg/TJ,0.1,kg,39.21211396200001,N2O,a212becf-7d8b-3dbe-807a-35a91650999a,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1232.1082289400001,kg/TJ,0.1,kg,123.21082289400002,N2O,d425b493-b71e-3681-87b4-83fae4fcc9fe,AR-M,MENDOZA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,16810.641609600003,kg/TJ,0.1,kg,1681.0641609600004,N2O,fbed46ce-c797-3d27-82cc-4ef57c4c1b97,AR-M,MENDOZA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,446.9706070800001,kg/TJ,0.1,kg,44.69706070800001,N2O,7ee27487-360d-30fd-9d49-b1459bd135b0,AR-M,MENDOZA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,15838.533091920002,kg/TJ,0.1,kg,1583.8533091920003,N2O,adb033b6-1906-3a05-86d5-8fb66178e747,AR-M,MENDOZA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1955.4282820800004,kg/TJ,0.1,kg,195.54282820800006,N2O,5bf02aa3-25e9-3ab9-9ddc-f0361929bb1a,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,22395.166026120005,kg/TJ,0.1,kg,2239.5166026120005,N2O,1e01ec64-bd43-34d8-8fea-6f7407905d78,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,870.1173148800001,kg/TJ,0.1,kg,87.01173148800001,N2O,16c56a66-0960-3a69-a17f-f77d914edc25,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,10418.440293960002,kg/TJ,0.1,kg,1041.8440293960002,N2O,54619552-ca60-38a1-878e-47487fb81299,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2519.8834120800007,kg/TJ,0.1,kg,251.98834120800007,N2O,c90d017b-4b57-3671-8221-b5a6e5582e02,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,25649.658593940003,kg/TJ,0.1,kg,2564.9658593940003,N2O,0defab28-e01f-3e84-9028-2c1dfa67d08c,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,970.5514000800001,kg/TJ,0.1,kg,97.05514000800002,N2O,f993d210-1ddf-300a-9dfa-887884d45da8,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,6203.6733022200015,kg/TJ,0.1,kg,620.3673302220002,N2O,c8c5d68f-b3b3-376c-8d67-267c6803b064,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,357.35848920000007,kg/TJ,0.1,kg,35.73584892000001,N2O,6095d573-57db-365e-8b10-965049ab6c5f,AR-A,SALTA,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,4408.005285900001,kg/TJ,0.1,kg,440.8005285900001,N2O,6ff9137c-b80b-38d9-9640-821f96ca58c6,AR-A,SALTA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,64.65930834000001,kg/TJ,0.1,kg,6.465930834000002,N2O,7b1c2b29-a4c8-301a-a06c-4b477f6af58d,AR-A,SALTA,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,4666.097528100001,kg/TJ,0.1,kg,466.60975281000015,N2O,77e4af0b-cad9-3cf5-928f-f77aef4341a1,AR-A,SALTA,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,319.67624328000005,kg/TJ,0.1,kg,31.967624328000007,N2O,d6fe986f-cef6-360f-8611-b786ea618fd6,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3797.8487543400006,kg/TJ,0.1,kg,379.78487543400007,N2O,ccf3fcab-0568-3c6b-9e9e-532d2ca790d7,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,74.66378892000002,kg/TJ,0.1,kg,7.466378892000002,N2O,5925e440-8970-3305-b345-2fecb5b0db27,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,5156.978851500001,kg/TJ,0.1,kg,515.6978851500002,N2O,b55777fe-cea7-3235-914e-2af56de87cc8,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,708.8388594600001,kg/TJ,0.1,kg,70.883885946,N2O,233feb26-f8cf-3986-9107-74df806dc59d,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,3117.9722822400004,kg/TJ,0.1,kg,311.79722822400004,N2O,054ba499-1714-3fc6-989b-a57818253b8d,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,114.25350390000001,kg/TJ,0.1,kg,11.425350390000002,N2O,5c9ac37e-e8b3-3b24-9bd3-53397794dd95,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,3141.0954786000007,kg/TJ,0.1,kg,314.1095478600001,N2O,e0ffec6d-4b8f-30f0-8135-0320a602e134,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,1174.7284453800003,kg/TJ,0.1,kg,117.47284453800003,N2O,a516d4b8-98b8-3192-8914-abc071164dfd,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,12993.796020540001,kg/TJ,0.1,kg,1299.3796020540003,N2O,e7847b78-4f76-3516-b140-b1520778e535,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,930.6113336400001,kg/TJ,0.1,kg,93.06113336400001,N2O,75de13a2-41ae-37ee-884b-c4dad3038594,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,51.38488080000001,kg/TJ,0.1,kg,5.138488080000002,N2O,fc31209f-8886-37c4-a4d0-7ad8f580c136,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,4820.927336691361,kg/TJ,0.1,kg,482.0927336691361,N2O,ef92fb01-1553-332a-84db-257c44006963,AR-S,SANTA FE,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,18992.980853940004,kg/TJ,0.1,kg,1899.2980853940005,N2O,658285ab-5f2f-3390-8307-7202d09cf047,AR-S,SANTA FE,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,431.83153121400005,kg/TJ,0.1,kg,43.18315312140001,N2O,3bbcbd02-0c17-37b9-83c2-3346629daf41,AR-S,SANTA FE,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,51037.77947263855,kg/TJ,0.1,kg,5103.777947263855,N2O,196758e6-f526-3fcc-98dc-10bf7c22fb31,AR-S,SANTA FE,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,204.95560410000004,kg/TJ,0.1,kg,20.495560410000007,N2O,46468fee-6628-3141-91d0-e0ac3a2d96f3,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,1227.5925879000001,kg/TJ,0.1,kg,122.75925879000002,N2O,56b2ae71-c43f-3bf4-abd3-150fc507f937,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,31.726271100000005,kg/TJ,0.1,kg,3.1726271100000005,N2O,a6610fec-a2ad-3bea-b7ce-47a84b3ee773,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,450.0459143400001,kg/TJ,0.1,kg,45.00459143400001,N2O,bcb435ab-f349-3b48-9cb9-a2d9136c85f1,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,2477.6465971800003,kg/TJ,0.1,kg,247.76465971800005,N2O,e847ad49-4c89-3df2-9196-e142235f27e9,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,14844.313504320002,kg/TJ,0.1,kg,1484.4313504320003,N2O,c2f99840-2326-31a0-8a83-21ad2a7a3693,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,1192.9467213000003,kg/TJ,0.1,kg,119.29467213000004,N2O,e9d0e27e-a5e7-3996-a59b-5b04695c9a39,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,713.4323563800001,kg/TJ,0.1,kg,71.34323563800001,N2O,0ed70afe-52b2-3e3b-bff8-ff1728f262c0,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,569.7882577800001,kg/TJ,0.1,kg,56.978825778000015,N2O,8f9764a1-d879-3a58-a3dc-97d7bc84fc12,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.1.1,natural gas consumption by residential buildings,TJ,4418.048694420001,kg/TJ,0.1,kg,441.80486944200015,N2O,fdfcd43d-fdab-3d3c-bf5e-578fe4b6cf4c,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by official entities,TJ,56.83479240000001,kg/TJ,0.1,kg,5.683479240000001,N2O,929fe45c-1abd-3f94-9405-7ba0b7e76359,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.3.1,natural gas consumption by industrial buildings,TJ,7720.2669166800015,kg/TJ,0.1,kg,772.0266916680002,N2O,fe2ab4a5-eea1-3e4f-a601-58037db14c7f,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.2.1,natural gas consumption by commercial buildings,TJ,15277.002618052202,kg/TJ,0.1,kg,1527.7002618052202,N2O,e7bf2bc2-e90f-39d8-a383-2ccb2a771abb,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,153297.18484048743,kg/TJ,0.1,kg,15329.718484048744,N2O,0f0552d8-d163-30ca-8015-fb773565358e,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,4810.104045821401,kg/TJ,0.1,kg,481.01040458214015,N2O,ac7e8980-7461-379a-889b-44fbd680f1f6,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,184850.69607844384,kg/TJ,0.1,kg,18485.069607844383,N2O,e9872c30-2e74-355f-8f4a-5914b4f7cb0d,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,4354.71293604,kg/TJ,0.1,kg,435.47129360400004,N2O,f41f477c-7029-3d12-9346-b76fe3e12168,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,36228.910208040004,kg/TJ,0.1,kg,3622.8910208040006,N2O,c2bc3775-dd4e-38d7-85f2-c7a32723ac5b,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1391.1288638400003,kg/TJ,0.1,kg,139.11288638400003,N2O,2a28bfce-3c02-3909-a927-eb9abaad6ed0,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,2553.7117919400002,kg/TJ,0.1,kg,255.37117919400004,N2O,8a40a2a2-3543-3ee1-bdfa-a959823da18f,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,101.67977928000002,kg/TJ,0.1,kg,10.167977928000003,N2O,85d67cb7-c4be-36e2-9189-8cc48ad8685e,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,471.06700194000007,kg/TJ,0.1,kg,47.10670019400001,N2O,948a4a9a-8744-3ee2-a885-ceec695427a3,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,6.384182160000001,kg/TJ,0.1,kg,0.6384182160000001,N2O,37049b86-01e2-3b3a-9488-28a138b82dab,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,3327.1321038600004,kg/TJ,0.1,kg,332.71321038600007,N2O,92e79b9f-4721-3a1f-892a-9f0a1c6b6226,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2629.4266352400005,kg/TJ,0.1,kg,262.94266352400007,N2O,0c96fd60-20a0-348e-a100-cd25840e1e73,AR-U,CHUBUT,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,24314.352396060003,kg/TJ,0.1,kg,2431.4352396060003,N2O,9c3698f4-8139-3b21-bfe1-0dcdd5c783d6,AR-U,CHUBUT,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1503.4748986800003,kg/TJ,0.1,kg,150.34748986800003,N2O,e22f3c5d-cc84-333d-8569-5bd299f8a8fa,AR-U,CHUBUT,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,22628.110819080004,kg/TJ,0.1,kg,2262.8110819080007,N2O,7994ff26-872e-389e-b454-126f68d99aca,AR-U,CHUBUT,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2809.0790783400003,kg/TJ,0.1,kg,280.907907834,N2O,5fdaaa13-4966-3dab-a078-31eed45c11da,AR-X,CORDOBA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,21901.715458680002,kg/TJ,0.1,kg,2190.1715458680005,N2O,12fd0296-579e-32fa-bb58-467cd7b9d7d5,AR-X,CORDOBA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,541.3708615800001,kg/TJ,0.1,kg,54.13708615800002,N2O,603fa735-2eeb-3e83-94ca-016ccbb743cc,AR-X,CORDOBA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,24079.227638460005,kg/TJ,0.1,kg,2407.9227638460006,N2O,3464339a-c130-39d2-a386-f381f9c01134,AR-X,CORDOBA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2.9195955000000007,kg/TJ,0.1,kg,0.29195955000000007,N2O,9af790f5-380a-330c-bd86-e2ee73808561,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,0.03892794000000001,kg/TJ,0.1,kg,0.003892794000000001,N2O,93d5848d-4629-3295-945f-de8e8a225574,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,0.1,kg,0.0,N2O,1f5e4e88-d0a6-3929-ae16-93b7d6ecc016,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,125.73724620000002,kg/TJ,0.1,kg,12.573724620000002,N2O,3065d299-eb77-37a2-aa97-6728ecc8ff48,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,655.1183022600001,kg/TJ,0.1,kg,65.51183022600001,N2O,bb8b307d-7377-3d77-823b-fc93510a3c9b,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3454.3096838400006,kg/TJ,0.1,kg,345.4309683840001,N2O,a2f3e6ed-35dc-3c64-8cd0-5000339acee3,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,64.58145246000001,kg/TJ,0.1,kg,6.458145246000001,N2O,97f742d8-3d2f-394b-a892-b8400dd14465,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,4876.38625998,kg/TJ,0.1,kg,487.63862599800007,N2O,77532eac-e560-38f0-87e2-a11c0ecb55d0,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,388.30620150000004,kg/TJ,0.1,kg,38.83062015000001,N2O,2690f968-aa2d-38cd-ad70-8e8f14f26f70,AR-Y,JUJUY,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,2028.0678181200003,kg/TJ,0.1,kg,202.80678181200005,N2O,d93eaab0-0add-36f5-877a-1d6152733248,AR-Y,JUJUY,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,108.10288938000002,kg/TJ,0.1,kg,10.810288938000003,N2O,9f49faa8-6b10-339d-8be4-08a8e7581bc1,AR-Y,JUJUY,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,4615.170783997391,kg/TJ,0.1,kg,461.5170783997391,N2O,cba0f46c-84f9-304e-8f20-b3aa3d08dedf,AR-Y,JUJUY,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,685.1317440000001,kg/TJ,0.1,kg,68.51317440000001,N2O,1eed43be-acf2-3b99-b29c-e7a60f066a15,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,9747.322608360002,kg/TJ,0.1,kg,974.7322608360003,N2O,d0d13670-1a54-395a-b660-15582ba73c0a,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,549.7403686800001,kg/TJ,0.1,kg,54.97403686800001,N2O,f4ce76d3-7d37-3ed7-adef-5a9bbe9d4dca,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,1295.2493476200002,kg/TJ,0.1,kg,129.52493476200002,N2O,af90708c-db42-39cb-80cd-143ed6309fab,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,71.62740960000001,kg/TJ,0.1,kg,7.162740960000001,N2O,0464dfbe-311e-3c5b-930c-6ace9f90c797,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,327.5007592200001,kg/TJ,0.1,kg,32.75007592200001,N2O,838b2d73-c4e8-3589-9d3d-0720ef65f66b,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,11.717309940000002,kg/TJ,0.1,kg,1.1717309940000002,N2O,ceb94eaa-375e-3690-bd0b-b859ce27a719,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,519.0262240200001,kg/TJ,0.1,kg,51.90262240200001,N2O,7691012c-c83c-3fa3-8806-61e77a52a800,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,1461.8609308200002,kg/TJ,0.1,kg,146.18609308200004,N2O,da2fbb36-edf8-382b-bc02-3cf053075351,AR-M,MENDOZA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,16964.87410788,kg/TJ,0.1,kg,1696.4874107880003,N2O,9e2bafaa-7903-3162-9da0-03c25c6449aa,AR-M,MENDOZA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,672.9862267200001,kg/TJ,0.1,kg,67.29862267200001,N2O,d5525f14-457e-3749-a7c8-f3a57cf077e0,AR-M,MENDOZA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,17084.888946900002,kg/TJ,0.1,kg,1708.4888946900003,N2O,69a00c9b-377e-3582-a453-93e597a1f7ba,AR-M,MENDOZA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2375.2271870400004,kg/TJ,0.1,kg,237.52271870400006,N2O,753dcf9d-3201-3490-8d8c-44a4129eb168,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,21737.789903340003,kg/TJ,0.1,kg,2173.7789903340004,N2O,01f36f5e-efcf-39d4-b625-be849bac31a8,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1237.6749243600002,kg/TJ,0.1,kg,123.76749243600003,N2O,bca7234c-e31a-3c6f-b018-58096b378c67,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,9276.45024612,kg/TJ,0.1,kg,927.6450246120002,N2O,76f1f8d4-60d7-3f24-919c-f445234208d5,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,3034.8222024000006,kg/TJ,0.1,kg,303.48222024000006,N2O,c02ee31e-2d4f-34e9-bfa6-214bbd44c52d,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,25632.569228280005,kg/TJ,0.1,kg,2563.256922828001,N2O,25ae9937-1053-3fc8-bb8b-14283032668b,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1347.7631386800003,kg/TJ,0.1,kg,134.77631386800005,N2O,72ce2c53-376f-3b1c-aead-fc4cf4a828e2,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,6303.134188920001,kg/TJ,0.1,kg,630.3134188920002,N2O,46434c49-a7fa-3242-add8-b53d648166ee,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,446.6591835600001,kg/TJ,0.1,kg,44.66591835600001,N2O,6a5f62b1-3d4a-3c47-a55a-c782cddd6249,AR-A,SALTA,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,4608.289537200001,kg/TJ,0.1,kg,460.82895372000013,N2O,450c8bb1-9c12-314a-934d-c3b0c5e5c77b,AR-A,SALTA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,97.59234558000001,kg/TJ,0.1,kg,9.759234558000003,N2O,174763b8-0bc5-3bd0-bc51-f07105b3dccd,AR-A,SALTA,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,5601.360328591131,kg/TJ,0.1,kg,560.1360328591131,N2O,a278b87e-c1b5-3b12-b6e3-346a844ce7df,AR-A,SALTA,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,332.9117428800001,kg/TJ,0.1,kg,33.29117428800001,N2O,f326bde8-f28d-33d6-ad52-31a039d40ce5,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3729.3745078800007,kg/TJ,0.1,kg,372.9374507880001,N2O,bd1ee1ff-91ea-3493-8745-656910ccaffb,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,89.80675758000001,kg/TJ,0.1,kg,8.980675758000002,N2O,3bed7a83-ed65-3f0b-b48f-ee5a0e15d340,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,5768.420005080001,kg/TJ,0.1,kg,576.8420005080001,N2O,92a0de3e-ecb0-3166-8913-1e313f6b0c2c,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,880.1217954600002,kg/TJ,0.1,kg,88.01217954600003,N2O,a2e625b2-8971-34f3-a450-9389981d1b6d,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,3299.4932664600005,kg/TJ,0.1,kg,329.9493266460001,N2O,a6b1dc35-8aef-3d5e-8108-c0887dc37db3,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,158.08636434000002,kg/TJ,0.1,kg,15.808636434000002,N2O,25b24aa7-3176-3bd3-9290-2fd2736de0ff,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,3924.130991700001,kg/TJ,0.1,kg,392.4130991700001,N2O,b0965a8f-efb1-30a4-9bcd-450e52cf754b,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,1267.37694258,kg/TJ,0.1,kg,126.73769425800002,N2O,9c941de5-7390-3012-aa85-7720e5ad060c,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,12444.444931260003,kg/TJ,0.1,kg,1244.4444931260005,N2O,9c427b98-d6e9-3717-90d3-80f00f8750fc,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,992.6235420600002,kg/TJ,0.1,kg,99.26235420600003,N2O,0a121256-dcc3-320b-9658-965921269f0b,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,98.13733674000002,kg/TJ,0.1,kg,9.813733674000003,N2O,d5cd57be-ab98-3047-bb4d-976629c60fb4,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,4482.705277804201,kg/TJ,0.1,kg,448.2705277804201,N2O,fcbdff8e-9132-3028-a118-2868b4544740,AR-S,SANTA FE,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,17534.841434184003,kg/TJ,0.1,kg,1753.4841434184004,N2O,5647d106-875a-3c64-b2d5-402654f90969,AR-S,SANTA FE,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,788.3343842928001,kg/TJ,0.1,kg,78.83343842928002,N2O,c2e1926d-debe-30ac-827f-e0cdf6824bcb,AR-S,SANTA FE,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,65704.1097249978,kg/TJ,0.1,kg,6570.410972499781,N2O,0a5a3137-9b8e-32fa-945c-2c8aa21b58ec,AR-S,SANTA FE,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,240.14646186000004,kg/TJ,0.1,kg,24.014646186000007,N2O,ec61cc1d-d91f-339a-be04-f82cf56acdf2,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,1272.6322144800001,kg/TJ,0.1,kg,127.26322144800002,N2O,24290f5a-50cb-3e9c-a667-5ff7adb359bd,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,64.11431718000001,kg/TJ,0.1,kg,6.411431718000002,N2O,6972ec52-b5de-3793-8355-09a4dc34ee7d,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,514.2632737771801,kg/TJ,0.1,kg,51.42632737771801,N2O,f1ff99cb-d93e-3ff0-b039-a5f8bf1efff8,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,2707.4382270000006,kg/TJ,0.1,kg,270.74382270000007,N2O,5f548b6a-d4d9-3114-8c57-fa7c28f5dfdb,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,14803.400239380002,kg/TJ,0.1,kg,1480.3400239380003,N2O,2bfee3b9-62d4-36f2-ad83-30ae5eb1b94b,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,1313.7790470600003,kg/TJ,0.1,kg,131.37790470600004,N2O,40545485-295f-3334-ae67-f05f49b87807,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,716.8190871600001,kg/TJ,0.1,kg,71.68190871600001,N2O,67bedbfc-322a-36db-bc2d-c8ca39f7a1cd,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,913.9891032600002,kg/TJ,0.1,kg,91.39891032600002,N2O,6070ea9b-145a-3cea-8ed8-b5494f87385d,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.1.1,natural gas consumption by residential buildings,TJ,4530.316873380001,kg/TJ,0.1,kg,453.03168733800015,N2O,af1c417b-bc32-3637-9d02-a883eaf29ed7,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by official entities,TJ,160.77239220000004,kg/TJ,0.1,kg,16.077239220000006,N2O,1710746c-512b-3926-aaca-3252ce8443e3,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.3.1,natural gas consumption by industrial buildings,TJ,8682.000562216488,kg/TJ,0.1,kg,868.2000562216489,N2O,f2b22355-1f48-3416-a933-4bfe79f55860,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.2.1,natural gas consumption by commercial buildings,TJ,14230.922450225402,kg/TJ,0.1,kg,1423.0922450225403,N2O,2bc672de-be9b-39f7-a19f-d15c22909589,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,163326.94794967922,kg/TJ,0.1,kg,16332.694794967923,N2O,d85fb5d8-01df-3855-ac79-795180d1ead5,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,5037.835998336001,kg/TJ,0.1,kg,503.7835998336001,N2O,f888863a-e5c3-30f0-b384-4820356c31da,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,198467.63265565143,kg/TJ,0.1,kg,19846.763265565143,N2O,d32f067f-e9c9-34db-8ca0-11fb6884979a,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,6093.740799660001,kg/TJ,0.1,kg,609.3740799660002,N2O,82e6356d-f74a-36d9-bc0e-9924afbd485a,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,37167.15141792001,kg/TJ,0.1,kg,3716.7151417920013,N2O,1b94a94d-f19d-3362-a161-1d4a29423986,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1652.1407015400002,kg/TJ,0.1,kg,165.21407015400004,N2O,156d0119-f65e-3a18-aa74-86d226bf975c,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,2882.1468217200004,kg/TJ,0.1,kg,288.21468217200004,N2O,5e27b812-bf4d-3a1f-b3b6-c1426abc8e9b,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,109.58215110000002,kg/TJ,0.1,kg,10.958215110000003,N2O,7e7be529-970d-3c03-aae0-47d410e96dd2,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,485.82069120000006,kg/TJ,0.1,kg,48.58206912000001,N2O,91e021f7-21b9-3758-944e-1895d7933b1d,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,7.902371820000002,kg/TJ,0.1,kg,0.7902371820000003,N2O,9ffae6fe-5fe9-3e3b-aeb7-b84360e7f1f7,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,3996.4980321600005,kg/TJ,0.1,kg,399.64980321600007,N2O,fe50d6c5-a652-35b1-b90e-5d2f49e491bb,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3191.7453998928004,kg/TJ,0.1,kg,319.17453998928005,N2O,9e36261b-7f61-3744-9e71-495f15cd9078,AR-U,CHUBUT,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,27194.831544830406,kg/TJ,0.1,kg,2719.483154483041,N2O,20eab11d-19e3-36d0-be98-c180dc6fe3e3,AR-U,CHUBUT,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1745.0379482766002,kg/TJ,0.1,kg,174.50379482766004,N2O,78cb73f7-de3b-36fc-b8a9-0f3699fc6de9,AR-U,CHUBUT,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,15392.725651687202,kg/TJ,0.1,kg,1539.2725651687203,N2O,8ed8e69a-21eb-3fed-9354-72514535139a,AR-U,CHUBUT,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3160.2480250800004,kg/TJ,0.1,kg,316.02480250800005,N2O,458c68c1-e11f-35a1-9f8f-25f05f48eba4,AR-X,CORDOBA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,24655.867213680005,kg/TJ,0.1,kg,2465.586721368001,N2O,9ce5b199-0d10-32ef-9cc5-fb4e6a5a455b,AR-X,CORDOBA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,621.99062532,kg/TJ,0.1,kg,62.199062532000006,N2O,0a8d6b12-1d44-365a-9fa4-b61069187a57,AR-X,CORDOBA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,26182.465308720006,kg/TJ,0.1,kg,2618.2465308720007,N2O,d76edfaf-b51e-3e46-82e0-72dd0c7601c1,AR-X,CORDOBA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,5.255271900000001,kg/TJ,0.1,kg,0.5255271900000001,N2O,d933c070-52d9-3a22-bda2-88ef0db394fd,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,0.7007029200000001,kg/TJ,0.1,kg,0.07007029200000002,N2O,07c848f5-f706-3c2b-b340-b1c5248d58bf,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,0.0,kg/TJ,0.1,kg,0.0,N2O,53259003-1d8a-32de-8968-0d5967c0ac1a,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,155.71176000000003,kg/TJ,0.1,kg,15.571176000000003,N2O,20be694b-f491-369b-a348-8adbc7015b99,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,834.8875291800001,kg/TJ,0.1,kg,83.48875291800002,N2O,615ca9a5-e98e-3b32-abb3-1230a7d5a576,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3613.524958440001,kg/TJ,0.1,kg,361.3524958440001,N2O,79a13718-e3d4-3ebb-8701-9f2fb71ab8ee,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,79.68549318000001,kg/TJ,0.1,kg,7.968549318000001,N2O,cf07dd0a-e064-31a5-b4ca-87adced52c5c,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4972.343632080001,kg/TJ,0.1,kg,497.2343632080001,N2O,3d537d8b-c51a-3e79-92fe-de4930bbb69a,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,417.8135800200001,kg/TJ,0.1,kg,41.78135800200001,N2O,2e5e900d-72ef-36c6-b5ed-c206e93b8fec,AR-Y,JUJUY,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,2026.1214211200004,kg/TJ,0.1,kg,202.61214211200004,N2O,b19a55ff-045f-3645-a123-e990b894e696,AR-Y,JUJUY,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,139.05060168000003,kg/TJ,0.1,kg,13.905060168000004,N2O,d8e39044-d074-31c2-ad98-15f423f8f1cf,AR-Y,JUJUY,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4623.494556607081,kg/TJ,0.1,kg,462.34945566070814,N2O,0bfd1fce-1f5e-3bc4-8895-623d82f1c660,AR-Y,JUJUY,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,820.1221615380001,kg/TJ,0.1,kg,82.01221615380001,N2O,7eeffeeb-0b07-3d30-8d1e-d9d6e50d800b,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,10228.849547778002,kg/TJ,0.1,kg,1022.8849547778002,N2O,9ba9577a-2385-37fc-930b-e5128147ba2c,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,636.6898154640002,kg/TJ,0.1,kg,63.66898154640002,N2O,b5b2c5af-7b47-34f9-a7af-4a28ee7fc8cf,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,1445.0479535340003,kg/TJ,0.1,kg,144.50479535340003,N2O,303222d7-5b01-315e-9ea4-cdc6c7a4f34d,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,74.04094188000002,kg/TJ,0.1,kg,7.404094188000002,N2O,6acda813-8eef-39df-8622-c99eeeb7c9d5,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,344.3176293000001,kg/TJ,0.1,kg,34.43176293000001,N2O,20743aec-ee71-3dc6-9d94-6a6557876f9c,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,12.573724620000002,kg/TJ,0.1,kg,1.2573724620000002,N2O,5c696493-3bed-3923-97e3-70815a58c47f,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,577.1067105000001,kg/TJ,0.1,kg,57.71067105000001,N2O,df1a7cf2-3eb0-37ff-8682-9aba1a244b13,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1649.0653942800002,kg/TJ,0.1,kg,164.90653942800003,N2O,be085f8b-5520-3b77-a9dd-d6e4a261ede5,AR-M,MENDOZA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,18207.609664440002,kg/TJ,0.1,kg,1820.7609664440004,N2O,e4544a2c-0ef9-327b-b64b-48e0df5c1995,AR-M,MENDOZA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,764.9340210000001,kg/TJ,0.1,kg,76.49340210000001,N2O,bcd94718-bbff-3603-80af-179732167b7b,AR-M,MENDOZA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,17322.349380900003,kg/TJ,0.1,kg,1732.2349380900005,N2O,17304ed6-fd65-3fee-94ce-0d83fca08e56,AR-M,MENDOZA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,2851.1885988762006,kg/TJ,0.1,kg,285.1188598876201,N2O,dee4f423-7fa2-3573-8b2f-661516eb2a3d,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,24089.911022313605,kg/TJ,0.1,kg,2408.9911022313604,N2O,123f7a28-e1f2-3191-9d36-3aeee7d5a98d,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1466.2084031592003,kg/TJ,0.1,kg,146.62084031592005,N2O,28f79bdc-7e3f-39ae-a513-d4778c1e8994,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,5337.006559941601,kg/TJ,0.1,kg,533.7006559941601,N2O,cca18463-5a56-3f7d-8b4e-4646c2554daf,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3789.7015257774005,kg/TJ,0.1,kg,378.97015257774007,N2O,5a6b8bde-d764-3ae6-a244-8e8a58ce8232,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,29254.269443399404,kg/TJ,0.1,kg,2925.4269443399407,N2O,34148b94-ccba-3722-ae51-019974195a34,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1548.6293626830002,kg/TJ,0.1,kg,154.86293626830002,N2O,e56cb846-5120-3e2c-8bd1-89da4acdf895,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,2566.1278584030006,kg/TJ,0.1,kg,256.6127858403001,N2O,7d8aa226-4e96-36cc-9d4f-d56cbf10b4d5,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,476.75048118000007,kg/TJ,0.1,kg,47.67504811800001,N2O,46672bf4-7d0a-31f7-8561-481f305fffe0,AR-A,SALTA,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,4690.972481760001,kg/TJ,0.1,kg,469.0972481760001,N2O,4f719bc2-17dc-3481-a063-b3935e458296,AR-A,SALTA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,123.55728156000002,kg/TJ,0.1,kg,12.355728156000003,N2O,db147214-8ec6-3e51-a385-4e82e3acb377,AR-A,SALTA,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,6855.414216405601,kg/TJ,0.1,kg,685.5414216405602,N2O,7d63cc67-6c26-3221-8a15-e9f5442c9a33,AR-A,SALTA,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,370.20470940000007,kg/TJ,0.1,kg,37.02047094000001,N2O,23f649ea-4191-3e06-b8f0-a9540ed2db88,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3943.5949617000006,kg/TJ,0.1,kg,394.35949617000006,N2O,8056afc2-115f-3722-bff4-cffca93304d0,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,103.82081598000002,kg/TJ,0.1,kg,10.382081598000003,N2O,db4b639c-58f6-3bb4-96d4-52ee431e4533,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,6683.654802420001,kg/TJ,0.1,kg,668.3654802420001,N2O,9c60406b-f4f8-3bfb-9401-8b535f0b70aa,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,701.2479111600002,kg/TJ,0.1,kg,70.12479111600003,N2O,174e64b6-0200-3d68-8edc-3fce9f34a960,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,3478.3282228200005,kg/TJ,0.1,kg,347.83282228200005,N2O,a12efdb3-df4d-3643-b111-519377d4936d,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,172.84005360000003,kg/TJ,0.1,kg,17.284005360000005,N2O,4996baea-f444-3305-a9c4-a3130c410500,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,4046.0922277200007,kg/TJ,0.1,kg,404.60922277200007,N2O,40b63196-cad4-3373-bce7-318d9af3f9bc,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1473.9324850140003,kg/TJ,0.1,kg,147.39324850140005,N2O,2199a8a9-36f4-3b62-9fe5-9ed3882c4e56,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,12408.136452342602,kg/TJ,0.1,kg,1240.8136452342603,N2O,7076ff9d-d49f-332e-8c7d-bad66d498391,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1103.3065753032001,kg/TJ,0.1,kg,110.33065753032002,N2O,bd3074e4-b192-354f-9a0c-689a9ecdacfd,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,272.3764605036001,kg/TJ,0.1,kg,27.23764605036001,N2O,795971cc-548c-348f-85a2-626189198683,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,3441.4685242722007,kg/TJ,0.1,kg,344.1468524272201,N2O,d3d7f658-6eb8-3499-b995-751b0e7fcc96,AR-S,SANTA FE,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,19718.523303174603,kg/TJ,0.1,kg,1971.8523303174604,N2O,eb4a879f-2524-3bb9-975b-4ff89e68670c,AR-S,SANTA FE,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,998.1178315116001,kg/TJ,0.1,kg,99.81178315116001,N2O,2f61584e-91e2-3310-a5a4-423115b07a16,AR-S,SANTA FE,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,61225.63124291881,kg/TJ,0.1,kg,6122.563124291882,N2O,4a2dffc9-033d-3a59-8145-fc1e60eb6b87,AR-S,SANTA FE,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,255.44514228000006,kg/TJ,0.1,kg,25.544514228000008,N2O,75253ccc-9b6f-3255-8de0-881aaf8380c5,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,1256.0878399800001,kg/TJ,0.1,kg,125.60878399800002,N2O,0308eca0-eaa8-3fdc-9e19-a89c58d484cc,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,81.94331370000002,kg/TJ,0.1,kg,8.194331370000002,N2O,35badd28-ffaf-3e1c-8699-b0d68b5a0ba5,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,525.6608296180201,kg/TJ,0.1,kg,52.56608296180201,N2O,0709f8ff-3bf4-3de8-852b-fe318d727242,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,2873.3942636904003,kg/TJ,0.1,kg,287.33942636904004,N2O,1f298f52-0126-3258-ae0e-851811f06e25,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,15437.931889850403,kg/TJ,0.1,kg,1543.7931889850404,N2O,b3aab77a-1c98-370f-88c9-279e6fa86ded,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,1400.8791449718003,kg/TJ,0.1,kg,140.08791449718004,N2O,57815516-e80a-3eab-9cd5-40b19dcf6c8e,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,836.5871230404001,kg/TJ,0.1,kg,83.65871230404002,N2O,b634a557-6194-31f9-9400-3f09fb3761ab,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.2.1,natural gas consumption by commercial buildings,TJ,1043.6580714000002,kg/TJ,0.1,kg,104.36580714000002,N2O,d69f0380-5261-38ca-93c9-149cb58b19e5,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.1.1,natural gas consumption by residential buildings,TJ,4561.031018040001,kg/TJ,0.1,kg,456.1031018040001,N2O,28d782d8-9563-3917-aa13-b45f36580c62,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.2.1,natural gas consumption by official entities,TJ,270.549183,kg/TJ,0.1,kg,27.054918300000004,N2O,a17c4c20-a006-3579-a694-9bc46456f51d,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.3.1,natural gas consumption by industrial buildings,TJ,7436.5408381472735,kg/TJ,0.1,kg,743.6540838147274,N2O,d5ac7340-afd0-3e0c-8ea9-36c603938949,AR-T,TUCUMAN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,40806.79702410001,kg/TJ,0.1,kg,4080.679702410001,N2O,9c13828a-b61f-38ba-a63d-d3c76cc04e21,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,6863.540813160002,kg/TJ,0.1,kg,686.3540813160002,N2O,e7911fba-a823-36f3-99a2-72c5a7067fec,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,596.9599599000001,kg/TJ,0.1,kg,59.69599599000001,N2O,79140151-14f5-3e23-8001-c6191076cdb4,AR-K,CATAMARCA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,56.79586446000001,kg/TJ,0.1,kg,5.679586446000002,N2O,8e511386-6176-31d2-8df2-1272feee696c,AR-U,CHUBUT,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,14443.861785540003,kg/TJ,0.1,kg,1444.3861785540003,N2O,140420bf-8f4f-39c5-a541-208462344828,AR-X,CORDOBA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,17.167221540000003,kg/TJ,0.1,kg,1.7167221540000004,N2O,07c06ac1-532c-32c2-b80f-8255dc1563fc,AR-W,CORRIENTES,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1669.5414907200002,kg/TJ,0.1,kg,166.95414907200004,N2O,a6eaa54d-82df-3baf-90bf-4e9b16ef7ca2,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1752.9251382000002,kg/TJ,0.1,kg,175.29251382000004,N2O,f2209b15-99d1-36c5-9cc3-5f01a451cd97,AR-Y,JUJUY,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,345.7190351400001,kg/TJ,0.1,kg,34.571903514000006,N2O,8de18a03-6019-368f-a9cc-85472e6e7d4d,AR-L,LA PAMPA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,239.25111924000004,kg/TJ,0.1,kg,23.925111924000007,N2O,5c245ec1-f0b9-340d-9297-c694bc83aa29,AR-F,LA RIOJA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,5696.169748440001,kg/TJ,0.1,kg,569.6169748440001,N2O,f99aa304-ba9d-3952-96f9-326408c8bbef,AR-M,MENDOZA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,375.45998130000004,kg/TJ,0.1,kg,37.54599813000001,N2O,31b3893d-35a5-3750-8a8c-5d351edbaba9,AR-Q,NEUQUEN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,660.5682138600001,kg/TJ,0.1,kg,66.05682138600001,N2O,9df95ec8-1465-3086-8b8f-ab97331b7d28,AR-R,RIO NEGRO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,2779.6495557000003,kg/TJ,0.1,kg,277.96495557000003,N2O,86b15f1b-7b9c-3ac9-a837-0849afcb1a41,AR-A,SALTA,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1876.2877800600004,kg/TJ,0.1,kg,187.62877800600006,N2O,9a72d642-03ed-3824-8a7e-f5149e02df5b,AR-J,SAN JUAN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1696.3239134400003,kg/TJ,0.1,kg,169.63239134400004,N2O,5973ee6c-c8ef-3d50-b2dc-be12e6440050,AR-D,SAN LUIS,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,7755.263134740001,kg/TJ,0.1,kg,775.5263134740002,N2O,4e07bfc8-27c1-3acb-ad5f-85723edb62a9,AR-S,SANTA FE,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,1583.5107433200003,kg/TJ,0.1,kg,158.35107433200005,N2O,bf889dd4-c1eb-3cf4-9411-86fa97a553fe,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,25.419944820000005,kg/TJ,0.1,kg,2.5419944820000007,N2O,91540dd7-2e28-366d-b73d-4ad7977a1079,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,4180.7050442400005,kg/TJ,0.1,kg,418.0705044240001,N2O,3ea08b88-8baa-308e-b461-1a5e370bbd73,AR-T,TUCUMAN,ENARGAS,annual,2018 +II.1.1,GNC consumption by on road transportation,TJ,42708.00530350981,kg/TJ,0.1,kg,4270.800530350981,N2O,81a0f116-e978-30fb-bbca-26f49c539675,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,7064.837190900002,kg/TJ,0.1,kg,706.4837190900002,N2O,710ef4dc-251e-34fc-a118-782dbc5d53cc,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,630.2822765400001,kg/TJ,0.1,kg,63.02822765400001,N2O,30597155-015e-39a7-95cc-8c166b8bf754,AR-K,CATAMARCA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,57.96370266000001,kg/TJ,0.1,kg,5.796370266000001,N2O,487846dc-41f2-36a5-a687-bdc68cc47703,AR-U,CHUBUT,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,14999.947408440003,kg/TJ,0.1,kg,1499.9947408440003,N2O,b41c1b01-c19e-3f05-a323-0897ccb5d1ce,AR-X,CORDOBA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,21.721790520000003,kg/TJ,0.1,kg,2.172179052,N2O,4b845ce4-ab5d-308a-9b7e-82746e8f2ab7,AR-W,CORRIENTES,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1724.8970214000003,kg/TJ,0.1,kg,172.48970214000005,N2O,afb08ea4-6094-3413-b803-d7d67197ba04,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1811.0834805600002,kg/TJ,0.1,kg,181.10834805600004,N2O,4e9fb3db-3031-32cd-b4fc-6057b85d305f,AR-Y,JUJUY,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,339.33485298000005,kg/TJ,0.1,kg,33.93348529800001,N2O,151d53c6-0be6-3ce6-8257-a89cd9ae45c5,AR-L,LA PAMPA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,240.45788538000005,kg/TJ,0.1,kg,24.045788538000007,N2O,81f44c7e-aa66-375e-9a14-16092593fec3,AR-F,LA RIOJA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,5740.820095620001,kg/TJ,0.1,kg,574.082009562,N2O,30782060-2355-3c59-b5f4-046626d8b700,AR-M,MENDOZA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,355.80137160000004,kg/TJ,0.1,kg,35.58013716000001,N2O,256d1491-d960-35ac-b311-088365ccad35,AR-Q,NEUQUEN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,600.3856186200001,kg/TJ,0.1,kg,60.03856186200001,N2O,f1a0d1a4-4abc-3b5b-b177-c8dcf1d842a2,AR-R,RIO NEGRO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,2857.0772283600004,kg/TJ,0.1,kg,285.7077228360001,N2O,1ba8153b-4f97-3206-b8cf-631858a765d7,AR-A,SALTA,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1896.6470926800002,kg/TJ,0.1,kg,189.66470926800002,N2O,7908f79b-8cde-3d08-bd30-0ab103c737b4,AR-J,SAN JUAN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1753.6258411200004,kg/TJ,0.1,kg,175.36258411200004,N2O,2e6c3f4a-2588-32e6-91d5-87b940a17212,AR-D,SAN LUIS,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,7865.1897981090015,kg/TJ,0.1,kg,786.5189798109002,N2O,4ffa4905-0d3a-38fd-bb7c-0c8407c9ac92,AR-S,SANTA FE,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,1588.2210240600002,kg/TJ,0.1,kg,158.82210240600003,N2O,92192e0c-dd48-32c5-9ab2-395f73b70ac6,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,27.366341820000006,kg/TJ,0.1,kg,2.736634182000001,N2O,833e3a66-19d4-39f9-8cec-3e498888b00f,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,4242.9508203000005,kg/TJ,0.1,kg,424.29508203000006,N2O,9c2d7ad1-5d07-38ff-8cb0-c081ee9d197d,AR-T,TUCUMAN,ENARGAS,annual,2019 +II.1.1,GNC consumption by on road transportation,TJ,31990.607383776005,kg/TJ,0.1,kg,3199.0607383776005,N2O,ddbcefa3-36de-3709-93d9-328b0ef84111,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,4984.294509660001,kg/TJ,0.1,kg,498.4294509660001,N2O,b7e54f03-8216-3715-bf0b-51d2f35a27b2,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,501.0415157400001,kg/TJ,0.1,kg,50.104151574000014,N2O,d531f5f4-b26d-3206-b22a-22d274246574,AR-K,CATAMARCA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,44.02750014000001,kg/TJ,0.1,kg,4.402750014000001,N2O,b0bc1115-b897-3eaa-baec-eb50265bd972,AR-U,CHUBUT,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,11422.820073900002,kg/TJ,0.1,kg,1142.2820073900002,N2O,f5fabf87-6221-33aa-8058-53decba63fb7,AR-X,CORDOBA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,13.663706940000003,kg/TJ,0.1,kg,1.3663706940000004,N2O,5fbec039-6469-356f-ac31-e2b3bb71d151,AR-W,CORRIENTES,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1299.5703489600003,kg/TJ,0.1,kg,129.95703489600004,N2O,565ac96d-d78b-3c1e-86d0-a70e1f1f576d,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1335.6176214000002,kg/TJ,0.1,kg,133.56176214,N2O,7e7d0bab-a715-39f1-8c7a-df56c2b37b86,AR-Y,JUJUY,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,245.09031024000004,kg/TJ,0.1,kg,24.509031024000006,N2O,7767b574-4899-3e7c-89d6-842c46e9b057,AR-L,LA PAMPA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,137.76597966000003,kg/TJ,0.1,kg,13.776597966000004,N2O,59a0ccac-ce29-3f16-904a-fd161b426320,AR-F,LA RIOJA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,4338.8692644600005,kg/TJ,0.1,kg,433.8869264460001,N2O,681ce4f7-882b-3676-8204-101c5c07da72,AR-M,MENDOZA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,224.14707852000004,kg/TJ,0.1,kg,22.414707852000006,N2O,e16e7c2d-5b29-3c9a-a467-adc0aba0752a,AR-Q,NEUQUEN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,417.8914359000001,kg/TJ,0.1,kg,41.78914359000001,N2O,4bc0ba62-0d07-3684-903f-61772321e27e,AR-R,RIO NEGRO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,2235.8262339000003,kg/TJ,0.1,kg,223.58262339000004,N2O,f8746af5-0dc8-3586-88df-ba3a4f074ee2,AR-A,SALTA,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1539.7168108200003,kg/TJ,0.1,kg,153.97168108200003,N2O,2f036f3e-2d71-349f-bdc7-89c4390f545c,AR-J,SAN JUAN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1368.3949468800001,kg/TJ,0.1,kg,136.83949468800003,N2O,2c3fa746-3447-3c10-bd13-0b90c58017ec,AR-D,SAN LUIS,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,6038.259531733801,kg/TJ,0.1,kg,603.8259531733801,N2O,90765b9f-d159-39d7-b7de-0b320b94a0df,AR-S,SANTA FE,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,1072.1143955400003,kg/TJ,0.1,kg,107.21143955400004,N2O,19d3f80b-84ef-3efa-aa5b-62278cfbc840,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,24.018538980000002,kg/TJ,0.1,kg,2.4018538980000006,N2O,8f88c7f3-b454-3f4e-b3cd-040c8ddc83a4,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,3467.194831980001,kg/TJ,0.1,kg,346.7194831980001,N2O,292f35ff-0f74-35bf-aa4f-3a9f7a1a07c6,AR-T,TUCUMAN,ENARGAS,annual,2020 +II.1.1,GNC consumption by on road transportation,TJ,40726.08032978941,kg/TJ,0.1,kg,4072.608032978941,N2O,c6c5f98a-7b25-34b1-9eb6-2f93f7650065,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,6498.085312440001,kg/TJ,0.1,kg,649.8085312440002,N2O,fb6a74a5-4c34-3cd4-a6b6-a0862a0196cd,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,567.9975725400001,kg/TJ,0.1,kg,56.79975725400001,N2O,cedd050d-f43c-3765-81c8-c9168ca9b6df,AR-K,CATAMARCA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,53.525917500000006,kg/TJ,0.1,kg,5.352591750000001,N2O,87a1fa94-90c8-35b5-bc28-114115c85348,AR-U,CHUBUT,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,14180.786767020003,kg/TJ,0.1,kg,1418.0786767020004,N2O,f9847430-86f7-35b3-b705-69256f9ea0aa,AR-X,CORDOBA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,12.534796680000003,kg/TJ,0.1,kg,1.2534796680000004,N2O,ad8d209b-e2df-3e6e-b227-301213942626,AR-W,CORRIENTES,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1728.0112566000003,kg/TJ,0.1,kg,172.80112566000003,N2O,1df98b1f-8770-3961-b85b-234ea4be4973,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1697.7253192800003,kg/TJ,0.1,kg,169.77253192800003,N2O,277a51a3-600d-31dd-90ab-dfbacfb4b07e,AR-Y,JUJUY,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,293.55559554000007,kg/TJ,0.1,kg,29.35555955400001,N2O,6ce46d09-4049-3023-a582-1d01506ac535,AR-L,LA PAMPA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,191.09725746000004,kg/TJ,0.1,kg,19.109725746000006,N2O,08b498ac-2af0-3eac-a957-5f88cec2d062,AR-F,LA RIOJA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,5321.605109760001,kg/TJ,0.1,kg,532.1605109760002,N2O,4440eb18-b239-3004-a94f-53b663059a13,AR-M,MENDOZA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,244.62317496000003,kg/TJ,0.1,kg,24.462317496000004,N2O,f0cb832e-23ec-35d2-affa-02c78ae7b60f,AR-Q,NEUQUEN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,556.5916861200001,kg/TJ,0.1,kg,55.65916861200001,N2O,bfb2fd54-6347-3a0a-ba87-6c59328685d4,AR-R,RIO NEGRO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,2773.5378691200003,kg/TJ,0.1,kg,277.35378691200003,N2O,a07c17da-1fbf-3d01-92c2-0cf61c5652ac,AR-A,SALTA,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1808.3974527000003,kg/TJ,0.1,kg,180.83974527000004,N2O,ff98235c-81f6-3a3f-a0e4-a49ff5f37330,AR-J,SAN JUAN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1689.3168842400003,kg/TJ,0.1,kg,168.93168842400004,N2O,7ff585d4-3a2b-35a7-a4bd-d4f715b32528,AR-D,SAN LUIS,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,7378.001179097401,kg/TJ,0.1,kg,737.8001179097402,N2O,6683196f-c6df-33a9-a0bd-478cbfe6910c,AR-S,SANTA FE,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,1375.9469672400003,kg/TJ,0.1,kg,137.59469672400004,N2O,3edd4d1e-da6e-3ca3-9e7a-25644f90c1cb,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,27.405269760000003,kg/TJ,0.1,kg,2.7405269760000004,N2O,3d9d1fa2-a9bc-3879-a629-868273c85c6b,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,4165.795643220001,kg/TJ,0.1,kg,416.5795643220001,N2O,0308e7b7-75ba-331f-8007-3a87b5530e78,AR-T,TUCUMAN,ENARGAS,annual,2021 +II.1.1,GNC consumption by on road transportation,TJ,41136.247294555214,kg/TJ,0.1,kg,4113.624729455521,N2O,69064908-7ddd-3d1e-ba35-5fc20247693f,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,6432.491733540001,kg/TJ,0.1,kg,643.2491733540002,N2O,5cc90434-2a81-3e8d-bc9f-deb6b38f22bc,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,595.3249864200001,kg/TJ,0.1,kg,59.53249864200001,N2O,49129e20-5488-3bc3-8792-4b0b1f0ba151,AR-K,CATAMARCA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,52.35029371200001,kg/TJ,0.1,kg,5.235029371200001,N2O,2274a937-e016-37a4-b50f-306bd842130f,AR-U,CHUBUT,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,14626.200256500002,kg/TJ,0.1,kg,1462.6200256500003,N2O,e4465f0c-79c1-3b1e-b157-ea1ad6e82bfc,AR-X,CORDOBA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,21.488222880000002,kg/TJ,0.1,kg,2.1488222880000003,N2O,e4f0af00-b1a2-38c6-96a4-d134066ca00d,AR-W,CORRIENTES,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1750.7451735600002,kg/TJ,0.1,kg,175.07451735600003,N2O,62bdb43a-fbee-3112-b6cc-eee39f53c601,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1677.8331419400004,kg/TJ,0.1,kg,167.78331419400004,N2O,4b803cbc-3ccc-3d15-8f24-6b8b3d46c7fb,AR-Y,JUJUY,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,309.47712300000006,kg/TJ,0.1,kg,30.947712300000006,N2O,d7e49381-a48b-3c33-82a4-e662072f6900,AR-L,LA PAMPA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,198.57142194000002,kg/TJ,0.1,kg,19.857142194000005,N2O,c78d909e-a119-3e58-a89e-4f1b7a660bbe,AR-F,LA RIOJA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,5316.5834055000005,kg/TJ,0.1,kg,531.65834055,N2O,b9b40678-bcbd-33d3-bfe4-1f00ae89d02b,AR-M,MENDOZA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,240.36679400040003,kg/TJ,0.1,kg,24.036679400040004,N2O,3dfc3bcb-e3a3-31b8-8f0b-1b696c675722,AR-Q,NEUQUEN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,592.3197494520001,kg/TJ,0.1,kg,59.231974945200015,N2O,b87af6d6-70c8-3550-9225-fe851048e554,AR-R,RIO NEGRO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,2819.2781986200007,kg/TJ,0.1,kg,281.9278198620001,N2O,9dd1baf1-31b2-3352-9d2e-c48745db0de7,AR-A,SALTA,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1808.4753085800003,kg/TJ,0.1,kg,180.84753085800003,N2O,bf5b85c9-1711-33bb-907a-0ffca13518b6,AR-J,SAN JUAN,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1778.1504433200002,kg/TJ,0.1,kg,177.81504433200004,N2O,4cba818a-4a95-3156-bf6e-b10c6f2922a0,AR-D,SAN LUIS,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,7496.704925098201,kg/TJ,0.1,kg,749.6704925098202,N2O,094c748e-c8c9-357c-8c6c-a04ba311d062,AR-S,SANTA FE,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,1450.1825488200002,kg/TJ,0.1,kg,145.01825488200004,N2O,5c2053cd-bf88-373d-8351-d87578a19c1d,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,27.418894539000004,kg/TJ,0.1,kg,2.7418894539000007,N2O,3a33e879-32a3-3873-8007-2004ebb512d4,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +II.1.1,GNC consumption by on road transportation,TJ,4156.18044204,kg/TJ,0.1,kg,415.61804420400006,N2O,bd83cd44-ee0e-3e8b-829d-3ff4051c14d2,AR-T,TUCUMAN,ENARGAS,annual,2022 diff --git a/global-api/importer/argentinian_datasets/ENARGAS/raw_enargas_gas_consumption_AR.csv b/global-api/importer/argentinian_datasets/ENARGAS/raw_enargas_gas_consumption_AR.csv new file mode 100644 index 000000000..5d9013e27 --- /dev/null +++ b/global-api/importer/argentinian_datasets/ENARGAS/raw_enargas_gas_consumption_AR.csv @@ -0,0 +1,645 @@ +"";"Provincia";"Tipo de Usuario";"Año";"Consumo de Gas" +"1";"BUENOS AIRES";"CENTRALES ELECTRICAS";"2018";2242951,29 +"2";"BUENOS AIRES";"COMERCIALES";"2018";431811,77330907 +"3";"BUENOS AIRES";"RESIDENCIALES";"2018";3770721 +"4";"BUENOS AIRES";"ENTES OFICIALES";"2018";153723 +"5";"BUENOS AIRES";"GNC";"2018";1048265 +"6";"BUENOS AIRES";"INDUSTRIALES";"2018";4861262,16 +"7";"BUENOS AIRES";"SDB";"2018";270565 +"8";"CAPITAL FEDERAL";"CENTRALES ELECTRICAS";"2018";2796434 +"9";"CAPITAL FEDERAL";"COMERCIALES";"2018";126666 +"10";"CAPITAL FEDERAL";"RESIDENCIALES";"2018";955279 +"11";"CAPITAL FEDERAL";"ENTES OFICIALES";"2018";43021 +"12";"CAPITAL FEDERAL";"GNC";"2018";176314 +"13";"CAPITAL FEDERAL";"INDUSTRIALES";"2018";66953 +"14";"CATAMARCA";"COMERCIALES";"2018";3108 +"15";"CATAMARCA";"RESIDENCIALES";"2018";14154 +"16";"CATAMARCA";"ENTES OFICIALES";"2018";299 +"17";"CATAMARCA";"GNC";"2018";15335 +"18";"CATAMARCA";"INDUSTRIALES";"2018";85007 +"19";"CHUBUT";"CENTRALES ELECTRICAS";"2018";190165 +"20";"CHUBUT";"COMERCIALES";"2018";88637 +"21";"CHUBUT";"RESIDENCIALES";"2018";631630 +"22";"CHUBUT";"ENTES OFICIALES";"2018";40882 +"23";"CHUBUT";"GNC";"2018";1459 +"24";"CHUBUT";"INDUSTRIALES";"2018";566667 +"25";"CORDOBA";"CENTRALES ELECTRICAS";"2018";678800 +"26";"CORDOBA";"COMERCIALES";"2018";86870 +"27";"CORDOBA";"RESIDENCIALES";"2018";570567 +"28";"CORDOBA";"ENTES OFICIALES";"2018";13058 +"29";"CORDOBA";"GNC";"2018";371041 +"30";"CORDOBA";"INDUSTRIALES";"2018";503290 +"31";"CORDOBA";"SDB";"2018";73703 +"32";"CORRIENTES";"COMERCIALES";"2018";2,27 +"33";"CORRIENTES";"RESIDENCIALES";"2018";0,08 +"35";"CORRIENTES";"GNC";"2018";441 +"37";"ENTRE RIOS";"COMERCIALES";"2018";21845 +"38";"ENTRE RIOS";"RESIDENCIALES";"2018";91434 +"39";"ENTRE RIOS";"ENTES OFICIALES";"2018";1457 +"40";"ENTRE RIOS";"GNC";"2018";42888 +"41";"ENTRE RIOS";"INDUSTRIALES";"2018";115190 +"42";"JUJUY";"CENTRALES ELECTRICAS";"2018";74029 +"43";"JUJUY";"COMERCIALES";"2018";8801,103 +"44";"JUJUY";"RESIDENCIALES";"2018";48781 +"45";"JUJUY";"ENTES OFICIALES";"2018";2226,678 +"46";"JUJUY";"GNC";"2018";45030 +"47";"JUJUY";"INDUSTRIALES";"2018";151259,897 +"48";"JUJUY";"SDB";"2018";5600 +"49";"LA PAMPA";"COMERCIALES";"2018";20040 +"50";"LA PAMPA";"RESIDENCIALES";"2018";232122 +"51";"LA PAMPA";"ENTES OFICIALES";"2018";13918 +"52";"LA PAMPA";"GNC";"2018";8881 +"53";"LA PAMPA";"INDUSTRIALES";"2018";31398 +"54";"LA RIOJA";"CENTRALES ELECTRICAS";"2018";7539 +"55";"LA RIOJA";"COMERCIALES";"2018";2246 +"56";"LA RIOJA";"RESIDENCIALES";"2018";10870 +"57";"LA RIOJA";"ENTES OFICIALES";"2018";370 +"58";"LA RIOJA";"GNC";"2018";6146 +"59";"LA RIOJA";"INDUSTRIALES";"2018";12646 +"60";"LA RIOJA";"SDB";"2018";52 +"61";"MENDOZA";"CENTRALES ELECTRICAS";"2018";727496 +"62";"MENDOZA";"COMERCIALES";"2018";44982 +"63";"MENDOZA";"RESIDENCIALES";"2018";431945 +"64";"MENDOZA";"ENTES OFICIALES";"2018";14133 +"65";"MENDOZA";"GNC";"2018";146326 +"66";"MENDOZA";"INDUSTRIALES";"2018";416945 +"67";"MENDOZA";"SDB";"2018";40290 +"68";"NEUQUEN";"CENTRALES ELECTRICAS";"2018";11271 +"69";"NEUQUEN";"COMERCIALES";"2018";77244 +"70";"NEUQUEN";"RESIDENCIALES";"2018";603793 +"71";"NEUQUEN";"ENTES OFICIALES";"2018";34874 +"72";"NEUQUEN";"GNC";"2018";9645 +"73";"NEUQUEN";"INDUSTRIALES";"2018";46525 +"74";"NEUQUEN";"SDB";"2018";3305 +"75";"RIO NEGRO";"CENTRALES ELECTRICAS";"2018";5409 +"76";"RIO NEGRO";"COMERCIALES";"2018";108181 +"77";"RIO NEGRO";"RESIDENCIALES";"2018";646902 +"78";"RIO NEGRO";"ENTES OFICIALES";"2018";34717 +"79";"RIO NEGRO";"GNC";"2018";16969 +"80";"RIO NEGRO";"INDUSTRIALES";"2018";142910 +"81";"SALTA";"CENTRALES ELECTRICAS";"2018";469775 +"82";"SALTA";"COMERCIALES";"2018";18080,982 +"83";"SALTA";"RESIDENCIALES";"2018";109588 +"84";"SALTA";"ENTES OFICIALES";"2018";4036,411 +"85";"SALTA";"GNC";"2018";71405 +"86";"SALTA";"INDUSTRIALES";"2018";111778,333 +"87";"SAN JUAN";"CENTRALES ELECTRICAS";"2018";5240 +"88";"SAN JUAN";"COMERCIALES";"2018";10484 +"89";"SAN JUAN";"RESIDENCIALES";"2018";97373 +"90";"SAN JUAN";"ENTES OFICIALES";"2018";2078 +"91";"SAN JUAN";"GNC";"2018";48199 +"92";"SAN JUAN";"INDUSTRIALES";"2018";161927 +"93";"SAN JUAN";"SDB";"2018";3771 +"94";"SAN LUIS";"COMERCIALES";"2018";24935 +"95";"SAN LUIS";"RESIDENCIALES";"2018";87614 +"96";"SAN LUIS";"ENTES OFICIALES";"2018";3149 +"97";"SAN LUIS";"GNC";"2018";43576 +"98";"SAN LUIS";"INDUSTRIALES";"2018";95833 +"99";"SAN LUIS";"SDB";"2018";28128 +"100";"SANTA CRUZ";"CENTRALES ELECTRICAS";"2018";16966 +"101";"SANTA CRUZ";"COMERCIALES";"2018";40823 +"102";"SANTA CRUZ";"RESIDENCIALES";"2018";332765 +"103";"SANTA CRUZ";"ENTES OFICIALES";"2018";28543 +"104";"SANTA CRUZ";"INDUSTRIALES";"2018";2070 +"105";"SANTA CRUZ";"SDB";"2018";157251 +"106";"SANTA FE";"CENTRALES ELECTRICAS";"2018";10048 +"107";"SANTA FE";"COMERCIALES";"2018";42735 +"108";"SANTA FE";"RESIDENCIALES";"2018";473648,686972553 +"109";"SANTA FE";"ENTES OFICIALES";"2018";5123 +"110";"SANTA FE";"GNC";"2018";199221 +"111";"SANTA FE";"INDUSTRIALES";"2018";1852193 +"112";"SANTA FE";"SDB";"2018";120055,81 +"113";"SANTIAGO DEL ESTERO";"CENTRALES ELECTRICAS";"2018";51658 +"114";"SANTIAGO DEL ESTERO";"COMERCIALES";"2018";8132 +"115";"SANTIAGO DEL ESTERO";"RESIDENCIALES";"2018";31343 +"116";"SANTIAGO DEL ESTERO";"ENTES OFICIALES";"2018";1157,363 +"117";"SANTIAGO DEL ESTERO";"GNC";"2018";40678 +"118";"SANTIAGO DEL ESTERO";"INDUSTRIALES";"2018";23953,99 +"119";"TIERRA DEL FUEGO";"CENTRALES ELECTRICAS";"2018";169895 +"120";"TIERRA DEL FUEGO";"COMERCIALES";"2018";72579 +"121";"TIERRA DEL FUEGO";"RESIDENCIALES";"2018";314351 +"122";"TIERRA DEL FUEGO";"ENTES OFICIALES";"2018";32605 +"123";"TIERRA DEL FUEGO";"GNC";"2018";653 +"124";"TIERRA DEL FUEGO";"INDUSTRIALES";"2018";19824 +"125";"TUCUMAN";"CENTRALES ELECTRICAS";"2018";232209 +"126";"TUCUMAN";"COMERCIALES";"2018";20193,315 +"127";"TUCUMAN";"RESIDENCIALES";"2018";114322 +"128";"TUCUMAN";"ENTES OFICIALES";"2018";2018,27 +"129";"TUCUMAN";"GNC";"2018";107396 +"130";"TUCUMAN";"INDUSTRIALES";"2018";312958,833 +"131";"BUENOS AIRES";"CENTRALES ELECTRICAS";"2019";1808487,276 +"132";"BUENOS AIRES";"COMERCIALES";"2019";530573,566 +"133";"BUENOS AIRES";"RESIDENCIALES";"2019";3559109,63 +"134";"BUENOS AIRES";"ENTES OFICIALES";"2019";137582,24 +"135";"BUENOS AIRES";"GNC";"2019";1097104,17 +"136";"BUENOS AIRES";"INDUSTRIALES";"2019";5328140,42 +"137";"BUENOS AIRES";"SDB";"2019";261761,68 +"138";"CAPITAL FEDERAL";"CENTRALES ELECTRICAS";"2019";2711292 +"139";"CAPITAL FEDERAL";"COMERCIALES";"2019";173629 +"140";"CAPITAL FEDERAL";"RESIDENCIALES";"2019";922194 +"141";"CAPITAL FEDERAL";"ENTES OFICIALES";"2019";47270 +"142";"CAPITAL FEDERAL";"GNC";"2019";181485 +"143";"CAPITAL FEDERAL";"INDUSTRIALES";"2019";65420 +"144";"CATAMARCA";"COMERCIALES";"2019";2923 +"145";"CATAMARCA";"RESIDENCIALES";"2019";12301 +"146";"CATAMARCA";"ENTES OFICIALES";"2019";323 +"147";"CATAMARCA";"GNC";"2019";16191 +"148";"CATAMARCA";"INDUSTRIALES";"2019";77281 +"149";"CHUBUT";"CENTRALES ELECTRICAS";"2019";151218 +"150";"CHUBUT";"COMERCIALES";"2019";85123 +"151";"CHUBUT";"RESIDENCIALES";"2019";624799 +"152";"CHUBUT";"ENTES OFICIALES";"2019";40753 +"153";"CHUBUT";"GNC";"2019";1489 +"154";"CHUBUT";"INDUSTRIALES";"2019";672493 +"155";"CORDOBA";"CENTRALES ELECTRICAS";"2019";477737 +"156";"CORDOBA";"COMERCIALES";"2019";80403 +"157";"CORDOBA";"RESIDENCIALES";"2019";539413 +"158";"CORDOBA";"ENTES OFICIALES";"2019";16025 +"159";"CORDOBA";"GNC";"2019";385326 +"160";"CORDOBA";"INDUSTRIALES";"2019";475230 +"161";"CORDOBA";"SDB";"2019";69405 +"162";"CORRIENTES";"COMERCIALES";"2019";8 +"163";"CORRIENTES";"RESIDENCIALES";"2019";0 +"164";"CORRIENTES";"ENTES OFICIALES";"2019";0 +"165";"CORRIENTES";"GNC";"2019";558 +"167";"ENTRE RIOS";"COMERCIALES";"2019";20449 +"168";"ENTRE RIOS";"RESIDENCIALES";"2019";80513 +"169";"ENTRE RIOS";"ENTES OFICIALES";"2019";1699 +"170";"ENTRE RIOS";"GNC";"2019";44310 +"171";"ENTRE RIOS";"INDUSTRIALES";"2019";117792 +"172";"JUJUY";"CENTRALES ELECTRICAS";"2019";49329 +"173";"JUJUY";"COMERCIALES";"2019";8337,55 +"174";"JUJUY";"RESIDENCIALES";"2019";47743 +"175";"JUJUY";"ENTES OFICIALES";"2019";2099,501 +"176";"JUJUY";"GNC";"2019";46524 +"177";"JUJUY";"INDUSTRIALES";"2019";113961,123 +"178";"JUJUY";"SDB";"2019";4571 +"179";"LA PAMPA";"COMERCIALES";"2019";18757 +"180";"LA PAMPA";"RESIDENCIALES";"2019";229982 +"181";"LA PAMPA";"ENTES OFICIALES";"2019";14081 +"182";"LA PAMPA";"GNC";"2019";8717 +"183";"LA PAMPA";"INDUSTRIALES";"2019";30557 +"184";"LA RIOJA";"CENTRALES ELECTRICAS";"2019";15911 +"185";"LA RIOJA";"COMERCIALES";"2019";2083 +"186";"LA RIOJA";"RESIDENCIALES";"2019";8967 +"187";"LA RIOJA";"ENTES OFICIALES";"2019";366 +"188";"LA RIOJA";"GNC";"2019";6177 +"189";"LA RIOJA";"INDUSTRIALES";"2019";13097 +"190";"LA RIOJA";"SDB";"2019";0 +"191";"MENDOZA";"CENTRALES ELECTRICAS";"2019";739760 +"192";"MENDOZA";"COMERCIALES";"2019";42132 +"193";"MENDOZA";"RESIDENCIALES";"2019";411870 +"194";"MENDOZA";"ENTES OFICIALES";"2019";18654 +"195";"MENDOZA";"GNC";"2019";147473 +"196";"MENDOZA";"INDUSTRIALES";"2019";412533 +"197";"MENDOZA";"SDB";"2019";30774 +"198";"NEUQUEN";"CENTRALES ELECTRICAS";"2019";12288 +"199";"NEUQUEN";"COMERCIALES";"2019";76217 +"200";"NEUQUEN";"RESIDENCIALES";"2019";567611 +"201";"NEUQUEN";"ENTES OFICIALES";"2019";34922 +"202";"NEUQUEN";"GNC";"2019";9140 +"203";"NEUQUEN";"INDUSTRIALES";"2019";236684 +"204";"NEUQUEN";"SDB";"2019";3363 +"205";"RIO NEGRO";"CENTRALES ELECTRICAS";"2019";6750 +"206";"RIO NEGRO";"COMERCIALES";"2019";102555 +"207";"RIO NEGRO";"RESIDENCIALES";"2019";609720 +"208";"RIO NEGRO";"ENTES OFICIALES";"2019";35625 +"209";"RIO NEGRO";"GNC";"2019";15423 +"210";"RIO NEGRO";"INDUSTRIALES";"2019";147574 +"211";"SALTA";"CENTRALES ELECTRICAS";"2019";223427 +"212";"SALTA";"COMERCIALES";"2019";17148,137 +"213";"SALTA";"RESIDENCIALES";"2019";107020 +"214";"SALTA";"ENTES OFICIALES";"2019";4013,712 +"215";"SALTA";"GNC";"2019";73394 +"216";"SALTA";"INDUSTRIALES";"2019";105565,782 +"217";"SAN JUAN";"CENTRALES ELECTRICAS";"2019";12803 +"218";"SAN JUAN";"COMERCIALES";"2019";9774 +"219";"SAN JUAN";"RESIDENCIALES";"2019";94224 +"220";"SAN JUAN";"ENTES OFICIALES";"2019";2708 +"221";"SAN JUAN";"GNC";"2019";48722 +"222";"SAN JUAN";"INDUSTRIALES";"2019";160799 +"223";"SAN JUAN";"SDB";"2019";3657 +"224";"SAN LUIS";"COMERCIALES";"2019";23440 +"225";"SAN LUIS";"RESIDENCIALES";"2019";80513 +"226";"SAN LUIS";"ENTES OFICIALES";"2019";4255 +"227";"SAN LUIS";"GNC";"2019";45048 +"228";"SAN LUIS";"INDUSTRIALES";"2019";92718 +"229";"SAN LUIS";"SDB";"2019";22082 +"230";"SANTA CRUZ";"CENTRALES ELECTRICAS";"2019";11333 +"231";"SANTA CRUZ";"COMERCIALES";"2019";37156 +"232";"SANTA CRUZ";"RESIDENCIALES";"2019";319308 +"233";"SANTA CRUZ";"ENTES OFICIALES";"2019";28352 +"234";"SANTA CRUZ";"INDUSTRIALES";"2019";1557 +"235";"SANTA CRUZ";"SDB";"2019";155855 +"236";"SANTA FE";"CENTRALES ELECTRICAS";"2019";2639,79 +"237";"SANTA FE";"COMERCIALES";"2019";127673,854 +"238";"SANTA FE";"RESIDENCIALES";"2019";461104,78 +"239";"SANTA FE";"ENTES OFICIALES";"2019";17367,2 +"240";"SANTA FE";"GNC";"2019";202044,85 +"241";"SANTA FE";"INDUSTRIALES";"2019";1591767,29 +"242";"SANTA FE";"SDB";"2019";79569,08 +"243";"SANTIAGO DEL ESTERO";"CENTRALES ELECTRICAS";"2019";20032 +"244";"SANTIAGO DEL ESTERO";"COMERCIALES";"2019";8061,752 +"245";"SANTIAGO DEL ESTERO";"RESIDENCIALES";"2019";31986 +"246";"SANTIAGO DEL ESTERO";"ENTES OFICIALES";"2019";1077,244 +"247";"SANTIAGO DEL ESTERO";"GNC";"2019";40799 +"248";"SANTIAGO DEL ESTERO";"INDUSTRIALES";"2019";15465,555 +"249";"TIERRA DEL FUEGO";"CENTRALES ELECTRICAS";"2019";171253 +"250";"TIERRA DEL FUEGO";"COMERCIALES";"2019";72806 +"251";"TIERRA DEL FUEGO";"RESIDENCIALES";"2019";376459 +"252";"TIERRA DEL FUEGO";"ENTES OFICIALES";"2019";33802 +"253";"TIERRA DEL FUEGO";"GNC";"2019";703 +"254";"TIERRA DEL FUEGO";"INDUSTRIALES";"2019";17770 +"255";"TUCUMAN";"CENTRALES ELECTRICAS";"2019";121435 +"256";"TUCUMAN";"COMERCIALES";"2019";18826,352 +"257";"TUCUMAN";"RESIDENCIALES";"2019";109378 +"258";"TUCUMAN";"ENTES OFICIALES";"2019";1899,506 +"259";"TUCUMAN";"GNC";"2019";108995 +"260";"TUCUMAN";"INDUSTRIALES";"2019";256476,275 +"261";"BUENOS AIRES";"CENTRALES ELECTRICAS";"2020";1531918,03 +"262";"BUENOS AIRES";"COMERCIALES";"2020";407425,764 +"263";"BUENOS AIRES";"RESIDENCIALES";"2020";3781837,54 +"264";"BUENOS AIRES";"ENTES OFICIALES";"2020";101700,85 +"265";"BUENOS AIRES";"GNC";"2020";821790,4 +"266";"BUENOS AIRES";"INDUSTRIALES";"2020";5747593,349 +"267";"BUENOS AIRES";"SDB";"2020";260605,17 +"268";"CAPITAL FEDERAL";"CENTRALES ELECTRICAS";"2020";2365369 +"269";"CAPITAL FEDERAL";"COMERCIALES";"2020";96662 +"270";"CAPITAL FEDERAL";"RESIDENCIALES";"2020";939344 +"271";"CAPITAL FEDERAL";"ENTES OFICIALES";"2020";25062 +"272";"CAPITAL FEDERAL";"GNC";"2020";128039 +"273";"CAPITAL FEDERAL";"INDUSTRIALES";"2020";56104 +"274";"CATAMARCA";"COMERCIALES";"2020";2305 +"275";"CATAMARCA";"RESIDENCIALES";"2020";12212 +"276";"CATAMARCA";"ENTES OFICIALES";"2020";217 +"277";"CATAMARCA";"GNC";"2020";12871 +"278";"CATAMARCA";"INDUSTRIALES";"2020";81101 +"279";"CHUBUT";"CENTRALES ELECTRICAS";"2020";140878 +"280";"CHUBUT";"COMERCIALES";"2020";57703 +"281";"CHUBUT";"RESIDENCIALES";"2020";647177 +"282";"CHUBUT";"ENTES OFICIALES";"2020";29259 +"283";"CHUBUT";"GNC";"2020";1131 +"284";"CHUBUT";"INDUSTRIALES";"2020";719504 +"285";"CORDOBA";"CENTRALES ELECTRICAS";"2020";402721 +"286";"CORDOBA";"COMERCIALES";"2020";60715 +"287";"CORDOBA";"RESIDENCIALES";"2020";563578 +"288";"CORDOBA";"ENTES OFICIALES";"2020";10641 +"289";"CORDOBA";"GNC";"2020";293435 +"290";"CORDOBA";"INDUSTRIALES";"2020";476449 +"291";"CORDOBA";"SDB";"2020";68716 +"292";"CORRIENTES";"COMERCIALES";"2020";58 +"293";"CORRIENTES";"RESIDENCIALES";"2020";0 +"295";"CORRIENTES";"GNC";"2020";351 +"296";"CORRIENTES";"INDUSTRIALES";"2020";792 +"297";"ENTRE RIOS";"COMERCIALES";"2020";13579 +"298";"ENTRE RIOS";"RESIDENCIALES";"2020";85189 +"299";"ENTRE RIOS";"ENTES OFICIALES";"2020";1543 +"300";"ENTRE RIOS";"GNC";"2020";33384 +"301";"ENTRE RIOS";"INDUSTRIALES";"2020";113983 +"302";"JUJUY";"CENTRALES ELECTRICAS";"2020";33583 +"303";"JUJUY";"COMERCIALES";"2020";6386 +"304";"JUJUY";"RESIDENCIALES";"2020";48706 +"305";"JUJUY";"ENTES OFICIALES";"2020";1628 +"306";"JUJUY";"GNC";"2020";34310 +"307";"JUJUY";"INDUSTRIALES";"2020";109038 +"308";"JUJUY";"SDB";"2020";4541 +"309";"LA PAMPA";"COMERCIALES";"2020";15723 +"310";"LA PAMPA";"RESIDENCIALES";"2020";251860 +"311";"LA PAMPA";"ENTES OFICIALES";"2020";10987 +"312";"LA PAMPA";"GNC";"2020";6296 +"313";"LA PAMPA";"INDUSTRIALES";"2020";28900 +"314";"LA RIOJA";"CENTRALES ELECTRICAS";"2020";9557 +"315";"LA RIOJA";"COMERCIALES";"2020";1677 +"316";"LA RIOJA";"RESIDENCIALES";"2020";8726 +"317";"LA RIOJA";"ENTES OFICIALES";"2020";279 +"318";"LA RIOJA";"GNC";"2020";3539 +"319";"LA RIOJA";"INDUSTRIALES";"2020";10073 +"320";"LA RIOJA";"SDB";"2020";0 +"321";"MENDOZA";"CENTRALES ELECTRICAS";"2020";630306 +"322";"MENDOZA";"COMERCIALES";"2020";31651 +"323";"MENDOZA";"RESIDENCIALES";"2020";431840 +"324";"MENDOZA";"ENTES OFICIALES";"2020";11482 +"325";"MENDOZA";"GNC";"2020";111459 +"326";"MENDOZA";"INDUSTRIALES";"2020";406868 +"327";"MENDOZA";"SDB";"2020";33362 +"328";"NEUQUEN";"CENTRALES ELECTRICAS";"2020";10880 +"329";"NEUQUEN";"COMERCIALES";"2020";50232 +"330";"NEUQUEN";"RESIDENCIALES";"2020";575298 +"331";"NEUQUEN";"ENTES OFICIALES";"2020";22352 +"332";"NEUQUEN";"GNC";"2020";5758 +"333";"NEUQUEN";"INDUSTRIALES";"2020";267634 +"334";"NEUQUEN";"SDB";"2020";3378 +"335";"RIO NEGRO";"CENTRALES ELECTRICAS";"2020";6624 +"336";"RIO NEGRO";"COMERCIALES";"2020";64732 +"337";"RIO NEGRO";"RESIDENCIALES";"2020";658901 +"338";"RIO NEGRO";"ENTES OFICIALES";"2020";24932 +"339";"RIO NEGRO";"GNC";"2020";10735 +"340";"RIO NEGRO";"INDUSTRIALES";"2020";159363 +"341";"SALTA";"CENTRALES ELECTRICAS";"2020";112115 +"342";"SALTA";"COMERCIALES";"2020";9180 +"343";"SALTA";"RESIDENCIALES";"2020";113235 +"344";"SALTA";"ENTES OFICIALES";"2020";1661 +"345";"SALTA";"GNC";"2020";57435 +"346";"SALTA";"INDUSTRIALES";"2020";119865 +"347";"SAN JUAN";"CENTRALES ELECTRICAS";"2020";13144 +"348";"SAN JUAN";"COMERCIALES";"2020";8212 +"349";"SAN JUAN";"RESIDENCIALES";"2020";97561 +"350";"SAN JUAN";"ENTES OFICIALES";"2020";1918 +"351";"SAN JUAN";"GNC";"2020";39553 +"352";"SAN JUAN";"INDUSTRIALES";"2020";132475 +"353";"SAN JUAN";"SDB";"2020";4262 +"354";"SAN LUIS";"COMERCIALES";"2020";18209 +"355";"SAN LUIS";"RESIDENCIALES";"2020";80096 +"356";"SAN LUIS";"ENTES OFICIALES";"2020";2935 +"357";"SAN LUIS";"GNC";"2020";35152 +"358";"SAN LUIS";"INDUSTRIALES";"2020";80690 +"359";"SAN LUIS";"SDB";"2020";23586 +"360";"SANTA CRUZ";"CENTRALES ELECTRICAS";"2020";17050 +"361";"SANTA CRUZ";"COMERCIALES";"2020";30177 +"362";"SANTA CRUZ";"RESIDENCIALES";"2020";333791 +"363";"SANTA CRUZ";"ENTES OFICIALES";"2020";23906 +"364";"SANTA CRUZ";"INDUSTRIALES";"2020";1320 +"365";"SANTA CRUZ";"SDB";"2020";157744 +"366";"SANTA FE";"CENTRALES ELECTRICAS";"2020";2982,14 +"367";"SANTA FE";"COMERCIALES";"2020";123842,344 +"368";"SANTA FE";"RESIDENCIALES";"2020";487901 +"369";"SANTA FE";"ENTES OFICIALES";"2020";11093,1 +"370";"SANTA FE";"GNC";"2020";155113,77 +"371";"SANTA FE";"INDUSTRIALES";"2020";1311083,491 +"372";"SANTA FE";"SDB";"2020";81470,3 +"373";"SANTIAGO DEL ESTERO";"CENTRALES ELECTRICAS";"2020";6186 +"374";"SANTIAGO DEL ESTERO";"COMERCIALES";"2020";5265 +"375";"SANTIAGO DEL ESTERO";"RESIDENCIALES";"2020";31535 +"376";"SANTIAGO DEL ESTERO";"ENTES OFICIALES";"2020";815 +"377";"SANTIAGO DEL ESTERO";"GNC";"2020";27541 +"378";"SANTIAGO DEL ESTERO";"INDUSTRIALES";"2020";11561 +"379";"TIERRA DEL FUEGO";"CENTRALES ELECTRICAS";"2020";178308 +"380";"TIERRA DEL FUEGO";"COMERCIALES";"2020";63647 +"381";"TIERRA DEL FUEGO";"RESIDENCIALES";"2020";381328 +"382";"TIERRA DEL FUEGO";"ENTES OFICIALES";"2020";30645 +"383";"TIERRA DEL FUEGO";"GNC";"2020";617 +"384";"TIERRA DEL FUEGO";"INDUSTRIALES";"2020";18327 +"385";"TUCUMAN";"CENTRALES ELECTRICAS";"2020";213350 +"386";"TUCUMAN";"COMERCIALES";"2020";14637 +"387";"TUCUMAN";"RESIDENCIALES";"2020";113493 +"388";"TUCUMAN";"ENTES OFICIALES";"2020";1460 +"389";"TUCUMAN";"GNC";"2020";89067 +"390";"TUCUMAN";"INDUSTRIALES";"2020";198322 +"391";"BUENOS AIRES";"CENTRALES ELECTRICAS";"2021";1834514,85 +"392";"BUENOS AIRES";"COMERCIALES";"2021";392443,13 +"393";"BUENOS AIRES";"RESIDENCIALES";"2021";3937973,21 +"394";"BUENOS AIRES";"ENTES OFICIALES";"2021";123564,31 +"395";"BUENOS AIRES";"GNC";"2021";1046191,51 +"396";"BUENOS AIRES";"INDUSTRIALES";"2021";4748535,27 +"397";"BUENOS AIRES";"SDB";"2021";278374,21 +"398";"CAPITAL FEDERAL";"CENTRALES ELECTRICAS";"2021";1984671 +"399";"CAPITAL FEDERAL";"COMERCIALES";"2021";111866 +"400";"CAPITAL FEDERAL";"RESIDENCIALES";"2021";930666 +"401";"CAPITAL FEDERAL";"ENTES OFICIALES";"2021";35736 +"402";"CAPITAL FEDERAL";"GNC";"2021";166926 +"403";"CAPITAL FEDERAL";"INDUSTRIALES";"2021";65601 +"404";"CATAMARCA";"COMERCIALES";"2021";2612 +"405";"CATAMARCA";"RESIDENCIALES";"2021";12101 +"406";"CATAMARCA";"ENTES OFICIALES";"2021";164 +"407";"CATAMARCA";"GNC";"2021";14591 +"408";"CATAMARCA";"INDUSTRIALES";"2021";85469 +"409";"CHUBUT";"CENTRALES ELECTRICAS";"2021";139687 +"410";"CHUBUT";"COMERCIALES";"2021";67546 +"411";"CHUBUT";"RESIDENCIALES";"2021";624599 +"412";"CHUBUT";"ENTES OFICIALES";"2021";38622 +"413";"CHUBUT";"GNC";"2021";1375 +"414";"CHUBUT";"INDUSTRIALES";"2021";581282 +"415";"CORDOBA";"CENTRALES ELECTRICAS";"2021";259922 +"416";"CORDOBA";"COMERCIALES";"2021";72161 +"417";"CORDOBA";"RESIDENCIALES";"2021";562622 +"418";"CORDOBA";"ENTES OFICIALES";"2021";13907 +"419";"CORDOBA";"GNC";"2021";364283 +"420";"CORDOBA";"INDUSTRIALES";"2021";618559 +"421";"CORDOBA";"SDB";"2021";80053 +"422";"CORRIENTES";"COMERCIALES";"2021";75 +"423";"CORRIENTES";"RESIDENCIALES";"2021";1 +"424";"CORRIENTES";"ENTES OFICIALES";"2021";0 +"425";"CORRIENTES";"GNC";"2021";322 +"426";"CORRIENTES";"INDUSTRIALES";"2021";3230 +"427";"ENTRE RIOS";"COMERCIALES";"2021";16829 +"428";"ENTRE RIOS";"RESIDENCIALES";"2021";88736 +"429";"ENTRE RIOS";"ENTES OFICIALES";"2021";1659 +"430";"ENTRE RIOS";"GNC";"2021";44390 +"431";"ENTRE RIOS";"INDUSTRIALES";"2021";125267 +"432";"JUJUY";"CENTRALES ELECTRICAS";"2021";24693 +"433";"JUJUY";"COMERCIALES";"2021";9975 +"434";"JUJUY";"RESIDENCIALES";"2021";52098 +"435";"JUJUY";"ENTES OFICIALES";"2021";2777 +"436";"JUJUY";"GNC";"2021";43612 +"437";"JUJUY";"INDUSTRIALES";"2021";118556,76884 +"438";"JUJUY";"SDB";"2021";2664 +"439";"LA PAMPA";"COMERCIALES";"2021";17600 +"440";"LA PAMPA";"RESIDENCIALES";"2021";250394 +"441";"LA PAMPA";"ENTES OFICIALES";"2021";14122 +"442";"LA PAMPA";"GNC";"2021";7541 +"443";"LA PAMPA";"INDUSTRIALES";"2021";33273 +"444";"LA RIOJA";"CENTRALES ELECTRICAS";"2021";2743 +"445";"LA RIOJA";"COMERCIALES";"2021";1840 +"446";"LA RIOJA";"RESIDENCIALES";"2021";8413 +"447";"LA RIOJA";"ENTES OFICIALES";"2021";301 +"448";"LA RIOJA";"GNC";"2021";4909 +"449";"LA RIOJA";"INDUSTRIALES";"2021";13333 +"450";"LA RIOJA";"SDB";"2021";0 +"451";"MENDOZA";"CENTRALES ELECTRICAS";"2021";744612 +"452";"MENDOZA";"COMERCIALES";"2021";37553 +"453";"MENDOZA";"RESIDENCIALES";"2021";435802 +"454";"MENDOZA";"ENTES OFICIALES";"2021";17288 +"455";"MENDOZA";"GNC";"2021";136704 +"456";"MENDOZA";"INDUSTRIALES";"2021";438885 +"457";"MENDOZA";"SDB";"2021";37483 +"458";"NEUQUEN";"CENTRALES ELECTRICAS";"2021";9155 +"459";"NEUQUEN";"COMERCIALES";"2021";61016 +"460";"NEUQUEN";"RESIDENCIALES";"2021";558411 +"461";"NEUQUEN";"ENTES OFICIALES";"2021";31794 +"462";"NEUQUEN";"GNC";"2021";6284 +"463";"NEUQUEN";"INDUSTRIALES";"2021";238298 +"464";"NEUQUEN";"SDB";"2021";3157 +"465";"RIO NEGRO";"CENTRALES ELECTRICAS";"2021";6178 +"466";"RIO NEGRO";"COMERCIALES";"2021";77960 +"467";"RIO NEGRO";"RESIDENCIALES";"2021";658462 +"468";"RIO NEGRO";"ENTES OFICIALES";"2021";34622 +"469";"RIO NEGRO";"GNC";"2021";14298 +"470";"RIO NEGRO";"INDUSTRIALES";"2021";161918 +"471";"SALTA";"CENTRALES ELECTRICAS";"2021";116657 +"472";"SALTA";"COMERCIALES";"2021";11474 +"473";"SALTA";"RESIDENCIALES";"2021";118380 +"474";"SALTA";"ENTES OFICIALES";"2021";2507 +"475";"SALTA";"GNC";"2021";71248 +"476";"SALTA";"INDUSTRIALES";"2021";143890,48916 +"477";"SAN JUAN";"CENTRALES ELECTRICAS";"2021";2581 +"478";"SAN JUAN";"COMERCIALES";"2021";8552 +"479";"SAN JUAN";"RESIDENCIALES";"2021";95802 +"480";"SAN JUAN";"ENTES OFICIALES";"2021";2307 +"481";"SAN JUAN";"GNC";"2021";46455 +"482";"SAN JUAN";"INDUSTRIALES";"2021";148182 +"483";"SAN JUAN";"SDB";"2021";3564 +"484";"SAN LUIS";"COMERCIALES";"2021";22609 +"485";"SAN LUIS";"RESIDENCIALES";"2021";84759 +"486";"SAN LUIS";"ENTES OFICIALES";"2021";4061 +"487";"SAN LUIS";"GNC";"2021";43396 +"488";"SAN LUIS";"INDUSTRIALES";"2021";100805 +"489";"SAN LUIS";"SDB";"2021";25564 +"490";"SANTA CRUZ";"CENTRALES ELECTRICAS";"2021";16787 +"491";"SANTA CRUZ";"COMERCIALES";"2021";32557 +"492";"SANTA CRUZ";"RESIDENCIALES";"2021";319679 +"493";"SANTA CRUZ";"ENTES OFICIALES";"2021";25499 +"494";"SANTA CRUZ";"INDUSTRIALES";"2021";2521 +"495";"SANTA CRUZ";"SDB";"2021";155512 +"496";"SANTA FE";"CENTRALES ELECTRICAS";"2021";2902,09 +"497";"SANTA FE";"COMERCIALES";"2021";115153,93 +"498";"SANTA FE";"RESIDENCIALES";"2021";450443,6 +"499";"SANTA FE";"ENTES OFICIALES";"2021";20251,12 +"500";"SANTA FE";"GNC";"2021";189529,71 +"501";"SANTA FE";"INDUSTRIALES";"2021";1687839,37 +"502";"SANTA FE";"SDB";"2021";86446,21 +"503";"SANTIAGO DEL ESTERO";"CENTRALES ELECTRICAS";"2021";5130 +"504";"SANTIAGO DEL ESTERO";"COMERCIALES";"2021";6169 +"505";"SANTIAGO DEL ESTERO";"RESIDENCIALES";"2021";32692 +"506";"SANTIAGO DEL ESTERO";"ENTES OFICIALES";"2021";1647 +"507";"SANTIAGO DEL ESTERO";"GNC";"2021";35346 +"508";"SANTIAGO DEL ESTERO";"INDUSTRIALES";"2021";13210,647 +"509";"TIERRA DEL FUEGO";"CENTRALES ELECTRICAS";"2021";223375 +"510";"TIERRA DEL FUEGO";"COMERCIALES";"2021";69550 +"511";"TIERRA DEL FUEGO";"RESIDENCIALES";"2021";380277 +"512";"TIERRA DEL FUEGO";"ENTES OFICIALES";"2021";33749 +"513";"TIERRA DEL FUEGO";"GNC";"2021";704 +"514";"TIERRA DEL FUEGO";"INDUSTRIALES";"2021";18414 +"515";"TUCUMAN";"CENTRALES ELECTRICAS";"2021";1162625 +"516";"TUCUMAN";"COMERCIALES";"2021";23479 +"517";"TUCUMAN";"RESIDENCIALES";"2021";116377 +"518";"TUCUMAN";"ENTES OFICIALES";"2021";4130 +"519";"TUCUMAN";"GNC";"2021";107013 +"520";"TUCUMAN";"INDUSTRIALES";"2021";223027,4852 +"521";"BUENOS AIRES";"CENTRALES ELECTRICAS";"2022";1508218,96 +"522";"BUENOS AIRES";"COMERCIALES";"2022";365570,91 +"523";"BUENOS AIRES";"RESIDENCIALES";"2022";4195622,68 +"524";"BUENOS AIRES";"ENTES OFICIALES";"2022";129414,4 +"525";"BUENOS AIRES";"GNC";"2022";1056728,08 +"526";"BUENOS AIRES";"INDUSTRIALES";"2022";5098333,81 +"527";"BUENOS AIRES";"SDB";"2022";309527,58 +"528";"CAPITAL FEDERAL";"CENTRALES ELECTRICAS";"2022";2036072 +"529";"CAPITAL FEDERAL";"COMERCIALES";"2022";156539 +"530";"CAPITAL FEDERAL";"RESIDENCIALES";"2022";954768 +"531";"CAPITAL FEDERAL";"ENTES OFICIALES";"2022";42441 +"532";"CAPITAL FEDERAL";"GNC";"2022";165241 +"533";"CAPITAL FEDERAL";"INDUSTRIALES";"2022";74038 +"534";"CATAMARCA";"COMERCIALES";"2022";2815 +"535";"CATAMARCA";"RESIDENCIALES";"2022";12480 +"536";"CATAMARCA";"ENTES OFICIALES";"2022";203 +"537";"CATAMARCA";"GNC";"2022";15293 +"538";"CATAMARCA";"INDUSTRIALES";"2022";102664 +"539";"CHUBUT";"CENTRALES ELECTRICAS";"2022";127543,2 +"540";"CHUBUT";"COMERCIALES";"2022";81991,12 +"541";"CHUBUT";"RESIDENCIALES";"2022";698594,16 +"542";"CHUBUT";"ENTES OFICIALES";"2022";44827,39 +"543";"CHUBUT";"GNC";"2022";1344,8 +"544";"CHUBUT";"INDUSTRIALES";"2022";395415,88 +"545";"CORDOBA";"CENTRALES ELECTRICAS";"2022";155192 +"546";"CORDOBA";"COMERCIALES";"2022";81182 +"547";"CORDOBA";"RESIDENCIALES";"2022";633372 +"548";"CORDOBA";"ENTES OFICIALES";"2022";15978 +"549";"CORDOBA";"GNC";"2022";375725 +"550";"CORDOBA";"INDUSTRIALES";"2022";672588 +"551";"CORDOBA";"SDB";"2022";91408 +"552";"CORRIENTES";"COMERCIALES";"2022";135 +"553";"CORRIENTES";"RESIDENCIALES";"2022";18 +"554";"CORRIENTES";"ENTES OFICIALES";"2022";0 +"555";"CORRIENTES";"GNC";"2022";552 +"556";"CORRIENTES";"INDUSTRIALES";"2022";4000 +"557";"ENTRE RIOS";"COMERCIALES";"2022";21447 +"558";"ENTRE RIOS";"RESIDENCIALES";"2022";92826 +"559";"ENTRE RIOS";"ENTES OFICIALES";"2022";2047 +"560";"ENTRE RIOS";"GNC";"2022";44974 +"561";"ENTRE RIOS";"INDUSTRIALES";"2022";127732 +"562";"JUJUY";"CENTRALES ELECTRICAS";"2022";27536 +"563";"JUJUY";"COMERCIALES";"2022";10733 +"564";"JUJUY";"RESIDENCIALES";"2022";52048 +"565";"JUJUY";"ENTES OFICIALES";"2022";3572 +"566";"JUJUY";"GNC";"2022";43101 +"567";"JUJUY";"INDUSTRIALES";"2022";118770,59399 +"568";"JUJUY";"SDB";"2022";0 +"569";"LA PAMPA";"COMERCIALES";"2022";21067,7 +"570";"LA PAMPA";"RESIDENCIALES";"2022";262763,7 +"571";"LA PAMPA";"ENTES OFICIALES";"2022";16355,6 +"572";"LA PAMPA";"GNC";"2022";7950 +"573";"LA PAMPA";"INDUSTRIALES";"2022";37121,1 +"574";"LA RIOJA";"CENTRALES ELECTRICAS";"2022";3152 +"575";"LA RIOJA";"COMERCIALES";"2022";1902 +"576";"LA RIOJA";"RESIDENCIALES";"2022";8845 +"577";"LA RIOJA";"ENTES OFICIALES";"2022";323 +"578";"LA RIOJA";"GNC";"2022";5101 +"579";"LA RIOJA";"INDUSTRIALES";"2022";14825 +"581";"MENDOZA";"CENTRALES ELECTRICAS";"2022";701279 +"582";"MENDOZA";"COMERCIALES";"2022";42362 +"583";"MENDOZA";"RESIDENCIALES";"2022";467726 +"584";"MENDOZA";"ENTES OFICIALES";"2022";19650 +"585";"MENDOZA";"GNC";"2022";136575 +"586";"MENDOZA";"INDUSTRIALES";"2022";444985 +"587";"MENDOZA";"SDB";"2022";40110 +"588";"NEUQUEN";"CENTRALES ELECTRICAS";"2022";12933,88 +"589";"NEUQUEN";"COMERCIALES";"2022";73242,73 +"590";"NEUQUEN";"RESIDENCIALES";"2022";618833,44 +"591";"NEUQUEN";"ENTES OFICIALES";"2022";37664,68 +"592";"NEUQUEN";"GNC";"2022";6174,66 +"593";"NEUQUEN";"INDUSTRIALES";"2022";137099,64 +"595";"RIO NEGRO";"CENTRALES ELECTRICAS";"2022";4484,1 +"596";"RIO NEGRO";"COMERCIALES";"2022";97351,71 +"597";"RIO NEGRO";"RESIDENCIALES";"2022";751498,01 +"598";"RIO NEGRO";"ENTES OFICIALES";"2022";39781,95 +"599";"RIO NEGRO";"GNC";"2022";15215,8 +"600";"RIO NEGRO";"INDUSTRIALES";"2022";65919,95 +"601";"SALTA";"CENTRALES ELECTRICAS";"2022";63489 +"602";"SALTA";"COMERCIALES";"2022";12247 +"603";"SALTA";"RESIDENCIALES";"2022";120504 +"604";"SALTA";"ENTES OFICIALES";"2022";3174 +"605";"SALTA";"GNC";"2022";72423 +"606";"SALTA";"INDUSTRIALES";"2022";176105,24 +"607";"SAN JUAN";"CENTRALES ELECTRICAS";"2022";17488 +"608";"SAN JUAN";"COMERCIALES";"2022";9510 +"609";"SAN JUAN";"RESIDENCIALES";"2022";101305 +"610";"SAN JUAN";"ENTES OFICIALES";"2022";2667 +"611";"SAN JUAN";"GNC";"2022";46457 +"612";"SAN JUAN";"INDUSTRIALES";"2022";171693 +"613";"SAN JUAN";"SDB";"2022";3749 +"614";"SAN LUIS";"COMERCIALES";"2022";18014 +"615";"SAN LUIS";"RESIDENCIALES";"2022";89353 +"616";"SAN LUIS";"ENTES OFICIALES";"2022";4440 +"617";"SAN LUIS";"GNC";"2022";45678 +"618";"SAN LUIS";"INDUSTRIALES";"2022";103938 +"619";"SAN LUIS";"SDB";"2022";26814 +"620";"SANTA CRUZ";"CENTRALES ELECTRICAS";"2022";12112,8 +"621";"SANTA CRUZ";"COMERCIALES";"2022";37863,1 +"622";"SANTA CRUZ";"RESIDENCIALES";"2022";318746,29 +"623";"SANTA CRUZ";"ENTES OFICIALES";"2022";28342,28 +"624";"SANTA CRUZ";"INDUSTRIALES";"2022";6996,94 +"625";"SANTA CRUZ";"SDB";"2022";172408,5 +"626";"SANTA FE";"CENTRALES ELECTRICAS";"2022";5996 +"627";"SANTA FE";"COMERCIALES";"2022";88406,13 +"628";"SANTA FE";"RESIDENCIALES";"2022";506539,09 +"629";"SANTA FE";"ENTES OFICIALES";"2022";25640,14 +"630";"SANTA FE";"GNC";"2022";192579,03 +"631";"SANTA FE";"INDUSTRIALES";"2022";1572794,02 +"632";"SANTA FE";"SDB";"2022";92706,5 +"633";"SANTIAGO DEL ESTERO";"CENTRALES ELECTRICAS";"2022";3730 +"634";"SANTIAGO DEL ESTERO";"COMERCIALES";"2022";6562 +"635";"SANTIAGO DEL ESTERO";"RESIDENCIALES";"2022";32267 +"636";"SANTIAGO DEL ESTERO";"ENTES OFICIALES";"2022";2105 +"637";"SANTIAGO DEL ESTERO";"GNC";"2022";37253 +"638";"SANTIAGO DEL ESTERO";"INDUSTRIALES";"2022";13503,433 +"639";"TIERRA DEL FUEGO";"CENTRALES ELECTRICAS";"2022";238148,66 +"640";"TIERRA DEL FUEGO";"COMERCIALES";"2022";73813,16 +"641";"TIERRA DEL FUEGO";"RESIDENCIALES";"2022";396577,16 +"642";"TIERRA DEL FUEGO";"ENTES OFICIALES";"2022";35986,47 +"643";"TIERRA DEL FUEGO";"GNC";"2022";704,35 +"644";"TIERRA DEL FUEGO";"INDUSTRIALES";"2022";21490,66 +"645";"TUCUMAN";"CENTRALES ELECTRICAS";"2022";923080 +"646";"TUCUMAN";"COMERCIALES";"2022";26810 +"647";"TUCUMAN";"RESIDENCIALES";"2022";117166 +"648";"TUCUMAN";"ENTES OFICIALES";"2022";6950 +"649";"TUCUMAN";"GNC";"2022";106766 +"650";"TUCUMAN";"INDUSTRIALES";"2022";191033,50545 diff --git a/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py b/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py new file mode 100644 index 000000000..fde47f4a4 --- /dev/null +++ b/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py @@ -0,0 +1,168 @@ +import pandas as pd +import argparse +import uuid +import os + +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)) + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--filepath", help="path to the files location", required=True) + args = parser.parse_args() + absolute_path = os.path.abspath(args.filepath) + + # read the raw data + raw_data = f'{absolute_path}/raw_enargas_gas_consumption_AR.csv' + df = pd.read_csv(raw_data, sep=';') + + #-------------------------------------------------------------------------- + # Pre Process + #-------------------------------------------------------------------------- + df = df.drop(['Unnamed: 0'], axis=1) + + # change spanish column names to english + column_names = [ + 'region_name', + 'user_type', + 'year', + 'activity_value' + ] + df.columns = column_names + + # delete the subsectors that don't apply for this transformation + subsectors_uncovered = ['CENTRALES ELECTRICAS', 'SDB'] + df = df[~df['user_type'].isin(subsectors_uncovered)] + + # assign activity name and GPC_refno based on the user type + subsector_dic = { + 'COMERCIALES': { + 'description': 'natural gas consumption by commercial buildings', + 'GPC_refno': 'I.2.1' + }, + 'RESIDENCIALES': { + 'description': 'natural gas consumption by residential buildings', + 'GPC_refno': 'I.1.1' + }, + 'ENTES OFICIALES': { + 'description': 'natural gas consumption by official entities', + 'GPC_refno': 'I.2.1' + }, + 'INDUSTRIALES': { + 'description': 'natural gas consumption by industrial buildings', + 'GPC_refno': 'I.3.1' + }, + 'GNC': { + 'description': 'GNC consumption by on road transportation', + 'GPC_refno': 'II.1.1' + } + } + for index, row in df.iterrows(): + user_type = row['user_type'] + + if user_type in subsector_dic.keys(): + df.at[index, 'activity_name'] = subsector_dic[user_type]['description'] + df.at[index, 'GPC_refno'] = subsector_dic[user_type]['GPC_refno'] + + df = df.drop(columns='user_type', axis=1) + + #-------------------------------------------------------------------------- + # Emissions Calculation + #-------------------------------------------------------------------------- + df['activity_value'] = df['activity_value'].str.replace(',', '.') + df['activity_value'] = pd.to_numeric(df['activity_value'], errors='coerce') + + # from thousands of m3 to m3 + df['activity_value'] = df['activity_value']*1000 + + # from m3 of gas to TJ + # gas: 9300 kcal/m3 + # 1 kcal = 4.1858e-9 TJ + factor = 9300*4.1858*1e-9 + df['activity_value'] = df['activity_value']*factor + + # Emision Factors source: 2006 IPCC Guidelines for National Greenhouse Gas Inventories + ef_df = pd.DataFrame() + ef_df['gas_name'] = ['CO2', 'CH4', 'N2O', 'CO2', 'CH4', 'N2O'] + ef_df['emission_factor_value'] = [56100, 5, 0.1, 1466.7, 50, 0.1] + ef_df['emission_factor_units'] = 'kg/TJ' + ef_df['sector'] = ['I','I','I', 'II','II','II'] + + result_df = pd.DataFrame() + + for gas in ef_df['gas_name'].unique(): + for sector in ['I', 'II']: + ef = ef_df[ef_df['sector'] == sector] + gas_value = ef[(ef['gas_name'] == gas)]['emission_factor_value'].iloc[0] + + temp_df = df.copy() + if sector == 'I': + temp_df = temp_df[temp_df['GPC_refno'] != 'II.1.1'] + else: + temp_df = temp_df[temp_df['GPC_refno'] == 'II.1.1'] + + temp_df['gas_name'] = gas + temp_df['emission_factor_value'] = gas_value + temp_df['emission_factor_units'] = ef[ef['gas_name'] == gas]['emission_factor_units'].iloc[0] + + # Concatenate the temporary DataFrame to the result_df + result_df = pd.concat([result_df, temp_df], ignore_index=True) + + result_df['emissions_value'] = result_df['activity_value']*result_df['emission_factor_value'] + result_df['emissions_units'] = 'kg' + + #-------------------------------------------------------------------------- + # Final details + #-------------------------------------------------------------------------- + # assigning region CODE based on the region name + locode_dic = { + 'BUENOS AIRES':'AR-B', + 'CAPITAL FEDERAL':'AR-C', + 'CATAMARCA':'AR-K', + 'CHUBUT':'AR-U', + 'CORDOBA':'AR-X', + 'CORRIENTES':'AR-W', + 'ENTRE RIOS':'AR-E', + 'JUJUY':'AR-Y', + 'LA PAMPA':'AR-L', + 'LA RIOJA':'AR-F', + 'MENDOZA':'AR-M', + 'NEUQUEN':'AR-Q', + 'RIO NEGRO':'AR-R', + 'SALTA':'AR-A', + 'SAN JUAN':'AR-J', + 'SAN LUIS':'AR-D', + 'SANTA CRUZ':'AR-Z', + 'SANTA FE':'AR-S', + 'SANTIAGO DEL ESTERO':'AR-G', + 'TIERRA DEL FUEGO':'AR-V', + 'TUCUMAN':'AR-T' + } + for index, row in result_df.iterrows(): + region_name = row['region_name'] + + if region_name in locode_dic.keys(): + result_df.at[index, 'region_code'] = locode_dic[region_name] + + # adding new columns + result_df['activity_units'] = 'TJ' + result_df['temporal_granularity'] = 'annual' + result_df['source_name'] = 'ENARGAS' + + # assigning a unique ID to each row + for index, row in result_df.iterrows(): + region_code = str(row['region_code']) + emissions_value = str(row['emissions_value']) + year = str(row['year']) + gas = str(row['gas_name']) + GPC_refno = str(row['GPC_refno']) + + id_string = region_code + emissions_value + year + gas + GPC_refno + result_df.at[index, 'id'] = uuid_generate_v3(id_string) + + result_df = result_df[sorted(result_df.columns)] + + result_df.to_csv(f'{absolute_path}/processed_enargas_gas_consumption_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/Energy_Balances/README.md b/global-api/importer/argentinian_datasets/Energy_Balances/README.md new file mode 100644 index 000000000..608c2cead --- /dev/null +++ b/global-api/importer/argentinian_datasets/Energy_Balances/README.md @@ -0,0 +1,23 @@ +# Energy Balances Argentina Importer + +1. Extract the activity data from the source [Datos Energéticos](http://datos.energia.gob.ar/dataset/balances-energeticos): +```bash +python ./importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py --filepath [path where the extracted data will be saved] +``` +2. Transform the activity into emission data align with the Global API schema: +```bash +python ./importer/argentinian_datasets/Energy_Balances/transformation_energy_balances.py --filepath [path where the transformed data will be saved] +``` +3. Extract the activity row from the source: +```bash +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/Energy_Balances/load_energy_balances.py -v file_path=[path where the transformed data was saved] +``` + +### Directory tree +```sh +. +├── README.md # top level readme +├── extraction_energy_balances.py # extraction script +├── transformation_energy_balances.py # transformation script +└── load__energy_balances.py # loading script +``` diff --git a/global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py b/global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py new file mode 100644 index 000000000..2ed8e51cc --- /dev/null +++ b/global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py @@ -0,0 +1,42 @@ +import requests +import argparse +import os + +links_to_download={ + '2018':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2018/balance_2018_horizontal.xlsx', + '2019':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_energeticos/balance_2019_v0_horizontal.xlsx', + '2020':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2020/balance_2020_V0_horizontal.xlsx', + '2021':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/balance_2021_V1.xlsx', + '2022':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2022/Balance_2022_V0_H.xlsx' +} + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Save files in the specified location.') + parser.add_argument("--filepath", help="path to save the files", required=True) + args = parser.parse_args() + + absolute_path = os.path.abspath(args.filepath) + + def download_files(links, download_path): + full_download_path = os.path.expanduser(download_path) + os.makedirs(full_download_path, exist_ok=True) + + for year, link in links.items(): + try: + response = requests.get(link) + # Check if the request was successful (status code 200) + if response.status_code == 200: + file_name = f"{year}_raw_energy_balances_AR.xlsx" + # Construct the complete file path + file_path = os.path.join(full_download_path, file_name) + # Save the file + with open(file_path, 'wb') as file: + file.write(response.content) + print(f"Downloaded: {file_name}") + else: + print(f"Failed to download {year} data (Status code: {response.status_code})") + except Exception as e: + print(f"Error downloading {year} data: {e}") + + # Use the specified download_path + download_files(links_to_download, download_path=f"{absolute_path}") diff --git a/global-api/importer/argentinian_datasets/README.md b/global-api/importer/argentinian_datasets/README.md new file mode 100644 index 000000000..2677a94e1 --- /dev/null +++ b/global-api/importer/argentinian_datasets/README.md @@ -0,0 +1,14 @@ +# Argentinian Datasets +This repository houses various datasets sourced from different Argentinian platforms and organizations. Each dataset provides activity data within Argentina used to calculate GHG emission. + +## Directory Tree + +```sh +. +├── README.md # top level documentation +├── ENARGAS # activity data: gas consumption for argentinian provinces +├──── transformation_ENARGAS.py +├──── load_ENARGAS.py +├──── README.md +└── ... +``` \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/cammesa/README b/global-api/importer/argentinian_datasets/cammesa/README new file mode 100644 index 000000000..0af950e7d --- /dev/null +++ b/global-api/importer/argentinian_datasets/cammesa/README @@ -0,0 +1,16 @@ +# cammesa +Electricity consumption data for argentinian provinces + +1. Extract the activity data from the source [cammesa](https://cammesaweb.cammesa.com/estadistica-informe-sintesis-mem/) + * Offer -> Generation -> monthly local generation + + +2. Transform activity data into emissions data aligned with the global API schema: +```bash + +``` + +3. Extract the activity row from the source: +```bash + +``` \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/cammesa/raw_cammesa_monthly_electricity_generation.xlsx b/global-api/importer/argentinian_datasets/cammesa/raw_cammesa_monthly_electricity_generation.xlsx new file mode 100644 index 000000000..84a3d3f2c Binary files /dev/null and b/global-api/importer/argentinian_datasets/cammesa/raw_cammesa_monthly_electricity_generation.xlsx differ diff --git a/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py b/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py new file mode 100644 index 000000000..104e93e30 --- /dev/null +++ b/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py @@ -0,0 +1,34 @@ +import pandas as pd +import argparse +import uuid +import os +import duckdb + + +#-------------------------------------------------------------------------- + # Pre Process +#-------------------------------------------------------------------------- + +con = duckdb.connect() +con.install_extension("spatial") +con.load_extension("spatial") + +df = con.execute("""SELECT Field1 AS Year, + Field2 AS Month, + Field3 AS Machine, + Field4 AS Center, + Field5 AS Agent, + Field6 AS Agent_Desc, + Field7 AS Region, + Field8 AS Provence, + Field9 AS Country, + Field10 AS Machine_Type, + Field11 AS Source_Generation, + Field12 AS Technology, + Field13 AS Hydraulic_Category, + Field14 AS Category_Region, + Field15 AS Net_Generation_MWh + FROM ST_read("raw_cammesa_monthly_electricity_generation.xlsx") WHERE Field1 IS NOT NULL OFFSET 13""").df() + +# Close the connection +con.close() \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/indec_industrial_products/industrial_products_statistics.csv b/global-api/importer/argentinian_datasets/indec_industrial_products/industrial_products_statistics.csv new file mode 100644 index 000000000..6db667251 --- /dev/null +++ b/global-api/importer/argentinian_datasets/indec_industrial_products/industrial_products_statistics.csv @@ -0,0 +1,553 @@ +,year,activity_name,activity_value,activity_units,Unnamed: 4 +0,2018,soy oil production,7248989,tonnes, +1,2019,soy oil production,8081157,tonnes, +2,2020,soy oil production,7160243,tonnes, +3,2021,soy oil production,8391995,tonnes, +4,2022,soy oil production,7447598,tonnes, +5,2018,sunflower oil production,1304651,tonnes, +6,2019,sunflower oil production,1414513,tonnes, +7,2020,sunflower oil production,1067505,tonnes, +8,2021,sunflower oil production,1339892,tonnes, +9,2022,sunflower oil production,1497628,tonnes, +10,2018,other oil production,123111,tonnes, +11,2019,other oil production,103800,tonnes, +12,2020,other oil production,91339,tonnes, +13,2021,other oil production,83270,tonnes, +14,2022,other oil production,103868,tonnes, +15,2018,Soybean oilseeds,27756884,tonnes, +16,2019,Soybean oilseeds,31025363,tonnes, +17,2020,Soybean oilseeds,27226566,tonnes, +18,2021,Soybean oilseeds,31906192,tonnes, +19,2022,Soybean oilseeds,28775035,tonnes, +20,2018,Sunflower oilseeds,1318251,tonnes, +21,2019,Sunflower oilseeds,1339025,tonnes, +22,2020,Sunflower oilseeds,1017502,tonnes, +23,2021,Sunflower oilseeds,1254145,tonnes, +24,2022,Sunflower oilseeds,1450063,tonnes, +25,2018,Other oilseeds,226329,tonnes, +26,2019,Other oilseeds,200861,tonnes, +27,2020,Other oilseeds,192324,tonnes, +28,2021,Other oilseeds,178718,tonnes, +29,2022,Other oilseeds,220306,tonnes, +30,2018,Wheat flour,4064639,tonnes, +31,2019,Wheat flour,4461959,tonnes, +32,2020,Wheat flour,4511947,tonnes, +33,2021,Wheat flour,4402508,tonnes, +34,2022,Wheat flour,4405860,tonnes, +35,2018,Corn,6150188,heads, +36,2019,Corn,6155186,heads, +37,2020,Corn,6402743,heads, +38,2021,Corn,6912461,heads, +39,2022,Corn,7322096,heads, +40,2018,Barley,920157,heads, +41,2019,Barley,1038853,heads, +42,2020,Barley,1004040,heads, +43,2021,Barley,1119303,heads, +44,2022,Barley,1142650,heads, +45,2018,Rice,1007032,heads, +46,2019,Rice,965761,heads, +47,2020,Rice,998901,heads, +48,2021,Rice,1074437,heads, +49,2022,Rice,1118571,heads, +50,2018,Other cereals,113860,heads, +51,2019,Other cereals,69099,heads, +52,2020,Other cereals,40010,heads, +53,2021,Other cereals,48851,heads, +54,2022,Other cereals,58316,heads, +55,2018,Beef Slaughter,13452831,heads, +56,2019,Beef Slaughter,13872888,heads, +57,2020,Beef Slaughter,14008212,heads, +58,2021,Beef Slaughter,12987235,heads, +59,2022,Beef Slaughter,13580233,heads, +60,2018,Poultry Slaughter,711460000,heads, +61,2019,Poultry Slaughter,756948000,heads, +62,2020,Poultry Slaughter,757926000,heads, +63,2021,Poultry Slaughter,741394000,heads, +64,2022,Poultry Slaughter,751692000,heads, +65,2018,Pork Slaughter,6778976,heads, +66,2019,Pork Slaughter,6747245,heads, +67,2020,Pork Slaughter,7006094,heads, +68,2021,Pork Slaughter,7484271,heads, +69,2022,Pork Slaughter,7709536,heads, +70,2018,Sheep Slaughter,907151,heads, +71,2019,Sheep Slaughter,918999,heads, +72,2020,Sheep Slaughter,938518,heads, +73,2021,Sheep Slaughter,938698,heads, +74,2022,Sheep Slaughter,975661,heads, +75,2018,Production of refrigerated milk,635541487,l, +76,2019,Production of refrigerated milk,597945849,l, +77,2020,Production of refrigerated milk,509853326,l, +78,2021,Production of refrigerated milk,459803594,l, +79,2022,Production of refrigerated milk,439750723,l, +80,2018,Production of non-refrigerated milk,687258502,l, +81,2019,Production of non-refrigerated milk,613590133,l, +82,2020,Production of non-refrigerated milk,743697883,l, +83,2021,Production of non-refrigerated milk,739032139,l, +84,2022,Production of non-refrigerated milk,728307266,l, +85,2018,Production of powdered milk,232744,tonnes, +86,2019,Production of powdered milk,232833,tonnes, +87,2020,Production of powdered milk,265753,tonnes, +88,2021,Production of powdered milk,288730,tonnes, +89,2022,Production of powdered milk,264131,tonnes, +90,2018,Production of chocolate or flavored milk,46160287,l, +91,2019,Production of chocolate or flavored milk,31577353,l, +92,2020,Production of chocolate or flavored milk,23467347,l, +93,2021,Production of chocolate or flavored milk,40069913,l, +94,2022,Production of chocolate or flavored milk,46183853,l, +95,2018,Butter Production,29351,tonnes, +96,2019,Butter Production,28694,tonnes, +97,2020,Butter Production,34661,tonnes, +98,2021,Butter Production,41131,tonnes, +99,2022,Butter Production,39033,tonnes, +100,2018,Yogurt Production,394067,tonnes, +101,2019,Yogurt Production,354269,tonnes, +102,2020,Yogurt Production,355539,tonnes, +103,2021,Yogurt Production,332351,tonnes, +104,2022,Yogurt Production,352408,tonnes, +105,2018,Cheese Production,444128,tonnes, +106,2019,Cheese Production,429411,tonnes, +107,2020,Cheese Production,420650,tonnes, +108,2021,Cheese Production,460173,tonnes, +109,2022,Cheese Production,460223,tonnes, +110,2018,production of cream,62811,tonnes, +111,2019,production of cream,59370,tonnes, +112,2020,production of cream,61021,tonnes, +113,2021,production of cream,61027,tonnes, +114,2022,production of cream,65506,tonnes, +115,2018,production of Dulce de Leche,100575,tonnes, +116,2019,production of Dulce de Leche,96863,tonnes, +117,2020,production of Dulce de Leche,106555,tonnes, +118,2021,production of Dulce de Leche,96728,tonnes, +119,2022,production of Dulce de Leche,101626,tonnes, +120,2018,production of dairy desserts and flans,41102,tonnes, +121,2019,production of dairy desserts and flans,28609,tonnes, +122,2020,production of dairy desserts and flans,27433,tonnes, +123,2021,production of dairy desserts and flans,26909,tonnes, +124,2022,production of dairy desserts and flans,26957,tonnes, +125,2018,production of appetizers, vermouths and quinados,30728119,l +126,2019,production of appetizers, vermouths and quinados,26699779,l +127,2020,production of appetizers, vermouths and quinados,32360432,l +128,2021,production of appetizers, vermouths and quinados,40398008,l +129,2022,production of appetizers, vermouths and quinados,42666771,l +130,2018,production of bitters, biters and fernets,48243057,l +131,2019,production of bitters, biters and fernets,44314308,l +132,2020,production of bitters, biters and fernets,47290765,l +133,2021,production of bitters, biters and fernets,56777277,l +134,2022,production of bitters, biters and fernets,67965411,l +135,2018,production of fine liqueurs and creams,7770641,l, +136,2019,production of fine liqueurs and creams,8716873,l, +137,2020,production of fine liqueurs and creams,7259118,l, +138,2021,production of fine liqueurs and creams,8687362,l, +139,2022,production of fine liqueurs and creams,9732633,l, +140,2018,Production of Whiskey and Other Spiritual Drinks,52787053,l, +141,2019,Production of Whiskey and Other Spiritual Drinks,47238129,l, +142,2020,Production of Whiskey and Other Spiritual Drinks,44912086,l, +143,2021,Production of Whiskey and Other Spiritual Drinks,66346127,l, +144,2022,Production of Whiskey and Other Spiritual Drinks,77991213,l, +145,2018,Production of suggar,2128909,tonnes, +146,2019,Production of suggar,1624490,tonnes, +147,2020,Production of suggar,1781328,tonnes, +148,2021,Production of suggar,1637892,tonnes, +149,2022,Production of suggar,1533307,tonnes, +150,2018,production of cellulose pulps,830574,tonnes, +151,2019,production of cellulose pulps,791131,tonnes, +152,2020,production of cellulose pulps,733530,tonnes, +153,2021,production of cellulose pulps,698673,tonnes, +154,2022,production of cellulose pulps,649541,tonnes, +155,2018,production of packaging paper,1020365,tonnes, +156,2019,production of packaging paper,983864,tonnes, +157,2020,production of packaging paper,991836,tonnes, +158,2021,production of packaging paper,1120829,tonnes, +159,2022,production of packaging paper,1182176,tonnes, +160,2018,production of paper for sanitary use and other uses,356890,tonnes, +161,2019,production of paper for sanitary use and other uses,350785,tonnes, +162,2020,production of paper for sanitary use and other uses,377457,tonnes, +163,2021,production of paper for sanitary use and other uses,386624,tonnes, +164,2022,production of paper for sanitary use and other uses,398924,tonnes, +165,2018,production of newsprint and printing paper,375360,tonnes, +166,2019,production of newsprint and printing paper,349304,tonnes, +167,2020,production of newsprint and printing paper,253108,tonnes, +168,2021,production of newsprint and printing paper,239585,tonnes, +169,2022,production of newsprint and printing paper,258180,tonnes, +170,2018,crude oil production,28405214,cubic meters, +171,2019,crude oil production,29516880,cubic meters, +172,2020,crude oil production,27970381,cubic meters, +173,2021,crude oil production,29798791,cubic meters, +174,2022,crude oil production,33796105,cubic meters, +175,2018,processed oil production,35952713,cubic meters, +176,2019,processed oil production,35670205,cubic meters, +177,2020,processed oil production,31182450,cubic meters, +178,2021,processed oil production,34576413,cubic meters, +179,2022,processed oil production,36304107,cubic meters, +180,2018,production of special premium gasoline > 97 RON,2412346,cubic meters, +181,2019,production of special premium gasoline > 97 RON,2086037,cubic meters, +182,2020,production of special premium gasoline > 97 RON,1578006,cubic meters, +183,2021,production of special premium gasoline > 97 RON,2124657,cubic meters, +184,2022,production of special premium gasoline > 97 RON,2083709,cubic meters, +185,2018,Super special gasoline > 93 RON,6457102,cubic meters, +186,2019,Super special gasoline > 93 RON,6671505,cubic meters, +187,2020,Super special gasoline > 93 RON,5029357,cubic meters, +188,2021,Super special gasoline > 93 RON,6281905,cubic meters, +189,2022,Super special gasoline > 93 RON,6594004,cubic meters, +190,2018,diesel production,11538858,cubic meters, +191,2019,diesel production,11599296,cubic meters, +192,2020,diesel production,10660146,cubic meters, +193,2021,diesel production,12046361,cubic meters, +194,2022,diesel production,12512332,cubic meters, +195,2018,fuel oil production,1350540,tonnes, +196,2019,fuel oil production,1715771,tonnes, +197,2020,fuel oil production,1926218,tonnes, +198,2021,fuel oil production,1299885,tonnes, +199,2022,fuel oil production,1274161,tonnes, +200,2018,Kerosene production,11577,cubic meters, +201,2019,Kerosene production,9618,cubic meters, +202,2020,Kerosene production,8293,cubic meters, +203,2021,Kerosene production,8182,cubic meters, +204,2022,Kerosene production,7186,cubic meters, +205,2018,Aerokerosene production,1826782,cubic meters, +206,2019,Aerokerosene production,1832813,cubic meters, +207,2020,Aerokerosene production,655289,cubic meters, +208,2021,Aerokerosene production,742984,cubic meters, +209,2022,Aerokerosene production,1458588,cubic meters, +210,2018,lubricant production,283318,cubic meters, +211,2019,lubricant production,247372,cubic meters, +212,2020,lubricant production,240430,cubic meters, +213,2021,lubricant production,293200,cubic meters, +214,2022,lubricant production,292063,cubic meters, +215,2018,Propane production,495102,tonnes, +216,2019,Propane production,464634,tonnes, +217,2020,Propane production,342696,tonnes, +218,2021,Propane production,482421,tonnes, +219,2022,Propane production,490935,tonnes, +220,2018,Butane production,576404,tonnes, +221,2019,Butane production,578764,tonnes, +222,2020,Butane production,470727,tonnes, +223,2021,Butane production,589068,tonnes, +224,2022,Butane production,599273,tonnes, +225,2018,refinery gas production,1294242,tonnes, +226,2019,refinery gas production,1112492,tonnes, +227,2020,refinery gas production,1043303,tonnes, +228,2021,refinery gas production,1028019,tonnes, +229,2022,refinery gas production,1051138,tonnes, +230,2018,Coke production,1511631,tonnes, +231,2019,Coke production,1462148,tonnes, +232,2020,Coke production,1249461,tonnes, +233,2021,Coke production,1485417,tonnes, +234,2022,Coke production,1459607,tonnes, +235,2018,production of petroleum fats,7490,tonnes, +236,2019,production of petroleum fats,7955,tonnes, +237,2020,production of petroleum fats,8105,tonnes, +238,2021,production of petroleum fats,9895,tonnes, +239,2022,production of petroleum fats,8967,tonnes, +240,2018,asphalt production,491408,tonnes, +241,2019,asphalt production,387844,tonnes, +242,2020,asphalt production,266383,tonnes, +243,2021,asphalt production,375310,tonnes, +244,2022,asphalt production,252365,tonnes, +245,2018,production of aliphatic solvents,66359,cubic meters, +246,2019,production of aliphatic solvents,62191,cubic meters, +247,2020,production of aliphatic solvents,57481,cubic meters, +248,2021,production of aliphatic solvents,62349,cubic meters, +249,2022,production of aliphatic solvents,62352,cubic meters, +250,2018,production of aromatic solvents,102486,cubic meters, +251,2019,production of aromatic solvents,115935,cubic meters, +252,2020,production of aromatic solvents,111941,cubic meters, +253,2021,production of aromatic solvents,114969,cubic meters, +254,2022,production of aromatic solvents,103775,cubic meters, +255,2018,production of hexane solvents,51660,cubic meters, +256,2019,production of hexane solvents,50904,cubic meters, +257,2020,production of hexane solvents,45835,cubic meters, +258,2021,production of hexane solvents,50217,cubic meters, +259,2022,production of hexane solvents,45102,cubic meters, +260,2018,turpentine production,40724,cubic meters, +261,2019,turpentine production,42425,cubic meters, +262,2020,turpentine production,46655,cubic meters, +263,2021,turpentine production,47100,cubic meters, +264,2022,turpentine production,46694,cubic meters, +265,2018,production of other light petroleum products,2000169,cubic meters, +266,2019,production of other light petroleum products,1493491,cubic meters, +267,2020,production of other light petroleum products,1520003,cubic meters, +268,2021,production of other light petroleum products,1539219,cubic meters, +269,2022,production of other light petroleum products,1654127,cubic meters, +270,2018,production of other medium petroleum products,1575454,cubic meters, +271,2019,production of other medium petroleum products,1434402,cubic meters, +272,2020,production of other medium petroleum products,1325757,cubic meters, +273,2021,production of other medium petroleum products,1180048,cubic meters, +274,2022,production of other medium petroleum products,1132316,cubic meters, +275,2018,production of other heavy petroleum products,490124,cubic meters, +276,2019,production of other heavy petroleum products,733354,cubic meters, +277,2020,production of other heavy petroleum products,475759,cubic meters, +278,2021,production of other heavy petroleum products,485553,cubic meters, +279,2022,production of other heavy petroleum products,515460,cubic meters, +280,2018,Oxygen production,207129027,cubic meters, +281,2019,Oxygen production,220892928,cubic meters, +282,2020,Oxygen production,210832585,cubic meters, +283,2021,Oxygen production,281146592,cubic meters, +284,2022,Oxygen production,291819732,cubic meters, +285,2018,Nitrogen production,251059045,cubic meters, +286,2019,Nitrogen production,255430244,cubic meters, +287,2020,Nitrogen production,249385133,cubic meters, +288,2021,Nitrogen production,252058439,cubic meters, +289,2022,Nitrogen production,269205410,cubic meters, +290,2018,production of Benzene ,86127,tonnes, +291,2019,production of Benzene ,99547,tonnes, +292,2020,production of Benzene ,89644,tonnes, +293,2021,production of Benzene ,96810,tonnes, +294,2022,production of Benzene ,87798,tonnes, +295,2018,production of Ethylene ,718057,tonnes, +296,2019,production of Ethylene ,546109,tonnes, +297,2020,production of Ethylene ,736784,tonnes, +298,2021,production of Ethylene ,649076,tonnes, +299,2022,production of Ethylene ,707675,tonnes, +300,2018,production of Ammonia,627093,tonnes, +301,2019,production of Ammonia,729766,tonnes, +302,2020,production of Ammonia,778003,tonnes, +303,2021,production of Ammonia,593433,tonnes, +304,2022,production of Ammonia,886236,tonnes, +305,2018,production of Methanol,472337,tonnes, +306,2019,production of Methanol,456430,tonnes, +307,2020,production of Methanol,223521,tonnes, +308,2021,production of Methanol,376764,tonnes, +309,2022,production of Methanol,422389,tonnes, +310,2018,production of O-Xylene,7544,tonnes, +311,2019,production of O-Xylene,8800,tonnes, +312,2020,production of O-Xylene,8617,tonnes, +313,2021,production of O-Xylene,11222,tonnes, +314,2022,production of O-Xylene,11895,tonnes, +315,2018,production of Carbon Sulfide,11600,tonnes, +316,2019,production of Carbon Sulfide,10000,tonnes, +317,2020,production of Carbon Sulfide,9100,tonnes, +318,2021,production of Carbon Sulfide,9400,tonnes, +319,2022,production of Carbon Sulfide,10000,tonnes, +320,2018,production of Polyethylene terephthalate-PET (1),188000,tonnes, +321,2019,production of Polyethylene terephthalate-PET (1),158000,tonnes, +322,2020,production of Polyethylene terephthalate-PET (1),160000,tonnes, +323,2021,production of Polyethylene terephthalate-PET (1),177000,tonnes, +324,2022,production of Polyethylene terephthalate-PET (1),190000,tonnes, +325,2018,production of Polypropylene,287800,tonnes, +326,2019,production of Polypropylene,261000,tonnes, +327,2020,production of Polypropylene,201800,tonnes, +328,2021,production of Polypropylene,291130,tonnes, +329,2022,production of Polypropylene,298640,tonnes, +330,2018,production of Polyethylene,629873,tonnes, +331,2019,production of Polyethylene,507483,tonnes, +332,2020,production of Polyethylene,644277,tonnes, +333,2021,production of Polyethylene,549776,tonnes, +334,2022,production of Polyethylene,636642,tonnes, +335,2018,production of Polyvinyl Chloride (PVC),184077,tonnes, +336,2019,production of Polyvinyl Chloride (PVC),161511,tonnes, +337,2020,production of Polyvinyl Chloride (PVC),168628,tonnes, +338,2021,production of Polyvinyl Chloride (PVC),185740,tonnes, +339,2022,production of Polyvinyl Chloride (PVC),203440,tonnes, +340,2018,production of Styrene,97767,tonnes, +341,2019,production of Styrene,87487,tonnes, +342,2020,production of Styrene,89503,tonnes, +343,2021,production of Styrene,105312,tonnes, +344,2022,production of Styrene,100768,tonnes, +345,2018,production of Urea,1016007,tonnes, +346,2019,production of Urea,1178398,tonnes, +347,2020,production of Urea,1283575,tonnes, +348,2021,production of Urea,918708,tonnes, +349,2022,production of Urea,1377821,tonnes, +350,2018,production of Lampblack,77657,tonnes, +351,2019,production of Lampblack,68294,tonnes, +352,2020,production of Lampblack,59226,tonnes, +353,2021,production of Lampblack,75014,tonnes, +354,2022,production of Lampblack,75658,tonnes, +355,2018,production of Synthetic rubber,25426,tonnes, +356,2019,production of Synthetic rubber,25939,tonnes, +357,2020,production of Synthetic rubber,35335,tonnes, +358,2021,production of Synthetic rubber,53067,tonnes, +359,2022,production of Synthetic rubber,43321,tonnes, +360,2018,production of biodiesel,2428997,cubic meters, +361,2019,production of biodiesel,2147270,cubic meters, +362,2020,production of biodiesel,1157364,cubic meters, +363,2021,production of biodiesel,1723665,cubic meters, +364,2022,production of biodiesel,1909618,cubic meters, +365,2018,corn bioethanol,585619,cubic meters, +366,2019,corn bioethanol,553829,cubic meters, +367,2020,corn bioethanol,423575,cubic meters, +368,2021,corn bioethanol,533928,cubic meters, +369,2022,corn bioethanol,702853,cubic meters, +370,2018,sugar cane bioethanol,528162,cubic meters, +371,2019,sugar cane bioethanol,519667,cubic meters, +372,2020,sugar cane bioethanol,385150,cubic meters, +373,2021,sugar cane bioethanol,474130,cubic meters, +374,2022,sugar cane bioethanol,455988,cubic meters, +375,2018,production of soaps (toilet and washing),74215,tonnes, +376,2019,production of soaps (toilet and washing),67057,tonnes, +377,2020,production of soaps (toilet and washing),88054,tonnes, +378,2021,production of soaps (toilet and washing),77968,tonnes, +379,2022,production of soaps (toilet and washing),70015,tonnes, +380,2018,production of detergents and cleaners (includes bleaches),835821,tonnes, +381,2019,production of detergents and cleaners (includes bleaches),733432,tonnes, +382,2020,production of detergents and cleaners (includes bleaches),841870,tonnes, +383,2021,production of detergents and cleaners (includes bleaches),846705,tonnes, +384,2022,production of detergents and cleaners (includes bleaches),787141,tonnes, +385,2018,production of other cleaning items,86364,tonnes, +386,2019,production of other cleaning items,64495,tonnes, +387,2020,production of other cleaning items,63356,tonnes, +388,2021,production of other cleaning items,62323,tonnes, +389,2022,production of other cleaning items,66339,tonnes, +390,2018,production of paints for construction and domestic use,198816,tonnes, +391,2019,production of paints for construction and domestic use,183883,tonnes, +392,2020,production of paints for construction and domestic use,180563,tonnes, +393,2021,production of paints for construction and domestic use,195335,tonnes, +394,2022,production of paints for construction and domestic use,188178,tonnes, +395,2018,production of paints for other uses,67276,tonnes, +396,2019,production of paints for other uses,57442,tonnes, +397,2020,production of paints for other uses,57988,tonnes, +398,2021,production of paints for other uses,75735,tonnes, +399,2022,production of paints for other uses,62191,tonnes, +400,2018,production of hollow ceramic bricks,729304642,units, +401,2019,production of hollow ceramic bricks,651275603,units, +402,2020,production of hollow ceramic bricks,631779265,units, +403,2021,production of hollow ceramic bricks,874903566,units, +404,2022,production of hollow ceramic bricks,800983191,units, +405,2018,production of plaster,172021,tonnes, +406,2019,production of plaster,190374,tonnes, +407,2020,production of plaster,123086,tonnes, +408,2021,production of plaster,177276,tonnes, +409,2022,production of plaster,190349,tonnes, +410,2018,production of portland cement,11841,tonnes, +411,2019,production of portland cement,11082,tonnes, +412,2020,production of portland cement,9871,tonnes, +413,2021,production of portland cement,12117,tonnes, +414,2022,production of portland cement,13029,tonnes, +415,2018,production of ceramics, floors and coverings,67622,square meters +416,2019,production of ceramics, floors and coverings,58462,square meters +417,2020,production of ceramics, floors and coverings,55653,square meters +418,2021,production of ceramics, floors and coverings,75540,square meters +419,2022,production of ceramics, floors and coverings,71100,square meters +420,2018,production of ceramic sanitary ware,3357533,pieces, +421,2019,production of ceramic sanitary ware,2560199,pieces, +422,2020,production of ceramic sanitary ware,1891557,pieces, +423,2021,production of ceramic sanitary ware,3309165,pieces, +424,2022,production of ceramic sanitary ware,3133248,pieces, +425,2018,production of plasterboard,55752499,square meters, +426,2019,production of plasterboard,52665013,square meters, +427,2020,production of plasterboard,48239864,square meters, +428,2021,production of plasterboard,57333287,square meters, +429,2022,production of plasterboard,60409418,square meters, +430,2018,production of primary aluminum,439600,tonnes, +431,2019,production of primary aluminum,438434,tonnes, +432,2020,production of primary aluminum,309804,tonnes, +433,2021,production of primary aluminum,338239,tonnes, +434,2022,production of primary aluminum,400038,tonnes, +435,2018,production of primary iron,3790200,tonnes, +436,2019,production of primary iron,3049900,tonnes, +437,2020,production of primary iron,2455000,tonnes, +438,2021,production of primary iron,3550000,tonnes, +439,2022,production of primary iron,3493600,tonnes, +440,2018,production of raw steel,5161700,tonnes, +441,2019,production of raw steel,4644500,tonnes, +442,2020,production of raw steel,3651100,tonnes, +443,2021,production of raw steel,4875300,tonnes, +444,2022,production of raw steel,5093500,tonnes, +445,2018,production of flat hot rolled,2271000,tonnes, +446,2019,production of flat hot rolled,2032600,tonnes, +447,2020,production of flat hot rolled,1973800,tonnes, +448,2021,production of flat hot rolled,2513700,tonnes, +449,2022,production of flat hot rolled,2248900,tonnes, +450,2018,production of non-flat hot rolled,2492500,tonnes, +451,2019,production of non-flat hot rolled,2232100,tonnes, +452,2020,production of non-flat hot rolled,1494700,tonnes, +453,2021,production of non-flat hot rolled,2254100,tonnes, +454,2022,production of non-flat hot rolled,2387400,tonnes, +455,2018,production of cold rolled,1257800,tonnes, +456,2019,production of cold rolled,1150500,tonnes, +457,2020,production of cold rolled,1194000,tonnes, +458,2021,production of cold rolled,1425000,tonnes, +459,2022,production of cold rolled,1242700,tonnes, +460,2021,production of seeders,2636,units, +461,2022,production of seeders,2716,units, +462,2021,production of combines,728,units, +463,2022,production of combines,900,units, +464,2021,production of tractors,7063,units, +465,2022,production of tractors,8123,units, +466,2021,production of self-propelled and trailed agricultural sprayers,1348,units, +467,2022,production of self-propelled and trailed agricultural sprayers,1539,units, +468,2021,production of hauling and storage of agricultural grains,4628,units, +469,2022,production of hauling and storage of agricultural grains,4221,units, +470,2021,production of other agricultural implements,3876,units, +471,2022,production of other agricultural implements,4418,units, +472,2018,production of kitchens,645072,units, +473,2019,production of kitchens,572900,units, +474,2020,production of kitchens,435829,units, +475,2021,production of kitchens,613920,units, +476,2022,production of kitchens,607181,units, +477,2018,production of ovens and stoves,101826,units, +478,2019,production of ovens and stoves,104183,units, +479,2020,production of ovens and stoves,142608,units, +480,2021,production of ovens and stoves,200911,units, +481,2022,production of ovens and stoves,212364,units, +482,2018,production of microwave ovens,278821,units, +483,2019,production of microwave ovens,208263,units, +484,2020,production of microwave ovens,209347,units, +485,2021,production of microwave ovens,558335,units, +486,2022,production of microwave ovens,481035,units, +487,2018,production of heaters and stoves,667734,units, +488,2019,production of heaters and stoves,640246,units, +489,2020,production of heaters and stoves,562751,units, +490,2021,production of heaters and stoves,786012,units, +491,2022,production of heaters and stoves,734502,units, +492,2018,production of refrigerators,678017,units, +493,2019,production of refrigerators,574477,units, +494,2020,production of refrigerators,623780,units, +495,2021,production of refrigerators,878539,units, +496,2022,production of refrigerators,978987,units, +497,2018,production of freezers,134632,units, +498,2019,production of freezers,84733,units, +499,2020,production of freezers,108009,units, +500,2021,production of freezers,180311,units, +501,2022,production of freezers,201273,units, +502,2018,production of washing machine,894131,units, +503,2019,production of washing machine,855826,units, +504,2020,production of washing machine,816538,units, +505,2021,production of washing machine,1065556,units, +506,2022,production of washing machine,1127358,units, +507,2018,production of clothes dryer,353657,units, +508,2019,production of clothes dryer,275341,units, +509,2020,production of clothes dryer,252052,units, +510,2021,production of clothes dryer,304531,units, +511,2022,production of clothes dryer,309169,units, +512,2018,production of heaters,146421,units, +513,2019,production of heaters,127578,units, +514,2020,production of heaters,103705,units, +515,2021,production of heaters,138929,units, +516,2022,production of heaters,141104,units, +517,2018,production of gas water heaters,426948,units, +518,2019,production of gas water heaters,401998,units, +519,2020,production of gas water heaters,392724,units, +520,2021,production of gas water heaters,526515,units, +521,2022,production of gas water heaters,514996,units, +522,2018,production of electric water heaters,332337,units, +523,2019,production of electric water heaters,372538,units, +524,2020,production of electric water heaters,319233,units, +525,2021,production of electric water heaters,496826,units, +526,2022,production of electric water heaters,607817,units, +527,2018,production of air conditioners,1177977,units, +528,2019,production of air conditioners,785297,units, +529,2020,production of air conditioners,884835,units, +530,2021,production of air conditioners,1421417,units, +531,2022,production of air conditioners,1303595,units, +532,2018,production of automobiles and utility vehicles,466649,units, +533,2019,production of automobiles and utility vehicles,314787,units, +534,2020,production of automobiles and utility vehicles,257187,units, +535,2021,production of automobiles and utility vehicles,434753,units, +536,2022,production of automobiles and utility vehicles,536893,units, +537,2018,production of motorcycles,530807,units, +538,2019,production of motorcycles,245588,units, +539,2020,production of motorcycles,243158,units, +540,2021,production of motorcycles,407778,units, +541,2022,production of motorcycles,458367,units, +542,2018,production of cellphones,8038092,units, +543,2019,production of cellphones,7229285,units, +544,2020,production of cellphones,6303851,units, +545,2021,production of cellphones,9911496,units, +546,2022,production of cellphones,10021943,units, +547,2018,production of televisions,3290131,units, +548,2019,production of televisions,1715145,units, +549,2020,production of televisions,2085509,units, +550,2021,production of televisions,2698808,units, +551,2022,production of televisions,3205901,units, diff --git a/global-api/importer/argentinian_datasets/indec_industrial_products/industrial_products_statistics.xlsx b/global-api/importer/argentinian_datasets/indec_industrial_products/industrial_products_statistics.xlsx new file mode 100644 index 000000000..6db667251 --- /dev/null +++ b/global-api/importer/argentinian_datasets/indec_industrial_products/industrial_products_statistics.xlsx @@ -0,0 +1,553 @@ +,year,activity_name,activity_value,activity_units,Unnamed: 4 +0,2018,soy oil production,7248989,tonnes, +1,2019,soy oil production,8081157,tonnes, +2,2020,soy oil production,7160243,tonnes, +3,2021,soy oil production,8391995,tonnes, +4,2022,soy oil production,7447598,tonnes, +5,2018,sunflower oil production,1304651,tonnes, +6,2019,sunflower oil production,1414513,tonnes, +7,2020,sunflower oil production,1067505,tonnes, +8,2021,sunflower oil production,1339892,tonnes, +9,2022,sunflower oil production,1497628,tonnes, +10,2018,other oil production,123111,tonnes, +11,2019,other oil production,103800,tonnes, +12,2020,other oil production,91339,tonnes, +13,2021,other oil production,83270,tonnes, +14,2022,other oil production,103868,tonnes, +15,2018,Soybean oilseeds,27756884,tonnes, +16,2019,Soybean oilseeds,31025363,tonnes, +17,2020,Soybean oilseeds,27226566,tonnes, +18,2021,Soybean oilseeds,31906192,tonnes, +19,2022,Soybean oilseeds,28775035,tonnes, +20,2018,Sunflower oilseeds,1318251,tonnes, +21,2019,Sunflower oilseeds,1339025,tonnes, +22,2020,Sunflower oilseeds,1017502,tonnes, +23,2021,Sunflower oilseeds,1254145,tonnes, +24,2022,Sunflower oilseeds,1450063,tonnes, +25,2018,Other oilseeds,226329,tonnes, +26,2019,Other oilseeds,200861,tonnes, +27,2020,Other oilseeds,192324,tonnes, +28,2021,Other oilseeds,178718,tonnes, +29,2022,Other oilseeds,220306,tonnes, +30,2018,Wheat flour,4064639,tonnes, +31,2019,Wheat flour,4461959,tonnes, +32,2020,Wheat flour,4511947,tonnes, +33,2021,Wheat flour,4402508,tonnes, +34,2022,Wheat flour,4405860,tonnes, +35,2018,Corn,6150188,heads, +36,2019,Corn,6155186,heads, +37,2020,Corn,6402743,heads, +38,2021,Corn,6912461,heads, +39,2022,Corn,7322096,heads, +40,2018,Barley,920157,heads, +41,2019,Barley,1038853,heads, +42,2020,Barley,1004040,heads, +43,2021,Barley,1119303,heads, +44,2022,Barley,1142650,heads, +45,2018,Rice,1007032,heads, +46,2019,Rice,965761,heads, +47,2020,Rice,998901,heads, +48,2021,Rice,1074437,heads, +49,2022,Rice,1118571,heads, +50,2018,Other cereals,113860,heads, +51,2019,Other cereals,69099,heads, +52,2020,Other cereals,40010,heads, +53,2021,Other cereals,48851,heads, +54,2022,Other cereals,58316,heads, +55,2018,Beef Slaughter,13452831,heads, +56,2019,Beef Slaughter,13872888,heads, +57,2020,Beef Slaughter,14008212,heads, +58,2021,Beef Slaughter,12987235,heads, +59,2022,Beef Slaughter,13580233,heads, +60,2018,Poultry Slaughter,711460000,heads, +61,2019,Poultry Slaughter,756948000,heads, +62,2020,Poultry Slaughter,757926000,heads, +63,2021,Poultry Slaughter,741394000,heads, +64,2022,Poultry Slaughter,751692000,heads, +65,2018,Pork Slaughter,6778976,heads, +66,2019,Pork Slaughter,6747245,heads, +67,2020,Pork Slaughter,7006094,heads, +68,2021,Pork Slaughter,7484271,heads, +69,2022,Pork Slaughter,7709536,heads, +70,2018,Sheep Slaughter,907151,heads, +71,2019,Sheep Slaughter,918999,heads, +72,2020,Sheep Slaughter,938518,heads, +73,2021,Sheep Slaughter,938698,heads, +74,2022,Sheep Slaughter,975661,heads, +75,2018,Production of refrigerated milk,635541487,l, +76,2019,Production of refrigerated milk,597945849,l, +77,2020,Production of refrigerated milk,509853326,l, +78,2021,Production of refrigerated milk,459803594,l, +79,2022,Production of refrigerated milk,439750723,l, +80,2018,Production of non-refrigerated milk,687258502,l, +81,2019,Production of non-refrigerated milk,613590133,l, +82,2020,Production of non-refrigerated milk,743697883,l, +83,2021,Production of non-refrigerated milk,739032139,l, +84,2022,Production of non-refrigerated milk,728307266,l, +85,2018,Production of powdered milk,232744,tonnes, +86,2019,Production of powdered milk,232833,tonnes, +87,2020,Production of powdered milk,265753,tonnes, +88,2021,Production of powdered milk,288730,tonnes, +89,2022,Production of powdered milk,264131,tonnes, +90,2018,Production of chocolate or flavored milk,46160287,l, +91,2019,Production of chocolate or flavored milk,31577353,l, +92,2020,Production of chocolate or flavored milk,23467347,l, +93,2021,Production of chocolate or flavored milk,40069913,l, +94,2022,Production of chocolate or flavored milk,46183853,l, +95,2018,Butter Production,29351,tonnes, +96,2019,Butter Production,28694,tonnes, +97,2020,Butter Production,34661,tonnes, +98,2021,Butter Production,41131,tonnes, +99,2022,Butter Production,39033,tonnes, +100,2018,Yogurt Production,394067,tonnes, +101,2019,Yogurt Production,354269,tonnes, +102,2020,Yogurt Production,355539,tonnes, +103,2021,Yogurt Production,332351,tonnes, +104,2022,Yogurt Production,352408,tonnes, +105,2018,Cheese Production,444128,tonnes, +106,2019,Cheese Production,429411,tonnes, +107,2020,Cheese Production,420650,tonnes, +108,2021,Cheese Production,460173,tonnes, +109,2022,Cheese Production,460223,tonnes, +110,2018,production of cream,62811,tonnes, +111,2019,production of cream,59370,tonnes, +112,2020,production of cream,61021,tonnes, +113,2021,production of cream,61027,tonnes, +114,2022,production of cream,65506,tonnes, +115,2018,production of Dulce de Leche,100575,tonnes, +116,2019,production of Dulce de Leche,96863,tonnes, +117,2020,production of Dulce de Leche,106555,tonnes, +118,2021,production of Dulce de Leche,96728,tonnes, +119,2022,production of Dulce de Leche,101626,tonnes, +120,2018,production of dairy desserts and flans,41102,tonnes, +121,2019,production of dairy desserts and flans,28609,tonnes, +122,2020,production of dairy desserts and flans,27433,tonnes, +123,2021,production of dairy desserts and flans,26909,tonnes, +124,2022,production of dairy desserts and flans,26957,tonnes, +125,2018,production of appetizers, vermouths and quinados,30728119,l +126,2019,production of appetizers, vermouths and quinados,26699779,l +127,2020,production of appetizers, vermouths and quinados,32360432,l +128,2021,production of appetizers, vermouths and quinados,40398008,l +129,2022,production of appetizers, vermouths and quinados,42666771,l +130,2018,production of bitters, biters and fernets,48243057,l +131,2019,production of bitters, biters and fernets,44314308,l +132,2020,production of bitters, biters and fernets,47290765,l +133,2021,production of bitters, biters and fernets,56777277,l +134,2022,production of bitters, biters and fernets,67965411,l +135,2018,production of fine liqueurs and creams,7770641,l, +136,2019,production of fine liqueurs and creams,8716873,l, +137,2020,production of fine liqueurs and creams,7259118,l, +138,2021,production of fine liqueurs and creams,8687362,l, +139,2022,production of fine liqueurs and creams,9732633,l, +140,2018,Production of Whiskey and Other Spiritual Drinks,52787053,l, +141,2019,Production of Whiskey and Other Spiritual Drinks,47238129,l, +142,2020,Production of Whiskey and Other Spiritual Drinks,44912086,l, +143,2021,Production of Whiskey and Other Spiritual Drinks,66346127,l, +144,2022,Production of Whiskey and Other Spiritual Drinks,77991213,l, +145,2018,Production of suggar,2128909,tonnes, +146,2019,Production of suggar,1624490,tonnes, +147,2020,Production of suggar,1781328,tonnes, +148,2021,Production of suggar,1637892,tonnes, +149,2022,Production of suggar,1533307,tonnes, +150,2018,production of cellulose pulps,830574,tonnes, +151,2019,production of cellulose pulps,791131,tonnes, +152,2020,production of cellulose pulps,733530,tonnes, +153,2021,production of cellulose pulps,698673,tonnes, +154,2022,production of cellulose pulps,649541,tonnes, +155,2018,production of packaging paper,1020365,tonnes, +156,2019,production of packaging paper,983864,tonnes, +157,2020,production of packaging paper,991836,tonnes, +158,2021,production of packaging paper,1120829,tonnes, +159,2022,production of packaging paper,1182176,tonnes, +160,2018,production of paper for sanitary use and other uses,356890,tonnes, +161,2019,production of paper for sanitary use and other uses,350785,tonnes, +162,2020,production of paper for sanitary use and other uses,377457,tonnes, +163,2021,production of paper for sanitary use and other uses,386624,tonnes, +164,2022,production of paper for sanitary use and other uses,398924,tonnes, +165,2018,production of newsprint and printing paper,375360,tonnes, +166,2019,production of newsprint and printing paper,349304,tonnes, +167,2020,production of newsprint and printing paper,253108,tonnes, +168,2021,production of newsprint and printing paper,239585,tonnes, +169,2022,production of newsprint and printing paper,258180,tonnes, +170,2018,crude oil production,28405214,cubic meters, +171,2019,crude oil production,29516880,cubic meters, +172,2020,crude oil production,27970381,cubic meters, +173,2021,crude oil production,29798791,cubic meters, +174,2022,crude oil production,33796105,cubic meters, +175,2018,processed oil production,35952713,cubic meters, +176,2019,processed oil production,35670205,cubic meters, +177,2020,processed oil production,31182450,cubic meters, +178,2021,processed oil production,34576413,cubic meters, +179,2022,processed oil production,36304107,cubic meters, +180,2018,production of special premium gasoline > 97 RON,2412346,cubic meters, +181,2019,production of special premium gasoline > 97 RON,2086037,cubic meters, +182,2020,production of special premium gasoline > 97 RON,1578006,cubic meters, +183,2021,production of special premium gasoline > 97 RON,2124657,cubic meters, +184,2022,production of special premium gasoline > 97 RON,2083709,cubic meters, +185,2018,Super special gasoline > 93 RON,6457102,cubic meters, +186,2019,Super special gasoline > 93 RON,6671505,cubic meters, +187,2020,Super special gasoline > 93 RON,5029357,cubic meters, +188,2021,Super special gasoline > 93 RON,6281905,cubic meters, +189,2022,Super special gasoline > 93 RON,6594004,cubic meters, +190,2018,diesel production,11538858,cubic meters, +191,2019,diesel production,11599296,cubic meters, +192,2020,diesel production,10660146,cubic meters, +193,2021,diesel production,12046361,cubic meters, +194,2022,diesel production,12512332,cubic meters, +195,2018,fuel oil production,1350540,tonnes, +196,2019,fuel oil production,1715771,tonnes, +197,2020,fuel oil production,1926218,tonnes, +198,2021,fuel oil production,1299885,tonnes, +199,2022,fuel oil production,1274161,tonnes, +200,2018,Kerosene production,11577,cubic meters, +201,2019,Kerosene production,9618,cubic meters, +202,2020,Kerosene production,8293,cubic meters, +203,2021,Kerosene production,8182,cubic meters, +204,2022,Kerosene production,7186,cubic meters, +205,2018,Aerokerosene production,1826782,cubic meters, +206,2019,Aerokerosene production,1832813,cubic meters, +207,2020,Aerokerosene production,655289,cubic meters, +208,2021,Aerokerosene production,742984,cubic meters, +209,2022,Aerokerosene production,1458588,cubic meters, +210,2018,lubricant production,283318,cubic meters, +211,2019,lubricant production,247372,cubic meters, +212,2020,lubricant production,240430,cubic meters, +213,2021,lubricant production,293200,cubic meters, +214,2022,lubricant production,292063,cubic meters, +215,2018,Propane production,495102,tonnes, +216,2019,Propane production,464634,tonnes, +217,2020,Propane production,342696,tonnes, +218,2021,Propane production,482421,tonnes, +219,2022,Propane production,490935,tonnes, +220,2018,Butane production,576404,tonnes, +221,2019,Butane production,578764,tonnes, +222,2020,Butane production,470727,tonnes, +223,2021,Butane production,589068,tonnes, +224,2022,Butane production,599273,tonnes, +225,2018,refinery gas production,1294242,tonnes, +226,2019,refinery gas production,1112492,tonnes, +227,2020,refinery gas production,1043303,tonnes, +228,2021,refinery gas production,1028019,tonnes, +229,2022,refinery gas production,1051138,tonnes, +230,2018,Coke production,1511631,tonnes, +231,2019,Coke production,1462148,tonnes, +232,2020,Coke production,1249461,tonnes, +233,2021,Coke production,1485417,tonnes, +234,2022,Coke production,1459607,tonnes, +235,2018,production of petroleum fats,7490,tonnes, +236,2019,production of petroleum fats,7955,tonnes, +237,2020,production of petroleum fats,8105,tonnes, +238,2021,production of petroleum fats,9895,tonnes, +239,2022,production of petroleum fats,8967,tonnes, +240,2018,asphalt production,491408,tonnes, +241,2019,asphalt production,387844,tonnes, +242,2020,asphalt production,266383,tonnes, +243,2021,asphalt production,375310,tonnes, +244,2022,asphalt production,252365,tonnes, +245,2018,production of aliphatic solvents,66359,cubic meters, +246,2019,production of aliphatic solvents,62191,cubic meters, +247,2020,production of aliphatic solvents,57481,cubic meters, +248,2021,production of aliphatic solvents,62349,cubic meters, +249,2022,production of aliphatic solvents,62352,cubic meters, +250,2018,production of aromatic solvents,102486,cubic meters, +251,2019,production of aromatic solvents,115935,cubic meters, +252,2020,production of aromatic solvents,111941,cubic meters, +253,2021,production of aromatic solvents,114969,cubic meters, +254,2022,production of aromatic solvents,103775,cubic meters, +255,2018,production of hexane solvents,51660,cubic meters, +256,2019,production of hexane solvents,50904,cubic meters, +257,2020,production of hexane solvents,45835,cubic meters, +258,2021,production of hexane solvents,50217,cubic meters, +259,2022,production of hexane solvents,45102,cubic meters, +260,2018,turpentine production,40724,cubic meters, +261,2019,turpentine production,42425,cubic meters, +262,2020,turpentine production,46655,cubic meters, +263,2021,turpentine production,47100,cubic meters, +264,2022,turpentine production,46694,cubic meters, +265,2018,production of other light petroleum products,2000169,cubic meters, +266,2019,production of other light petroleum products,1493491,cubic meters, +267,2020,production of other light petroleum products,1520003,cubic meters, +268,2021,production of other light petroleum products,1539219,cubic meters, +269,2022,production of other light petroleum products,1654127,cubic meters, +270,2018,production of other medium petroleum products,1575454,cubic meters, +271,2019,production of other medium petroleum products,1434402,cubic meters, +272,2020,production of other medium petroleum products,1325757,cubic meters, +273,2021,production of other medium petroleum products,1180048,cubic meters, +274,2022,production of other medium petroleum products,1132316,cubic meters, +275,2018,production of other heavy petroleum products,490124,cubic meters, +276,2019,production of other heavy petroleum products,733354,cubic meters, +277,2020,production of other heavy petroleum products,475759,cubic meters, +278,2021,production of other heavy petroleum products,485553,cubic meters, +279,2022,production of other heavy petroleum products,515460,cubic meters, +280,2018,Oxygen production,207129027,cubic meters, +281,2019,Oxygen production,220892928,cubic meters, +282,2020,Oxygen production,210832585,cubic meters, +283,2021,Oxygen production,281146592,cubic meters, +284,2022,Oxygen production,291819732,cubic meters, +285,2018,Nitrogen production,251059045,cubic meters, +286,2019,Nitrogen production,255430244,cubic meters, +287,2020,Nitrogen production,249385133,cubic meters, +288,2021,Nitrogen production,252058439,cubic meters, +289,2022,Nitrogen production,269205410,cubic meters, +290,2018,production of Benzene ,86127,tonnes, +291,2019,production of Benzene ,99547,tonnes, +292,2020,production of Benzene ,89644,tonnes, +293,2021,production of Benzene ,96810,tonnes, +294,2022,production of Benzene ,87798,tonnes, +295,2018,production of Ethylene ,718057,tonnes, +296,2019,production of Ethylene ,546109,tonnes, +297,2020,production of Ethylene ,736784,tonnes, +298,2021,production of Ethylene ,649076,tonnes, +299,2022,production of Ethylene ,707675,tonnes, +300,2018,production of Ammonia,627093,tonnes, +301,2019,production of Ammonia,729766,tonnes, +302,2020,production of Ammonia,778003,tonnes, +303,2021,production of Ammonia,593433,tonnes, +304,2022,production of Ammonia,886236,tonnes, +305,2018,production of Methanol,472337,tonnes, +306,2019,production of Methanol,456430,tonnes, +307,2020,production of Methanol,223521,tonnes, +308,2021,production of Methanol,376764,tonnes, +309,2022,production of Methanol,422389,tonnes, +310,2018,production of O-Xylene,7544,tonnes, +311,2019,production of O-Xylene,8800,tonnes, +312,2020,production of O-Xylene,8617,tonnes, +313,2021,production of O-Xylene,11222,tonnes, +314,2022,production of O-Xylene,11895,tonnes, +315,2018,production of Carbon Sulfide,11600,tonnes, +316,2019,production of Carbon Sulfide,10000,tonnes, +317,2020,production of Carbon Sulfide,9100,tonnes, +318,2021,production of Carbon Sulfide,9400,tonnes, +319,2022,production of Carbon Sulfide,10000,tonnes, +320,2018,production of Polyethylene terephthalate-PET (1),188000,tonnes, +321,2019,production of Polyethylene terephthalate-PET (1),158000,tonnes, +322,2020,production of Polyethylene terephthalate-PET (1),160000,tonnes, +323,2021,production of Polyethylene terephthalate-PET (1),177000,tonnes, +324,2022,production of Polyethylene terephthalate-PET (1),190000,tonnes, +325,2018,production of Polypropylene,287800,tonnes, +326,2019,production of Polypropylene,261000,tonnes, +327,2020,production of Polypropylene,201800,tonnes, +328,2021,production of Polypropylene,291130,tonnes, +329,2022,production of Polypropylene,298640,tonnes, +330,2018,production of Polyethylene,629873,tonnes, +331,2019,production of Polyethylene,507483,tonnes, +332,2020,production of Polyethylene,644277,tonnes, +333,2021,production of Polyethylene,549776,tonnes, +334,2022,production of Polyethylene,636642,tonnes, +335,2018,production of Polyvinyl Chloride (PVC),184077,tonnes, +336,2019,production of Polyvinyl Chloride (PVC),161511,tonnes, +337,2020,production of Polyvinyl Chloride (PVC),168628,tonnes, +338,2021,production of Polyvinyl Chloride (PVC),185740,tonnes, +339,2022,production of Polyvinyl Chloride (PVC),203440,tonnes, +340,2018,production of Styrene,97767,tonnes, +341,2019,production of Styrene,87487,tonnes, +342,2020,production of Styrene,89503,tonnes, +343,2021,production of Styrene,105312,tonnes, +344,2022,production of Styrene,100768,tonnes, +345,2018,production of Urea,1016007,tonnes, +346,2019,production of Urea,1178398,tonnes, +347,2020,production of Urea,1283575,tonnes, +348,2021,production of Urea,918708,tonnes, +349,2022,production of Urea,1377821,tonnes, +350,2018,production of Lampblack,77657,tonnes, +351,2019,production of Lampblack,68294,tonnes, +352,2020,production of Lampblack,59226,tonnes, +353,2021,production of Lampblack,75014,tonnes, +354,2022,production of Lampblack,75658,tonnes, +355,2018,production of Synthetic rubber,25426,tonnes, +356,2019,production of Synthetic rubber,25939,tonnes, +357,2020,production of Synthetic rubber,35335,tonnes, +358,2021,production of Synthetic rubber,53067,tonnes, +359,2022,production of Synthetic rubber,43321,tonnes, +360,2018,production of biodiesel,2428997,cubic meters, +361,2019,production of biodiesel,2147270,cubic meters, +362,2020,production of biodiesel,1157364,cubic meters, +363,2021,production of biodiesel,1723665,cubic meters, +364,2022,production of biodiesel,1909618,cubic meters, +365,2018,corn bioethanol,585619,cubic meters, +366,2019,corn bioethanol,553829,cubic meters, +367,2020,corn bioethanol,423575,cubic meters, +368,2021,corn bioethanol,533928,cubic meters, +369,2022,corn bioethanol,702853,cubic meters, +370,2018,sugar cane bioethanol,528162,cubic meters, +371,2019,sugar cane bioethanol,519667,cubic meters, +372,2020,sugar cane bioethanol,385150,cubic meters, +373,2021,sugar cane bioethanol,474130,cubic meters, +374,2022,sugar cane bioethanol,455988,cubic meters, +375,2018,production of soaps (toilet and washing),74215,tonnes, +376,2019,production of soaps (toilet and washing),67057,tonnes, +377,2020,production of soaps (toilet and washing),88054,tonnes, +378,2021,production of soaps (toilet and washing),77968,tonnes, +379,2022,production of soaps (toilet and washing),70015,tonnes, +380,2018,production of detergents and cleaners (includes bleaches),835821,tonnes, +381,2019,production of detergents and cleaners (includes bleaches),733432,tonnes, +382,2020,production of detergents and cleaners (includes bleaches),841870,tonnes, +383,2021,production of detergents and cleaners (includes bleaches),846705,tonnes, +384,2022,production of detergents and cleaners (includes bleaches),787141,tonnes, +385,2018,production of other cleaning items,86364,tonnes, +386,2019,production of other cleaning items,64495,tonnes, +387,2020,production of other cleaning items,63356,tonnes, +388,2021,production of other cleaning items,62323,tonnes, +389,2022,production of other cleaning items,66339,tonnes, +390,2018,production of paints for construction and domestic use,198816,tonnes, +391,2019,production of paints for construction and domestic use,183883,tonnes, +392,2020,production of paints for construction and domestic use,180563,tonnes, +393,2021,production of paints for construction and domestic use,195335,tonnes, +394,2022,production of paints for construction and domestic use,188178,tonnes, +395,2018,production of paints for other uses,67276,tonnes, +396,2019,production of paints for other uses,57442,tonnes, +397,2020,production of paints for other uses,57988,tonnes, +398,2021,production of paints for other uses,75735,tonnes, +399,2022,production of paints for other uses,62191,tonnes, +400,2018,production of hollow ceramic bricks,729304642,units, +401,2019,production of hollow ceramic bricks,651275603,units, +402,2020,production of hollow ceramic bricks,631779265,units, +403,2021,production of hollow ceramic bricks,874903566,units, +404,2022,production of hollow ceramic bricks,800983191,units, +405,2018,production of plaster,172021,tonnes, +406,2019,production of plaster,190374,tonnes, +407,2020,production of plaster,123086,tonnes, +408,2021,production of plaster,177276,tonnes, +409,2022,production of plaster,190349,tonnes, +410,2018,production of portland cement,11841,tonnes, +411,2019,production of portland cement,11082,tonnes, +412,2020,production of portland cement,9871,tonnes, +413,2021,production of portland cement,12117,tonnes, +414,2022,production of portland cement,13029,tonnes, +415,2018,production of ceramics, floors and coverings,67622,square meters +416,2019,production of ceramics, floors and coverings,58462,square meters +417,2020,production of ceramics, floors and coverings,55653,square meters +418,2021,production of ceramics, floors and coverings,75540,square meters +419,2022,production of ceramics, floors and coverings,71100,square meters +420,2018,production of ceramic sanitary ware,3357533,pieces, +421,2019,production of ceramic sanitary ware,2560199,pieces, +422,2020,production of ceramic sanitary ware,1891557,pieces, +423,2021,production of ceramic sanitary ware,3309165,pieces, +424,2022,production of ceramic sanitary ware,3133248,pieces, +425,2018,production of plasterboard,55752499,square meters, +426,2019,production of plasterboard,52665013,square meters, +427,2020,production of plasterboard,48239864,square meters, +428,2021,production of plasterboard,57333287,square meters, +429,2022,production of plasterboard,60409418,square meters, +430,2018,production of primary aluminum,439600,tonnes, +431,2019,production of primary aluminum,438434,tonnes, +432,2020,production of primary aluminum,309804,tonnes, +433,2021,production of primary aluminum,338239,tonnes, +434,2022,production of primary aluminum,400038,tonnes, +435,2018,production of primary iron,3790200,tonnes, +436,2019,production of primary iron,3049900,tonnes, +437,2020,production of primary iron,2455000,tonnes, +438,2021,production of primary iron,3550000,tonnes, +439,2022,production of primary iron,3493600,tonnes, +440,2018,production of raw steel,5161700,tonnes, +441,2019,production of raw steel,4644500,tonnes, +442,2020,production of raw steel,3651100,tonnes, +443,2021,production of raw steel,4875300,tonnes, +444,2022,production of raw steel,5093500,tonnes, +445,2018,production of flat hot rolled,2271000,tonnes, +446,2019,production of flat hot rolled,2032600,tonnes, +447,2020,production of flat hot rolled,1973800,tonnes, +448,2021,production of flat hot rolled,2513700,tonnes, +449,2022,production of flat hot rolled,2248900,tonnes, +450,2018,production of non-flat hot rolled,2492500,tonnes, +451,2019,production of non-flat hot rolled,2232100,tonnes, +452,2020,production of non-flat hot rolled,1494700,tonnes, +453,2021,production of non-flat hot rolled,2254100,tonnes, +454,2022,production of non-flat hot rolled,2387400,tonnes, +455,2018,production of cold rolled,1257800,tonnes, +456,2019,production of cold rolled,1150500,tonnes, +457,2020,production of cold rolled,1194000,tonnes, +458,2021,production of cold rolled,1425000,tonnes, +459,2022,production of cold rolled,1242700,tonnes, +460,2021,production of seeders,2636,units, +461,2022,production of seeders,2716,units, +462,2021,production of combines,728,units, +463,2022,production of combines,900,units, +464,2021,production of tractors,7063,units, +465,2022,production of tractors,8123,units, +466,2021,production of self-propelled and trailed agricultural sprayers,1348,units, +467,2022,production of self-propelled and trailed agricultural sprayers,1539,units, +468,2021,production of hauling and storage of agricultural grains,4628,units, +469,2022,production of hauling and storage of agricultural grains,4221,units, +470,2021,production of other agricultural implements,3876,units, +471,2022,production of other agricultural implements,4418,units, +472,2018,production of kitchens,645072,units, +473,2019,production of kitchens,572900,units, +474,2020,production of kitchens,435829,units, +475,2021,production of kitchens,613920,units, +476,2022,production of kitchens,607181,units, +477,2018,production of ovens and stoves,101826,units, +478,2019,production of ovens and stoves,104183,units, +479,2020,production of ovens and stoves,142608,units, +480,2021,production of ovens and stoves,200911,units, +481,2022,production of ovens and stoves,212364,units, +482,2018,production of microwave ovens,278821,units, +483,2019,production of microwave ovens,208263,units, +484,2020,production of microwave ovens,209347,units, +485,2021,production of microwave ovens,558335,units, +486,2022,production of microwave ovens,481035,units, +487,2018,production of heaters and stoves,667734,units, +488,2019,production of heaters and stoves,640246,units, +489,2020,production of heaters and stoves,562751,units, +490,2021,production of heaters and stoves,786012,units, +491,2022,production of heaters and stoves,734502,units, +492,2018,production of refrigerators,678017,units, +493,2019,production of refrigerators,574477,units, +494,2020,production of refrigerators,623780,units, +495,2021,production of refrigerators,878539,units, +496,2022,production of refrigerators,978987,units, +497,2018,production of freezers,134632,units, +498,2019,production of freezers,84733,units, +499,2020,production of freezers,108009,units, +500,2021,production of freezers,180311,units, +501,2022,production of freezers,201273,units, +502,2018,production of washing machine,894131,units, +503,2019,production of washing machine,855826,units, +504,2020,production of washing machine,816538,units, +505,2021,production of washing machine,1065556,units, +506,2022,production of washing machine,1127358,units, +507,2018,production of clothes dryer,353657,units, +508,2019,production of clothes dryer,275341,units, +509,2020,production of clothes dryer,252052,units, +510,2021,production of clothes dryer,304531,units, +511,2022,production of clothes dryer,309169,units, +512,2018,production of heaters,146421,units, +513,2019,production of heaters,127578,units, +514,2020,production of heaters,103705,units, +515,2021,production of heaters,138929,units, +516,2022,production of heaters,141104,units, +517,2018,production of gas water heaters,426948,units, +518,2019,production of gas water heaters,401998,units, +519,2020,production of gas water heaters,392724,units, +520,2021,production of gas water heaters,526515,units, +521,2022,production of gas water heaters,514996,units, +522,2018,production of electric water heaters,332337,units, +523,2019,production of electric water heaters,372538,units, +524,2020,production of electric water heaters,319233,units, +525,2021,production of electric water heaters,496826,units, +526,2022,production of electric water heaters,607817,units, +527,2018,production of air conditioners,1177977,units, +528,2019,production of air conditioners,785297,units, +529,2020,production of air conditioners,884835,units, +530,2021,production of air conditioners,1421417,units, +531,2022,production of air conditioners,1303595,units, +532,2018,production of automobiles and utility vehicles,466649,units, +533,2019,production of automobiles and utility vehicles,314787,units, +534,2020,production of automobiles and utility vehicles,257187,units, +535,2021,production of automobiles and utility vehicles,434753,units, +536,2022,production of automobiles and utility vehicles,536893,units, +537,2018,production of motorcycles,530807,units, +538,2019,production of motorcycles,245588,units, +539,2020,production of motorcycles,243158,units, +540,2021,production of motorcycles,407778,units, +541,2022,production of motorcycles,458367,units, +542,2018,production of cellphones,8038092,units, +543,2019,production of cellphones,7229285,units, +544,2020,production of cellphones,6303851,units, +545,2021,production of cellphones,9911496,units, +546,2022,production of cellphones,10021943,units, +547,2018,production of televisions,3290131,units, +548,2019,production of televisions,1715145,units, +549,2020,production of televisions,2085509,units, +550,2021,production of televisions,2698808,units, +551,2022,production of televisions,3205901,units, diff --git a/global-api/importer/datasource_seeder/README.md b/global-api/importer/datasource_seeder/README.md index c1e69af1e..1631f30cd 100644 --- a/global-api/importer/datasource_seeder/README.md +++ b/global-api/importer/datasource_seeder/README.md @@ -12,11 +12,12 @@ psql -U ccglobal -d ccglobal -f import_datasource_seeder.sql - `datasource_id`: unique UUID for the datasource - `publisher_id`: abbreviation of the original name of the datasource (eg: EPA) -- `name`: complete name of the datasource (eg: Environmental Protection Agency) -- `description`: brief description of the dataset from the datasource +- `datasource_name`: complete name of the datasource (eg: Environmental Protection Agency) +- `dataset_name`: dataset name assign after transformation phase (eg. Manufacturing Industries and Construction Direct Emitters reported in the Greenhouse Gas Reporting Program) +- `dataset_description`: brief description of the dataset from the datasource - `source_type`: should always be set to `third_party` for the global API. This is set to `user` for user-supplied data. - `access_type`: the type of access the data (eg: free, paid, etc) -- `URL`: the link where the data was accessed +- `dataset_url`: the link where the data was accessed - `geographical_location`: it contains the geographical coverage of the data (eg: AR for Argentina data, EARTH for international datasources with global coverage) - `start_year`: data start date - `end_year`: data end date @@ -26,9 +27,12 @@ psql -U ccglobal -d ccglobal -f import_datasource_seeder.sql - `language`: original language of the dataset - `accessibility`: if this data source can be publicly accessed or requires special access privileges (e.g. `public`, `private`, `paid`) - `data_quality`: quality of the data based on the GPC classification (low, medium, high) -- `notes`: extra information about the dataset (eg: brief description of the methodology applied to obtain emission values when the raw data is activity data) +- `notes`: extra information about the dataset - `units`: units of the emissions -- `methodology_url`: link to the methodology on how the data was obtained by the source +- `methodology_description`: description of the methodology on how the data was obtained by the source +- `methodology_url`: link to the methodology on how the data was obtained by the source (when it is available) +- `transformation_description`: the type of transformation that has been done to the raw data, the assumptions that were made, emission factors that were applied, etc - `retrieval_method`: method used by CityCatalyst to access the data from the database - `api_endpoint`: Global API endpoint to access the data -- `gpc_reference_number`: Sub-sector reference number from the Global Protocol for Community-Scale Greenhouse Gas Emission Inventories (GPC) +- `gpc_reference_number`: sub-sector reference number from the Global Protocol for Community-Scale Greenhouse Gas Emission Inventories (GPC) +- `scope`: the scope for which it includes data within the subsector diff --git a/global-api/importer/datasource_seeder/datasource_seeder.csv b/global-api/importer/datasource_seeder/datasource_seeder.csv index bb9f9c886..0b24302a7 100644 --- a/global-api/importer/datasource_seeder/datasource_seeder.csv +++ b/global-api/importer/datasource_seeder/datasource_seeder.csv @@ -1,36 +1,50 @@ -datasource_id,publisher_id,name,description,source_type,access_type,url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_url,retrieval_method,api_endpoint,gpc_reference_number -143F3378-17E7-4732-BF17-4253160A7CFE,EPA,Environmental Protection Agency - Fuel combustion by Manufactoring industries and construction,EPA data on emissions from fuel combusion within the city boundary,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.3.1 -06BB5C1D-E554-40D7-B619-DA768A5FD607,EPA,Environmental Protection Agency - Energy used in power plant auxiliary operations,EPA data for emissions from energy used in power plant auxiliary operations within the city boundary,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.4.1 -C309DE81-6D75-4782-98B0-A9229D43F042,EPA,Environmental Protection Agency - Solid waste in landfills,EPA data for solid waste in landfills inside the city boundary,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.1.1 -8F3E7542-3C50-4E33-B2F7-57F326CBF9A6,EPA,Environmental Protection Agency - Energy generation supplied to the grid,EPA data for energy generation supplied to the grid,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.4.4 -C57F697D-2659-450E-BAF6-6F142D18A9AF,EPA,Environmental Protection Agency - Industrial processes,EPA data for industrial processes occuring within the city boundary,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,IV.1 -930F05CF-1796-4E25-B391-686BEA746A88,EPA,Environmental Protection Agency - Solid waste treatment,EPA data for solid waste treatment,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.3.1 -0D7F6F31-D483-4170-B36C-C9CFC0434A09,EPA,Environmental Protection Agency - Fugitive emissions of natural gas,EPA data for fugitive emissions of natural gas,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.8.1 -4E235B19-E4FD-4E64-A674-9ED9D9CBA9AA,EPA,Environmental Protection Agency - Fugitive emissions of coal,EPA data for fugitive emissions of coal,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.7.1 -B7BCFC69-3E7F-4B5B-A7BE-B8C945BE073F,EPA,Environmental Protection Agency - Wastewater treatment,EPA data for wastewater treatment,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.4.1 -D213BD2F-0164-4411-84BC-1339A9D7EB94,EPA,Environmental Protection Agency - Non-specifed fuel combustion,EPA data for non-specified fuel combustion,third_party,free,https://www.epa.gov/,EARTH,2019,2022,2023,annual,point source,en,,high,Initial import,tonnes,https://www.epa.gov/,global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.6.1 -124A1F4B-13FD-439B-9175-A8C40CC36E79,IEA,International Energy Agency - Energy generation supplied to the grid,IEA national emissions data for energy generation supplied to the grid,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.4.4 -1087D232-BC25-498B-BE38-92DC330F0B15,IEA,International Energy Agency - Off-road grid energy consumption,IEA national emissions data for grid energy used for off-road transportation,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,II.5.2 -D00A84CE-858E-462C-90D3-61D7BC728E30,IEA,International Energy Agency - On-road grid energy consumption,IEA national emissions data for grid data for on-road transportation,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,II.1.2 -AD25F669-FC74-46D3-9E6E-EF92CD0079A5,IEA,International Energy Agency - Power plant auxiliary operations grid energy consumption,IEA national emissions data for power plant auxiliary emissions,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.4.2 -A284E16D-F04E-46C9-A977-8BDDD396F1FB,IEA,International Energy Agency - Residential grid energy consumption,IEA national emissions data for residential use of grid-supplied emissions within the city boundary,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.1.2 -CAD04116-1B60-4290-A158-85F4B2BCED28,IEA,International Energy Agency - Industrial grid energy consumption,IEA national emissions data for industrial use of grid-supplied energy,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.3.2 -F70577EF-3E87-4750-BB48-DF48899B040E,IEA,International Energy Agency - Commercial grid energy consumption,IEA national emissions data for commercial use of grid-supplied energy,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,https://www.iea.org/statistics/co2emissions/,global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.2.2 -497e10f2-c3f3-3b1a-ba35-707edff58858,ClimateTRACE,ClimateTRACE Road Transportation Emissions,Hybrid emissions estimate model with two parts. 1. ML models trained to predict road transport activity 2. emission factors pipeline to convert activity to emissions.,third_party,globalapi,https://climatetrace.org/,EARTH,2021,2021,2021,annual,city,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Transportation/Transportation%20Sector-%20Road%20transportation%20(asset)%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,II.1.1 -c7c660e4-56ca-3c42-96d4-6525d2a8f6cc,ClimateTRACE,ClimateTRACE Oil and Gas Refining Emissions,ClimateTRACE uses a hybrid model to estimate emissions globally,third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Fossil%20fuel%20operations/Fossil%20Fuel%20Operations%20sector-%20Oil%20and%20Gas%20Production%20and%20Transport%20Oil%2C%20and%20Gas%20Refining%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,I.4.1 -7feeb3b0-a896-3481-8c05-8d31464dcede,ClimateTRACE,ClimateTRACE Oil and Gas Production and Transport Emissions,ClimateTRACE uses a hybrid model to estimate emissions globally,third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Fossil%20fuel%20operations/Fossil%20Fuel%20Operations%20sector-%20Oil%20and%20Gas%20Production%20and%20Transport%20Oil%2C%20and%20Gas%20Refining%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,I.8.1 -d58b08f3-efdb-3f2d-9320-cea8c763d05a,ClimateTRACE,ClimateTRACE Coal Mining Emissions,Estimate emissions from mining and quarrying extraction on a statistical basis by taking production numbers at national and facility level and applying specific emissions factors.,third_party,globalapi,https://climatetrace.org/,EARTH,2021,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Fossil%20fuel%20operations/Fossil%20Fuel%20Operations%20sector-%20Coal%20mining%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,I.7.1 -4fa3124f-cb69-300d-964f-57d63b04d46e,ClimateTRACE,ClimateTRACE International Aviation Emissions,Emissions estimated based on fuel consumption.,third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Transportation/Transportation%20sector-%20Domestic%20and%20International%20Aviation%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,II.4.3 -d8bf703a-0b3f-305d-b2a0-6d1c9419044e,ClimateTRACE,ClimateTRACE Domestic Aviation Emissions,Emissions estimated based on fuel consumption.,third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Transportation/Transportation%20sector-%20Domestic%20and%20International%20Aviation%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,II.4.1 -3b4cf72b-3bf0-32e3-af14-9dc0a05874d5,ClimateTRACE,ClimateTRACE Solid Waste Disposal Emissions,ClimateTRACE sought to combine the best available sources into a model that could be deployed globally to estimate emissions.,third_party,globalapi,https://climatetrace.org/,EARTH,2021,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Waste/Waste%20Sector-%20Solid%20Waste%20Disposal%20(asset)%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,III.1.1 -e6d533a4-0020-30bc-bbac-90627e499663,ClimateTRACE,ClimateTRACE Manure Management Emissions,"Approach relies on the hypothesis that beef or daily facility area size can be used as a predictor to estimate the total cattle population, which can then be used to estimate manure management emissions.",third_party,globalapi,https://climatetrace.org/,EARTH,2020,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Agriculture/Agriculture%20sector-%20Enteric%20fermentation%20and%20Manure%20management%20(asset)%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,V.1 -3b18e434-cd0e-3686-9537-6ae38ccb5c0c,ClimateTRACE,ClimateTRACE Enteric Fermentation Emissions,"Approach relies on the hypothesis that beef or daily facility area size can be used as a predictor to estimate the total cattle population, which can then be used to estimate enteric fermentation emissions.",third_party,globalapi,https://climatetrace.org/,EARTH,2020,2021,2021,annual,point source,en,,medium,,kg,https://github.com/climatetracecoalition/methodology-documents/blob/main/Agriculture/Agriculture%20sector-%20Enteric%20fermentation%20and%20Manure%20management%20(asset)%20Methodology.pdf,global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,V.1 -3bfaac71-953d-354b-8e0c-dc3bb8ec34c3,Joint Research Centre,EDGARv7.0 Manufacturing Combustion Emissions,,third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2021,2021,annual,0.1 degree,en,,medium,,kg,https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,I.3.1 -9e7138c0-510a-3f17-9464-c245842d9862,Joint Research Centre,EDGARv7.0 Road Transportation Emissions (No Resuspension),,third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2021,2021,annual,0.1 degree,en,,medium,,kg,https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,II.1.1 -66403f84-41cf-4c24-8dd8-ae980e8ad687,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Electric energy users by tariff category, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,Emissions data calculated using the energy consumed methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.1.2 -ef052fea-4b6c-4421-8911-c31e01f0cc89,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Electric energy users by tariff category, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,Emissions data calculated using the energy consumed methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.2.2 -56eab4cc-b26e-44a6-b9ac-65815736b6f0,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Electric energy users by tariff category, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,Emissions data calculated using the energy consumed methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.5.2 -ba4e85e8-8292-4a5d-93a7-2cec57e7dee7,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Electric energy users by tariff category, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,Emissions data calculated using the energy consumed methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.2 -ff4c21b4-574b-4f4d-bd19-7d3f9dda9093,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Gas distributed by type of user, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,Emissions data calculated using the fuel sales methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.1.1 -ae849774-309e-4091-8461-1be91db5a958,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Gas distributed by type of user, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,Emissions data calculated using the fuel sales methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.2.1 -70f80ab9-622a-4665-8176-e4e21bf9a634,deie_mendoza,Direccion de Estadistica e Investigaciones Economicas,"Gas distributed by type of user, according to year. Municipal Statistical System based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,Emissions data calculated using the fuel sales methodology according to the sector proposed by GPC. AR5 emission factors for Argentina.,kg,https://deie.mendoza.gov.ar/#!/,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.1 +datasource_id,publisher_id,datasource_name,dataset_name,dataset_description,source_type,access_type,dataset_url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_description,methodology_url,transformation_description,retrieval_method,api_endpoint,gpc_reference_number,scope +143F3378-17E7-4732-BF17-4253160A7CFE,EPA,Environmental Protection Agency,Manufacturing Industries and Construction Direct Emitters reported in the Greenhouse Gas Reporting Program," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 +06BB5C1D-E554-40D7-B619-DA768A5FD607,EPA,Environmental Protection Agency,Power Plant Auxiliary Operations as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.4.1,1 +C309DE81-6D75-4782-98B0-A9229D43F042,EPA,Environmental Protection Agency,Solid Waste emissions by landfills as Direct Emitters reported in the Greenhouse Gas Reporting Program," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.1.1,1 +8F3E7542-3C50-4E33-B2F7-57F326CBF9A6,EPA,Environmental Protection Agency,Power Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.4.4,1 +C57F697D-2659-450E-BAF6-6F142D18A9AF,EPA,Environmental Protection Agency,Industries as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,Process emissions are determined through mass balance approaches or emission factors specific to each source category.,https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,IV.1,1 +930F05CF-1796-4E25-B391-686BEA746A88,EPA,Environmental Protection Agency,Solid Waste Treatment Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.3.1,1 +0D7F6F31-D483-4170-B36C-C9CFC0434A09,EPA,Environmental Protection Agency,Fugitive emissions of Natural Gas as Direct Emitters reported in the Greenhouse Gas Reporting Program," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,source category. Suppliers report emissions based on mass balance methods or direct measurement of carbon quantities. CO2 injection facilities report CO2 quantities received for injection and must develop EPA-approved monitoring plans.,https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.8.1,1 +4E235B19-E4FD-4E64-A674-9ED9D9CBA9AA,EPA,Environmental Protection Agency,Fugitive emissions of coal as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,source category. Suppliers report emissions based on mass balance methods or direct measurement of carbon quantities. CO2 injection facilities report CO2 quantities received for injection and must develop EPA-approved monitoring plans.,https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.7.1,1 +B7BCFC69-3E7F-4B5B-A7BE-B8C945BE073F,EPA,Environmental Protection Agency,Wastewater Treatment Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.4.1,1 +D213BD2F-0164-4411-84BC-1339A9D7EB94,EPA,Environmental Protection Agency,Non-specifed sources as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.6.1,1 +124A1F4B-13FD-439B-9175-A8C40CC36E79,IEA,International Energy Agency,Energy generation supplied to the grid reported by the International Energy Agency ,"Electricity and heat production contains the sum of emissions from electricity production, combined heat and power plants and heat plants. It is the sum of main activity producers and autoproducers. Emissions from own on-site use of fuel are included. ",third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Electricity and heat production"" as 'I.4.4'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.4.4,1 +1087D232-BC25-498B-BE38-92DC330F0B15,IEA,International Energy Agency,Off-road grid energy consumption reported by the International Energy Agency ,Includes all emissions from transport not elsewhere specified. International marine bunkers and international aviation bunkers are not included in transport at a country or regional level (except for World transport emissions). And this flow is included for CO2 emissions from fuel combustion and excludes non-CO2 greenhouse gases. ,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Other Transport"" as 'I.5.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,II.5.1,1 +D00A84CE-858E-462C-90D3-61D7BC728E30,IEA,International Energy Agency,On-road grid energy consumption reported by the International Energy Agency ,"Road contains the emissions arising from fuel use in road vehicles, including the use of agricultural vehicles on highways. This corresponds to the IPCC Source/Sink Category 1 A 3 b. Excludes emissions from military consumption as well as motor gasoline used in stationary engines and diesel oil for use in tractors that are not for highway use. ",third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Road Transport"" as 'II.1.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,II.1.1,1 +AD25F669-FC74-46D3-9E6E-EF92CD0079A5,IEA,International Energy Agency,Power plant auxiliary operations grid energy consumption reported by the International Energy Agency ,"Electricity and heat production contains the sum of emissions from electricity production, combined heat and power plants and heat plants. It is the sum of main activity producers and autoproducers. Emissions from own on-site use of fuel are included. ",third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Other Energy Industry Own Use"" as 'I.4.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.4.1,1 +A284E16D-F04E-46C9-A977-8BDDD396F1FB,IEA,International Energy Agency,Residential grid energy consumption reported by the International Energy Agency ,Residential contains all emissions from fuel combustion in households. This corresponds to IPCC Source/Sink Category 1 A 4 b. ,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Residential"" as 'I.1.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.1.1,1 +CAD04116-1B60-4290-A158-85F4B2BCED28,IEA,International Energy Agency,Manufacturing industries and construction grid energy consumption reported by the International Energy Agency ,"Manufacturing and construction industries contribute to emissions through fuel combustion, classified under IPCC Source/Sink Category 1 A 2. The 2006 GLs include emissions from industry autoproducers generating electricity and/or heat in this category. IEA data lacks the specific end-use breakdown, resulting in unallocated autoproducers. ",third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Manufactoring Industries and Construction"" as 'I.3.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.3.1,1 +F70577EF-3E87-4750-BB48-DF48899B040E,IEA,International Energy Agency,Commercial grid energy consumption reported by the International Energy Agency ,"Commercial and public services includes emissions from all activities of ISIC Rev. 4 Divisions 33, 36-39, 45-47, 52, 53, 5556, 58-66, 68-75, 77-82, 84 (excluding Class 8422), 85-88, 9096 and 99. ",third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Commercial and Public Services"" as 'I.2.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.2.1,1 +497e10f2-c3f3-3b1a-ba35-707edff58858,ClimateTRACE,ClimateTRACE,Road Transportation Estimated Emissions ,"GHG emission estimatations from on-road transportation, integrating data on road segments, vehicle distribution, and fuel types for environmental impact assessments.",third_party,globalapi,https://climatetrace.org/,EARTH,2021,2021,2021,annual,city,en,,medium,,kg,"The on-road transportation emissions methodology involves classifying road segments, considering factors like road type from OpenStreetMap data. Vehicle distribution by type and fuel efficiency is determined using registration data, kilometers traveled, and US FHWA estimates. Fuel types and efficiencies are analyzed based on gasoline, diesel, and alternative fuels, using U.S. EPA emissions factors. Machine learning models assist in estimating traffic volume per road segment, contributing to emissions calculations. Uncertainty estimates are provided, with ongoing efforts to improve accuracy.",https://github.com/climatetracecoalition/methodology-documents/blob/main/Transportation/Transportation%20Sector-%20Road%20transportation%20(asset)%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 +c7c660e4-56ca-3c42-96d4-6525d2a8f6cc,ClimateTRACE,ClimateTRACE,Oil and Gas Refining Estimated Emissions ,"Oil and Gas Refining Estimated Emissions- Point source GHG estimates using the OCI+ tool, incorporating models like OPGEE for upstream activities and PRELIM for refining.",third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,"Climate TRACE utilizes the OCI+ tool, incorporating models like OPGEE and PRELIM, to estimate emissions. PRELIM assesses emissions from midstream oil refining, considering various sources such as heat, steam, and hydrogen, along with non-GHG gases. Key inputs like crude assays and refinery configurations are used to estimate emissions intensities, with throughput and capacity factored in to derive emissions estimates. For US refineries, increased data availability allows for more detailed categorization. Confidence categories and uncertainty analysis are applied to provide a measure of data quality and variation in estimates.",https://github.com/climatetracecoalition/methodology-documents/blob/main/Fossil%20fuel%20operations/Fossil%20Fuel%20Operations%20sector-%20Oil%20and%20Gas%20Production%20and%20Transport%20Oil%2C%20and%20Gas%20Refining%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,I.4.1,1 +7feeb3b0-a896-3481-8c05-8d31464dcede,ClimateTRACE,ClimateTRACE,Oil and Gas Production and Transport Estimated Emissions,"Oil and Gas Production and Transport Estimated Emissions - Point source GHG estimates using OCI+ tool, covering upstream to downstream operations, incorporating over 100 emission sources and integrating ground truthing and VIIRS remote sensing data for precision.",third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,"The methodology for calculating emissions from oil and gas production and transport involves using the OCI+ tool, which consists of three models: OPGEE for upstream operations, PRELIM for midstream refining, and OPEM for downstream consumption. OPGEE focuses on all stages of producing and transporting crude hydrocarbons and gas to end-use points. It accounts for over 100 emission sources, including flaring, venting, fugitive losses, and more. Key inputs such as field characteristics, production volumes, and transport methods are considered, integrating ground truthing and remote sensing data like VIIRS for accurate estimations. ",https://github.com/climatetracecoalition/methodology-documents/blob/main/Fossil%20fuel%20operations/Fossil%20Fuel%20Operations%20sector-%20Oil%20and%20Gas%20Production%20and%20Transport%20Oil%2C%20and%20Gas%20Refining%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,I.8.1,1 +d58b08f3-efdb-3f2d-9320-cea8c763d05a,ClimateTRACE,ClimateTRACE,Coal Mining Estimated Emissions,Estimate emissions from mining and quarrying extraction on a statistical basis by taking production numbers at national and facility level and applying specific emissions factors,third_party,globalapi,https://climatetrace.org/,EARTH,2021,2021,2021,annual,point source,en,,medium,,kg,"The methodology for calculating coal mine emissions involves utilizing data from the Global Coal Mine Tracker, which includes production and capacity data for coal mines globally. Methane emissions are estimated based on methane gas content and capacity factors obtained from literature. The methane gas content is converted to emissions using a conversion factor provided by the EPA. The emissions factor is calculated based on the methane gas content and an average emission factor coefficient. The emissions are then estimated for each mine using the emissions factor and activity data. Finally, emissions data is reported on the Climate TRACE website in terms of methane (CH4) and CO2 equivalent (CO2e) values.",https://github.com/climatetracecoalition/methodology-documents/blob/main/Fossil%20fuel%20operations/Fossil%20Fuel%20Operations%20sector-%20Coal%20mining%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,I.7.1,1 +4fa3124f-cb69-300d-964f-57d63b04d46e,ClimateTRACE,ClimateTRACE,International Aviation Estimated Emissions,"Point source estimates of GHG emissions from international aviation, employing the ICAO Tier 3a methodology, Version 11 of the ICAO Carbon Emissions Calculator, and OAG Historical Flight Status Data to calculate emissions based on fuel consumption, including CO2, CH4, and N2O, and attributing them to countries and airports.",third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,"To calculate international aviation emissions, Climate TRACE utilizes the ICAO methodology, employing a Tier 3a approach defined by the IPCC. They use Version 11 of the ICAO Carbon Emissions Calculator Methodology along with OAG Historical Flight Status Data. The methodology estimates emissions based on fuel consumption, including CO2, CH4, and N2O. Flight data, aircraft types, and fuel consumption factors are used to estimate fuel burned for each trip. Emissions are attributed either fully to a country for domestic flights or divided equally between countries for international flights. Finally, emissions data is aggregated by country and airport for reporting.",https://github.com/climatetracecoalition/methodology-documents/blob/main/Transportation/Transportation%20sector-%20Domestic%20and%20International%20Aviation%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,II.4.3,3 +d8bf703a-0b3f-305d-b2a0-6d1c9419044e,ClimateTRACE,ClimateTRACE,Domestic Aviation Estimated Emissions,"Point source estimates of GHG emissions from domestic aviation, utilizing ICAO's Tier 3a approach, Carbon Emissions Calculator Methodology, and OAG Historical Flight Status Data from January 2015 to June 2023, attributing emissions fully to the country of origin based on detailed aircraft movement data and fuel consumption factors for accurate estimations.",third_party,globalapi,https://climatetrace.org/,EARTH,2015,2021,2021,annual,point source,en,,medium,,kg,"To calculate domestic aviation emissions, Climate TRACE uses ICAO's Tier 3a approach, considering detailed aircraft movement data. They employ ICAO's Carbon Emissions Calculator Methodology and OAG Historical Flight Status Data from January 2015 to June 2023. This methodology estimates emissions based on fuel consumption, including CO2, CH4, and N2O. They calculate emissions for each flight between origin and destination pairs, excluding specific aircraft types, adjusting for factors like stacking and weather. Fuel consumption is estimated using ICAO's data, and emissions are attributed fully to the country of origin.",https://github.com/climatetracecoalition/methodology-documents/blob/main/Transportation/Transportation%20sector-%20Domestic%20and%20International%20Aviation%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,II.4.1,1 +3b4cf72b-3bf0-32e3-af14-9dc0a05874d5,ClimateTRACE,ClimateTRACE,Solid Waste Disposal Estimated Emissions,"Point source estimates of GHG emissions from solid waste disposal, employing a Bayesian statistical approach, considering waste site capacities, income groups, and regions for robust methane emission predictions.",third_party,globalapi,https://climatetrace.org/,EARTH,2021,2021,2021,annual,point source,en,,medium,,kg,"This methodology involves a Bayesian statistical approach, implemented using PyMC3 in Python. The process begins with defining hierarchical regression structures to predict methane emissions from waste sites based on their capacities. Parameters are initialized with priors selected through prior predictive simulations and model cross-validation. The core of the model entails regressing the mean emissions of waste sites as a function of observed capacities, utilizing coefficients specific to income groups or regions. Posterior predictions are then generated by sampling from the posterior distributions on the parameters, with predicted emissions simulated for each site. To prevent unrealistic predictions, a ""saturation effect"" is integrated into the model, capping predicted emissions at reasonable values. This methodology operates in a two-stage process, where the emissions prediction model serves as the second stage of a composite model, with the first stage predicting waste capacities from areas. This approach allows for robust modeling of methane emissions from solid waste sites while considering variability within and between income groups or regions",https://github.com/climatetracecoalition/methodology-documents/blob/main/Waste/Waste%20Sector-%20Solid%20Waste%20Disposal%20(asset)%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,III.1.1,1 +e6d533a4-0020-30bc-bbac-90627e499663,ClimateTRACE,ClimateTRACE,Manure Management Estimated Emissions,"Point source estimates of GHG emissions from beef and dairy feedlots, employing IPCC equations, default regional emission factors, and Climate Trace's approach incorporating temperature data, facility-level population counts, and regional manure management variations.",third_party,globalapi,https://climatetrace.org/,EARTH,2020,2021,2021,annual,point source,en,,medium,,kg,"The manure management calculation process involves the estimation of methane and nitrous oxide emissions from beef and dairy feedlots using IPCC equations and default regional emission factors. Climate Trace's approach incorporates temperature data, ground-truthed facility-level population counts, and regional variations in manure management practices to develop emission estimates. These estimates are presented for different regions, highlighting the significant contributions of beef and dairy feedlots to greenhouse gas emissions",https://github.com/climatetracecoalition/methodology-documents/blob/main/Agriculture/Agriculture%20sector-%20Enteric%20fermentation%20and%20Manure%20management%20(asset)%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,V.1,1 +3b18e434-cd0e-3686-9537-6ae38ccb5c0c,ClimateTRACE,ClimateTRACE,Enteric Fermentation Estimated Emissions,"Point source estimates of GHG emissions from beef and dairy feedlots, utilizing advanced spatial data processing techniques and machine learning algorithms to predict methane and nitrous oxide emissions, considering factors such as cattle populations, feedlot area size, and regional variations in manure management practices, with accuracy validated through statistical measures.",third_party,globalapi,https://climatetrace.org/,EARTH,2020,2021,2021,annual,point source,en,,medium,,kg,"The enteric fermentation calculation process involves the utilization of advanced spatial data processing techniques and machine learning algorithms to estimate methane and nitrous oxide emissions from beef and dairy feedlots. This method, developed by Climate Trace, involves spatially joining data, adding ancillary information, and performing data cleaning to create training datasets for model development. The models developed utilize linear regression to predict cattle populations at individual facilities, with separate models for beef and dairy feedlots, while also considering factors such as feedlot area size and regional variations in manure management practices. The accuracy of the models is evaluated through various statistical measures, and emission estimates are provided for different regions",https://github.com/climatetracecoalition/methodology-documents/blob/main/Agriculture/Agriculture%20sector-%20Enteric%20fermentation%20and%20Manure%20management%20(asset)%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,V.1,1 +3bfaac71-953d-354b-8e0c-dc3bb8ec34c3,EDGAR,Emissions Database for Global Atmospheric Research,Grid Manufacturing Combustion Estimated Emissions,"Grid cell estimates of GHG emissions (CO2, CH4, N2O) from manufacturing combustion, derived from EDGARv7.0 annual gridmaps (1970-2022) expressed in ton substance per 0.1-degree x 0.1-degree per year and sector specification using IPCC 1996 and 2006 codes",third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2021,2021,annual,0.1 degree,en,,medium,,kg,"The emission calculation method utilizes a standardized approach across all countries, employing technology-based emission factors to estimate annual emissions for each compound and sector. This involves multiplying country-specific activity data with the mix of technologies and their associated abatement measures, considering both emission factors and reductions due to installed abatement measures. Spatial allocation of emissions is achieved through a grid system, utilizing geographical databases and spatial proxy datasets to distribute emissions across a country's area based on relevant spatial factors such as population density and land use.",https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,"Utilizing the central latitude and longitude coordinates of the grid, the assignment of the corresponding city locode is performed. Following identification, the aggregation of all the grid cells within the city boundary ensues to derive the total sector emissions. In instances where the grid extends beyond the city limits, the proportional fraction is calculated, and that specific emission fraction is assigned to the respective city.",global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 +9e7138c0-510a-3f17-9464-c245842d9862,EDGAR,Emissions Database for Global Atmospheric Research,Grid Road Transportation Estimated Emissions (No Resuspension),"Grid cell estimates of GHG emissions from road transportation, employing a standardized method utilizing technology-based emission factors and spatial allocation through a grid system, considering country-specific activity data and relevant spatial factors.",third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2021,2021,annual,0.1 degree,en,,medium,,kg,"The emission calculation method utilizes a standardized approach across all countries, employing technology-based emission factors to estimate annual emissions for each compound and sector. This involves multiplying country-specific activity data with the mix of technologies and their associated abatement measures, considering both emission factors and reductions due to installed abatement measures. Spatial allocation of emissions is achieved through a grid system, utilizing geographical databases and spatial proxy datasets to distribute emissions across a country's area based on relevant spatial factors such as population density and land use.",https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,"Utilizing the central latitude and longitude coordinates of the grid, the assignment of the corresponding city locode is performed. Following identification, the aggregation of all the grid cells within the city boundary ensues to derive the total sector emissions. In instances where the grid extends beyond the city limits, the proportional fraction is calculated, and that specific emission fraction is assigned to the respective city.",global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 +66403f84-41cf-4c24-8dd8-ae980e8ad687,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Residential electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for residential buildings according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.1.2,2 +ef052fea-4b6c-4421-8911-c31e01f0cc89,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Commercial electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for commercial and institutional buildings according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.2.2,2 +56eab4cc-b26e-44a6-b9ac-65815736b6f0,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Agriculture activities electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for agriculture industries according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.5.2,2 +ba4e85e8-8292-4a5d-93a7-2cec57e7dee7,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Manufactoring Industries and Construction electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for manufacturing industries and construction according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.2,2 +ff4c21b4-574b-4f4d-bd19-7d3f9dda9093,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Residential Buildings in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for residential buildings proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.1.1,1 +ae849774-309e-4091-8461-1be91db5a958,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Commercial Buildings in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for commercial buildings proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.2.1,1 +70f80ab9-622a-4665-8176-e4e21bf9a634,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Manufactoring Industries and Construction in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for manufacturing industries and construction proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 +de8dc6b3-6c78-4fc7-9b4a-df24a2326634,Google EIE,Google Environmental Insights Explorer,On-road transportation estimated emissions,Estimation of On-road transportation emissions per kilometer traveled and number of trips reported by Google EIE,third_party,private,https://insights.sustainability.google/,EARTH,2018,2022,2022,annual,city,en,,medium,,kg,"Google Maps utilizes user trip data to deduce city traffic, travel modes, and distances traveled. This is then paired with vehicle types and average fuel consumption estimates for each mode",https://insights.sustainability.google/,"Adaptation of the raw format to the scheme required by the GPC, renaming of variables and assignment of the GPC reference number",global_api,https://ccglobal.openearth.dev/api/v0/source/Google EIE/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 +fdf77b4a-5fb8-4b33-92b5-07b92f839c9b,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities Residential Energy,Estimation of residential energy emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,I.1.1,1 +e2143a90-0e5f-48fa-9a1d-85505f90b95f,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities On-Road Transportation,Estimation of on-road transportation emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 +1007a979-3c3c-4115-b61a-c85e3e39b165,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities Aviation,Estimation of aviation emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,II.4.1,1 diff --git a/global-api/importer/datasource_seeder/import_datasource_seeder.sql b/global-api/importer/datasource_seeder/import_datasource_seeder.sql index 048b7e5bf..27c66a554 100644 --- a/global-api/importer/datasource_seeder/import_datasource_seeder.sql +++ b/global-api/importer/datasource_seeder/import_datasource_seeder.sql @@ -1,4 +1,7 @@ -CREATE TEMP TABLE IF NOT EXISTS datasource_staging (LIKE datasource INCLUDING ALL); + +DROP TABLE IF EXISTS datasource_staging; + +CREATE TEMP TABLE datasource_staging (LIKE datasource INCLUDING ALL); /* Clear the staging table */ @@ -6,21 +9,22 @@ TRUNCATE datasource_staging; /* Load the staging table from the transformed file */ -\copy datasource_staging (datasource_id,publisher_id,name,description,source_type,access_type,url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_url,retrieval_method,api_endpoint,gpc_reference_number) from 'datasource_seeder.csv' with CSV HEADER; +\copy datasource_staging (datasource_id,publisher_id,datasource_name,dataset_name,dataset_description,source_type,access_type,dataset_url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_description,methodology_url,transformation_description,retrieval_method,api_endpoint,gpc_reference_number,scope) from 'datasource_seeder.csv' with CSV HEADER; /* Update the main table with the staging table */ -INSERT INTO datasource (datasource_id,publisher_id,name,description,source_type,access_type,url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_url,retrieval_method,api_endpoint,gpc_reference_number) -SELECT datasource_id,publisher_id,name,description,source_type,access_type,url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_url,retrieval_method,api_endpoint,gpc_reference_number +INSERT INTO datasource (datasource_id,publisher_id,datasource_name,dataset_name,dataset_description,source_type,access_type,dataset_url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_description,methodology_url,transformation_description,retrieval_method,api_endpoint,gpc_reference_number,scope) +SELECT datasource_id,publisher_id,datasource_name,dataset_name,dataset_description,source_type,access_type,dataset_url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_description,methodology_url,transformation_description,retrieval_method,api_endpoint,gpc_reference_number,scope FROM datasource_staging ON CONFLICT ON CONSTRAINT datasource_pkey DO UPDATE SET publisher_id = EXCLUDED.publisher_id, - name = EXCLUDED.name, - description = EXCLUDED.description, + datasource_name = EXCLUDED.datasource_name, + dataset_name = EXCLUDED.dataset_name, + dataset_description = EXCLUDED.dataset_description, source_type = EXCLUDED.source_type, access_type = EXCLUDED.access_type, - url = EXCLUDED.url, + dataset_url = EXCLUDED.dataset_url, geographical_location = EXCLUDED.geographical_location, start_year = EXCLUDED.start_year, end_year = EXCLUDED.end_year, @@ -32,10 +36,13 @@ DO UPDATE SET data_quality = EXCLUDED.data_quality, notes = EXCLUDED.notes, units = EXCLUDED.units, + methodology_description = EXCLUDED.methodology_description, methodology_url = EXCLUDED.methodology_url, + transformation_description = EXCLUDED.transformation_description, retrieval_method = EXCLUDED.retrieval_method, api_endpoint = EXCLUDED.api_endpoint, gpc_reference_number = EXCLUDED.gpc_reference_number, + scope = EXCLUDED.scope, modified_date = now(); -DROP TABLE datasource_staging; +DROP TABLE datasource_staging; \ No newline at end of file diff --git a/global-api/importer/google_EIE/README.md b/global-api/importer/google_EIE/README.md new file mode 100644 index 000000000..8dbdc87b0 --- /dev/null +++ b/global-api/importer/google_EIE/README.md @@ -0,0 +1,14 @@ +# Google EIE +Emissions from transportation modes in Mendoza city, Argentina + +1. Extract the activity data from the source + +2. Transform raw data aligned with the global API schema: +```bash +python ./importer/google_EIE/transformation_transportation_Mendoza.py --filepath [path where the raw data is stored] +``` + +3. Extract the activity row from the source: +```bash +psql -U ccglobal -d ccglobal -f ./importer/google_EIE/load_transportation_Mendoza.sql +``` diff --git a/global-api/importer/google_EIE/load_transportation_Mendoza.sql b/global-api/importer/google_EIE/load_transportation_Mendoza.sql new file mode 100755 index 000000000..772681eea --- /dev/null +++ b/global-api/importer/google_EIE/load_transportation_Mendoza.sql @@ -0,0 +1,33 @@ +-- Create a staging table +CREATE TEMP TABLE IF NOT EXISTS transport_MZ_staging (LIKE citywide_emissions INCLUDING ALL); + +-- Clear the staging table +TRUNCATE transport_MZ_staging; + +-- Load the staging table from the downloaded file +\copy transport_MZ_staging (id,source_name,"GPC_refno",city_name,locode,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_mendoza_transportation_EIE.csv' WITH (FORMAT CSV, HEADER); + +-- Update the main table with the staging table +INSERT INTO citywide_emissions (id,source_name,"GPC_refno",city_name,locode,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) + SELECT id,source_name,"GPC_refno",city_name,locode,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + FROM transport_MZ_staging + ON CONFLICT ON CONSTRAINT citywide_emissions_pkey + DO UPDATE SET + id = excluded.id, + source_name = excluded.source_name, + "GPC_refno" = excluded."GPC_refno", + city_name = excluded.city_name, + locode = excluded.locode, + temporal_granularity = excluded.temporal_granularity, + year = excluded.year, + activity_name = excluded.activity_name, + activity_value = excluded.activity_value, + activity_units = excluded.activity_units, + gas_name = excluded.gas_name, + emission_factor_value = excluded.emission_factor_value, + emission_factor_units = excluded.emission_factor_units, + emissions_value = excluded.emissions_value, + emissions_units = excluded.emissions_units; + +-- Drop the staging table +DROP TABLE transport_MZ_staging; \ No newline at end of file diff --git a/global-api/importer/google_EIE/processed_mendoza_transportation_EIE.csv b/global-api/importer/google_EIE/processed_mendoza_transportation_EIE.csv new file mode 100644 index 000000000..55bf2cbc3 --- /dev/null +++ b/global-api/importer/google_EIE/processed_mendoza_transportation_EIE.csv @@ -0,0 +1,46 @@ +id,source_name,GPC_refno,city_name,locode,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units +3e2df1d7-10f9-3529-8e80-9d1541456087,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by AUTOMOBILE transportation mode in IN-BOUNDARY trips,140649795,km,CO2,,,35535978,kg +9d32b9f4-6df5-3e11-b22e-10ed87be247d,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by AUTOMOBILE transportation mode in IN-BOUNDARY trips,127940950,km,CO2,,,32325015,kg +c23181d1-be2b-3d62-93df-10b87723652b,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by AUTOMOBILE transportation mode in IN-BOUNDARY trips,76677722,km,CO2,,,19373066,kg +3ac0f1f9-d6e7-35ac-b555-21ddb8152079,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by AUTOMOBILE transportation mode in IN-BOUNDARY trips,158206538,km,CO2,,,39971790,kg +034bb21a-187c-3364-bdfc-0f1c567bf335,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by AUTOMOBILE transportation mode in IN-BOUNDARY trips,196857658,km,CO2,,,49737215,kg +275ce750-43eb-3922-99a2-fcada5cf08f3,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by AUTOMOBILE transportation mode in INBOUND trips,351472595,km,CO2,,,88801569,kg +e4284082-b51e-3530-8e4b-853bdf11dce5,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by AUTOMOBILE transportation mode in INBOUND trips,277304371,km,CO2,,,70062541,kg +94dfe001-b0c0-3156-b27b-ee615fa9dd48,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by AUTOMOBILE transportation mode in INBOUND trips,153647743,km,CO2,,,38819984,kg +6a7dd54d-0d41-34e4-bd31-855901214609,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by AUTOMOBILE transportation mode in INBOUND trips,302879145,km,CO2,,,76524155,kg +436355f7-3f96-3da9-9e5f-a1c0fe8dcd70,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by AUTOMOBILE transportation mode in INBOUND trips,336064343,km,CO2,,,84908581,kg +2ff1c6c7-8e7d-3554-956f-2066eaab5041,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by AUTOMOBILE transportation mode in OUTBOUND trips,323951085,km,CO2,,,81848101,kg +b6317d4c-6dca-3c88-9f27-82a28e4dfea1,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by AUTOMOBILE transportation mode in OUTBOUND trips,255256742,km,CO2,,,64492081,kg +cdf96d08-44d3-3124-afbe-267c824a5c16,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by AUTOMOBILE transportation mode in OUTBOUND trips,146807871,km,CO2,,,37091851,kg +17ff4d67-b6df-3641-88f5-3701968e8dfc,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by AUTOMOBILE transportation mode in OUTBOUND trips,292873598,km,CO2,,,73996196,kg +8319bc85-b213-34d3-8912-0f2e6110fb44,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by AUTOMOBILE transportation mode in OUTBOUND trips,321700573,km,CO2,,,81279493,kg +adeb7dbe-9358-3781-a3b6-9ca709333780,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by BUS transportation mode in IN-BOUNDARY trips,25084327,km,CO2,,,11842731,kg +8f565b23-3765-35d5-9776-341bfd9b9062,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by BUS transportation mode in IN-BOUNDARY trips,14452240,km,CO2,,,6823144,kg +80b9468a-05de-3b7a-b7cb-279d5fa81759,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by BUS transportation mode in IN-BOUNDARY trips,8717767,km,CO2,,,4115803,kg +835e8e59-d902-381e-8a9f-bc549c8d21b3,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by BUS transportation mode in IN-BOUNDARY trips,15886845,km,CO2,,,7500445,kg +76e06a15-f4ad-389d-a35a-e042eb06b288,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by BUS transportation mode in IN-BOUNDARY trips,18305913,km,CO2,,,8642527,kg +27be198e-b81d-3598-9e3f-26680f66a2d8,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by BUS transportation mode in INBOUND trips,80666417,km,CO2,,,38083967,kg +a13f9b3b-6592-3683-8955-cfb4783b3a7a,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by BUS transportation mode in INBOUND trips,50722728,km,CO2,,,23947050,kg +7c116715-5b94-361e-8ba2-d48497538bf6,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by BUS transportation mode in INBOUND trips,28369734,km,CO2,,,13393827,kg +8e4cbafc-1556-32c6-ae18-9cd81ae6211d,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by BUS transportation mode in INBOUND trips,45158119,km,CO2,,,21319905,kg +3edc73dd-a3be-3a8b-b148-d9399b669349,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by BUS transportation mode in INBOUND trips,41861316,km,CO2,,,19763427,kg +446c5af4-f16a-37db-9514-64607e97c661,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by BUS transportation mode in OUTBOUND trips,76038124,km,CO2,,,35898872,kg +81163da2-64d6-3919-8661-e731b3757bcd,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by BUS transportation mode in OUTBOUND trips,48166948,km,CO2,,,22740423,kg +47c3b76a-273f-3938-b045-7bb8b3ebcc33,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by BUS transportation mode in OUTBOUND trips,26798036,km,CO2,,,12651802,kg +5943a135-8c99-37b3-b99e-e2f7291d346b,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by BUS transportation mode in OUTBOUND trips,39225819,km,CO2,,,18519166,kg +00999491-c9b8-3848-9273-f366dcb16bbd,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by BUS transportation mode in OUTBOUND trips,39844456,km,CO2,,,18811234,kg +7d693432-fb1a-3540-8a1c-88530ac9d8f0,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by MOTORCYCLE transportation mode in IN-BOUNDARY trips,16658158,km,CO2,,,1214612,kg +7be71041-6f83-30a2-ad9a-8bc2f02247c1,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by MOTORCYCLE transportation mode in IN-BOUNDARY trips,17186655,km,CO2,,,1253147,kg +3b090ed6-abbd-3689-b598-ae495d8194e8,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by MOTORCYCLE transportation mode in IN-BOUNDARY trips,11493965,km,CO2,,,838070,kg +68d2257e-bec3-3db1-9f6d-74c257ba4a6c,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by MOTORCYCLE transportation mode in IN-BOUNDARY trips,17298449,km,CO2,,,1261299,kg +f5715be6-a3d7-3206-8f19-72f0e6fbd16f,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by MOTORCYCLE transportation mode in IN-BOUNDARY trips,4887671,km,CO2,,,356380,kg +faec919c-c1d9-3e93-a44a-7edd958fe94f,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by MOTORCYCLE transportation mode in INBOUND trips,19774234,km,CO2,,,1441818,kg +d69e66d2-5a39-33bc-a9ff-e7e2a901b394,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by MOTORCYCLE transportation mode in INBOUND trips,18610991,km,CO2,,,1357001,kg +d0d17ddd-8d3a-3c0d-a87d-febacb7f0880,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by MOTORCYCLE transportation mode in INBOUND trips,12350015,km,CO2,,,900488,kg +bbbc6b3c-c010-3073-9c0d-b0b230c643b6,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by MOTORCYCLE transportation mode in INBOUND trips,35028620,km,CO2,,,2554076,kg +92989755-cb1f-376c-9341-fb6ffc8b0909,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by MOTORCYCLE transportation mode in INBOUND trips,23734070,km,CO2,,,1730545,kg +085e7a67-d751-31e0-8b4e-73afbd225a51,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2022,emissions from VKT by MOTORCYCLE transportation mode in OUTBOUND trips,19301670,km,CO2,,,1407361,kg +4d45c368-7e03-31d8-9337-5517e5c18dac,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2021,emissions from VKT by MOTORCYCLE transportation mode in OUTBOUND trips,18032920,km,CO2,,,1314852,kg +3de09dc9-056f-32f1-bcb3-290d5650d559,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2020,emissions from VKT by MOTORCYCLE transportation mode in OUTBOUND trips,12088568,km,CO2,,,881425,kg +c0ebf67e-5c7b-38f4-949f-64bf71dc5a4f,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2019,emissions from VKT by MOTORCYCLE transportation mode in OUTBOUND trips,33535375,km,CO2,,,2445198,kg +c55bb4ff-ef2f-3ad2-8d7f-2814d1352427,Google EIE,II.1.1,Mendoza,AR MDZ,annual,2018,emissions from VKT by MOTORCYCLE transportation mode in OUTBOUND trips,21005278,km,CO2,,,1531578,kg diff --git a/global-api/importer/google_EIE/transformation_transportation_Mendoza.py b/global-api/importer/google_EIE/transformation_transportation_Mendoza.py new file mode 100644 index 000000000..5352e5f09 --- /dev/null +++ b/global-api/importer/google_EIE/transformation_transportation_Mendoza.py @@ -0,0 +1,70 @@ +import pandas as pd +import numpy as np +import argparse +import uuid +import os + +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)) + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--filepath", help="path to the files location", required=True) + args = parser.parse_args() + absolute_path = os.path.abspath(args.filepath) + + # read the raw data + raw_data = f'{absolute_path}/raw_mendoza_transportation_EIE.csv' + df = pd.read_csv(raw_data, sep=',') + + # delete row with 0 emissions value and totals + df = df[(df['full_co2e_tons']!=0)&(df['travel_bounds']!='TOTAL')] + + # creating a activity name column based on column information + for index, row in df.iterrows(): + mode = row['mode'] + travel_bounds = row['travel_bounds'] + df.loc[index, 'activity_name'] = f'emissions from VKT by {mode} transportation mode in {travel_bounds} trips' + + # delete unnecessary columns + df = df.drop(columns=['full_distance_km', 'full_co2e_tons', 'trips', 'mode', 'travel_bounds']) + + # rename columns based on our data schema + df.rename(columns={'gpc_co2e_tons': 'emissions_value', 'gpc_distance_km': 'activity_value'}, inplace=True) + + # adding missing columns and values + df.loc[:, 'activity_units'] = 'km' + df.loc[:, 'emissions_value'] *= 1000 + df.loc[:, 'emissions_units'] = 'kg' + df.loc[:, 'GPC_refno'] = 'II.1.1' + df.loc[:, 'gas_name'] = 'CO2' + df.loc[:, 'source_name'] = 'Google EIE' + df.loc[:, 'city_name'] = 'Mendoza' + df.loc[:, 'locode'] = 'AR MDZ' + df.loc[:, 'temporal_granularity'] = 'annual' + df.loc[:, 'emission_factor_value'] = np.nan + df.loc[:, 'emission_factor_units'] = np.nan + + # convertion to integers + df['activity_value'] = df['activity_value'].astype(int) + df['emissions_value'] = df['emissions_value'].astype(int) + + # assigning a unique ID to each row + for index, row in df.iterrows(): + locode = str(row['locode']) + emissions_value = str(row['emissions_value']) + year = str(row['year']) + gas = str(row['gas_name']) + GPC_refno = str(row['GPC_refno']) + + id_string = locode + emissions_value + year + gas + GPC_refno + df.at[index, 'id'] = uuid_generate_v3(id_string) + + col_order = ['id', 'source_name', 'GPC_refno', 'city_name', 'locode', 'temporal_granularity', 'year', 'activity_name', 'activity_value', + 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] + df = df.reindex(columns=col_order) + + df.to_csv(f'{absolute_path}/processed_mendoza_transportation_EIE.csv', sep=",", decimal=".", index=False) \ No newline at end of file diff --git a/global-api/importer/mendoza_arg/load_mendoza_stationary_energy.sql b/global-api/importer/mendoza_arg/load_mendoza_stationary_energy.sql index 0fa40cf08..4a4b0f366 100644 --- a/global-api/importer/mendoza_arg/load_mendoza_stationary_energy.sql +++ b/global-api/importer/mendoza_arg/load_mendoza_stationary_energy.sql @@ -5,10 +5,7 @@ CREATE TEMP TABLE IF NOT EXISTS mendoza_stationary_energy_staging (LIKE citywide TRUNCATE mendoza_stationary_energy_staging; -- Load the staging table from the downloaded file -COPY mendoza_stationary_energy_staging (year, activity_name, activity_value, activity_units, "GPC_refno", gas_name, emission_factor_value, emission_factor_units, emissions_value, emissions_units, city_name, source_name, temporal_granularity, locode, id) - --- FROM '/opt/airflow/data/stationary_energy_mendoza.csv'; -FROM :file_path DELIMITER ';' CSV HEADER; +\copy mendoza_stationary_energy_staging (year, activity_name, activity_value, activity_units, "GPC_refno", gas_name, emission_factor_value, emission_factor_units, emissions_value, emissions_units, city_name, source_name, temporal_granularity, locode, id) FROM './importer/mendoza_arg/stationary_energy_mendoza.csv' WITH (FORMAT CSV, HEADER); -- Update the main table with the staging table INSERT INTO citywide_emissions (year, activity_name, activity_value, activity_units, "GPC_refno", gas_name, emission_factor_value, emission_factor_units, emissions_value, emissions_units, city_name, source_name, temporal_granularity, locode, id) diff --git a/global-api/importer/mendoza_arg/readme.md b/global-api/importer/mendoza_arg/readme.md index 4115717d0..1948d8b6d 100644 --- a/global-api/importer/mendoza_arg/readme.md +++ b/global-api/importer/mendoza_arg/readme.md @@ -10,7 +10,7 @@ python ./importer/mendoza_arg/transformation_mendoza_stationary_energy.py --file ``` 3. Extract the activity row from the source: ```bash -psql -U ccglobal -d ccglobal -f ./importer/mendoza_arg/load_mendoza_stationary_energy.py -v file_path=[path where the transformed data was saved] +psql -U ccglobal -d ccglobal -f ./importer/mendoza_arg/load_mendoza_stationary_energy.sql ``` ### Directory tree diff --git a/global-api/importer/mendoza_arg/stationary_energy_mendoza.csv b/global-api/importer/mendoza_arg/stationary_energy_mendoza.csv new file mode 100644 index 000000000..9c37bc4d6 --- /dev/null +++ b/global-api/importer/mendoza_arg/stationary_energy_mendoza.csv @@ -0,0 +1,1516 @@ +year,activity_name,activity_value,activity_units,GPC_refno,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units,city_name,source_name,temporal_granularity,locode,id +2013,residential,41231.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,11878571.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,fb463e26-b508-339a-bc95-7e1a7bd754c5 +2014,residential,43671.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12581525.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,7aff3c97-8759-3e82-a3a5-a4b96de82f45 +2015,residential,49517.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,14265840.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,a2750042-95f8-3bbd-9ccd-c88c79390635 +2016,residential,49842.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,14359440.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,b393e96d-cf5c-320b-b117-ad327e28fa9f +2017,residential,50831.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,14644322.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,bb4ea6ee-f0c4-34be-bf86-f92f59004238 +2018,residential,48207.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13888440.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,9e911c83-e512-308f-a716-cd45512c1787 +2019,residential,45150.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13007617.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,9e693f58-a834-387c-8824-390bdfa23167 +2020,residential,46697.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13453317.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,159f2791-894b-38ee-adb0-72462237b875 +2021,residential,45240.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13033665.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,7e556e48-aa79-30bc-94c4-fe7944e98c50 +2022,residential,45384.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13075010.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,c013c732-c761-31a7-9583-ca375fc9c4c2 +2013,agricultural_irrigation,33886.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,9762622.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,b421fb29-a991-3018-8fa8-a769dfa64dc5 +2014,agricultural_irrigation,33653.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,9695293.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,ced13cd1-684f-30b2-a28b-f8903165a82f +2015,agricultural_irrigation,28476.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8204037.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,79d5d8d5-60b3-3788-93c3-831a6f6c500c +2016,agricultural_irrigation,20109.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5793328.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,4bf4bd89-b61b-3b4f-9d1e-5ac3a2f3bbfb +2017,agricultural_irrigation,24009.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6917028.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,edd98c47-3ff9-33fd-a797-f53091be8ff9 +2018,agricultural_irrigation,23548.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6784289.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,51bf6b59-9182-326f-81b5-2da6639c45dd +2019,agricultural_irrigation,20809.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5995137.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,303aa1b0-e961-3e7e-b759-a052b7a60c13 +2020,agricultural_irrigation,25442.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7329925.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,803cb369-c443-3662-9e0e-ef2a92577982 +2021,agricultural_irrigation,23754.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6843582.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,dcd554ec-7544-33c2-ba55-5bc2e31bb6f5 +2022,agricultural_irrigation,25363.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7307204.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,4c6eb909-3bbb-3681-a382-26b87aaabe18 +2013,grandes_demandas,17922.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5163203.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,d8db50ed-c6f1-3735-8449-aa39f971ffe9 +2014,grandes_demandas,15621.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4500530.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,634f7180-833a-3cd7-bc63-0d5912193ea7 +2015,grandes_demandas,20967.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6040522.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,d36b36d8-f9c8-3850-82e1-67caad32b6d4 +2016,grandes_demandas,18654.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5374088.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,194447d7-efaa-3362-a952-d8d0b59919f3 +2017,grandes_demandas,18801.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5416570.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,930d28f1-f334-3576-a2be-43ce0beb954d +2018,grandes_demandas,19561.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5635452.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,2d4055da-56b5-336d-9ad9-3b9f7e05a32e +2019,grandes_demandas,20428.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5885442.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,635a645b-093f-38ff-9623-0d3eaec551ce +2020,grandes_demandas,18331.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5281055.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,b152c857-3a44-3d83-a419-c1850d4dcde5 +2021,grandes_demandas,18544.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5342406.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,ee52490a-9b86-3252-b6b0-5f0e2e3f533a +2022,grandes_demandas,18642.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5370828.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,19a054a1-2138-340a-8ef8-579c4cf18148 +2013,commercial,20995.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,6048782.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,257ce2f9-561b-3ed2-bc4f-701e59935a75 +2014,commercial,22594.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,6509364.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,252b37ff-fed4-31ff-a15f-49d581412c64 +2015,commercial,25933.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,7471392.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,66b9d365-e99c-32ef-91bb-0bd579f564db +2016,commercial,26504.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,7635658.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,146f0b54-223e-3cdb-b448-77265248b9a5 +2017,commercial,26599.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,7663117.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,6c46c761-44bb-35f6-8b8a-15a009128059 +2018,commercial,26073.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,7511664.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,824e9dcd-0efa-36c0-8e73-6ad12d8f49ad +2019,commercial,24949.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,7187900.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,2f4c03ba-8175-3a42-bcda-37e161639141 +2020,commercial,23538.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,6781311.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,4dfb68db-452b-30f3-a9b3-526248c7a225 +2021,commercial,23815.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,6861019.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,63ffb290-92f7-3b6c-b8d2-6ca426c803dc +2022,commercial,23243.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,6696165.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,3dacdf4d-929f-360e-93a0-04c5fd9b35cc +2013,residential,37692.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10858921.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b465ebb6-0bfc-3238-9a87-d5f52a0a5b3e +2014,residential,40216.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,11586186.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,d0a33202-202f-3667-ba02-56cbbfc67fc0 +2015,residential,45799.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13194732.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,99afc785-cc33-3b31-ac0e-4019e17a5924 +2016,residential,46723.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13460887.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,ffdcd46e-3d87-3999-90eb-d51d1f75088e +2017,residential,47289.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13623884.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,751d7f23-d488-3dd9-9651-ce446a78b12e +2018,residential,44969.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12955463.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,91fd4105-6c3e-3759-8347-ef21cc7d8bc4 +2019,residential,42522.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12250455.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,05d0479a-258b-3fde-93aa-a814117dcffe +2020,residential,43691.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12587392.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b67c13a0-669d-3583-9d0f-2f958e7c460b +2021,residential,43383.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12498514.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,34f93490-0f14-31fd-8ef1-69625b2551d3 +2022,residential,45346.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13064069.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,acee6cce-d78d-36e5-852f-5613c1aad2a0 +2013,agricultural_irrigation,56696.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,16334039.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,6b0259b5-1885-35d5-bd5b-7f4d9219ad02 +2014,agricultural_irrigation,53893.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,15526634.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,d5b95255-a43e-3ab4-a739-b60d02d80f9a +2015,agricultural_irrigation,51465.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,14827120.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,4009df50-0c67-3129-a470-58aeedbb2e6e +2016,agricultural_irrigation,45009.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,12967001.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,5b2ab875-d318-3260-afe5-801abedb51f7 +2017,agricultural_irrigation,60513.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17433845.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,91b74bb5-520c-3227-9d22-9fbb77bd4ee5 +2018,agricultural_irrigation,61514.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17722185.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,e46f2d9e-c33c-3599-b023-c1f75b1b48f3 +2019,agricultural_irrigation,61903.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17834206.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,809d9cc0-d72a-3021-ad44-a5ed2dc62b07 +2020,agricultural_irrigation,66302.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19101744.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,099ceda1-9a62-38c4-8eeb-fa6f6b71e849 +2021,agricultural_irrigation,63322.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,18243015.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,5feee8be-1e4f-327e-a8e9-6394d528b22e +2022,agricultural_irrigation,66746.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19229608.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,d9c14f91-d10e-3aba-a971-e0a9f71bb6ed +2013,grandes_demandas,47423.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,13662641.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,12c3afb6-a6a3-366f-85d3-58d25e93ee1a +2014,grandes_demandas,47269.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,13618242.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,7f14c419-3895-36c7-937c-abbb84f2aa16 +2015,grandes_demandas,49561.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,14278569.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,10e238f3-e0b4-33c4-a796-208e9fcbe287 +2016,grandes_demandas,39426.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,11358693.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,4d41c98f-cdde-3e22-ad4d-336bf6dfc40f +2017,grandes_demandas,41095.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,11839568.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,ca60415b-b924-3d44-83a9-0d9d57da5adb +2018,grandes_demandas,43026.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,12395880.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,1cb03b07-ac6b-38cc-a2cf-5b02e0e079d2 +2019,grandes_demandas,42254.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,12173359.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,ee31dd6b-3ff3-37b8-a80b-b853c44423bc +2020,grandes_demandas,40903.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,11784087.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,52b22c99-603e-393d-932e-b75a1330ee22 +2021,grandes_demandas,44620.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,12855062.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,17356823-32ff-3c42-bfe2-757f806b51fa +2022,grandes_demandas,46161.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,13299056.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,4ce99a1c-db76-3f67-a1d2-5ae952a3a55e +2013,commercial,17616.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5075248.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,385c7dbc-7f08-35c6-b0bb-d0dc24432154 +2014,commercial,18106.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5216403.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,41ca7f04-9c4c-3fdd-bd6f-a45ed6aca717 +2015,commercial,19125.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5509956.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b3bb08bc-fa5b-37d2-9c25-b5410a8ce89c +2016,commercial,18903.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5446019.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,c6a3146c-20c3-342c-8b0d-08c585aa4cfb +2017,commercial,18736.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5397929.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,a166c0b9-1e43-32d1-bbb8-c10b352ed474 +2018,commercial,18305.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5273608.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,d45ab42c-03d4-3a1c-a037-5f48e4a408e8 +2019,commercial,17577.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5064070.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,dfbf56b6-0bb0-317f-b73e-99feed73aa59 +2020,commercial,16524.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4760684.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,0432d02d-65de-3b72-a2d4-9b10f2fbbc1c +2021,commercial,16844.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4852677.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,39c1f949-748a-3906-ac0a-2253d05ff00a +2022,commercial,18080.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5208905.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b3c88998-0ae7-38aa-90e7-c5297c244f49 +2013,residential,39685.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,11433206.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,a1f2e75b-3ea9-3c0f-9ef2-77f914d0c7cd +2014,residential,42649.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12287301.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,d545ceef-1996-3e4e-85e7-f7c625eba7fe +2015,residential,45757.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13182692.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,a20ff3b4-3dc9-3ee3-87ed-345c65cbc065 +2016,residential,47183.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13593435.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,94706a74-fbfc-3a88-b0fe-d0c8fedb34bb +2017,residential,45513.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13112375.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,0ee2b597-82aa-39f0-a87c-d27547e1fe89 +2018,residential,45595.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13135841.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,67fe3db2-3ee5-384e-a1e7-8d4f1b785381 +2019,residential,43138.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,12428119.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,07f62ed8-0abb-3df3-8fd0-450da16b8670 +2020,residential,45718.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13171393.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,755b42c0-31e6-3ebc-abef-02269c5160be +2021,residential,45270.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13042354.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,32fcca91-84db-3a25-83a6-a38af9e4cc7f +2022,residential,45674.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,13158742.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,0d510819-3144-3030-a6d4-8d70ec1bbe04 +2013,agricultural_irrigation,1276.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,367678.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,e7ed6444-f16c-3b9a-80ad-8a094f1ccc84 +2014,agricultural_irrigation,1704.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,490811.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,d6dc9fd0-3478-30d1-8c9f-2d6f304e00f8 +2015,agricultural_irrigation,2110.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,607920.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,e44620c9-e13b-3db3-9f8e-bb8e33b95eac +2016,agricultural_irrigation,1408.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,405626.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,ffce4da3-7918-32d6-8f81-7ad2a0e01187 +2017,agricultural_irrigation,1797.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,517670.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,843125a5-54f4-39e2-abf9-623335538fdc +2018,agricultural_irrigation,1858.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,535390.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,4a945b55-8611-3a11-b33e-f6f6b2b5532f +2019,agricultural_irrigation,2277.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,656140.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,115d2c05-62b8-390b-b4bb-4577528e2193 +2020,agricultural_irrigation,2432.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,700693.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,87637209-4d27-3501-8501-86ff667bbf96 +2021,agricultural_irrigation,2119.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,610627.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,29cf037a-2d8f-370b-9390-4c24c53b93b4 +2022,agricultural_irrigation,2371.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,682995.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,895a4f02-3ce0-3103-a0f9-12441a76c27f +2013,grandes_demandas,17848.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5142151.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,2b0d447b-f9b7-382d-a942-caa7afdd7c06 +2014,grandes_demandas,13958.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4021273.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,b7466539-e924-34ec-a900-0308aa5ec7bb +2015,grandes_demandas,26358.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7593786.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,858430c5-b799-391c-95c3-d08ce9aee79d +2016,grandes_demandas,26315.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7581245.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,28cd8aad-c03d-3a71-b886-4180c42ef053 +2017,grandes_demandas,25443.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7330255.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,4eab4b40-cf2a-3fb9-996d-234a1e326d69 +2018,grandes_demandas,27141.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7819296.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,b87d9a85-15b4-3613-b462-d026e355cd4b +2019,grandes_demandas,16848.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4854048.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,cbc53e52-993b-35e5-869b-6a88a991be0a +2020,grandes_demandas,15552.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4480514.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,5e8e658d-de7e-3fa6-9a37-c8db87c512aa +2021,grandes_demandas,16827.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4847868.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,cfe1941c-553a-35d7-9e4f-c20c102ab296 +2022,grandes_demandas,17450.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5027255.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,fe586857-a665-3fcf-8ebe-25c1c9eaef0e +2013,commercial,18238.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5254483.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,9a305099-0b99-3016-a003-0a23ee908acc +2014,commercial,19200.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5531563.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,8a3e02e5-148b-3710-a45c-2c50aea402fe +2015,commercial,19956.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5749350.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,d498a646-6537-3b75-8bf3-2435abef5567 +2016,commercial,19553.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5633173.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,c3707115-d57d-3468-a6c7-ca750a99466b +2017,commercial,19046.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5487096.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,6f78c852-6757-33d0-a46e-a06a0e4a05f2 +2018,commercial,18894.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5443267.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,3216ebf3-cbf5-3c16-bb2f-f3a609cc9ede +2019,commercial,18211.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5246475.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,324983e6-80e8-31b5-bd7d-624db897273a +2020,commercial,17346.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4997486.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,a623db1f-49bb-33c2-aa85-f018cb3d3c07 +2021,commercial,17610.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5073461.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,d425c00b-1283-3f25-a562-25ed98c23398 +2022,commercial,17850.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,5142545.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,0fcfe3a5-2396-358b-9d59-d08b8d70bcf2 +2013,residential,160060.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,46113248.0,kg,San Rafael,deie_mendoza,annual,AR AFA,e8d6cf57-720b-3e3e-a179-8e7d36340cc0 +2014,residential,166977.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,48106192.0,kg,San Rafael,deie_mendoza,annual,AR AFA,15f10186-33a3-3a37-8c83-14e90f76625e +2015,residential,183261.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,52797538.0,kg,San Rafael,deie_mendoza,annual,AR AFA,7bb8a8b7-57b7-369f-bf94-82ddfd996193 +2016,residential,184680.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,53206188.0,kg,San Rafael,deie_mendoza,annual,AR AFA,6bee6067-3216-39f6-b0f2-76933a83ac3a +2017,residential,184772.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,53232849.0,kg,San Rafael,deie_mendoza,annual,AR AFA,bb89dfd8-74a4-3cb1-8aa5-aed91da6a6bd +2018,residential,176257.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,50779745.0,kg,San Rafael,deie_mendoza,annual,AR AFA,d30551fe-7741-34c2-bf03-7472bf219df9 +2019,residential,167141.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,48153258.0,kg,San Rafael,deie_mendoza,annual,AR AFA,bbe4ea54-fb98-3c34-9d8d-77d38e7945ef +2020,residential,173062.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,49859159.0,kg,San Rafael,deie_mendoza,annual,AR AFA,60c6e740-55dc-3992-b169-f6dd16cf4c86 +2021,residential,172438.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,49679408.0,kg,San Rafael,deie_mendoza,annual,AR AFA,62435dd7-9c1e-3492-a094-207c673b7eaa +2022,residential,178770.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,51503700.0,kg,San Rafael,deie_mendoza,annual,AR AFA,1f295ec6-6fd8-30ba-b932-e5f255415e91 +2013,agricultural_irrigation,18092.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5212325.0,kg,San Rafael,deie_mendoza,annual,AR AFA,cc351969-340c-3049-8fb9-b5ee09122583 +2014,agricultural_irrigation,17464.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5031328.0,kg,San Rafael,deie_mendoza,annual,AR AFA,3360c9ed-441d-32cf-91d7-567176638955 +2015,agricultural_irrigation,14925.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4299914.0,kg,San Rafael,deie_mendoza,annual,AR AFA,0ee3afe6-715f-3246-a524-edd1358fe1c1 +2016,agricultural_irrigation,11114.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,3202078.0,kg,San Rafael,deie_mendoza,annual,AR AFA,91e2828e-5ef9-3f9d-99bb-360fb0b086ab +2017,agricultural_irrigation,14341.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4131760.0,kg,San Rafael,deie_mendoza,annual,AR AFA,7419fb19-b825-3f87-9515-33c3d88bf532 +2018,agricultural_irrigation,16291.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4693506.0,kg,San Rafael,deie_mendoza,annual,AR AFA,9ca34f42-63d4-3d49-b906-fcbfcf944bf6 +2019,agricultural_irrigation,17221.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4961246.0,kg,San Rafael,deie_mendoza,annual,AR AFA,afa24ea5-3b33-362c-aa8c-752854b8caf2 +2020,agricultural_irrigation,20547.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5919559.0,kg,San Rafael,deie_mendoza,annual,AR AFA,225bc219-d11b-3551-af30-8a7d9311d627 +2021,agricultural_irrigation,19613.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5650643.0,kg,San Rafael,deie_mendoza,annual,AR AFA,f48f3f37-5e8d-369d-a219-214a8b2ae61f +2022,agricultural_irrigation,20637.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5945505.0,kg,San Rafael,deie_mendoza,annual,AR AFA,9c17bd12-7cfe-31f8-bb6c-75ebd41aba3c +2013,grandes_demandas,79725.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,22968755.0,kg,San Rafael,deie_mendoza,annual,AR AFA,12ad820d-857d-326d-a63e-7d4f300e1169 +2014,grandes_demandas,91297.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,26302605.0,kg,San Rafael,deie_mendoza,annual,AR AFA,4bfc7001-501b-3e09-93f3-ed4e70395a6d +2015,grandes_demandas,132500.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,38173201.0,kg,San Rafael,deie_mendoza,annual,AR AFA,c533cbe0-32b5-3660-9045-519b4918876f +2016,grandes_demandas,84673.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,24394319.0,kg,San Rafael,deie_mendoza,annual,AR AFA,4990ab88-15c2-30b9-b1f3-49ca5b92c679 +2017,grandes_demandas,80287.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,23130756.0,kg,San Rafael,deie_mendoza,annual,AR AFA,aea786c7-c1fe-394e-9b07-b22a5c934539 +2018,grandes_demandas,88277.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,25432736.0,kg,San Rafael,deie_mendoza,annual,AR AFA,4f8c0365-0e58-3cd1-a0a5-77ee0a911a92 +2019,grandes_demandas,85592.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,24659060.0,kg,San Rafael,deie_mendoza,annual,AR AFA,e8c72cac-ebc9-386c-b5fd-228b85be5e0b +2020,grandes_demandas,78427.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,22594826.0,kg,San Rafael,deie_mendoza,annual,AR AFA,43157032-50a6-3086-90b7-12ec621f25b9 +2021,grandes_demandas,87849.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,25309243.0,kg,San Rafael,deie_mendoza,annual,AR AFA,85e4fad4-ecd3-3587-a01e-c4a09a5c249d +2022,grandes_demandas,92464.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,26638970.0,kg,San Rafael,deie_mendoza,annual,AR AFA,3752e4bf-dda3-385b-b390-a4261df33542 +2013,commercial,67233.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,19369695.0,kg,San Rafael,deie_mendoza,annual,AR AFA,1d602966-532e-3de9-b370-1ed5ff9fb1cd +2014,commercial,68236.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,19658859.0,kg,San Rafael,deie_mendoza,annual,AR AFA,980323c6-02c6-3778-8e68-f4987ff0eb8d +2015,commercial,70826.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20405016.0,kg,San Rafael,deie_mendoza,annual,AR AFA,0cce4f3f-1b06-369f-847e-9ec3644fb0c3 +2016,commercial,71344.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20554211.0,kg,San Rafael,deie_mendoza,annual,AR AFA,6423317e-58e9-3fd5-91b2-845178dd3650 +2017,commercial,72432.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20867772.0,kg,San Rafael,deie_mendoza,annual,AR AFA,3f98faff-fd56-31b9-ad0c-c5086ea98234 +2018,commercial,69050.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,19893288.0,kg,San Rafael,deie_mendoza,annual,AR AFA,4e34276b-ef06-36a9-927c-8decfbe8cf7c +2019,commercial,65129.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,18763769.0,kg,San Rafael,deie_mendoza,annual,AR AFA,8bb2aab0-3a78-3fbb-aa67-51423e98d992 +2020,commercial,62233.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,17929192.0,kg,San Rafael,deie_mendoza,annual,AR AFA,b014d31a-389c-3f5c-875b-474a09bc3d26 +2021,commercial,63857.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,18397083.0,kg,San Rafael,deie_mendoza,annual,AR AFA,9bd44893-e93b-3fd1-bc19-9f9234a70375 +2022,commercial,70842.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20409504.0,kg,San Rafael,deie_mendoza,annual,AR AFA,4dd75bfb-7ac1-32b9-84b5-e87bf9b274cf +2013,residential,13289.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,3828487.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,aef2bb06-1c8c-3357-a535-742f90a168c5 +2014,residential,14180.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4085388.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,6a1b8b62-6cd0-3939-b971-cff64b3d9c98 +2015,residential,15385.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4432338.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,5b96e53d-6e62-30a9-9810-932fea5888ee +2016,residential,16093.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4636395.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,0bd3f8be-0c07-3e15-9cf7-a0f9579aa7f0 +2017,residential,16395.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4723327.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,b885aa40-8f24-3406-9527-f22c34446692 +2018,residential,15727.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4530835.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,47c9ca42-0d0c-370e-81a0-ecbbb53c4288 +2019,residential,15211.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4382337.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,d8a90364-0dcc-34f6-8509-7e91c75af31c +2020,residential,15738.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4534025.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,c40d87f9-3c7e-3243-98d2-0280d9881b02 +2021,residential,16276.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4689005.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,b0125cc6-1763-385f-b53c-bb83e4587621 +2022,residential,15181.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,4373692.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,5ac0d245-a1ac-3f27-acea-42ac2cb7992d +2013,agricultural_irrigation,27133.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7816942.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,7a2479f3-8f10-3119-af63-f039e191e9b6 +2014,agricultural_irrigation,24693.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7114123.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,99101546-ffc7-3a2f-b48e-61b0faa50014 +2015,agricultural_irrigation,22374.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6445867.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,3179a279-9f2d-3b58-9b33-19747f7051d3 +2016,agricultural_irrigation,19064.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5492208.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,df026475-c7c1-3971-9772-45f8e42ede52 +2017,agricultural_irrigation,24669.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7107067.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,53a51638-ee57-33c7-b26b-16fa5526a764 +2018,agricultural_irrigation,24234.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6981830.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,ab9a1dc7-f05d-3892-b7d2-b99cd338304e +2019,agricultural_irrigation,22356.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6440782.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,07fc99ad-1841-3213-8a50-b4f5225f83e8 +2020,agricultural_irrigation,27337.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7875772.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,26941d61-daba-3173-a8db-d84f58cdc53c +2021,agricultural_irrigation,25860.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7450345.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,305482c1-dfdb-3639-a222-c0ec95c6882b +2022,agricultural_irrigation,29158.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8400522.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,0cb2a4eb-874a-3a01-b063-f2f89791c9b0 +2013,grandes_demandas,12108.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,3488391.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,e0ab9ef8-1150-30e5-b008-897b4f1c3da3 +2014,grandes_demandas,10729.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,3091135.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,12e6082a-86f2-37fa-92d4-b0b1fdb27d1b +2015,grandes_demandas,9932.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2861457.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,4ad71fe2-f459-32a4-8d6d-47ae9ef8b720 +2016,grandes_demandas,9059.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2610036.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,2876e468-d61f-3f31-90a2-917fad3a6892 +2017,grandes_demandas,9093.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2619639.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,75aab19d-915d-3caa-ac5f-233f704f1bc7 +2018,grandes_demandas,9898.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2851758.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,8cae68bb-6296-3452-9cc3-3e0ad242f44c +2019,grandes_demandas,9326.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2686839.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,5c53a426-a164-3f12-8dae-2e9be5218910 +2020,grandes_demandas,7960.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2293289.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,4168726a-d86d-3e37-8fe4-074054cb5718 +2021,grandes_demandas,8745.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2519535.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,9c527d87-8016-349d-a8c9-bcfcf7f25a83 +2022,grandes_demandas,8806.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,2536865.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,f068a233-f51f-342e-bde0-9b9d4e33779d +2013,commercial,5625.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1620614.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,a0e451c2-3236-3df9-b06c-daa675969182 +2014,commercial,5162.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1487031.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,8f104cb8-6bac-38cf-86dc-624b3d594601 +2015,commercial,5421.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1561906.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,112f308a-6a97-3180-a444-e907d78a7f59 +2016,commercial,5394.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1553917.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,2c899cae-e438-3dfc-9ab5-0f43b9b56fc1 +2017,commercial,5571.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1604985.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,6ebd2800-f0a8-355f-8430-7ef531c6330a +2018,commercial,5516.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1589133.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,9e38ae62-44de-3b69-99c2-e3e96a10606c +2019,commercial,5727.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1649989.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,6b9f94f4-6ac4-3892-b73c-6cab1257092f +2020,commercial,5433.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1565304.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,859945f0-fe77-3525-910e-10c793ebad20 +2021,commercial,6004.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1729769.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,51b19626-5831-3716-aa73-fd367869bbdb +2022,commercial,5614.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1617372.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,5a97e6ca-8916-3d9b-a87a-f03e86eb9c13 +2013,residential,23926.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6892979.0,kg,San Carlos,deie_mendoza,annual,AR SCA,934a0c07-8276-3698-9391-fa8711c9135b +2014,residential,25137.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7241953.0,kg,San Carlos,deie_mendoza,annual,AR SCA,ea5a6f96-135d-3600-b682-03399ef7e90c +2015,residential,27882.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8032877.0,kg,San Carlos,deie_mendoza,annual,AR SCA,cbcec8ba-faab-3720-9692-ef23b48314c0 +2016,residential,28001.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8067040.0,kg,San Carlos,deie_mendoza,annual,AR SCA,53930c88-1043-3967-b37a-53173964100c +2017,residential,27407.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7896083.0,kg,San Carlos,deie_mendoza,annual,AR SCA,43f21644-405b-329d-98f8-c0bc96cc5328 +2018,residential,27533.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7932356.0,kg,San Carlos,deie_mendoza,annual,AR SCA,70ae7ee8-24bf-3076-874b-0aca17596436 +2019,residential,26303.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7577869.0,kg,San Carlos,deie_mendoza,annual,AR SCA,196798f5-96c3-357b-a4ad-7a9331337c6f +2020,residential,27221.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7842406.0,kg,San Carlos,deie_mendoza,annual,AR SCA,ab23c3e5-9a64-3e63-9d7e-8ebbf51c3724 +2021,residential,27510.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7925695.0,kg,San Carlos,deie_mendoza,annual,AR SCA,df3e81eb-2389-3821-b454-b2a04083aedc +2022,residential,28078.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8089166.0,kg,San Carlos,deie_mendoza,annual,AR SCA,8b6e3619-b568-361a-93b2-4ed20d848e28 +2013,agricultural_irrigation,43607.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,12563187.0,kg,San Carlos,deie_mendoza,annual,AR SCA,9b7c9bad-c3e2-3793-b14a-bf5f7c748edd +2014,agricultural_irrigation,44339.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,12774147.0,kg,San Carlos,deie_mendoza,annual,AR SCA,965642db-0a88-3a34-9c09-94e980c530ad +2015,agricultural_irrigation,41448.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,11941055.0,kg,San Carlos,deie_mendoza,annual,AR SCA,32807510-7177-31c0-ba60-b80bd69b68ca +2016,agricultural_irrigation,34722.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,10003467.0,kg,San Carlos,deie_mendoza,annual,AR SCA,b084179c-7563-36d5-8ed6-0c4763c75d57 +2017,agricultural_irrigation,45021.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,12970624.0,kg,San Carlos,deie_mendoza,annual,AR SCA,058d2e6a-19dd-3a7b-9e0a-49972cfa9c52 +2018,agricultural_irrigation,44863.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,12924968.0,kg,San Carlos,deie_mendoza,annual,AR SCA,7d0246cf-48ea-3977-8b91-ccac3bb6e452 +2019,agricultural_irrigation,47700.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,13742286.0,kg,San Carlos,deie_mendoza,annual,AR SCA,763e636f-48f2-3e16-b287-21066e59d283 +2020,agricultural_irrigation,54695.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,15757504.0,kg,San Carlos,deie_mendoza,annual,AR SCA,be80ace2-407a-36d3-8ddd-5f3447e9c0c5 +2021,agricultural_irrigation,53520.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,15419028.0,kg,San Carlos,deie_mendoza,annual,AR SCA,03d0cb63-cfb1-312f-83e6-56e456877944 +2022,agricultural_irrigation,56621.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,16312539.0,kg,San Carlos,deie_mendoza,annual,AR SCA,c1e01cdb-811e-3a85-b04b-71dc9641b130 +2013,grandes_demandas,21552.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6209037.0,kg,San Carlos,deie_mendoza,annual,AR SCA,1fcf9f29-f17b-3303-9a9b-9175f3d881d2 +2014,grandes_demandas,20002.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5762702.0,kg,San Carlos,deie_mendoza,annual,AR SCA,2489098b-da53-3957-a9a9-e621b78376d3 +2015,grandes_demandas,19913.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5736960.0,kg,San Carlos,deie_mendoza,annual,AR SCA,c2e60b40-e5c2-3f14-9d1a-39354cc8056a +2016,grandes_demandas,18621.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5364646.0,kg,San Carlos,deie_mendoza,annual,AR SCA,3089e1e2-5644-33f8-ba96-9c0b0903ad6e +2017,grandes_demandas,18742.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5399507.0,kg,San Carlos,deie_mendoza,annual,AR SCA,2fafd315-a578-323d-94e1-9324e71a5e5a +2018,grandes_demandas,18173.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5235681.0,kg,San Carlos,deie_mendoza,annual,AR SCA,d3db5885-8178-30af-a318-d43fc7e7d7e0 +2019,grandes_demandas,19693.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5673467.0,kg,San Carlos,deie_mendoza,annual,AR SCA,2a389116-b295-37d9-aaa2-6804a10ec467 +2020,grandes_demandas,21412.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6168830.0,kg,San Carlos,deie_mendoza,annual,AR SCA,f2460b94-5d38-34dd-a57b-ef104c9cf6bb +2021,grandes_demandas,20820.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5998202.0,kg,San Carlos,deie_mendoza,annual,AR SCA,d098298f-904e-353b-ada2-b8d721742654 +2022,grandes_demandas,20584.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5930298.0,kg,San Carlos,deie_mendoza,annual,AR SCA,5946497e-5023-3f18-bd83-ca305fa63120 +2013,commercial,10751.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3097360.0,kg,San Carlos,deie_mendoza,annual,AR SCA,0019d6f1-477b-3e5b-93fa-d07f15e3eef1 +2014,commercial,11196.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3225562.0,kg,San Carlos,deie_mendoza,annual,AR SCA,42bcaa14-7d98-35e2-8455-d543ca94f590 +2015,commercial,12013.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3460827.0,kg,San Carlos,deie_mendoza,annual,AR SCA,d68030cb-0726-37aa-99a8-2e1c02edce2c +2016,commercial,12152.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3501103.0,kg,San Carlos,deie_mendoza,annual,AR SCA,015aaa3b-dfba-3c9a-952f-a37f452e24d4 +2017,commercial,12303.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3544532.0,kg,San Carlos,deie_mendoza,annual,AR SCA,659bb9a5-5711-397d-b49c-e294982a44be +2018,commercial,12824.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3694511.0,kg,San Carlos,deie_mendoza,annual,AR SCA,402fe066-f3e7-335f-9e34-3d84736587b5 +2019,commercial,11786.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3395476.0,kg,San Carlos,deie_mendoza,annual,AR SCA,8d2e7da6-b936-3587-99de-a13b64458e15 +2020,commercial,11470.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3304520.0,kg,San Carlos,deie_mendoza,annual,AR SCA,bc84444a-6367-3626-ab22-53d070ce7d1c +2021,commercial,11936.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3438661.0,kg,San Carlos,deie_mendoza,annual,AR SCA,9b476127-7681-3067-88e7-575724fa4f58 +2022,commercial,12941.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3728223.0,kg,San Carlos,deie_mendoza,annual,AR SCA,79684d37-f318-3d19-8727-3ba40c214ae7 +2013,residential,24885.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7169457.0,kg,Lavalle,deie_mendoza,annual,AR LAV,2e270f98-da6c-3930-8e68-e75fb5bd0f35 +2014,residential,26769.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7712260.0,kg,Lavalle,deie_mendoza,annual,AR LAV,03efe5be-e03c-3bce-9994-3ea5c1a5eb0e +2015,residential,30505.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8788503.0,kg,Lavalle,deie_mendoza,annual,AR LAV,f9eed2b2-0799-35c0-b8ad-b7e3d4945e6b +2016,residential,32074.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,9240415.0,kg,Lavalle,deie_mendoza,annual,AR LAV,7c6ee4fe-9e5f-35d7-8517-1ab4abc0ed30 +2017,residential,32545.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,9376255.0,kg,Lavalle,deie_mendoza,annual,AR LAV,d40408e2-b201-33d9-a998-f66cd69faa47 +2018,residential,30599.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8815609.0,kg,Lavalle,deie_mendoza,annual,AR LAV,f00062af-7324-3ca9-829c-43de51e4d3ea +2019,residential,29158.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8400478.0,kg,Lavalle,deie_mendoza,annual,AR LAV,e810b8a0-b438-3013-a294-a7c5a35e25cc +2020,residential,30500.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8786959.0,kg,Lavalle,deie_mendoza,annual,AR LAV,11fdf06c-92dc-39bb-a036-f079f6677235 +2021,residential,30353.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8744605.0,kg,Lavalle,deie_mendoza,annual,AR LAV,b049b419-772f-39f3-a59c-23f296beb53b +2022,residential,31868.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,9181250.0,kg,Lavalle,deie_mendoza,annual,AR LAV,0700cf68-ceca-30dd-b49a-ec688c3a3a16 +2013,agricultural_irrigation,32603.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,9392851.0,kg,Lavalle,deie_mendoza,annual,AR LAV,99112b5d-7c64-3a19-a25e-675da1af011f +2014,agricultural_irrigation,30399.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8758003.0,kg,Lavalle,deie_mendoza,annual,AR LAV,27b8f806-18f3-3405-87f4-b3a511a3b4ab +2015,agricultural_irrigation,28473.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8203040.0,kg,Lavalle,deie_mendoza,annual,AR LAV,1bb17ebc-252f-3568-ab67-53f8cf5e0d69 +2016,agricultural_irrigation,21163.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6097122.0,kg,Lavalle,deie_mendoza,annual,AR LAV,82f8c223-2d0a-3d58-b265-89c783ae8fa0 +2017,agricultural_irrigation,24539.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7069572.0,kg,Lavalle,deie_mendoza,annual,AR LAV,2ca68fd0-efad-31ba-8892-fbdef7358395 +2018,agricultural_irrigation,26158.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7536076.0,kg,Lavalle,deie_mendoza,annual,AR LAV,f29b9763-5377-3f7f-a918-88ac42232ab7 +2019,agricultural_irrigation,25187.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7256515.0,kg,Lavalle,deie_mendoza,annual,AR LAV,72119040-1ca9-3bfc-8eb8-100f7a080a18 +2020,agricultural_irrigation,27092.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,7805289.0,kg,Lavalle,deie_mendoza,annual,AR LAV,01df8eae-b5db-31d7-8038-0bf91a803ea5 +2021,agricultural_irrigation,28890.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8323077.0,kg,Lavalle,deie_mendoza,annual,AR LAV,d57795fe-0e26-3c33-92d3-a850829cb2f7 +2022,agricultural_irrigation,30720.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8850362.0,kg,Lavalle,deie_mendoza,annual,AR LAV,0cb4b6ef-7400-3777-9e3e-69a95fb10369 +2013,grandes_demandas,19843.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5716758.0,kg,Lavalle,deie_mendoza,annual,AR LAV,77e87951-09ff-3d02-a84e-3e64606d13f6 +2014,grandes_demandas,20239.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5830842.0,kg,Lavalle,deie_mendoza,annual,AR LAV,889318c6-d36b-3735-bbc0-0eafc0f36213 +2015,grandes_demandas,22225.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6403099.0,kg,Lavalle,deie_mendoza,annual,AR LAV,901e17a2-53d9-34fc-bd5a-c051c459fcbc +2016,grandes_demandas,17992.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5183422.0,kg,Lavalle,deie_mendoza,annual,AR LAV,f6dd36fa-74c6-3249-b4a0-d35b13794578 +2017,grandes_demandas,18394.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5299442.0,kg,Lavalle,deie_mendoza,annual,AR LAV,b61152fc-cbd6-3ed0-8245-5fb1ad9d00bd +2018,grandes_demandas,21069.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6069897.0,kg,Lavalle,deie_mendoza,annual,AR LAV,812748b3-68d9-383b-871a-2d9f8390ca60 +2019,grandes_demandas,22169.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6386779.0,kg,Lavalle,deie_mendoza,annual,AR LAV,07342783-b788-333e-8345-cb65e1dadc51 +2020,grandes_demandas,23190.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6681143.0,kg,Lavalle,deie_mendoza,annual,AR LAV,d72ac1cc-4283-35a3-ae11-69db4cb155ab +2021,grandes_demandas,23759.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6844924.0,kg,Lavalle,deie_mendoza,annual,AR LAV,7aa37e12-3df4-3940-bd5c-4f4d6c622cbb +2022,grandes_demandas,23531.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6779261.0,kg,Lavalle,deie_mendoza,annual,AR LAV,c64aadfb-7ee5-3fa6-a290-af1c1c783406 +2013,commercial,11482.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3307911.0,kg,Lavalle,deie_mendoza,annual,AR LAV,4253bdb5-e613-3b1a-a6d2-37dae3d1eaf9 +2014,commercial,11711.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3373865.0,kg,Lavalle,deie_mendoza,annual,AR LAV,e31d7cd8-e02c-3662-8d5b-637b5627f733 +2015,commercial,12423.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3579173.0,kg,Lavalle,deie_mendoza,annual,AR LAV,1e56b0ab-bc00-3410-8211-c67a422bfa04 +2016,commercial,12768.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3678415.0,kg,Lavalle,deie_mendoza,annual,AR LAV,35f58796-0fe8-3061-a466-e9fb023f31c2 +2017,commercial,13565.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3908210.0,kg,Lavalle,deie_mendoza,annual,AR LAV,d56fc748-7b01-32be-b85c-4001eaebfb59 +2018,commercial,13470.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3880751.0,kg,Lavalle,deie_mendoza,annual,AR LAV,ea932706-beef-38b0-96c9-a98277a55be8 +2019,commercial,13174.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3795345.0,kg,Lavalle,deie_mendoza,annual,AR LAV,97ef16d5-b633-3c15-896d-a869d11b6f7f +2020,commercial,12428.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3580505.0,kg,Lavalle,deie_mendoza,annual,AR LAV,9fdb7cd7-fc0f-3a63-84cd-eb60fd7a9644 +2021,commercial,12638.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3640906.0,kg,Lavalle,deie_mendoza,annual,AR LAV,0e63e980-cd38-31b9-80f5-eee2ba5e62e0 +2022,commercial,13311.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3834822.0,kg,Lavalle,deie_mendoza,annual,AR LAV,257673a3-8f8c-3138-9daf-cc4868d125d8 +2013,residential,139002.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40046493.0,kg,Maipú,deie_mendoza,annual,AR MPU,b509cf32-58eb-3717-8098-4d40a04ad07e +2014,residential,145824.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,42011819.0,kg,Maipú,deie_mendoza,annual,AR MPU,8c8852be-12d5-33c5-8d35-acee14c28e8c +2015,residential,157425.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,45354165.0,kg,Maipú,deie_mendoza,annual,AR MPU,47523e4e-3701-3169-9f94-455d83b01481 +2016,residential,161352.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,46485624.0,kg,Maipú,deie_mendoza,annual,AR MPU,4fdac989-d889-3c71-a34e-e369979856fe +2017,residential,161426.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,46506737.0,kg,Maipú,deie_mendoza,annual,AR MPU,2e14e29e-465a-3b9f-85ab-e3f4b0acf164 +2018,residential,154159.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,44413181.0,kg,Maipú,deie_mendoza,annual,AR MPU,ae8bd53a-0e8b-3095-88e6-db0748f3c0ec +2019,residential,150057.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,43231477.0,kg,Maipú,deie_mendoza,annual,AR MPU,f99d0ad4-56ae-3315-b7e2-522a9d3aa70b +2020,residential,159622.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,45987199.0,kg,Maipú,deie_mendoza,annual,AR MPU,c0c2eb65-9326-334d-b1dd-8216791fb14f +2021,residential,154807.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,44599755.0,kg,Maipú,deie_mendoza,annual,AR MPU,587f44ce-c61c-3dbd-8ab1-4e48a162606f +2022,residential,158668.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,45712242.0,kg,Maipú,deie_mendoza,annual,AR MPU,8c13d104-0032-312e-bf6f-2ef1840a64cf +2013,agricultural_irrigation,81959.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,23612368.0,kg,Maipú,deie_mendoza,annual,AR MPU,626a26b4-701e-3f77-8875-0b2087f74703 +2014,agricultural_irrigation,73848.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,21275628.0,kg,Maipú,deie_mendoza,annual,AR MPU,a08d9cd0-0639-3b1d-96e4-8e8401ab041f +2015,agricultural_irrigation,69916.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20142665.0,kg,Maipú,deie_mendoza,annual,AR MPU,bca08b44-ce74-3d6c-8183-fb3add10640b +2016,agricultural_irrigation,56422.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,16255083.0,kg,Maipú,deie_mendoza,annual,AR MPU,7f77c80b-2f7f-34d6-9adb-8077be8d64e0 +2017,agricultural_irrigation,73423.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,21153152.0,kg,Maipú,deie_mendoza,annual,AR MPU,88e9fd3b-9011-3888-a863-be2d6cbe2a4f +2018,agricultural_irrigation,71897.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20713624.0,kg,Maipú,deie_mendoza,annual,AR MPU,4ba3c4b1-46ec-307f-9ec6-10b6a33b679d +2019,agricultural_irrigation,67430.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19426494.0,kg,Maipú,deie_mendoza,annual,AR MPU,3caaab5c-3304-3869-a0f7-071fcb8c2f83 +2020,agricultural_irrigation,77344.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,22282912.0,kg,Maipú,deie_mendoza,annual,AR MPU,c24a1c02-28bc-3ea7-9347-0cab48b23302 +2021,agricultural_irrigation,75578.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,21774015.0,kg,Maipú,deie_mendoza,annual,AR MPU,9f7f6d03-9f43-3d9c-bb7a-869d67ee637a +2022,agricultural_irrigation,84537.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,24355012.0,kg,Maipú,deie_mendoza,annual,AR MPU,d5974fa2-0d70-3c1e-9a02-fed397da6616 +2013,grandes_demandas,152831.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,44030475.0,kg,Maipú,deie_mendoza,annual,AR MPU,585c45b4-fdb5-3d70-ad32-9b0de1feafa7 +2014,grandes_demandas,153787.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,44306158.0,kg,Maipú,deie_mendoza,annual,AR MPU,51ef60b5-66ec-3927-8faa-b128c7b5f456 +2015,grandes_demandas,161737.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,46596372.0,kg,Maipú,deie_mendoza,annual,AR MPU,87d4849e-0285-3214-894f-ca6b0dc61000 +2016,grandes_demandas,158129.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,45556870.0,kg,Maipú,deie_mendoza,annual,AR MPU,33c70359-87d9-33ce-aff7-01c2b10ab243 +2017,grandes_demandas,158504.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,45664888.0,kg,Maipú,deie_mendoza,annual,AR MPU,e7aae5fc-936a-3f36-ba85-4261c31a9e97 +2018,grandes_demandas,159601.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,45981052.0,kg,Maipú,deie_mendoza,annual,AR MPU,59c68f47-da76-3371-9629-699320bf20a1 +2019,grandes_demandas,156276.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,45023122.0,kg,Maipú,deie_mendoza,annual,AR MPU,905bff22-d153-34d7-ab8a-cc5bc33c76d2 +2020,grandes_demandas,152629.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,43972331.0,kg,Maipú,deie_mendoza,annual,AR MPU,7b11cd5d-f8f6-3c54-8be8-7e5274dc9464 +2021,grandes_demandas,160397.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,46210236.0,kg,Maipú,deie_mendoza,annual,AR MPU,d6f2a905-c920-3767-8dfc-885d74145f4c +2022,grandes_demandas,178273.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,51360503.0,kg,Maipú,deie_mendoza,annual,AR MPU,1a6d6144-267b-3ab0-9d02-24be4fbd61aa +2013,commercial,59564.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,17160368.0,kg,Maipú,deie_mendoza,annual,AR MPU,a0974cab-f5b6-38c1-8642-9c93b63f33a1 +2014,commercial,62739.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,18075108.0,kg,Maipú,deie_mendoza,annual,AR MPU,19069fa7-e4ef-365e-a897-07488f90b42c +2015,commercial,69101.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,19908080.0,kg,Maipú,deie_mendoza,annual,AR MPU,99999a53-f142-3524-8d92-abeb2e75651a +2016,commercial,69948.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20152047.0,kg,Maipú,deie_mendoza,annual,AR MPU,e3c0a151-63f8-3438-a475-afcb1892731e +2017,commercial,71199.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20512405.0,kg,Maipú,deie_mendoza,annual,AR MPU,0d3aff2b-3cc3-3275-8d05-a10f4a5a4735 +2018,commercial,70960.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20443433.0,kg,Maipú,deie_mendoza,annual,AR MPU,62a926e3-c8fa-37d4-be12-6ea39c1084ba +2019,commercial,70874.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20418913.0,kg,Maipú,deie_mendoza,annual,AR MPU,c65fc61c-2e55-3625-87ae-b51f2aadc3cb +2020,commercial,71078.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20477473.0,kg,Maipú,deie_mendoza,annual,AR MPU,3ecb4c7c-34da-3257-9149-998b24366f41 +2021,commercial,72772.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20965587.0,kg,Maipú,deie_mendoza,annual,AR MPU,2a273090-13d4-3285-9ecd-60db1014519e +2022,commercial,74751.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,21535828.0,kg,Maipú,deie_mendoza,annual,AR MPU,fca48044-44a4-33fa-9de3-22497c378a28 +2013,residential,148412.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,42757542.0,kg,Las Heras,deie_mendoza,annual,AR LHE,d04758bb-b78e-31cb-9556-7d9b087c4956 +2014,residential,152994.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,44077545.0,kg,Las Heras,deie_mendoza,annual,AR LHE,2d8f381d-1386-35a6-8a96-96052f450f19 +2015,residential,164940.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,47519136.0,kg,Las Heras,deie_mendoza,annual,AR LHE,0654e69e-037c-3d80-8701-fb1572cbbc84 +2016,residential,165398.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,47651170.0,kg,Las Heras,deie_mendoza,annual,AR LHE,080befa5-7441-3e1c-b02d-bd667ab6e6a2 +2017,residential,160177.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,46147021.0,kg,Las Heras,deie_mendoza,annual,AR LHE,6b8737dd-4dbf-3348-a955-5c8df623e956 +2018,residential,147485246.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,42490499373.0,kg,Las Heras,deie_mendoza,annual,AR LHE,d960dba9-f4a1-34d0-bbfd-ca81269fbcba +2019,residential,139335887.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40142669045.0,kg,Las Heras,deie_mendoza,annual,AR LHE,142745a0-f49e-3594-958e-7e1e165e070c +2020,residential,146909236.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,42324550892.0,kg,Las Heras,deie_mendoza,annual,AR LHE,e3157b79-cb2f-3690-865b-a29a72e94fe8 +2021,residential,138125232.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,39793879339.0,kg,Las Heras,deie_mendoza,annual,AR LHE,22eef2c9-fe7f-32d7-a64c-0d8ba00f4c3f +2022,residential,140486303.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40474103894.0,kg,Las Heras,deie_mendoza,annual,AR LHE,29faa78a-e28b-36db-a1a5-03a6f72376c4 +2013,agricultural_irrigation,2213.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,637545.0,kg,Las Heras,deie_mendoza,annual,AR LHE,5ab09cb8-2e67-3b2a-b715-0b3f2dac1ee9 +2014,agricultural_irrigation,2197.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,633076.0,kg,Las Heras,deie_mendoza,annual,AR LHE,bc89785b-d16a-38f4-b1e7-7779d2608c81 +2015,agricultural_irrigation,2056.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,592438.0,kg,Las Heras,deie_mendoza,annual,AR LHE,4d4d2955-6a4a-3f5e-9659-e21e5141f427 +2016,agricultural_irrigation,1619.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,466427.0,kg,Las Heras,deie_mendoza,annual,AR LHE,0a3c162c-03f6-3e31-80f9-376249136ad5 +2017,agricultural_irrigation,2309.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,665340.0,kg,Las Heras,deie_mendoza,annual,AR LHE,639a984f-133b-31dd-8063-9a2ab1354b2a +2018,agricultural_irrigation,2066279.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,595294980.0,kg,Las Heras,deie_mendoza,annual,AR LHE,772c2d08-817f-3715-bca0-f405c5f4d10e +2019,agricultural_irrigation,2001675.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,576682568.0,kg,Las Heras,deie_mendoza,annual,AR LHE,3c405363-530f-3a59-95d6-3c3e4051a71c +2020,agricultural_irrigation,2592683.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,746951972.0,kg,Las Heras,deie_mendoza,annual,AR LHE,388a730a-eaac-3d5a-9e08-1bcb4b35d6b2 +2021,agricultural_irrigation,2365273.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,681435151.0,kg,Las Heras,deie_mendoza,annual,AR LHE,69badc7d-c181-3401-a427-a920736edc88 +2022,agricultural_irrigation,2866553.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,825853919.0,kg,Las Heras,deie_mendoza,annual,AR LHE,73c2ae1b-38f9-3523-ae2b-af586bb7467a +2013,grandes_demandas,162895.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,46930063.0,kg,Las Heras,deie_mendoza,annual,AR LHE,e964a78e-16f4-38d1-b46f-e4208d176d84 +2014,grandes_demandas,166938.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,48094799.0,kg,Las Heras,deie_mendoza,annual,AR LHE,3675653d-15ef-3318-ae7c-fc601a064974 +2015,grandes_demandas,183458.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,52854141.0,kg,Las Heras,deie_mendoza,annual,AR LHE,9a533d94-ae70-3654-8270-3a61e3ffe06f +2016,grandes_demandas,160605.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,46270281.0,kg,Las Heras,deie_mendoza,annual,AR LHE,60e5e397-22ec-3d51-b029-30cb48a384d9 +2017,grandes_demandas,165169.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,47585259.0,kg,Las Heras,deie_mendoza,annual,AR LHE,7fc707cf-d949-3226-b48b-d2cfbbae4a3e +2018,grandes_demandas,166315858.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,47915598690.0,kg,Las Heras,deie_mendoza,annual,AR LHE,efb07680-647a-380f-a9f0-ef0c54706665 +2019,grandes_demandas,158848137.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,45764148270.0,kg,Las Heras,deie_mendoza,annual,AR LHE,5ea341fb-ddba-3959-977e-b98d92e34cae +2020,grandes_demandas,134959248.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,38881759349.0,kg,Las Heras,deie_mendoza,annual,AR LHE,13a1df2d-3235-30bf-8a0f-a92b00b3c68a +2021,grandes_demandas,158447655.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,45648769406.0,kg,Las Heras,deie_mendoza,annual,AR LHE,e73720e6-777d-3187-8168-b92c63f74bda +2022,grandes_demandas,164755250.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,47465987525.0,kg,Las Heras,deie_mendoza,annual,AR LHE,fe0a92cb-77be-3c62-aff2-8eaae797c7f6 +2013,commercial,41611.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11988092.0,kg,Las Heras,deie_mendoza,annual,AR LHE,5adb4ae5-8fca-3520-88db-d56799a0240b +2014,commercial,43248.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12459841.0,kg,Las Heras,deie_mendoza,annual,AR LHE,95fe0204-0082-33b2-8d60-02a0d1352e83 +2015,commercial,46285.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,13334703.0,kg,Las Heras,deie_mendoza,annual,AR LHE,4bcf3db7-445f-32a0-84d1-787bf04ff970 +2016,commercial,47268.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,13618031.0,kg,Las Heras,deie_mendoza,annual,AR LHE,befcdfb3-c773-38cc-908b-4d515ee9e492 +2017,commercial,46687.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,13450409.0,kg,Las Heras,deie_mendoza,annual,AR LHE,32cd5423-9c4c-38bc-83fa-fcc489b364af +2018,commercial,45007285.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12966598809.0,kg,Las Heras,deie_mendoza,annual,AR LHE,bf44ce70-a04c-3433-ad8a-742137c3bebf +2019,commercial,44861278.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12924534192.0,kg,Las Heras,deie_mendoza,annual,AR LHE,8f5036fd-59f4-3417-a393-3bb2d806bbb5 +2020,commercial,42047519.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12113890224.0,kg,Las Heras,deie_mendoza,annual,AR LHE,287f468b-a36b-38f3-9499-2806f07cc5e0 +2021,commercial,43894019.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12645866874.0,kg,Las Heras,deie_mendoza,annual,AR LHE,f1ab8713-dffd-3834-a28b-99ec1fa13330 +2022,commercial,43876710.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12640880151.0,kg,Las Heras,deie_mendoza,annual,AR LHE,bff17f6d-45dc-3368-ba4f-713669714703 +2013,residential,118481.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,34134488.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,99cdb6ad-142d-3029-a15a-9a3cdfde6ae7 +2014,residential,121851.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,35105288.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,9eda65e7-a06c-35c1-ad8c-ca053da5eafe +2015,residential,137464.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,39603514.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c7d77e34-f07d-3d4e-a5ff-cccaa8789e1c +2016,residential,138161.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,39804224.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,4005d992-29c5-3aa5-a066-3a65c81d3910 +2017,residential,136621.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,39360447.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,91247ab1-ddd1-3ec2-8100-ae38344b8f42 +2018,residential,130917.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,37717188.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,39296653-46b3-35e1-b77b-3d56ddbd2604 +2019,residential,129365.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,37270171.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,dbc7232b-bf71-3cf4-9080-99037fc6da73 +2020,residential,139336.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40142650.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,0b9def77-8c2e-395f-9656-17ce779e3943 +2021,residential,134934.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,38874460.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,103d7875-4f11-3c98-bc72-a5b130a0e5c1 +2022,residential,141137.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40661518.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,5d1f7f2f-68f5-3d6a-a5f4-f0a5cc37913c +2013,agricultural_irrigation,66613.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19191157.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,5bd5e983-caf5-3a4d-988b-fb31e5c76f0a +2014,agricultural_irrigation,61760.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17793071.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,34ff66bd-9b0b-3244-b685-1ae189a45b84 +2015,agricultural_irrigation,50761.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,14624360.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,ffc72b99-2743-3f0c-ae1e-b4965d667fe5 +2016,agricultural_irrigation,41730.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,12022292.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,b99f9421-b0b1-3cf9-8b5d-c49a057430e6 +2017,agricultural_irrigation,56557.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,16294186.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,ae87f3c9-cb63-30e3-bca4-e88d527e07d7 +2018,agricultural_irrigation,60787.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17512627.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,913a9340-45f6-372a-8830-51779511d5bc +2019,agricultural_irrigation,57185.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,16475052.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,1a1a5d69-d67b-3201-a368-7246e91cc88c +2020,agricultural_irrigation,62166.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17910158.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,2577bbcf-62c3-3969-908b-2199349cf731 +2021,agricultural_irrigation,62986.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,18146166.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,b8c04c43-1537-34e2-ab90-77c112f2e846 +2022,agricultural_irrigation,62287.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17944742.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,2a0a71ed-d553-3291-8e1f-a1373f2bdc30 +2013,grandes_demandas,1407864.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,405605653.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,734e9ae9-ed7f-3fc9-a5b1-abeac24c42ca +2014,grandes_demandas,1458168.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,420098266.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,37d32756-c0aa-33e7-aa1a-cb8e483a6194 +2015,grandes_demandas,1424678.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,410449870.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,7d8919df-607a-3b73-a32f-85fd4c014fd3 +2016,grandes_demandas,1321141.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,380620709.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c35e7fd9-eb52-3984-9f93-74791cfc4718 +2017,grandes_demandas,1301387.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,374929495.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,1c5b69cf-4e1c-397d-9599-0c7ead1d5501 +2018,grandes_demandas,1393878.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,401576345.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,087a1521-3194-3d93-9cf8-add9136f8da2 +2019,grandes_demandas,1372611.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,395449125.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,705622d6-4f20-3a00-8c45-396a46ec5ce1 +2020,grandes_demandas,1216425.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,350452115.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,213b018d-ce34-3a26-8bc7-3b432cd1743c +2021,grandes_demandas,1229771.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,354297139.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,8d1437b1-f652-3f6e-873c-64534a5fc3ed +2022,grandes_demandas,1238779.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,356892373.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,b37b8a12-6d77-38ac-a04e-e4606dbc8f85 +2013,commercial,53470.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,15404808.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,43fa4bae-8391-30e7-9915-a6283ca44da1 +2014,commercial,53538.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,15424353.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,51e8aacd-069b-3f08-8b94-fba4a8a7c5a3 +2015,commercial,57107.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,16452621.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,92a9598b-7a9d-36da-ae41-fc8bc63c4dba +2016,commercial,56939.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,16404183.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,1f58d6e4-a07b-3708-98c5-74dbca1e4b78 +2017,commercial,57924.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,16687962.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,0dc272e2-06a0-3a4a-859d-0ea91597043a +2018,commercial,58608.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,16885005.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,b6d70e23-120e-3dfd-bc85-3090a7a73a5f +2019,commercial,58562.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,16871831.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,277fc6d6-0898-3bcc-a1cd-a0c1be919056 +2020,commercial,59641.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,17182656.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,bb041d19-16e4-391d-9c9e-6135fdf7d7ea +2021,commercial,61364.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,17678825.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,48e9a546-222b-34ab-8f99-9f2ba00ae4c3 +2022,commercial,66484.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,19154159.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,25373505-5f16-3029-9756-2c29c8ca609e +2013,residential,103363.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,29778825.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,fa29f7a8-d6eb-3209-a695-fdfced6b6a50 +2014,residential,105307.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,30339029.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,23dbf7b2-1952-359c-baea-07bca3641720 +2015,residential,118583.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,34163808.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,f6faf4bd-9409-3228-8d2f-a06a6b0cb9ce +2016,residential,117786.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,33934075.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,2160daa8-87d8-3a7b-8c82-a6a2c420cbb2 +2017,residential,120543.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,34728569.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,83d84f53-1b5a-3552-833c-c810b9bcad06 +2018,residential,112300.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,32353677.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,13632920-30fe-35fc-a753-1fa739967b78 +2019,residential,108357.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,31217584.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,fb5365c1-fdfd-3220-baa9-f3037af15e6a +2020,residential,112627.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,32447777.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,8b0b71cb-6796-3000-8f91-e30f4b456cbf +2021,residential,110069.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,31710983.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,6fb35137-ab71-377d-a52e-685d5a69cd8c +2022,residential,111695.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,32179294.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,7bd797fc-8b5d-3791-96a6-3b9dd4e1e3c9 +2013,agricultural_irrigation,95612.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,27545778.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,c4ddb268-d1eb-3ea0-afcb-a4f7d23d11df +2014,agricultural_irrigation,88541.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,25508781.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,af3e9023-332e-3bb3-8c11-66e11b2ce7aa +2015,agricultural_irrigation,82906.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,23885197.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,70574339-6401-3eca-ad74-17e8501257ef +2016,agricultural_irrigation,61329.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17668849.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,152a599b-d139-3c8f-8c99-6f2b848c3445 +2017,agricultural_irrigation,82716.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,23830439.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,aca028f4-99ef-3b61-8154-4bfdb02db4dc +2018,agricultural_irrigation,79091.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,22786091.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,f27db981-712c-300a-92f9-086777d957c5 +2019,agricultural_irrigation,71602.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20628488.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,af83ee3d-bdf4-372c-b52c-b64ffc58f700 +2020,agricultural_irrigation,79137.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,22799384.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,72251d3d-bb98-39c8-9c2f-b517f0ec2f90 +2021,agricultural_irrigation,78145.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,22513613.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,2974f4e4-6148-31ff-9d76-8a45437281aa +2022,agricultural_irrigation,95796.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,27598870.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,46142dec-7be8-303e-ab1c-617cb45ad31f +2013,grandes_demandas,71124.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,20490750.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,349dfc81-6310-375c-9757-6d115eb2949e +2014,grandes_demandas,94243.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,27151284.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,cab284de-1179-3856-8aca-3bc5ba583c05 +2015,grandes_demandas,74509.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,21465972.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,dcd09e1f-7e31-32f3-8d0e-8a1a3bca7fa6 +2016,grandes_demandas,68262.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,19666362.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,acf57d3e-015c-34ac-a176-bc778850c7a2 +2017,grandes_demandas,68757.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,19809009.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,c4570a4d-7071-38d2-a803-9b1e4bc1067a +2018,grandes_demandas,71131.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,20492953.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,c6e3b807-52cf-3898-b1c4-563bae49ae3f +2019,grandes_demandas,72588.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,20912736.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,a57da88c-58a2-311a-bfc6-f03d854040f1 +2020,grandes_demandas,71283.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,20536702.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,0edc825c-1c1e-353e-b166-1b8b4d00b08f +2021,grandes_demandas,72584.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,20911325.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,0b349f87-ad79-343d-8d30-8aee974e484c +2022,grandes_demandas,72217.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,20805685.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,25486522-2446-360d-af4c-9f7ea0d4016c +2013,commercial,38923.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11213847.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,1142a431-7f41-383f-b570-a4c6b88ae627 +2014,commercial,38808.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11180640.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,6fdc3cf0-28cf-3b58-904c-73b5c6a6b06c +2015,commercial,42532.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12253344.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,9a8520dc-fe4d-3f90-b722-3cb2bd22c94e +2016,commercial,42378.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12209113.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,83ce3ad2-f663-319f-a1b4-a5ab61140a90 +2017,commercial,43036.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,12398688.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,ca2fbd89-71e5-3efe-bb03-4415619793ad +2018,commercial,41537.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11966809.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,7bbd4685-1dd2-3abb-8b03-db8d4dda1332 +2019,commercial,41540.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11967620.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,3cee920c-3d4a-3aca-8774-7454d20d2dd8 +2020,commercial,39850.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11480650.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,a909cc62-8fe6-3267-8baf-908185087b58 +2021,commercial,40055.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11539742.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,2905c1d3-ab66-38ca-80f4-8971eeebe2e1 +2022,commercial,39944.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,11507728.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,1df45995-efc7-3ba6-af87-227bbfe8ae7a +2013,residential,8272.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2383279.0,kg,La Paz,deie_mendoza,annual,AR LPM,b29c3f97-c467-327a-aca0-6a356a43b440 +2014,residential,7877.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2269235.0,kg,La Paz,deie_mendoza,annual,AR LPM,caaac225-9e2e-3464-8441-20fb4a0efdf7 +2015,residential,9269.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2670500.0,kg,La Paz,deie_mendoza,annual,AR LPM,0d178a62-88e6-3b9f-8a8b-fc97a4cbec8f +2016,residential,10082.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2904722.0,kg,La Paz,deie_mendoza,annual,AR LPM,703609ad-f19c-3eeb-ba57-2cda182a0fe5 +2017,residential,9360.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2696516.0,kg,La Paz,deie_mendoza,annual,AR LPM,04b2f614-6a0b-3129-965c-c0843ed96b5d +2018,residential,10531.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,3033859.0,kg,La Paz,deie_mendoza,annual,AR LPM,5c0b3812-aa01-313e-bf34-fb4c7f48da28 +2019,residential,8542555.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2461110096.0,kg,La Paz,deie_mendoza,annual,AR LPM,6ef4badb-da4d-3f39-92cc-ca40bafddfe5 +2020,residential,10539417.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,3036406038.0,kg,La Paz,deie_mendoza,annual,AR LPM,4b29bb56-8a49-396c-98f3-b892e24decfd +2021,residential,9714982.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2798886314.0,kg,La Paz,deie_mendoza,annual,AR LPM,5a029c16-85cd-3295-aa55-7c793b95e578 +2022,residential,8731515.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,2515549472.0,kg,La Paz,deie_mendoza,annual,AR LPM,35b76509-0b87-3d5c-a97f-2ebd6ae7fc0e +2013,agricultural_irrigation,755.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,217571.0,kg,La Paz,deie_mendoza,annual,AR LPM,77be3dfb-e9cd-340b-961a-88ce7bcc657c +2014,agricultural_irrigation,670.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,192922.0,kg,La Paz,deie_mendoza,annual,AR LPM,204124b6-1bf5-3744-a16c-5ec0687d224a +2015,agricultural_irrigation,512.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,147628.0,kg,La Paz,deie_mendoza,annual,AR LPM,8c4a88f0-e41c-31b7-a200-b60c5ee19a1e +2016,agricultural_irrigation,448.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,129143.0,kg,La Paz,deie_mendoza,annual,AR LPM,562343dd-d6af-3a58-8bd8-8aec5c10cce7 +2017,agricultural_irrigation,567.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,163233.0,kg,La Paz,deie_mendoza,annual,AR LPM,851c74d3-1160-34c5-8d96-8c0c7f03f65b +2018,agricultural_irrigation,518.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,149367.0,kg,La Paz,deie_mendoza,annual,AR LPM,d9d273ab-b3c4-325f-981b-8be70b23d828 +2019,agricultural_irrigation,375120.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,108072072.0,kg,La Paz,deie_mendoza,annual,AR LPM,701c4fe5-297e-3d12-bba8-87bb0b3c2784 +2020,agricultural_irrigation,564772.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,162710813.0,kg,La Paz,deie_mendoza,annual,AR LPM,70495361-cc9e-3390-a8f3-b56db013a9c6 +2021,agricultural_irrigation,482249.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,138935937.0,kg,La Paz,deie_mendoza,annual,AR LPM,3b47dac3-9f1a-3c24-a328-9152e32c6d7d +2022,agricultural_irrigation,509454.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,146773697.0,kg,La Paz,deie_mendoza,annual,AR LPM,5261d59b-9627-301c-95c7-2f70be2c1bf1 +2013,grandes_demandas,2661.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,766607.0,kg,La Paz,deie_mendoza,annual,AR LPM,9733e1ca-df40-3bda-b804-99d2b07c1d96 +2014,grandes_demandas,2608.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,751403.0,kg,La Paz,deie_mendoza,annual,AR LPM,d19bca0c-3e68-3c3d-b6dd-a733c8a00cb7 +2015,grandes_demandas,2851.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,821310.0,kg,La Paz,deie_mendoza,annual,AR LPM,7f03c150-79ef-3dfb-b1f6-9c5068dd46a5 +2016,grandes_demandas,2906.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,837294.0,kg,La Paz,deie_mendoza,annual,AR LPM,c5e00e98-6620-36d6-ae1f-f2fe3f1dd77b +2017,grandes_demandas,3024.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,871177.0,kg,La Paz,deie_mendoza,annual,AR LPM,b6c66e8e-754f-3a51-aea0-23ac9a453b76 +2018,grandes_demandas,2947.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,848981.0,kg,La Paz,deie_mendoza,annual,AR LPM,5c9009a8-5bc9-3f86-9caa-cb7354b7b5d6 +2019,grandes_demandas,2854688.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,822435613.0,kg,La Paz,deie_mendoza,annual,AR LPM,903e15a9-efea-3e7f-9aa3-541e0d84ad0f +2020,grandes_demandas,2646857.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,762559502.0,kg,La Paz,deie_mendoza,annual,AR LPM,aa0247e5-3e76-3a76-938f-f5d1dd855ae7 +2021,grandes_demandas,2601829.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,749586935.0,kg,La Paz,deie_mendoza,annual,AR LPM,d5ae61ee-59d2-37c2-8f16-6455f2a47e53 +2022,grandes_demandas,2776174.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,799815729.0,kg,La Paz,deie_mendoza,annual,AR LPM,6b464aa9-a045-31f0-9cf4-59c785dc755e +2013,commercial,3795.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1093227.0,kg,La Paz,deie_mendoza,annual,AR LPM,31868924-2e97-3c3d-bc31-bb7c3cc3f1da +2014,commercial,3736.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1076325.0,kg,La Paz,deie_mendoza,annual,AR LPM,792dc8d3-1100-3b49-9af2-89b26277abb8 +2015,commercial,4455.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1283433.0,kg,La Paz,deie_mendoza,annual,AR LPM,55ea5b95-a948-3384-ad85-ed047bcd343e +2016,commercial,4592.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1322925.0,kg,La Paz,deie_mendoza,annual,AR LPM,705a0033-7f6a-374a-87d2-5df6edfd37f2 +2017,commercial,4388.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1264259.0,kg,La Paz,deie_mendoza,annual,AR LPM,4809edd2-91b1-33c1-9693-d66296cef7de +2018,commercial,4791.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1380202.0,kg,La Paz,deie_mendoza,annual,AR LPM,50c956af-5dea-3407-88df-b475019e9218 +2019,commercial,3944282.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1136347644.0,kg,La Paz,deie_mendoza,annual,AR LPM,63afd8a3-9bc5-3af2-acd5-a826cab544c2 +2020,commercial,4251197.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1224769856.0,kg,La Paz,deie_mendoza,annual,AR LPM,31ce0ae2-d16e-3c50-bd0e-e7ddf00d6c4a +2021,commercial,4218410.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1215323921.0,kg,La Paz,deie_mendoza,annual,AR LPM,ee72c3dc-1185-3df2-9b78-0dffb5fa6f03 +2022,commercial,3856023.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,1110920226.0,kg,La Paz,deie_mendoza,annual,AR LPM,880ca3dc-6f78-3e81-99bb-a48c14c9e4cd +2013,residential,21753.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6267004.0,kg,Tupungato,deie_mendoza,annual,Tupungato,6b192b41-290b-3546-a181-d0bc9a764913 +2014,residential,23383.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6736786.0,kg,Tupungato,deie_mendoza,annual,Tupungato,e4ce21b7-8689-3a0d-9133-aba56df6ce27 +2015,residential,27130.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7816179.0,kg,Tupungato,deie_mendoza,annual,Tupungato,0fe4db63-17cc-3c14-95bb-1b412822d0be +2016,residential,27749.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7994591.0,kg,Tupungato,deie_mendoza,annual,Tupungato,db2fe29e-412c-3830-b8e6-09d533f81d7a +2017,residential,28299.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8152919.0,kg,Tupungato,deie_mendoza,annual,Tupungato,304ab7a6-a517-3ce4-b94a-18a5150655fe +2018,residential,27486.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7918831.0,kg,Tupungato,deie_mendoza,annual,Tupungato,b8316f6b-9371-3652-ba39-eca77a5ebe59 +2019,residential,26546.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7648001.0,kg,Tupungato,deie_mendoza,annual,Tupungato,734fd1c6-5e6b-347a-b052-ff8f3b9e9aae +2020,residential,27198.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7835871.0,kg,Tupungato,deie_mendoza,annual,Tupungato,cf4d8afe-45e4-3f56-a7cc-328047b38279 +2021,residential,27566.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,7941892.0,kg,Tupungato,deie_mendoza,annual,Tupungato,3434a869-f760-3bfb-9959-f5d972b4040e +2022,residential,28646.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,8252975.0,kg,Tupungato,deie_mendoza,annual,Tupungato,78ae9330-2cce-3ba2-8dbb-363243b2bc83 +2013,agricultural_irrigation,77153.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,22227905.0,kg,Tupungato,deie_mendoza,annual,Tupungato,fd8f1e78-4d69-3b72-92de-829249d14ca1 +2014,agricultural_irrigation,70927.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20434212.0,kg,Tupungato,deie_mendoza,annual,Tupungato,985e5838-8306-3b04-8f5d-a4c663e7b9bd +2015,agricultural_irrigation,62143.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,17903523.0,kg,Tupungato,deie_mendoza,annual,Tupungato,f5eb454b-03da-3dc4-9b5b-edf87afd61f3 +2016,agricultural_irrigation,54432.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,15681826.0,kg,Tupungato,deie_mendoza,annual,Tupungato,9154e16b-46b4-35b6-b9e7-2f32e4d7c372 +2017,agricultural_irrigation,69460.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20011388.0,kg,Tupungato,deie_mendoza,annual,Tupungato,c3a58f50-9972-37eb-b1d6-670beefb754f +2018,agricultural_irrigation,68882.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19844817.0,kg,Tupungato,deie_mendoza,annual,Tupungato,604f4387-2660-36bb-bfe5-ba0d67f40aa6 +2019,agricultural_irrigation,67950.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19576394.0,kg,Tupungato,deie_mendoza,annual,Tupungato,94892f08-d9b5-321e-bc04-8ce08966ad93 +2020,agricultural_irrigation,73318.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,21122994.0,kg,Tupungato,deie_mendoza,annual,Tupungato,4a152498-0edf-362f-895a-380b29d0ee22 +2021,agricultural_irrigation,71007.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20457172.0,kg,Tupungato,deie_mendoza,annual,Tupungato,c5fedc78-088c-3dd8-9db8-ace1e09866a1 +2022,agricultural_irrigation,71512.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,20602633.0,kg,Tupungato,deie_mendoza,annual,Tupungato,15a62da5-a2dc-3655-9cc8-57d0460163e4 +2013,grandes_demandas,16170.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4658468.0,kg,Tupungato,deie_mendoza,annual,Tupungato,0487adda-958b-391e-8272-bc07906ae555 +2014,grandes_demandas,17192.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4952994.0,kg,Tupungato,deie_mendoza,annual,Tupungato,c10f5458-1c54-387f-b187-ca672bc2cbb4 +2015,grandes_demandas,17537.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5052499.0,kg,Tupungato,deie_mendoza,annual,Tupungato,dc911101-4cbf-3a25-ba48-58880d79709c +2016,grandes_demandas,20580.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5929038.0,kg,Tupungato,deie_mendoza,annual,Tupungato,3ffa2756-a308-33b7-8187-72377ed0c849 +2017,grandes_demandas,19781.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5698897.0,kg,Tupungato,deie_mendoza,annual,Tupungato,bd5b8cd3-31a0-3cb5-94bd-7ba7f54ad792 +2018,grandes_demandas,21111.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6081954.0,kg,Tupungato,deie_mendoza,annual,Tupungato,db9a4ef4-5005-3325-98fb-bcccd30cb397 +2019,grandes_demandas,20081.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5785436.0,kg,Tupungato,deie_mendoza,annual,Tupungato,3ff4e5a1-7eec-3acd-b3b6-2234262372fa +2020,grandes_demandas,17111.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4929725.0,kg,Tupungato,deie_mendoza,annual,Tupungato,301f3c3b-178e-3ebc-b2f4-14369ee5bd42 +2021,grandes_demandas,22300.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6424572.0,kg,Tupungato,deie_mendoza,annual,Tupungato,2fee2ce4-849a-33d0-a794-da5ded71fd68 +2022,grandes_demandas,26365.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7595842.0,kg,Tupungato,deie_mendoza,annual,Tupungato,b5efda23-752b-3bfe-82f1-01879766ab90 +2013,commercial,10322.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2973807.0,kg,Tupungato,deie_mendoza,annual,Tupungato,624b1639-0396-3f78-94a0-12351dcf7be1 +2014,commercial,10202.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2939217.0,kg,Tupungato,deie_mendoza,annual,Tupungato,885ea0e9-cbb6-318f-a22d-8732316b7f54 +2015,commercial,10685.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3078298.0,kg,Tupungato,deie_mendoza,annual,Tupungato,ef0a568c-e99f-3411-a279-92fd0af5f156 +2016,commercial,10775.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3104254.0,kg,Tupungato,deie_mendoza,annual,Tupungato,657e2adc-5fc8-34fd-bbb6-c292fe80745f +2017,commercial,10907.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3142259.0,kg,Tupungato,deie_mendoza,annual,Tupungato,15bd1411-f970-3ef1-a7e0-071f46264476 +2018,commercial,10618.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3058952.0,kg,Tupungato,deie_mendoza,annual,Tupungato,2a5fd6d9-71fa-315b-8eaa-a173ba8cb3c0 +2019,commercial,9985.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2876819.0,kg,Tupungato,deie_mendoza,annual,Tupungato,47eff791-3cd7-38ff-b687-5b796bfb0aa9 +2020,commercial,9594.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2763987.0,kg,Tupungato,deie_mendoza,annual,Tupungato,feacfdce-9b1b-3c76-894a-c3c3e8e905d8 +2021,commercial,9949.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2866418.0,kg,Tupungato,deie_mendoza,annual,Tupungato,30665199-00ab-3dac-a7f6-bfeb3e358900 +2022,commercial,10378.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2989821.0,kg,Tupungato,deie_mendoza,annual,Tupungato,ee45c59e-8b90-3dc9-89c3-cce34e81da6e +2013,residential,31935.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,9200465.0,kg,Junín,deie_mendoza,annual,AR NIN,699e269c-4055-33e2-b6b7-f1946cc47eb9 +2014,residential,33194.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,9563083.0,kg,Junín,deie_mendoza,annual,AR NIN,1f5f45eb-cd1d-389a-8337-7712a8548c0e +2015,residential,36847.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10615576.0,kg,Junín,deie_mendoza,annual,AR NIN,1561ca9b-f10a-3724-8cb6-663f9f5f5b07 +2016,residential,36924.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10637804.0,kg,Junín,deie_mendoza,annual,AR NIN,b6e57fd5-bbbc-3d25-88e3-6c687431967d +2017,residential,38822.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,11184617.0,kg,Junín,deie_mendoza,annual,AR NIN,e8d1dd38-ded4-3bb2-b0ae-786251087ca5 +2018,residential,35399982.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10198734814.0,kg,Junín,deie_mendoza,annual,AR NIN,8cfb9dcf-7ca9-3fde-8fc3-b6d3b14ad475 +2019,residential,35838634.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10325110455.0,kg,Junín,deie_mendoza,annual,AR NIN,2be6b7b1-5280-38c8-9ea5-2398cc303fea +2020,residential,35945384.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10355865130.0,kg,Junín,deie_mendoza,annual,AR NIN,2e9e8cb9-8b2a-3f87-aefe-1a91243ba293 +2021,residential,36895594.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10629620631.0,kg,Junín,deie_mendoza,annual,AR NIN,76a890d1-82d1-3cd0-9637-99c8d5208e86 +2022,residential,37907975.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,10921287598.0,kg,Junín,deie_mendoza,annual,AR NIN,a9e25a31-5ecc-3da4-94dc-aeacee400d86 +2013,agricultural_irrigation,21411.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6168416.0,kg,Junín,deie_mendoza,annual,AR NIN,6b2d99be-fa5e-3627-a32c-db1f9193162b +2014,agricultural_irrigation,19221.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5537457.0,kg,Junín,deie_mendoza,annual,AR NIN,0dd003d4-0a76-3171-ac90-5843db808a11 +2015,agricultural_irrigation,16546.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4766997.0,kg,Junín,deie_mendoza,annual,AR NIN,60972d13-2e5e-3218-b681-98715ab3ea70 +2016,agricultural_irrigation,12411.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,3575610.0,kg,Junín,deie_mendoza,annual,AR NIN,1cf89081-7b62-3716-ac66-5607fba2c27f +2017,agricultural_irrigation,16342.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4708048.0,kg,Junín,deie_mendoza,annual,AR NIN,4a7682c0-62e3-3144-883e-61d8ed08ab10 +2018,agricultural_irrigation,17589605.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5067565200.0,kg,Junín,deie_mendoza,annual,AR NIN,ac15e0ee-bfed-3187-9230-2c896109e25c +2019,agricultural_irrigation,15537310.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4476299011.0,kg,Junín,deie_mendoza,annual,AR NIN,36d8a311-4bf9-3612-8932-25a0ba485ff1 +2020,agricultural_irrigation,18363796.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5290609628.0,kg,Junín,deie_mendoza,annual,AR NIN,8946c22f-e980-3d52-81d3-0e11b390db9a +2021,agricultural_irrigation,17238853.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,4966513549.0,kg,Junín,deie_mendoza,annual,AR NIN,5abfcf98-b3b4-31a1-a170-c3aff19c3ad2 +2022,agricultural_irrigation,19829807.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,5712967397.0,kg,Junín,deie_mendoza,annual,AR NIN,4d0cb66c-3843-3ebc-940b-a7dd7eea5f2a +2013,grandes_demandas,15192.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4376858.0,kg,Junín,deie_mendoza,annual,AR NIN,9ffd42ef-45e2-3629-9aa7-4e5365a91714 +2014,grandes_demandas,17056.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4913871.0,kg,Junín,deie_mendoza,annual,AR NIN,febd5a84-1390-35b2-8ca1-3849b796f327 +2015,grandes_demandas,17131.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4935324.0,kg,Junín,deie_mendoza,annual,AR NIN,e7bf8849-0f8f-3e98-b051-f276d07fc247 +2016,grandes_demandas,15448.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4450624.0,kg,Junín,deie_mendoza,annual,AR NIN,58263857-b3aa-30f2-ad58-196acc05950b +2017,grandes_demandas,16157.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4654834.0,kg,Junín,deie_mendoza,annual,AR NIN,be21eb4c-1b9d-3fef-8d80-ef6d1a944645 +2018,grandes_demandas,16146793.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4651891063.0,kg,Junín,deie_mendoza,annual,AR NIN,b6cb7fd6-31fd-3259-b9f7-fd42aac5e47c +2019,grandes_demandas,14826621.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4271549510.0,kg,Junín,deie_mendoza,annual,AR NIN,58954ee0-4819-3d83-8feb-c8a3923eb98b +2020,grandes_demandas,13938308.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4015626535.0,kg,Junín,deie_mendoza,annual,AR NIN,916e57a8-4387-38cb-9584-2460a8255fd9 +2021,grandes_demandas,14742143.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4247211398.0,kg,Junín,deie_mendoza,annual,AR NIN,a572e56c-26d1-3691-9651-ebf33d67d897 +2022,grandes_demandas,15164907.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4369009707.0,kg,Junín,deie_mendoza,annual,AR NIN,1a4b62d7-b93e-3725-a62c-71732d5568ca +2013,commercial,13296.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3830584.0,kg,Junín,deie_mendoza,annual,AR NIN,f43ac241-25d0-3254-96e1-2f0d83666ef8 +2014,commercial,14267.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4110239.0,kg,Junín,deie_mendoza,annual,AR NIN,deed3d63-167c-351b-ac2c-79514155c34b +2015,commercial,15609.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4497069.0,kg,Junín,deie_mendoza,annual,AR NIN,dc84b2c0-1381-391d-b85e-128e460c7f16 +2016,commercial,15911.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4584020.0,kg,Junín,deie_mendoza,annual,AR NIN,f52e2eef-f78b-3f9b-9e38-0373131a8a84 +2017,commercial,16565.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4772406.0,kg,Junín,deie_mendoza,annual,AR NIN,82170722-bfcf-3608-b75d-5b959a5a9d2c +2018,commercial,15603179.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4495275870.0,kg,Junín,deie_mendoza,annual,AR NIN,19286128-b5d6-3941-a2c1-601867a241a7 +2019,commercial,16352914.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4711274523.0,kg,Junín,deie_mendoza,annual,AR NIN,e02f3be0-a2f2-3ecb-b998-1a80111c3961 +2020,commercial,15654714.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4510123103.0,kg,Junín,deie_mendoza,annual,AR NIN,1c185b6e-5dcc-3162-b934-2ee86b318c74 +2021,commercial,16124466.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4645458655.0,kg,Junín,deie_mendoza,annual,AR NIN,181722ce-ed15-365a-8616-c2750ec0e927 +2022,commercial,15935782.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,4591098794.0,kg,Junín,deie_mendoza,annual,AR NIN,48b99886-f599-398e-81bb-90bc515235a2 +2013,residential,135825.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,39131244.0,kg,Capital,deie_mendoza,annual,AR MDZ,850ce4fd-a5a5-3def-8a9c-412b46416298 +2014,residential,139632.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40228070.0,kg,Capital,deie_mendoza,annual,AR MDZ,1ce31fae-f0c1-370b-987d-0f9d1e3a1320 +2015,residential,140599.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,40506675.0,kg,Capital,deie_mendoza,annual,AR MDZ,652951a6-3beb-3080-a1e9-a74e2354a1db +2016,residential,138225.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,39822494.0,kg,Capital,deie_mendoza,annual,AR MDZ,f0e689d5-69a1-3809-a418-a9547a3bacf2 +2017,residential,133277.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,38397230.0,kg,Capital,deie_mendoza,annual,AR MDZ,7eb3011c-2bd3-30e1-8f71-5eb563220bb2 +2018,residential,122889557.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,35404481372.0,kg,Capital,deie_mendoza,annual,AR MDZ,8ba05419-c52c-3dd5-8fed-3368d9654b49 +2019,residential,115923980.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,33397698638.0,kg,Capital,deie_mendoza,annual,AR MDZ,3041fd9c-4930-35d4-8bac-95c37a979d12 +2020,residential,124034.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,35734053.0,kg,Capital,deie_mendoza,annual,AR MDZ,a7b7c441-f8a6-31f7-85e1-c1a0eca3b631 +2021,residential,116794309.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,33648440423.0,kg,Capital,deie_mendoza,annual,AR MDZ,517b4334-1514-3624-80e9-b86be7e9dfb5 +2022,residential,125245.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,36083036.0,kg,Capital,deie_mendoza,annual,AR MDZ,468a4b0a-0354-363b-83be-af50cb5d6a6b +2014,agricultural_irrigation,512.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,147493.0,kg,Capital,deie_mendoza,annual,AR MDZ,271d0d86-d2ea-32ff-967c-890aa8c06246 +2019,agricultural_irrigation,29952.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,8629171.0,kg,Capital,deie_mendoza,annual,AR MDZ,b61e9d69-7648-39b1-afb4-7e59e98905a6 +2020,agricultural_irrigation,67.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19395.0,kg,Capital,deie_mendoza,annual,AR MDZ,ab399bdd-7794-3593-8ebc-38b06fbc6b73 +2021,agricultural_irrigation,22392.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,6451135.0,kg,Capital,deie_mendoza,annual,AR MDZ,62bfd35b-6cd3-3db7-97fe-f3ba59e9af1e +2022,agricultural_irrigation,68.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,19540.0,kg,Capital,deie_mendoza,annual,AR MDZ,3de6b548-14af-3792-9fee-614b66f3205c +2013,grandes_demandas,176922.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,50971090.0,kg,Capital,deie_mendoza,annual,AR MDZ,4c4c4947-163f-3281-93c3-a2bd89650f22 +2014,grandes_demandas,197451.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,56885752.0,kg,Capital,deie_mendoza,annual,AR MDZ,c65b7a78-a624-326c-91d5-277d1542dc92 +2015,grandes_demandas,418196.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,120482329.0,kg,Capital,deie_mendoza,annual,AR MDZ,303672a4-ed54-352a-b341-4fc6987e26f9 +2016,grandes_demandas,179621.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,51748678.0,kg,Capital,deie_mendoza,annual,AR MDZ,ccfbd702-c3f2-33cf-bc4c-40961f44c85c +2017,grandes_demandas,175513.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,50565390.0,kg,Capital,deie_mendoza,annual,AR MDZ,d9b703f1-cd44-3bc2-9d14-75632393223b +2018,grandes_demandas,166501358.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,47969041240.0,kg,Capital,deie_mendoza,annual,AR MDZ,1fbf1f8e-dc8f-3a4f-86d6-f056afeceb75 +2019,grandes_demandas,159921577.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,46073406334.0,kg,Capital,deie_mendoza,annual,AR MDZ,a007aec8-97c6-3bea-8506-33d23b528adb +2020,grandes_demandas,136899.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,39440549.0,kg,Capital,deie_mendoza,annual,AR MDZ,af6812c4-f28d-36fa-9c86-2d92d449d9ad +2021,grandes_demandas,138089040.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,39783452424.0,kg,Capital,deie_mendoza,annual,AR MDZ,24e6f136-100e-329d-8259-e4deaf86e4e5 +2022,grandes_demandas,155334.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,44751797.0,kg,Capital,deie_mendoza,annual,AR MDZ,f56a8ffd-31fb-3c03-9583-f2aa141afa42 +2013,commercial,103800.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,29904820.0,kg,Capital,deie_mendoza,annual,AR MDZ,de56e552-c3bc-3ad2-9b99-f0540c9fcb50 +2014,commercial,103044.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,29686999.0,kg,Capital,deie_mendoza,annual,AR MDZ,62817a50-d87c-3621-950d-bab6cb3e7125 +2015,commercial,102581.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,29553518.0,kg,Capital,deie_mendoza,annual,AR MDZ,c674f97a-b674-3aee-9dab-c4976248e31b +2016,commercial,100796.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,29039413.0,kg,Capital,deie_mendoza,annual,AR MDZ,892a7b54-955a-31ef-aa3e-e6f0503656ba +2017,commercial,98061.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,28251362.0,kg,Capital,deie_mendoza,annual,AR MDZ,076aa8c3-0dad-3c25-a74e-78890d418a7f +2018,commercial,95372728.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,27476882937.0,kg,Capital,deie_mendoza,annual,AR MDZ,43f89a77-bd93-3ec1-bff1-2cb86618a54a +2019,commercial,89278055.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,25721007646.0,kg,Capital,deie_mendoza,annual,AR MDZ,16132ee4-1d28-353c-81a5-d45d2fbee820 +2020,commercial,77714.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,22389375.0,kg,Capital,deie_mendoza,annual,AR MDZ,85570d49-41a1-3ce3-995c-5d3eb3563b36 +2021,commercial,77345171.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,22283143765.0,kg,Capital,deie_mendoza,annual,AR MDZ,bb073b7c-9c71-3af6-9d20-a60991dcba5f +2022,commercial,85633.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,24670926.0,kg,Capital,deie_mendoza,annual,AR MDZ,28706c82-b48d-37e7-9d07-7903adf08cda +2013,residential,19126.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,5510210.0,kg,Malargüe,deie_mendoza,annual,AR LGS,426a3f2f-2bdd-3fcc-ac72-725036c5b489 +2014,residential,19755.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,5691530.0,kg,Malargüe,deie_mendoza,annual,AR LGS,eb021a54-98d4-33f8-9041-e14bb0a56831 +2015,residential,21822.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6286856.0,kg,Malargüe,deie_mendoza,annual,AR LGS,36b082c8-cdd3-3d4c-b9db-1b1dff964f5c +2016,residential,22749.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6554049.0,kg,Malargüe,deie_mendoza,annual,AR LGS,eb62f5f2-bdeb-32fd-a761-a6063c96946e +2017,residential,23541.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6782103.0,kg,Malargüe,deie_mendoza,annual,AR LGS,0d657953-433d-343f-a39d-328922ae5e50 +2018,residential,22261.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6413396.0,kg,Malargüe,deie_mendoza,annual,AR LGS,80432451-b677-3288-a0b3-4df62ad4db48 +2019,residential,21602.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6223660.0,kg,Malargüe,deie_mendoza,annual,AR LGS,464cd38d-3ca5-3c36-b6a0-d3892394f011 +2020,residential,21492.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6191934.0,kg,Malargüe,deie_mendoza,annual,AR LGS,9eca46cd-3dce-3195-a3c3-ead6379085d2 +2021,residential,22201.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6395995.0,kg,Malargüe,deie_mendoza,annual,AR LGS,9615f635-0172-3b60-add2-e860912c6b7a +2022,residential,22120.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,6372632.0,kg,Malargüe,deie_mendoza,annual,AR LGS,79bdfc33-bf48-3285-a1c0-6e4ee79c4b8f +2013,agricultural_irrigation,1264.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,364139.0,kg,Malargüe,deie_mendoza,annual,AR LGS,b1b00dd0-ab91-391c-b4af-a0c8ca37a0fd +2014,agricultural_irrigation,3091.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,890639.0,kg,Malargüe,deie_mendoza,annual,AR LGS,69835836-19fa-3055-a4d6-4bc919c8765e +2015,agricultural_irrigation,2160.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,622168.0,kg,Malargüe,deie_mendoza,annual,AR LGS,b08acdf3-bb43-34d2-a0c5-0705f67d99aa +2016,agricultural_irrigation,1204.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,346814.0,kg,Malargüe,deie_mendoza,annual,AR LGS,2dd6bfc4-888d-3a8f-bcbc-2b8d881ac454 +2017,agricultural_irrigation,1479.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,426060.0,kg,Malargüe,deie_mendoza,annual,AR LGS,5b1fd07b-ac4b-31d8-b8c5-7b7c8ee9a6ff +2018,agricultural_irrigation,2598.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,748356.0,kg,Malargüe,deie_mendoza,annual,AR LGS,a3cda87e-b76a-3fe6-884a-20c4f3bdbb76 +2019,agricultural_irrigation,2248.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,647648.0,kg,Malargüe,deie_mendoza,annual,AR LGS,5836b2b5-bc7c-3d8c-a212-5bb86d57802f +2020,agricultural_irrigation,2698.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,777250.0,kg,Malargüe,deie_mendoza,annual,AR LGS,9c2b516f-1b54-391f-9cc9-32a6ef6f28d7 +2021,agricultural_irrigation,2296.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,661514.0,kg,Malargüe,deie_mendoza,annual,AR LGS,e17070a6-c24f-3e80-a9aa-a5a48eed9937 +2022,agricultural_irrigation,2198.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,633128.0,kg,Malargüe,deie_mendoza,annual,AR LGS,c5defb37-358c-3827-aee2-200b2fc0f14d +2013,grandes_demandas,28931.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,8335145.0,kg,Malargüe,deie_mendoza,annual,AR LGS,d5173419-23d9-331d-b0c0-4ebd2d364e6a +2014,grandes_demandas,30390.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,8755296.0,kg,Malargüe,deie_mendoza,annual,AR LGS,2c2022ec-19f0-34ff-9789-98b9e251294e +2015,grandes_demandas,29186.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,8408383.0,kg,Malargüe,deie_mendoza,annual,AR LGS,398a8a48-99c2-3535-b4c9-590e0dd71430 +2016,grandes_demandas,28516.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,8215417.0,kg,Malargüe,deie_mendoza,annual,AR LGS,38ee1835-6806-3f16-981d-187bab1d6a51 +2017,grandes_demandas,29883.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,8609294.0,kg,Malargüe,deie_mendoza,annual,AR LGS,a3befda8-a0a1-37c0-8b0a-eb3e2af20112 +2018,grandes_demandas,25814.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7437077.0,kg,Malargüe,deie_mendoza,annual,AR LGS,c172e4ad-9579-3b1d-bccf-63c3c095b4ab +2019,grandes_demandas,23024.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,6633246.0,kg,Malargüe,deie_mendoza,annual,AR LGS,3d93996e-7e3f-3625-a42a-435c7e8ad1b6 +2020,grandes_demandas,16489.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,4750503.0,kg,Malargüe,deie_mendoza,annual,AR LGS,65458089-cecb-374a-aba3-994ae7b8939b +2021,grandes_demandas,19415.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,5593493.0,kg,Malargüe,deie_mendoza,annual,AR LGS,eeb7fcb1-6968-31ec-8f69-a77fe1361467 +2022,grandes_demandas,25472.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,7338568.0,kg,Malargüe,deie_mendoza,annual,AR LGS,61f781fc-ddea-301e-9904-ce46cc1d8223 +2013,commercial,11070.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3189224.0,kg,Malargüe,deie_mendoza,annual,AR LGS,4e9102f4-dd16-3eba-9104-f431b5f05904 +2014,commercial,11704.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3371898.0,kg,Malargüe,deie_mendoza,annual,AR LGS,438577d2-d66c-3829-a226-c259527de503 +2015,commercial,12542.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3613222.0,kg,Malargüe,deie_mendoza,annual,AR LGS,2eccf6b2-7b62-3078-8810-39c81eac0bc1 +2016,commercial,12356.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3559727.0,kg,Malargüe,deie_mendoza,annual,AR LGS,27194bc7-9a6c-3c1e-97c4-59854a194ce2 +2017,commercial,11929.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3436861.0,kg,Malargüe,deie_mendoza,annual,AR LGS,12d57fa2-59be-3380-a081-c2cbae40bced +2018,commercial,11371.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3276126.0,kg,Malargüe,deie_mendoza,annual,AR LGS,0f65ccba-baac-3146-8682-914d885e7891 +2019,commercial,10886.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3136356.0,kg,Malargüe,deie_mendoza,annual,AR LGS,90e104c8-8d3d-390c-8312-2121220dc9f0 +2020,commercial,9779.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2817205.0,kg,Malargüe,deie_mendoza,annual,AR LGS,8cc9505a-b755-3bac-824d-b81218c2bff1 +2021,commercial,10216.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,2943105.0,kg,Malargüe,deie_mendoza,annual,AR LGS,1c806900-2e5e-3e77-a3ef-c048a23fd7e1 +2022,commercial,10707.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,3084560.0,kg,Malargüe,deie_mendoza,annual,AR LGS,7c5413bc-6e59-3b30-9246-19489e563ffe +2013,residential,247160.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,71206674.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,1f5c1a29-e230-351d-8670-2c1d87195896 +2014,residential,256723.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,73961945.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,f8d4e450-b6ee-3c30-9be4-0b6d5ba7609d +2015,residential,275674.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,79421609.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,f4ad9f49-ecb3-3d05-8488-bfcf7617fa29 +2016,residential,277135.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,79842510.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,fd2f22cd-c99c-3e40-a222-644dec9a7ab0 +2017,residential,269578.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,77665442.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,e2478aca-5254-3a6f-b69b-9d1969d77e24 +2018,residential,253355270.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,72991653287.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,08767478-31a6-37df-9bdb-5a6065deb011 +2019,residential,237950571.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,68553559505.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,ce84724d-d59a-3baa-9fc3-ba6c59353014 +2020,residential,253500388.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,73033461783.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,0caac1cf-a3b8-3811-ae2e-5fda101372e3 +2021,residential,238015965.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,68572399517.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,1097d911-b171-3d6b-b535-da62f6d87e49 +2022,residential,247222009.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,71224660793.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,dd5d742a-d39e-3a45-aca7-6a3695f07e36 +2013,agricultural_irrigation,8322.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2397474.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,d144f9db-bb7b-33a0-bb1b-d1d5fc0b5bc9 +2014,agricultural_irrigation,7453.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2147238.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,9528a1ae-0a77-346b-aa06-971d13f8f574 +2015,agricultural_irrigation,7468.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2151675.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,41222a85-46f6-3d56-afc1-aae446676661 +2016,agricultural_irrigation,6142.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,1769621.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,7c8369c4-dd66-3814-ae41-e0c2bf776b79 +2017,agricultural_irrigation,6973.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2008958.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,d3a0b639-7f90-364e-aedf-6e7c2b4a93c8 +2018,agricultural_irrigation,6818792.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,1964493975.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,fee40bea-6abc-308b-b23e-f82cf4bb7f76 +2019,agricultural_irrigation,7464296.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2150463678.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,b6709465-9e95-3481-a101-df5bd054beb1 +2020,agricultural_irrigation,8067890.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2324359109.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,8f27ed61-94a4-34d8-881b-f00e657c77af +2021,agricultural_irrigation,8152879.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2348844440.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,c3196812-9611-35ea-a3e1-0cd78c663dc2 +2022,agricultural_irrigation,7727135.0,MWh,I.5.2,CO2,0.2881,kgCO2/kWh,2226187594.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,65b47d5b-008c-3103-a3aa-5926375e00d4 +2013,grandes_demandas,211835.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,61029799.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,9f053966-4254-3ce8-b7be-51808b4c50af +2014,grandes_demandas,205066.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,59079497.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,6f170baf-f659-34ce-ad06-2e896094db14 +2015,grandes_demandas,216917.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,62493927.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,40bae08d-698d-3ce6-a546-1b0170bcb775 +2016,grandes_demandas,215149.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,61984294.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,13b2cd33-f5a2-398e-ad88-194d1efecf73 +2017,grandes_demandas,213344.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,61464499.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,3e4f06c5-f2c6-3b33-86f8-968b771caa03 +2018,grandes_demandas,205106713.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,59091244015.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,5ab2f925-90aa-37d5-a592-149700448f95 +2019,grandes_demandas,202086895.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,58221234450.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,bc944b0f-a458-3b9a-9d5f-3b0032ebe429 +2020,grandes_demandas,189911382.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,54713469154.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,91f9f6da-47c9-3cdf-8fc2-47aa88ad31b3 +2021,grandes_demandas,190571029.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,54903513455.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,b132ea02-051e-3ee5-8002-b2aa074f8bac +2022,grandes_demandas,206561447.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,59510352881.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,68fa1618-1d79-32bc-bef7-1902e55b2e10 +2013,commercial,86799.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,25006865.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,b5e00d6b-ce0a-38ff-9625-99883bc33e9d +2014,commercial,86959.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,25052744.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,4e36ae97-3742-3ff8-8e75-8adaf9ce890c +2015,commercial,88945.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,25624924.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,cba79a8f-4250-3717-bea3-bd9a0fa1e289 +2016,commercial,87689.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,25263162.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,ed9259ba-1883-3c1e-8bf1-dff9a32305cc +2017,commercial,86510.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,24923417.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,b3823814-bad7-387a-8f12-e51c260c017d +2018,commercial,84917658.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,24464777270.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,6a0e9dfb-564c-345b-9d23-091917886ca3 +2019,commercial,82712456.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,23829458574.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,6d2052c2-754b-3a18-81c2-ec586ec904bb +2020,commercial,79559915.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,22921211512.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,91220a4f-92c1-3184-8a3c-b70f90c4998e +2021,commercial,79610741.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,22935854482.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,e28f3529-fbec-3d9f-956a-6344935fef72 +2022,commercial,84351979.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,24301805150.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,34c0ce7f-e545-3b87-909c-f3faf26d8f02 +2013,residential,182958.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,52710077.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,9f28b5c6-3b1c-3f2a-9e84-61a98563ea19 +2014,residential,182025.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,52441365.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,c6a2a796-5d2f-338d-89c6-2a3594356d63 +2015,residential,193004.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,55604377.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,8257c4d6-f0c3-30df-8d46-f4b4b86e20ab +2016,residential,189255.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,54524432.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,5e28e899-a405-32ad-baa3-b69f0b1493e4 +2017,residential,186115.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,53619649.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,84494e02-0285-3218-8c67-0244f071de4d +2018,residential,171959.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,49541450.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,9380ee5d-d94c-30a4-90c3-040a65d1dc63 +2019,residential,164607.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,47423215.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,3fa98038-e95f-391d-bec6-4dd979954375 +2020,residential,175030.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,50426068.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,91835572-6efc-3cbf-a429-39c10e33e779 +2021,residential,166117153.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,47858351779.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,32c7cfdf-06b4-3020-9ea6-34a73e42c6f2 +2022,residential,166377770.0,MWh,I.1.2,CO2,0.2881,kgCO2/kWh,47933435537.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,5f9fe04c-d7c6-3d15-9510-3b7b096c0865 +2013,grandes_demandas,132711.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,38234174.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,95ef571d-76bd-3596-8692-9543a157afb0 +2014,grandes_demandas,135346.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,38993237.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,604d3ea8-0ee0-3a9b-8103-79f4414d9413 +2015,grandes_demandas,130073.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,37473993.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,a5c4bd60-a657-3a85-bf76-770735eaa6a8 +2016,grandes_demandas,124794.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,35953098.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,ef2d75bd-4dcf-3a59-9635-886daca9377e +2017,grandes_demandas,119995.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,34570442.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,0dc9e2b6-1f4c-3c4c-8fe0-e8275fdb8b58 +2018,grandes_demandas,115468.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,33266190.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,f0d0f2bc-bced-3c26-b99e-d7e0f88472b0 +2019,grandes_demandas,109175.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,31453357.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,71b43a22-17ce-36f5-8136-e7567335b77d +2020,grandes_demandas,97965.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,28223774.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,f14eb49d-8ea7-3f42-85f6-765faa44df37 +2021,grandes_demandas,102636991.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,29569717107.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,99688ef7-53a3-355d-a99f-bb2ba44e7fde +2022,grandes_demandas,108977280.0,MWh,I.3.2,CO2,0.2881,kgCO2/kWh,31396354368.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,cb755117-880a-3883-9351-d8564514ef91 +2013,commercial,67450.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,19432338.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,66a17964-6e61-3db1-9c16-4819853d8d0a +2014,commercial,65253.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,18799475.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,2dd39831-7494-3a96-afe4-7c417a7f09b6 +2015,commercial,69468.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20013861.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,fe811cff-c3b4-3408-a673-850803879df3 +2016,commercial,69504.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20024111.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,f4390921-891d-3f46-89e7-496a5ab7e207 +2017,commercial,69432.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20003294.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,b127021c-70e7-3972-9b34-568eb5674207 +2018,commercial,69612.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,20055192.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,bffd6cb1-2945-34a7-b47f-1df4ffcf3b43 +2019,commercial,63946.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,18422858.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,ce3ea46d-7acf-3354-94e0-02f1f9f42532 +2020,commercial,57797.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,16651420.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,ff824592-15e7-3b76-8b66-24edac62114a +2021,commercial,59982260.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,17280889106.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,d29cac7e-b622-32a3-b3a1-b180e0aa9dcc +2022,commercial,62470130.0,MWh,I.2.2,CO2,0.2881,kgCO2/kWh,17997644453.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,f2d05282-861d-3bff-b4fe-77801bbc2d74 +2018,residential,441.0,TJ,I.1.1,CO2,56100.0,kg/TJ,24758246.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,fc7c8808-fcf3-3f30-b562-190c79e1feeb +2019,residential,459.0,TJ,I.1.1,CO2,56100.0,kg/TJ,25733363.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,6fe85186-5ca6-35c8-bd84-9b74c12548e1 +2020,residential,471.0,TJ,I.1.1,CO2,56100.0,kg/TJ,26447000.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,2d8538f3-d978-3606-94ac-fb26cb9d1093 +2021,residential,481.0,TJ,I.1.1,CO2,56100.0,kg/TJ,27007353.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,c99a76a0-9e97-3480-9823-ba65cfc4c7e5 +2022,residential,506.0,TJ,I.1.1,CO2,56100.0,kg/TJ,28369101.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,ff2a5c8a-4e76-3249-ae4a-92ed2ed69749 +2018,commercial,103.0,TJ,I.2.1,CO2,56100.0,kg/TJ,5771276.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,24e693a4-463e-367e-bae9-69c9e4775698 +2019,commercial,105.0,TJ,I.2.1,CO2,56100.0,kg/TJ,5897774.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,a9506c0e-ff5e-3a3f-ba4c-a6a52776d55a +2020,commercial,89.0,TJ,I.2.1,CO2,56100.0,kg/TJ,5016946.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,18bb584a-7154-3a55-8a64-6a423b59e021 +2021,commercial,93.0,TJ,I.2.1,CO2,56100.0,kg/TJ,5213430.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,a98eb97e-92f1-3508-a24a-d92cbd3258b5 +2022,commercial,92.0,TJ,I.2.1,CO2,56100.0,kg/TJ,5145547.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,783fd528-5d08-3728-8ce1-7ff709530bd0 +2018,industrial,162.0,TJ,I.3.1,CO2,56100.0,kg/TJ,9065283.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,74fc1aec-a51d-315f-a17f-d5b8e553f3b7 +2019,industrial,165.0,TJ,I.3.1,CO2,56100.0,kg/TJ,9263982.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,4f230da6-d7d9-33d2-bfdb-e9a8663f97ea +2020,industrial,140.0,TJ,I.3.1,CO2,56100.0,kg/TJ,7880413.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,becea201-92e5-3fb1-b267-d130e2714fc6 +2021,industrial,146.0,TJ,I.3.1,CO2,56100.0,kg/TJ,8189041.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,0c4d75ae-0105-396a-b75f-758c1090d2b0 +2022,industrial,144.0,TJ,I.3.1,CO2,56100.0,kg/TJ,8082415.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,7c01231d-0a08-3dc7-8275-f3c6e91946ea +2018,residential,442.0,TJ,I.1.1,CO2,56100.0,kg/TJ,24793123.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,19ca4ba5-081c-3aed-8aa6-2c90260b7a78 +2019,residential,419.0,TJ,I.1.1,CO2,56100.0,kg/TJ,23531185.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b1d6798d-2613-339f-b253-c5cbbb755245 +2020,residential,442.0,TJ,I.1.1,CO2,56100.0,kg/TJ,24770735.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,0e6c8bcd-1071-3aa7-9ecb-443b89fda350 +2021,residential,451.0,TJ,I.1.1,CO2,56100.0,kg/TJ,25278300.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,5df0d551-02ea-3a8e-bc17-44bd9712313d +2022,residential,502.0,TJ,I.1.1,CO2,56100.0,kg/TJ,28180258.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,61d763bf-eba9-3e3a-9427-b8d35569b20f +2018,commercial,56.0,TJ,I.2.1,CO2,56100.0,kg/TJ,3134863.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,f4108af1-1deb-3bc3-9bb6-6981d3f3133d +2019,commercial,55.0,TJ,I.2.1,CO2,56100.0,kg/TJ,3079491.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,f80f1b37-4ea3-3b71-9fed-8a6992ab2d0a +2020,commercial,41.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2319049.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,7b6e2414-08fa-3a8a-b194-194392a4ab89 +2021,commercial,52.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2927537.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,4a734e6c-f911-3e8f-8417-0f37b3efefc1 +2022,commercial,56.0,TJ,I.2.1,CO2,56100.0,kg/TJ,3138069.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,06ce6632-df8e-36a4-acf1-6a4e4e5eb46d +2018,industrial,3.0,TJ,I.3.1,CO2,56100.0,kg/TJ,140255.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,ab1b2d6c-e42e-323d-a247-467112787a24 +2019,industrial,2.0,TJ,I.3.1,CO2,56100.0,kg/TJ,137778.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,4accb6e2-7934-3305-8785-ec9ffbae944b +2020,industrial,2.0,TJ,I.3.1,CO2,56100.0,kg/TJ,103755.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,54325efb-c4bd-3669-ac72-3c0bfae06a72 +2021,industrial,2.0,TJ,I.3.1,CO2,56100.0,kg/TJ,130979.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,8efcc541-199f-3bc2-b957-3f911751d4b6 +2022,industrial,3.0,TJ,I.3.1,CO2,56100.0,kg/TJ,140398.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,0270509d-e62f-300d-8036-b6a411c3ead5 +2018,residential,398.0,TJ,I.1.1,CO2,56100.0,kg/TJ,22333981.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,28a15e7b-8f4d-31a3-9363-493561261e80 +2019,residential,382.0,TJ,I.1.1,CO2,56100.0,kg/TJ,21437662.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,dcd38b42-1b42-3ef8-ad2f-32e344583910 +2020,residential,386.0,TJ,I.1.1,CO2,56100.0,kg/TJ,21627545.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,e45ab076-f319-3d64-8b43-e989bfead867 +2021,residential,413.0,TJ,I.1.1,CO2,56100.0,kg/TJ,23182540.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,6c8d32fe-1dc9-37fe-ae96-a98a9001677f +2022,residential,421.0,TJ,I.1.1,CO2,56100.0,kg/TJ,23617122.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,e4447c1c-2cab-382d-9cb8-a1601c2f886b +2018,commercial,66.0,TJ,I.2.1,CO2,56100.0,kg/TJ,3722972.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,8985b2de-9def-33ac-9069-8e350df6810c +2019,commercial,52.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2936297.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,d6df9bc3-9ef7-387b-a863-b2205dc77493 +2020,commercial,4641.0,TJ,I.2.1,CO2,56100.0,kg/TJ,260350577.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,ea5c8403-80a5-3833-83fa-d5b43796a760 +2021,commercial,53.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2983717.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,74a67225-28f5-30e8-9326-ffee4059f200 +2022,commercial,58.0,TJ,I.2.1,CO2,56100.0,kg/TJ,3271286.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,debe60e5-a9a8-3cac-8a5c-31dc6c37d0b1 +2018,industrial,7.0,TJ,I.3.1,CO2,56100.0,kg/TJ,416168.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,c86ed0fa-a369-3dbf-84bd-626a728c126c +2019,industrial,6.0,TJ,I.3.1,CO2,56100.0,kg/TJ,328230.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,e17e8197-27a0-310f-9112-5074f84290f1 +2020,industrial,519.0,TJ,I.3.1,CO2,56100.0,kg/TJ,29102943.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,7bd11337-ff69-3b7f-8f84-328c709a248e +2021,industrial,6.0,TJ,I.3.1,CO2,56100.0,kg/TJ,333531.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,3da1c15d-f3b3-30f0-9db2-15cc0d87ef90 +2022,industrial,7.0,TJ,I.3.1,CO2,56100.0,kg/TJ,365676.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,5948af76-b56d-3322-960d-7aa4157b69a1 +2018,residential,2075.0,TJ,I.1.1,CO2,56100.0,kg/TJ,116432795.0,kg,San Rafael,deie_mendoza,annual,AR AFA,8c635893-7ee3-3d3e-8f34-3401ee275908 +2019,residential,1662.0,TJ,I.1.1,CO2,56100.0,kg/TJ,93247630.0,kg,San Rafael,deie_mendoza,annual,AR AFA,ab2787dd-5a40-3df2-84a2-56c68b3496e3 +2020,residential,1621.0,TJ,I.1.1,CO2,56100.0,kg/TJ,90931100.0,kg,San Rafael,deie_mendoza,annual,AR AFA,9bd06e51-a112-3aa4-940e-a7de29549a16 +2021,residential,1690.0,TJ,I.1.1,CO2,56100.0,kg/TJ,94813060.0,kg,San Rafael,deie_mendoza,annual,AR AFA,66ab00f4-8bdf-3e14-8362-d5f72261845d +2022,residential,1800.0,TJ,I.1.1,CO2,56100.0,kg/TJ,100958486.0,kg,San Rafael,deie_mendoza,annual,AR AFA,e302922a-2134-37e7-be30-911781a2a42a +2018,commercial,320.0,TJ,I.2.1,CO2,56100.0,kg/TJ,17976977.0,kg,San Rafael,deie_mendoza,annual,AR AFA,688414dd-1b72-3141-8e28-6e4b3666b603 +2019,commercial,261.0,TJ,I.2.1,CO2,56100.0,kg/TJ,14668139.0,kg,San Rafael,deie_mendoza,annual,AR AFA,816febc1-0cab-3652-86b4-84b7da02d220 +2020,commercial,215.0,TJ,I.2.1,CO2,56100.0,kg/TJ,12057140.0,kg,San Rafael,deie_mendoza,annual,AR AFA,60383700-bb57-38ed-a99b-356e55c46f37 +2021,commercial,308.0,TJ,I.2.1,CO2,56100.0,kg/TJ,17260404.0,kg,San Rafael,deie_mendoza,annual,AR AFA,f01bb2fb-9a35-32d9-85c5-021d360f545a +2022,commercial,334.0,TJ,I.2.1,CO2,56100.0,kg/TJ,18752132.0,kg,San Rafael,deie_mendoza,annual,AR AFA,c63dc087-290d-3c95-a8ba-8bc5275c40c2 +2018,industrial,274.0,TJ,I.3.1,CO2,56100.0,kg/TJ,15392989.0,kg,San Rafael,deie_mendoza,annual,AR AFA,55cb007a-c42b-3cf8-a873-1c226c4bd760 +2019,industrial,224.0,TJ,I.3.1,CO2,56100.0,kg/TJ,12559759.0,kg,San Rafael,deie_mendoza,annual,AR AFA,03abb61a-0cbd-3b1d-b4ac-8ffa34a6d64f +2020,industrial,184.0,TJ,I.3.1,CO2,56100.0,kg/TJ,10324062.0,kg,San Rafael,deie_mendoza,annual,AR AFA,938d0184-cb76-35f1-bfe0-feb0b74758f4 +2021,industrial,263.0,TJ,I.3.1,CO2,56100.0,kg/TJ,14779415.0,kg,San Rafael,deie_mendoza,annual,AR AFA,d439e82a-66f0-39b2-ae91-6c78c227c904 +2022,industrial,286.0,TJ,I.3.1,CO2,56100.0,kg/TJ,16056724.0,kg,San Rafael,deie_mendoza,annual,AR AFA,411e4fee-30c8-35a0-b339-0c993a14f267 +2018,residential,90.0,TJ,I.1.1,CO2,56100.0,kg/TJ,5034800.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,ef97dba9-897e-3b93-aff4-3c79a18d0cff +2019,residential,88.0,TJ,I.1.1,CO2,56100.0,kg/TJ,4921175.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,7dd100d3-75e3-3d02-b77e-5e6f6c59c697 +2020,residential,88.0,TJ,I.1.1,CO2,56100.0,kg/TJ,4948800.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,64a0b417-de7e-39cc-a4a5-9743a97fa204 +2021,residential,91.0,TJ,I.1.1,CO2,56100.0,kg/TJ,5125466.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,c91a1609-6f30-3cde-a90c-52b9469d22c9 +2022,residential,98.0,TJ,I.1.1,CO2,56100.0,kg/TJ,5471694.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,fec69339-1a71-3114-9c46-1292dbfabbfd +2018,commercial,54.0,TJ,I.2.1,CO2,56100.0,kg/TJ,3036202.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,51a66817-fc14-34b4-9f67-00544dc43536 +2019,commercial,49.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2722424.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,3cafe84d-5b44-39c9-aa74-9a4a14a4bc46 +2020,commercial,42.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2350112.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,58b9e88d-5dd1-33d9-ad5d-7b597fceecb2 +2021,commercial,28.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1564423.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,1a3c5294-6fbd-3c3d-a410-d7ab10a08c90 +2022,commercial,49.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2730769.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,047e9552-a6ea-3fb3-8535-bc859c27406b +2018,industrial,37.0,TJ,I.3.1,CO2,56100.0,kg/TJ,2066960.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,eb183d3d-6296-3365-bc4b-e61616d9f88b +2019,industrial,33.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1853349.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,709f1c24-60c8-347c-be4f-3c5e0f1073b1 +2020,industrial,29.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1599890.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,ac71b9cf-0604-3d8f-b352-5f496c6b5499 +2021,industrial,19.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1065015.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,c643ea84-4210-3567-9d0c-fb8a5b6688a8 +2022,industrial,33.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1859030.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,8f00d3ca-2e3a-3fa2-b2fb-21e55a37a3ce +2018,residential,121.0,TJ,I.1.1,CO2,56100.0,kg/TJ,6797380.0,kg,Lavalle,deie_mendoza,annual,AR LAV,f9e0bebb-0299-3d38-bd0c-05d83a50e5ae +2019,residential,126.0,TJ,I.1.1,CO2,56100.0,kg/TJ,7063231.0,kg,Lavalle,deie_mendoza,annual,AR LAV,b82467b4-9099-345c-8e85-da7b1efe152e +2020,residential,130.0,TJ,I.1.1,CO2,56100.0,kg/TJ,7317310.0,kg,Lavalle,deie_mendoza,annual,AR LAV,83326716-383f-30bb-b0d3-2b41b0051258 +2021,residential,130.0,TJ,I.1.1,CO2,56100.0,kg/TJ,7292127.0,kg,Lavalle,deie_mendoza,annual,AR LAV,2b7ed34c-4edd-3e17-a400-685999bbd415 +2022,residential,145.0,TJ,I.1.1,CO2,56100.0,kg/TJ,8116535.0,kg,Lavalle,deie_mendoza,annual,AR LAV,28e71920-d7df-3425-bb40-a817bd5a90c6 +2018,commercial,39.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2192966.0,kg,Lavalle,deie_mendoza,annual,AR LAV,870fd284-d7b8-3325-abea-47b75badf0b4 +2019,commercial,43.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2431744.0,kg,Lavalle,deie_mendoza,annual,AR LAV,7915e6ea-e0ea-3ad1-b240-3a4a17c343ff +2020,commercial,46.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2584831.0,kg,Lavalle,deie_mendoza,annual,AR LAV,d14bbfcc-b3b7-324b-ae22-081c4521c2ed +2021,commercial,162.0,TJ,I.2.1,CO2,56100.0,kg/TJ,9063686.0,kg,Lavalle,deie_mendoza,annual,AR LAV,1c0cffe0-15c2-38f3-ba4a-a642a3aa32c5 +2022,commercial,41.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2312207.0,kg,Lavalle,deie_mendoza,annual,AR LAV,e7c20e1a-3d2b-329d-8d3e-b9299a70fedd +2018,industrial,360.0,TJ,I.3.1,CO2,56100.0,kg/TJ,20216527.0,kg,Lavalle,deie_mendoza,annual,AR LAV,c7e4a7b5-ed29-30e2-97d6-9e28df316ef5 +2019,industrial,400.0,TJ,I.3.1,CO2,56100.0,kg/TJ,22417771.0,kg,Lavalle,deie_mendoza,annual,AR LAV,46e9b657-2f9a-369e-83fe-e3cfa9388677 +2020,industrial,425.0,TJ,I.3.1,CO2,56100.0,kg/TJ,23829051.0,kg,Lavalle,deie_mendoza,annual,AR LAV,eb091101-d41a-30dd-97d9-e46554239808 +2021,industrial,1489.0,TJ,I.3.1,CO2,56100.0,kg/TJ,83556354.0,kg,Lavalle,deie_mendoza,annual,AR LAV,ebb5cfbc-e195-3754-8766-824f9b51c433 +2022,industrial,380.0,TJ,I.3.1,CO2,56100.0,kg/TJ,21315784.0,kg,Lavalle,deie_mendoza,annual,AR LAV,e1dc3789-46ee-32e4-b3ee-e6b0d0f85ff2 +2018,residential,1593.0,TJ,I.1.1,CO2,56100.0,kg/TJ,89378142.0,kg,Maipú,deie_mendoza,annual,AR MPU,2be36a34-72c7-3f5b-ad66-50b761e71fd6 +2019,residential,1662.0,TJ,I.1.1,CO2,56100.0,kg/TJ,93234782.0,kg,Maipú,deie_mendoza,annual,AR MPU,64f4a96e-664e-35ae-8072-1676ccc38d0b +2020,residential,1748.0,TJ,I.1.1,CO2,56100.0,kg/TJ,98084804.0,kg,Maipú,deie_mendoza,annual,AR MPU,7237d020-f875-3f02-abb2-db5b137f4df5 +2021,residential,1780.0,TJ,I.1.1,CO2,56100.0,kg/TJ,99866653.0,kg,Maipú,deie_mendoza,annual,AR MPU,a520d328-5304-321d-930f-f16b49fabfdb +2022,residential,1949.0,TJ,I.1.1,CO2,56100.0,kg/TJ,109352039.0,kg,Maipú,deie_mendoza,annual,AR MPU,3d36293b-16ba-3740-970f-b6d900852954 +2018,commercial,605.0,TJ,I.2.1,CO2,56100.0,kg/TJ,33956142.0,kg,Maipú,deie_mendoza,annual,AR MPU,17027513-ea96-3782-9bd0-3e5efe7beb2c +2019,commercial,600.0,TJ,I.2.1,CO2,56100.0,kg/TJ,33642384.0,kg,Maipú,deie_mendoza,annual,AR MPU,c07b528e-28e2-3f3e-96ab-70d46d64759d +2020,commercial,586.0,TJ,I.2.1,CO2,56100.0,kg/TJ,32864082.0,kg,Maipú,deie_mendoza,annual,AR MPU,2b137e2e-8d16-3d63-a4be-288678d8f230 +2021,commercial,632.0,TJ,I.2.1,CO2,56100.0,kg/TJ,35471000.0,kg,Maipú,deie_mendoza,annual,AR MPU,0f44c48e-3705-33d4-a6c5-487aaa0c21bd +2022,commercial,771.0,TJ,I.2.1,CO2,56100.0,kg/TJ,43246156.0,kg,Maipú,deie_mendoza,annual,AR MPU,0d520587-aaf8-3637-96b8-cc53db8c46c0 +2018,industrial,1390.0,TJ,I.3.1,CO2,56100.0,kg/TJ,77963776.0,kg,Maipú,deie_mendoza,annual,AR MPU,84102fe2-6a76-3ae8-bcd1-d5416200fec6 +2019,industrial,1377.0,TJ,I.3.1,CO2,56100.0,kg/TJ,77243382.0,kg,Maipú,deie_mendoza,annual,AR MPU,bfef4109-0429-3963-a5c2-7a8fb4683953 +2020,industrial,1345.0,TJ,I.3.1,CO2,56100.0,kg/TJ,75456390.0,kg,Maipú,deie_mendoza,annual,AR MPU,750584df-5a24-3738-a852-d86a56a7d65d +2021,industrial,1452.0,TJ,I.3.1,CO2,56100.0,kg/TJ,81441912.0,kg,Maipú,deie_mendoza,annual,AR MPU,79d8a693-2da5-3472-a921-dfb952887ef6 +2022,industrial,1770.0,TJ,I.3.1,CO2,56100.0,kg/TJ,99293778.0,kg,Maipú,deie_mendoza,annual,AR MPU,98ab533f-6590-34a3-ac7a-9722278e7c2e +2018,power_plants,24.0,TJ,nan,CO2,56100.0,kg/TJ,1325168.0,kg,Maipú,deie_mendoza,annual,AR MPU,a204e44e-b925-3e2c-8cc0-de1a6c99afff +2019,power_plants,23.0,TJ,nan,CO2,56100.0,kg/TJ,1312923.0,kg,Maipú,deie_mendoza,annual,AR MPU,78f15684-8639-3828-81c3-3f9efc362551 +2020,power_plants,23.0,TJ,nan,CO2,56100.0,kg/TJ,1282550.0,kg,Maipú,deie_mendoza,annual,AR MPU,504a5b10-525b-36e6-87f8-4a418e9a763b +2021,power_plants,25.0,TJ,nan,CO2,56100.0,kg/TJ,1384287.0,kg,Maipú,deie_mendoza,annual,AR MPU,e674c927-8084-31d8-93e6-2b9791fc0044 +2022,power_plants,30.0,TJ,nan,CO2,56100.0,kg/TJ,1687719.0,kg,Maipú,deie_mendoza,annual,AR MPU,ff5c0f8e-f990-3d50-8ce0-8dccafa5a1d2 +2018,residential,1632.0,TJ,I.1.1,CO2,56100.0,kg/TJ,91550186.0,kg,Las Heras,deie_mendoza,annual,AR LHE,6111b6f2-61d4-367e-affe-e009cd1c57e4 +2019,residential,1622.0,TJ,I.1.1,CO2,56100.0,kg/TJ,91015376.0,kg,Las Heras,deie_mendoza,annual,AR LHE,d99a04d5-b1e2-3b68-a832-074332fcd262 +2020,residential,1696.0,TJ,I.1.1,CO2,56100.0,kg/TJ,95148536.0,kg,Las Heras,deie_mendoza,annual,AR LHE,0dad206e-dff2-3e4c-b11b-32148e1153ee +2021,residential,1680.0,TJ,I.1.1,CO2,56100.0,kg/TJ,94249614.0,kg,Las Heras,deie_mendoza,annual,AR LHE,3f8de303-99c1-3586-9e44-70ef0ed31add +2022,residential,1768.0,TJ,I.1.1,CO2,56100.0,kg/TJ,99186725.0,kg,Las Heras,deie_mendoza,annual,AR LHE,fb889593-2d4a-392e-ac69-8b6824c4710f +2018,commercial,415.0,TJ,I.2.1,CO2,56100.0,kg/TJ,23274108.0,kg,Las Heras,deie_mendoza,annual,AR LHE,5cf6ffd0-00ba-3501-ac42-f94f08a17599 +2019,commercial,392.0,TJ,I.2.1,CO2,56100.0,kg/TJ,22018624.0,kg,Las Heras,deie_mendoza,annual,AR LHE,d408fb78-5ff0-3450-822d-39f27875f43d +2020,commercial,511.0,TJ,I.2.1,CO2,56100.0,kg/TJ,28686118.0,kg,Las Heras,deie_mendoza,annual,AR LHE,e3a524ac-9ec9-34e3-8f13-6cd40037f52b +2021,commercial,604.0,TJ,I.2.1,CO2,56100.0,kg/TJ,33903621.0,kg,Las Heras,deie_mendoza,annual,AR LHE,24fcd09b-10f0-30b3-8562-5b147f7221f6 +2022,commercial,611.0,TJ,I.2.1,CO2,56100.0,kg/TJ,34253020.0,kg,Las Heras,deie_mendoza,annual,AR LHE,8292c716-b685-3031-941f-8be764094851 +2018,industrial,1591.0,TJ,I.3.1,CO2,56100.0,kg/TJ,89245483.0,kg,Las Heras,deie_mendoza,annual,AR LHE,42df8f7e-c095-313a-9f25-3a39f0d5084f +2019,industrial,1505.0,TJ,I.3.1,CO2,56100.0,kg/TJ,84431280.0,kg,Las Heras,deie_mendoza,annual,AR LHE,0ed5e7de-08af-3fde-a42d-5bf32baaa73b +2020,industrial,1961.0,TJ,I.3.1,CO2,56100.0,kg/TJ,109998050.0,kg,Las Heras,deie_mendoza,annual,AR LHE,8abe39c0-85c7-30a0-9dc4-10cf80400bb1 +2021,industrial,2317.0,TJ,I.3.1,CO2,56100.0,kg/TJ,130004771.0,kg,Las Heras,deie_mendoza,annual,AR LHE,8948400d-a12f-380c-9c4c-514317fc8204 +2022,industrial,2341.0,TJ,I.3.1,CO2,56100.0,kg/TJ,131344556.0,kg,Las Heras,deie_mendoza,annual,AR LHE,dbc45ae1-88ef-3c23-9a97-fc3cc9cde3da +2018,residential,1912.0,TJ,I.1.1,CO2,56100.0,kg/TJ,107286326.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,1a808b31-a1dc-3c60-a729-235cc971f911 +2019,residential,1958.0,TJ,I.1.1,CO2,56100.0,kg/TJ,109870959.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c9d39d13-fd17-3311-93f6-d3b34ef11619 +2020,residential,2112.0,TJ,I.1.1,CO2,56100.0,kg/TJ,118495204.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,d93c854d-5d33-3a8a-8e88-6f500d5e4a0e +2021,residential,2707.0,TJ,I.1.1,CO2,56100.0,kg/TJ,151880103.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,200b2e10-29da-3316-8230-aaf64bd84544 +2022,residential,2921.0,TJ,I.1.1,CO2,56100.0,kg/TJ,163847667.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,3cffc0b1-4001-3e1e-af50-c8f707eebfa6 +2018,commercial,1107.0,TJ,I.2.1,CO2,56100.0,kg/TJ,62086248.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c64260d1-8970-399b-9ea6-f304e863efc4 +2019,commercial,1102.0,TJ,I.2.1,CO2,56100.0,kg/TJ,61841016.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,258fd8cd-f3d0-330e-8c83-f0e2080fc71f +2020,commercial,974.0,TJ,I.2.1,CO2,56100.0,kg/TJ,54655538.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,6174bbc3-cdfb-3401-a236-9460313d5b05 +2021,commercial,1057.0,TJ,I.2.1,CO2,56100.0,kg/TJ,59290998.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c223581b-ff91-35ff-97a7-41b2f052061c +2022,commercial,1066.0,TJ,I.2.1,CO2,56100.0,kg/TJ,59808124.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,9aacbda5-2959-32db-a320-242a44909fad +2018,industrial,13115.0,TJ,I.3.1,CO2,56100.0,kg/TJ,735773543.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,e3511b83-7b10-34c2-82fa-d3cb0bf8d296 +2019,industrial,13064.0,TJ,I.3.1,CO2,56100.0,kg/TJ,732867342.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c659c40b-57f8-398b-a702-b8826a8dc663 +2020,industrial,11546.0,TJ,I.3.1,CO2,56100.0,kg/TJ,647713470.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,8f5b1774-3806-34c5-afa1-d8bedf155e90 +2021,industrial,12525.0,TJ,I.3.1,CO2,56100.0,kg/TJ,702647510.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,3fc24c1d-4ce1-3200-a10b-037b1a4aa03a +2022,industrial,12634.0,TJ,I.3.1,CO2,56100.0,kg/TJ,708775887.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,2715305e-3532-3dae-a226-bfdcaa588677 +2018,power_plants,24005.0,TJ,nan,CO2,56100.0,kg/TJ,1346697035.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,77eee421-6812-3e14-93c3-f07cb6ee4c6d +2019,power_plants,23910.0,TJ,nan,CO2,56100.0,kg/TJ,1341377773.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,1b8e1a75-89e6-3bb1-bed3-4c3d9541d6fd +2020,power_plants,21132.0,TJ,nan,CO2,56100.0,kg/TJ,1185519401.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,2e1e5f53-2b5a-3695-ac46-1740b91fcbad +2021,power_plants,22925.0,TJ,nan,CO2,56100.0,kg/TJ,1286065976.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,72ac4754-3028-309d-b38c-44af3a04ccb4 +2022,power_plants,23124.0,TJ,nan,CO2,56100.0,kg/TJ,1297282832.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,a46d6d40-4107-3b1b-ad63-da7780d4c8a0 +2018,residential,897.0,TJ,I.1.1,CO2,56100.0,kg/TJ,50334200.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,9031c2ce-d3b9-3a65-8ffe-f560502fcdce +2019,residential,888.0,TJ,I.1.1,CO2,56100.0,kg/TJ,49815235.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,710c1f95-fe90-3083-bc62-1fb0c8073058 +2020,residential,919.0,TJ,I.1.1,CO2,56100.0,kg/TJ,51528385.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,39cb461f-ba10-3bc2-bafe-6b9d274edb9e +2021,residential,918.0,TJ,I.1.1,CO2,56100.0,kg/TJ,51492332.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,4832b8dc-b286-3b33-898d-931755f9aabf +2022,residential,983.0,TJ,I.1.1,CO2,56100.0,kg/TJ,55168481.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,7420e4ff-523c-3c86-a7b5-3c7fd6648347 +2018,commercial,145.0,TJ,I.2.1,CO2,56100.0,kg/TJ,8160362.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,dcbe5350-3514-3ea8-a9b5-5ddd24475de3 +2019,commercial,134.0,TJ,I.2.1,CO2,56100.0,kg/TJ,7535373.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,de3869f7-b5d1-3abc-a629-cade227dc218 +2020,commercial,134.0,TJ,I.2.1,CO2,56100.0,kg/TJ,7509578.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,6c05c257-2339-33a3-92be-ce46dc045fc6 +2021,commercial,85.0,TJ,I.2.1,CO2,56100.0,kg/TJ,4794304.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,623028ab-58dc-3878-9599-b02abdc7f54b +2022,commercial,88.0,TJ,I.2.1,CO2,56100.0,kg/TJ,4911114.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,0a144a10-1190-3e28-a0db-76578fa4efee +2018,industrial,378.0,TJ,I.3.1,CO2,56100.0,kg/TJ,21222853.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,5b1c8176-037b-3710-b638-1483bf08e788 +2019,industrial,349.0,TJ,I.3.1,CO2,56100.0,kg/TJ,19597427.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,1650e313-ba7d-36ee-9fa1-a239cbd4f8a2 +2020,industrial,348.0,TJ,I.3.1,CO2,56100.0,kg/TJ,19530342.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,7d139694-bece-3a8f-8960-c2cc9b19e7a7 +2021,industrial,222.0,TJ,I.3.1,CO2,56100.0,kg/TJ,12468663.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,617bd756-6ccb-38da-8725-1c26c9e96a3f +2022,industrial,228.0,TJ,I.3.1,CO2,56100.0,kg/TJ,12772453.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,d2ef9508-5847-343a-a354-1f06e8ec5dc2 +2018,residential,88.0,TJ,I.1.1,CO2,56100.0,kg/TJ,4959009.0,kg,La Paz,deie_mendoza,annual,AR LPM,0373fe06-fe88-3785-8d35-821345fc4249 +2019,residential,84.0,TJ,I.1.1,CO2,56100.0,kg/TJ,4722322.0,kg,La Paz,deie_mendoza,annual,AR LPM,6979be5d-a167-33c0-9039-502426497f5b +2020,residential,86.0,TJ,I.1.1,CO2,56100.0,kg/TJ,4822184.0,kg,La Paz,deie_mendoza,annual,AR LPM,e62513ba-d7eb-3891-9c3d-b6a3abbf6a52 +2021,residential,89.0,TJ,I.1.1,CO2,56100.0,kg/TJ,4990010.0,kg,La Paz,deie_mendoza,annual,AR LPM,0a373211-e207-3e48-8b5f-dd26223f5a1f +2022,residential,95.0,TJ,I.1.1,CO2,56100.0,kg/TJ,5305503.0,kg,La Paz,deie_mendoza,annual,AR LPM,8118dd9a-b4bb-37a6-b88d-c0d5be14fe1a +2018,commercial,5.0,TJ,I.2.1,CO2,56100.0,kg/TJ,307269.0,kg,La Paz,deie_mendoza,annual,AR LPM,9bf1634e-7cfa-302b-888d-d680cfbb0931 +2019,commercial,1.0,TJ,I.2.1,CO2,56100.0,kg/TJ,72904.0,kg,La Paz,deie_mendoza,annual,AR LPM,15be112a-7984-34fc-ab42-adee14bb3b03 +2020,commercial,6.0,TJ,I.2.1,CO2,56100.0,kg/TJ,317422.0,kg,La Paz,deie_mendoza,annual,AR LPM,bf4f963e-e469-3501-bf4f-da33a577c118 +2021,commercial,10.0,TJ,I.2.1,CO2,56100.0,kg/TJ,563309.0,kg,La Paz,deie_mendoza,annual,AR LPM,23d3d8b4-6b57-342e-9686-23de75e51732 +2022,commercial,13.0,TJ,I.2.1,CO2,56100.0,kg/TJ,730944.0,kg,La Paz,deie_mendoza,annual,AR LPM,8d772c02-fb6e-388e-921e-a9e6ee48fe47 +2018,industrial,0.0,TJ,I.3.1,CO2,56100.0,kg/TJ,184.0,kg,La Paz,deie_mendoza,annual,AR LPM,cee579de-7f5c-3ff5-9312-f9f5a1c55558 +2019,industrial,0.0,TJ,I.3.1,CO2,56100.0,kg/TJ,44.0,kg,La Paz,deie_mendoza,annual,AR LPM,9a1f35e3-7f65-32c7-b776-c9a4a166f391 +2020,industrial,0.0,TJ,I.3.1,CO2,56100.0,kg/TJ,190.0,kg,La Paz,deie_mendoza,annual,AR LPM,f315bbb7-5691-340b-afb0-18079de72218 +2021,industrial,0.0,TJ,I.3.1,CO2,56100.0,kg/TJ,337.0,kg,La Paz,deie_mendoza,annual,AR LPM,bfb9e527-a523-3c34-ac62-6b780b86410f +2022,industrial,0.0,TJ,I.3.1,CO2,56100.0,kg/TJ,437.0,kg,La Paz,deie_mendoza,annual,AR LPM,f8557580-e615-3778-b6b5-6acb4158a264 +2018,residential,279.0,TJ,I.1.1,CO2,56100.0,kg/TJ,15675149.0,kg,Tupungato,deie_mendoza,annual,Tupungato,4d2f73b5-4b8c-3369-a7fd-74da38a8fc39 +2019,residential,255.0,TJ,I.1.1,CO2,56100.0,kg/TJ,14288728.0,kg,Tupungato,deie_mendoza,annual,Tupungato,fcefcded-9359-3e6c-973c-e745802c64d7 +2020,residential,268.0,TJ,I.1.1,CO2,56100.0,kg/TJ,15035227.0,kg,Tupungato,deie_mendoza,annual,Tupungato,afcfc83d-175a-3254-a37f-fa40bd36b05c +2021,residential,271.0,TJ,I.1.1,CO2,56100.0,kg/TJ,15187475.0,kg,Tupungato,deie_mendoza,annual,Tupungato,6d8c599b-2eda-3a96-8fdb-bbd59edae060 +2022,residential,294.0,TJ,I.1.1,CO2,56100.0,kg/TJ,16483859.0,kg,Tupungato,deie_mendoza,annual,Tupungato,2cc78daf-0fd8-3017-ab1b-09ad90fc2c6b +2018,commercial,44.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2441233.0,kg,Tupungato,deie_mendoza,annual,Tupungato,1e49fe22-c8c1-39e9-916a-8085c74ffaf3 +2019,commercial,46.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2569045.0,kg,Tupungato,deie_mendoza,annual,Tupungato,c8c989d6-48fd-34fd-b1c3-c39669060393 +2020,commercial,25.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1385443.0,kg,Tupungato,deie_mendoza,annual,Tupungato,5b3c05e3-6ae5-3c80-ac43-ca4f8b12b905 +2021,commercial,36.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1995609.0,kg,Tupungato,deie_mendoza,annual,Tupungato,53395eb7-b086-3e6c-a558-f10f68f19315 +2022,commercial,40.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2253489.0,kg,Tupungato,deie_mendoza,annual,Tupungato,20645767-f1f9-3e2b-bb36-fd5396defb31 +2018,industrial,81.0,TJ,I.3.1,CO2,56100.0,kg/TJ,4572048.0,kg,Tupungato,deie_mendoza,annual,Tupungato,4b169c31-f176-37e7-bdfe-3202d507260c +2019,industrial,86.0,TJ,I.3.1,CO2,56100.0,kg/TJ,4811420.0,kg,Tupungato,deie_mendoza,annual,Tupungato,8305a25f-312a-3895-a812-be682dffeec6 +2020,industrial,46.0,TJ,I.3.1,CO2,56100.0,kg/TJ,2594718.0,kg,Tupungato,deie_mendoza,annual,Tupungato,1bc70eed-3c7f-318a-83ac-7eb1897d9dc1 +2021,industrial,67.0,TJ,I.3.1,CO2,56100.0,kg/TJ,3737465.0,kg,Tupungato,deie_mendoza,annual,Tupungato,c4af83f2-bd78-3bb7-aad1-afb7a9fa0f8e +2022,industrial,75.0,TJ,I.3.1,CO2,56100.0,kg/TJ,4220433.0,kg,Tupungato,deie_mendoza,annual,Tupungato,39f83008-5fe8-3bc1-af79-182bb7eef00a +2018,residential,294.0,TJ,I.1.1,CO2,56100.0,kg/TJ,16490057.0,kg,Junín,deie_mendoza,annual,AR NIN,b4e8b8c4-f477-361c-9fd0-5ca9dadeb928 +2019,residential,300.0,TJ,I.1.1,CO2,56100.0,kg/TJ,16842604.0,kg,Junín,deie_mendoza,annual,AR NIN,56323697-2c21-3556-a5a9-cf95c9f746f9 +2020,residential,319.0,TJ,I.1.1,CO2,56100.0,kg/TJ,17923363.0,kg,Junín,deie_mendoza,annual,AR NIN,3d33a583-63c9-31a1-b2f0-64762ca4d484 +2021,residential,317.0,TJ,I.1.1,CO2,56100.0,kg/TJ,17779830.0,kg,Junín,deie_mendoza,annual,AR NIN,5bf29473-352e-37b9-9d0b-996cae5d87ff +2022,residential,341.0,TJ,I.1.1,CO2,56100.0,kg/TJ,19142187.0,kg,Junín,deie_mendoza,annual,AR NIN,574dc063-9ad4-36b0-a2f1-0f8fdeb8e765 +2018,commercial,39.0,TJ,I.2.1,CO2,56100.0,kg/TJ,2213014.0,kg,Junín,deie_mendoza,annual,AR NIN,d32d058c-e86f-366d-b32f-92f5adb56308 +2019,commercial,32.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1816172.0,kg,Junín,deie_mendoza,annual,AR NIN,6ae40bfe-5436-3e41-9152-67e1fbba750d +2020,commercial,29.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1621378.0,kg,Junín,deie_mendoza,annual,AR NIN,f272aeef-8581-3b50-b13b-91fe92cd8726 +2021,commercial,36.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1996757.0,kg,Junín,deie_mendoza,annual,AR NIN,80ca39c4-823a-3f1d-9663-7c1f0e3f543d +2022,commercial,35.0,TJ,I.2.1,CO2,56100.0,kg/TJ,1978916.0,kg,Junín,deie_mendoza,annual,AR NIN,052fb400-347e-358a-922a-3434952b3212 +2018,industrial,24.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1351170.0,kg,Junín,deie_mendoza,annual,AR NIN,ad0ff4e4-3911-347b-9eae-2b22fc74958a +2019,industrial,20.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1108875.0,kg,Junín,deie_mendoza,annual,AR NIN,9c440294-41b3-3184-9cfe-6d39e2054438 +2020,industrial,18.0,TJ,I.3.1,CO2,56100.0,kg/TJ,989943.0,kg,Junín,deie_mendoza,annual,AR NIN,bc8739e6-7a8f-397f-a039-b0362dfca45d +2021,industrial,22.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1219133.0,kg,Junín,deie_mendoza,annual,AR NIN,0ce86494-9bc7-33aa-8207-82b28def0f42 +2022,industrial,22.0,TJ,I.3.1,CO2,56100.0,kg/TJ,1208240.0,kg,Junín,deie_mendoza,annual,AR NIN,cbf7e89e-023d-38b9-8f8c-c5ee26c793d1 +2018,residential,1527.0,TJ,I.1.1,CO2,56100.0,kg/TJ,85657639.0,kg,Capital,deie_mendoza,annual,AR MDZ,5b60dc7e-8b57-3631-b199-c7427a7e69d1 +2019,residential,1485.0,TJ,I.1.1,CO2,56100.0,kg/TJ,83315336.0,kg,Capital,deie_mendoza,annual,AR MDZ,602baaca-2538-39e0-b256-ede7a028bca7 +2020,residential,1518.0,TJ,I.1.1,CO2,56100.0,kg/TJ,85135551.0,kg,Capital,deie_mendoza,annual,AR MDZ,21e1037b-b920-3916-8a41-72e70694b305 +2021,residential,1012.0,TJ,I.1.1,CO2,56100.0,kg/TJ,56773868.0,kg,Capital,deie_mendoza,annual,AR MDZ,5c6206d2-fe3a-3771-a6c1-d87c7539b821 +2022,residential,1083.0,TJ,I.1.1,CO2,56100.0,kg/TJ,60782074.0,kg,Capital,deie_mendoza,annual,AR MDZ,66a5dde7-9220-37cc-bed7-c554b7394807 +2018,commercial,647.0,TJ,I.2.1,CO2,56100.0,kg/TJ,36296135.0,kg,Capital,deie_mendoza,annual,AR MDZ,4f767ace-75de-3e1c-9aed-ac3cf34670e3 +2019,commercial,632.0,TJ,I.2.1,CO2,56100.0,kg/TJ,35481149.0,kg,Capital,deie_mendoza,annual,AR MDZ,fa4a53c2-8c37-3d54-ae5b-0d9eaff4b29f +2020,commercial,402.0,TJ,I.2.1,CO2,56100.0,kg/TJ,22557658.0,kg,Capital,deie_mendoza,annual,AR MDZ,b0822701-5605-30e9-801e-9e0989ce470d +2021,commercial,507.0,TJ,I.2.1,CO2,56100.0,kg/TJ,28445533.0,kg,Capital,deie_mendoza,annual,AR MDZ,1123af08-fa73-3566-8c21-afbf6345c59e +2022,commercial,619.0,TJ,I.2.1,CO2,56100.0,kg/TJ,34701582.0,kg,Capital,deie_mendoza,annual,AR MDZ,265d92c8-3682-3c5f-94c0-b23a10a10a33 +2018,industrial,12.0,TJ,I.3.1,CO2,56100.0,kg/TJ,660108.0,kg,Capital,deie_mendoza,annual,AR MDZ,24cba183-44d6-3b81-b1dd-6bbbcb52f7d1 +2019,industrial,12.0,TJ,I.3.1,CO2,56100.0,kg/TJ,645286.0,kg,Capital,deie_mendoza,annual,AR MDZ,b8bf46bc-af37-3419-9d5e-809831405fb3 +2020,industrial,7.0,TJ,I.3.1,CO2,56100.0,kg/TJ,410250.0,kg,Capital,deie_mendoza,annual,AR MDZ,389352cc-30a3-3b55-b0bb-ed5f56f60660 +2021,industrial,9.0,TJ,I.3.1,CO2,56100.0,kg/TJ,517332.0,kg,Capital,deie_mendoza,annual,AR MDZ,e37b287d-0a57-3e40-a7c6-4ec4b0e03c01 +2022,industrial,11.0,TJ,I.3.1,CO2,56100.0,kg/TJ,631109.0,kg,Capital,deie_mendoza,annual,AR MDZ,f26bc121-c4ff-3597-ae57-5374fe2b638c +2018,power_plants,0.0,TJ,nan,CO2,56100.0,kg/TJ,310.0,kg,Capital,deie_mendoza,annual,AR MDZ,17788fce-f498-343b-b0b8-e883b116d110 +2019,power_plants,0.0,TJ,nan,CO2,56100.0,kg/TJ,303.0,kg,Capital,deie_mendoza,annual,AR MDZ,b6ba94d8-d31a-3a42-97b6-13895c1e4a8e +2020,power_plants,0.0,TJ,nan,CO2,56100.0,kg/TJ,193.0,kg,Capital,deie_mendoza,annual,AR MDZ,f7adf448-bc9d-33ff-8d11-431106efde74 +2021,power_plants,0.0,TJ,nan,CO2,56100.0,kg/TJ,243.0,kg,Capital,deie_mendoza,annual,AR MDZ,00da338a-3490-3a60-8846-814d57d2e37a +2022,power_plants,0.0,TJ,nan,CO2,56100.0,kg/TJ,296.0,kg,Capital,deie_mendoza,annual,AR MDZ,262d4cd0-c20b-377f-98ef-535c46722c87 +2018,residential,658.0,TJ,I.1.1,CO2,56100.0,kg/TJ,36933397.0,kg,Malargüe,deie_mendoza,annual,AR LGS,0e56919c-38c6-3470-b0b3-c2d5a4b31c59 +2019,residential,584.0,TJ,I.1.1,CO2,56100.0,kg/TJ,32786252.0,kg,Malargüe,deie_mendoza,annual,AR LGS,62d47b3c-fd40-3ef1-8927-b63d848017ee +2020,residential,577.0,TJ,I.1.1,CO2,56100.0,kg/TJ,32371967.0,kg,Malargüe,deie_mendoza,annual,AR LGS,db3fdd35-78a9-3f01-8b48-98d759e0be3d +2021,residential,613.0,TJ,I.1.1,CO2,56100.0,kg/TJ,34402496.0,kg,Malargüe,deie_mendoza,annual,AR LGS,9fe9a705-0a41-3566-a97c-5172e3ef84f8 +2022,residential,681.0,TJ,I.1.1,CO2,56100.0,kg/TJ,38221539.0,kg,Malargüe,deie_mendoza,annual,AR LGS,aceae915-7d43-326d-9682-2a68f044e8b2 +2018,commercial,149.0,TJ,I.2.1,CO2,56100.0,kg/TJ,8333667.0,kg,Malargüe,deie_mendoza,annual,AR LGS,137c44eb-7c6c-3033-b423-96abe0a36c87 +2019,commercial,139.0,TJ,I.2.1,CO2,56100.0,kg/TJ,7816620.0,kg,Malargüe,deie_mendoza,annual,AR LGS,1b3763d3-bf1a-3495-bde0-acdffa689557 +2020,commercial,106.0,TJ,I.2.1,CO2,56100.0,kg/TJ,5949197.0,kg,Malargüe,deie_mendoza,annual,AR LGS,ad0f4ca9-3b88-321b-97ba-fced1960fa1d +2021,commercial,134.0,TJ,I.2.1,CO2,56100.0,kg/TJ,7521585.0,kg,Malargüe,deie_mendoza,annual,AR LGS,548a1799-9036-3e2f-b615-6a8b581fd5ca +2022,commercial,146.0,TJ,I.2.1,CO2,56100.0,kg/TJ,8186654.0,kg,Malargüe,deie_mendoza,annual,AR LGS,f95b85b6-e5c2-3319-b23a-63c0af67c394 +2018,industrial,91.0,TJ,I.3.1,CO2,56100.0,kg/TJ,5112343.0,kg,Malargüe,deie_mendoza,annual,AR LGS,40e67f21-8e00-3b63-9316-09f5cd6b25c4 +2019,industrial,85.0,TJ,I.3.1,CO2,56100.0,kg/TJ,4795157.0,kg,Malargüe,deie_mendoza,annual,AR LGS,81739913-ee18-3492-8529-6ec3e2184a68 +2020,industrial,65.0,TJ,I.3.1,CO2,56100.0,kg/TJ,3649574.0,kg,Malargüe,deie_mendoza,annual,AR LGS,5fb5ff5f-9d20-3d26-b1df-da29edb261e4 +2021,industrial,82.0,TJ,I.3.1,CO2,56100.0,kg/TJ,4614166.0,kg,Malargüe,deie_mendoza,annual,AR LGS,01e738df-3807-3985-b03f-4b4c3a83319f +2022,industrial,90.0,TJ,I.3.1,CO2,56100.0,kg/TJ,5022157.0,kg,Malargüe,deie_mendoza,annual,AR LGS,d3698525-9005-33bc-9311-8cd82982f7b9 +2018,residential,2851.0,TJ,I.1.1,CO2,56100.0,kg/TJ,159942798.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,4bcc63e8-06c1-39c5-841a-c6c188c25f50 +2019,residential,2895.0,TJ,I.1.1,CO2,56100.0,kg/TJ,162394315.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,185a1329-712d-31ba-8159-214b343eaec0 +2020,residential,2918.0,TJ,I.1.1,CO2,56100.0,kg/TJ,163707988.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,4302aafa-ff48-3a1b-8ec5-01db36134b04 +2021,residential,2908.0,TJ,I.1.1,CO2,56100.0,kg/TJ,163166089.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,e05e732a-392a-3562-84b3-477ac1e20290 +2022,residential,3088.0,TJ,I.1.1,CO2,56100.0,kg/TJ,173260586.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,7ace474f-153c-3762-befc-9937a2c8dc7e +2018,commercial,789.0,TJ,I.2.1,CO2,56100.0,kg/TJ,44286111.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,556cf4ee-ead4-384b-8e64-c93dec23f45e +2019,commercial,764.0,TJ,I.2.1,CO2,56100.0,kg/TJ,42843291.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,9cd49123-bc83-3100-934c-ac5df0884333 +2020,commercial,721.0,TJ,I.2.1,CO2,56100.0,kg/TJ,40471792.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,180942ec-8f22-3eff-9e0c-3795d0a2535d +2021,commercial,855.0,TJ,I.2.1,CO2,56100.0,kg/TJ,47967309.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,25d68763-6f2b-3cf1-ae85-edb70b2322c9 +2022,commercial,725.0,TJ,I.2.1,CO2,56100.0,kg/TJ,40667633.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,a6142826-547f-31e8-8927-b574de5033f7 +2018,industrial,1523.0,TJ,I.3.1,CO2,56100.0,kg/TJ,85417625.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,d7df2fb8-495a-399e-9c68-d1f3c2b736b3 +2019,industrial,1473.0,TJ,I.3.1,CO2,56100.0,kg/TJ,82634760.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,4c7412dd-112b-34a5-b7aa-07fbc6cfae26 +2020,industrial,1391.0,TJ,I.3.1,CO2,56100.0,kg/TJ,78060690.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,13150d4a-2fa5-3b3b-afe3-31a8060b38b4 +2021,industrial,1649.0,TJ,I.3.1,CO2,56100.0,kg/TJ,92517802.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,7669297d-3247-39f8-83a8-a655d9106b20 +2022,industrial,1398.0,TJ,I.3.1,CO2,56100.0,kg/TJ,78438422.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,1d278fcb-e7ca-38cb-b323-6f751ad86fae +2018,residential,1757.0,TJ,I.1.1,CO2,56100.0,kg/TJ,98556043.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,859a5e9a-366c-3f54-b4be-a43a13108eee +2019,residential,1954.0,TJ,I.1.1,CO2,56100.0,kg/TJ,109622134.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,6b522a1f-6d05-34d7-9857-00d73403eadc +2020,residential,2168.0,TJ,I.1.1,CO2,56100.0,kg/TJ,121633350.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,b591c963-7d17-3cb9-8fae-bc16f31a13e1 +2021,residential,2134.0,TJ,I.1.1,CO2,56100.0,kg/TJ,119699160.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,0bbce118-07df-3b60-b0d5-324d853248be +2022,residential,2248.0,TJ,I.1.1,CO2,56100.0,kg/TJ,126102812.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,2eb68bf1-deba-3fa1-9a8f-55e94898b330 +2018,commercial,258.0,TJ,I.2.1,CO2,56100.0,kg/TJ,14461993.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,4eb31f75-1a46-3d05-a0ae-cc7a5c1712ed +2019,commercial,245.0,TJ,I.2.1,CO2,56100.0,kg/TJ,13719995.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,02958153-55d6-3a72-ac1f-09f5f63e5256 +2020,commercial,253.0,TJ,I.2.1,CO2,56100.0,kg/TJ,14177579.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,e896c2f9-27ba-38a5-9ca8-7e83d35208f5 +2021,commercial,292.0,TJ,I.2.1,CO2,56100.0,kg/TJ,16368539.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,37f4a681-6908-31fa-8444-cbe07f408c1b +2022,commercial,304.0,TJ,I.2.1,CO2,56100.0,kg/TJ,17051116.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,0f83694f-7751-37b5-aa80-3e439b2a874d +2018,industrial,148.0,TJ,I.3.1,CO2,56100.0,kg/TJ,8323766.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,974097f8-7157-379e-8f6a-52961eff1adb +2019,industrial,141.0,TJ,I.3.1,CO2,56100.0,kg/TJ,7896700.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,2175b8b0-cd98-3978-b491-3b7b78194454 +2020,industrial,145.0,TJ,I.3.1,CO2,56100.0,kg/TJ,8160068.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,2a1460fb-21b3-3295-8855-6bb910e14aa8 +2021,industrial,168.0,TJ,I.3.1,CO2,56100.0,kg/TJ,9421100.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,f988843a-d350-343c-ab5c-9709a68b2000 +2022,industrial,175.0,TJ,I.3.1,CO2,56100.0,kg/TJ,9813965.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,cc59c842-b673-3583-9a74-8dad3ff0d96b +2018,residential,441.0,TJ,I.1.1,CH4,5.0,kg/TJ,2207.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,a3bc7fd2-99dc-3f0e-96ca-936bd1b673bb +2019,residential,459.0,TJ,I.1.1,CH4,5.0,kg/TJ,2294.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,b3ad4537-cf6d-3255-a9d2-77c7891dddc5 +2020,residential,471.0,TJ,I.1.1,CH4,5.0,kg/TJ,2357.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,e6ac5b9d-6f06-320d-9c0a-0e942a0600fe +2021,residential,481.0,TJ,I.1.1,CH4,5.0,kg/TJ,2407.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,6c5604e4-1f8c-32d5-bb03-69a28f74855b +2022,residential,506.0,TJ,I.1.1,CH4,5.0,kg/TJ,2528.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,b4bde196-fee4-3181-a37d-ecce5dcf808c +2018,commercial,103.0,TJ,I.2.1,CH4,5.0,kg/TJ,514.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,fba1c8b7-4591-38ec-acb4-e077f04a0f1a +2019,commercial,105.0,TJ,I.2.1,CH4,5.0,kg/TJ,526.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,2be9bb58-830f-3787-a508-c9204deb670c +2020,commercial,89.0,TJ,I.2.1,CH4,5.0,kg/TJ,447.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,6dc002d4-88ae-34fd-bac9-f7739612c14f +2021,commercial,93.0,TJ,I.2.1,CH4,5.0,kg/TJ,465.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,3635e4d7-aef3-352a-ad33-16627a8f7baf +2022,commercial,92.0,TJ,I.2.1,CH4,5.0,kg/TJ,459.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,e56c6645-cf3d-3da3-8d33-d4499e425c20 +2018,industrial,162.0,TJ,I.3.1,CH4,5.0,kg/TJ,808.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,07315561-2f42-3da8-9d2e-2d9af831d970 +2019,industrial,165.0,TJ,I.3.1,CH4,5.0,kg/TJ,826.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,8f7540aa-444d-32f7-b94b-0ea8cbb39c70 +2020,industrial,140.0,TJ,I.3.1,CH4,5.0,kg/TJ,702.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,83a0782a-228c-35ef-b503-7996ce4c580e +2021,industrial,146.0,TJ,I.3.1,CH4,5.0,kg/TJ,730.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,127a6063-c8da-32b7-8138-f357fad19a94 +2022,industrial,144.0,TJ,I.3.1,CH4,5.0,kg/TJ,720.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,0a895d3c-fb6f-3cfc-9d2c-15737855f139 +2018,residential,442.0,TJ,I.1.1,CH4,5.0,kg/TJ,2210.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,26fd5bf7-38c8-3a17-92ea-fac48417cc3d +2019,residential,419.0,TJ,I.1.1,CH4,5.0,kg/TJ,2097.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,10bf6037-f0ff-3c78-8702-4d6567770cc7 +2020,residential,442.0,TJ,I.1.1,CH4,5.0,kg/TJ,2208.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,9efc99d6-0e6d-3241-b39a-2163e6475034 +2021,residential,451.0,TJ,I.1.1,CH4,5.0,kg/TJ,2253.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,18a0dddf-0ed6-3115-8df6-f8f8f5dcad25 +2022,residential,502.0,TJ,I.1.1,CH4,5.0,kg/TJ,2512.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,fda2b641-0572-39a0-b9d8-13b36433d79c +2018,commercial,56.0,TJ,I.2.1,CH4,5.0,kg/TJ,279.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,047f4c54-b140-39c0-8b2b-86900eed6970 +2019,commercial,55.0,TJ,I.2.1,CH4,5.0,kg/TJ,274.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,7bd621c0-9857-3dfb-a04c-d7a050144e12 +2020,commercial,41.0,TJ,I.2.1,CH4,5.0,kg/TJ,207.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,3af20036-6c97-3b89-914b-71403191b5de +2021,commercial,52.0,TJ,I.2.1,CH4,5.0,kg/TJ,261.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b7d9c6e8-0fef-38d2-a4e2-9a20f2753945 +2022,commercial,56.0,TJ,I.2.1,CH4,5.0,kg/TJ,280.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,c6217b5d-aa0c-328f-89e6-04987345e738 +2018,industrial,3.0,TJ,I.3.1,CH4,5.0,kg/TJ,13.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,9a951fe9-fe1c-365e-89e6-2d1aa9479eed +2019,industrial,2.0,TJ,I.3.1,CH4,5.0,kg/TJ,12.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,263aa0a8-fe49-34db-8556-ae304c43ed28 +2020,industrial,2.0,TJ,I.3.1,CH4,5.0,kg/TJ,9.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,28891137-e15c-33a0-af7b-9514e5b58bb3 +2021,industrial,2.0,TJ,I.3.1,CH4,5.0,kg/TJ,12.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,eec62273-6d38-3258-b4ff-84ef168203ba +2022,industrial,3.0,TJ,I.3.1,CH4,5.0,kg/TJ,13.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,cdbb0ab2-f199-30f9-a1f5-fab46a1efacd +2018,residential,398.0,TJ,I.1.1,CH4,5.0,kg/TJ,1991.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,225ba99b-5bee-36e5-b1ba-0a627020313a +2019,residential,382.0,TJ,I.1.1,CH4,5.0,kg/TJ,1911.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,5192b4e9-c490-3511-9751-bca37703bc90 +2020,residential,386.0,TJ,I.1.1,CH4,5.0,kg/TJ,1928.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,6baf6e7f-d990-37c7-ba3e-88aaecdbd3a7 +2021,residential,413.0,TJ,I.1.1,CH4,5.0,kg/TJ,2066.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,2b7c16b9-4e99-3099-8095-baf365413390 +2022,residential,421.0,TJ,I.1.1,CH4,5.0,kg/TJ,2105.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,7e3c1be3-4ba5-3169-9f38-abe5d4f7611c +2018,commercial,66.0,TJ,I.2.1,CH4,5.0,kg/TJ,332.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,b9abb8b2-8c2a-34cd-9399-76603631a248 +2019,commercial,52.0,TJ,I.2.1,CH4,5.0,kg/TJ,262.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,6c42d102-5abe-3f0a-b5d5-c60aeb452325 +2020,commercial,4641.0,TJ,I.2.1,CH4,5.0,kg/TJ,23204.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,2a048448-3df0-3e15-9d61-162137d7656f +2021,commercial,53.0,TJ,I.2.1,CH4,5.0,kg/TJ,266.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,e7e7caa3-efa6-3479-b4ff-dc547dd83d10 +2022,commercial,58.0,TJ,I.2.1,CH4,5.0,kg/TJ,292.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,636696da-46e4-34a0-8624-f09f4a3fa4b9 +2018,industrial,7.0,TJ,I.3.1,CH4,5.0,kg/TJ,37.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,38001c0c-d9d1-3d06-887f-eee3476a90e7 +2019,industrial,6.0,TJ,I.3.1,CH4,5.0,kg/TJ,29.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,ff75395f-6262-3b5d-9c16-8e0111156404 +2020,industrial,519.0,TJ,I.3.1,CH4,5.0,kg/TJ,2594.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,19a01d6f-aa15-332c-815d-258ab65cec9a +2021,industrial,6.0,TJ,I.3.1,CH4,5.0,kg/TJ,30.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,4f5aeedf-3869-3828-b809-dc2136be880e +2022,industrial,7.0,TJ,I.3.1,CH4,5.0,kg/TJ,33.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,360e73fb-9c53-3316-84f9-f33e08499cce +2018,residential,2075.0,TJ,I.1.1,CH4,5.0,kg/TJ,10377.0,kg,San Rafael,deie_mendoza,annual,AR AFA,74fea9fc-3d19-3a85-a12f-f06f73e8c3f3 +2019,residential,1662.0,TJ,I.1.1,CH4,5.0,kg/TJ,8311.0,kg,San Rafael,deie_mendoza,annual,AR AFA,cabcc8d0-058d-3385-a983-8fad2037cc45 +2020,residential,1621.0,TJ,I.1.1,CH4,5.0,kg/TJ,8104.0,kg,San Rafael,deie_mendoza,annual,AR AFA,303843e3-6cec-345c-8bda-4ad88d2ba75b +2021,residential,1690.0,TJ,I.1.1,CH4,5.0,kg/TJ,8450.0,kg,San Rafael,deie_mendoza,annual,AR AFA,3561908b-03ac-3831-be1d-673dff2f5fbf +2022,residential,1800.0,TJ,I.1.1,CH4,5.0,kg/TJ,8998.0,kg,San Rafael,deie_mendoza,annual,AR AFA,ac993b31-f24a-3431-8718-22bf00abb6e9 +2018,commercial,320.0,TJ,I.2.1,CH4,5.0,kg/TJ,1602.0,kg,San Rafael,deie_mendoza,annual,AR AFA,2418c52d-25ff-3d49-843b-d42be09cbac0 +2019,commercial,261.0,TJ,I.2.1,CH4,5.0,kg/TJ,1307.0,kg,San Rafael,deie_mendoza,annual,AR AFA,5879fc56-88d7-3ba1-9c5d-30c82d8ed65b +2020,commercial,215.0,TJ,I.2.1,CH4,5.0,kg/TJ,1075.0,kg,San Rafael,deie_mendoza,annual,AR AFA,89656c0b-2dd5-3b96-a6d1-1aacef9786e1 +2021,commercial,308.0,TJ,I.2.1,CH4,5.0,kg/TJ,1538.0,kg,San Rafael,deie_mendoza,annual,AR AFA,141d23ac-7790-3068-9924-c3ecaee1ca45 +2022,commercial,334.0,TJ,I.2.1,CH4,5.0,kg/TJ,1671.0,kg,San Rafael,deie_mendoza,annual,AR AFA,890d0b30-8826-3b1a-acd7-f755b93e63b4 +2018,industrial,274.0,TJ,I.3.1,CH4,5.0,kg/TJ,1372.0,kg,San Rafael,deie_mendoza,annual,AR AFA,53306465-7904-3930-b0b1-a2af0f31dbeb +2019,industrial,224.0,TJ,I.3.1,CH4,5.0,kg/TJ,1119.0,kg,San Rafael,deie_mendoza,annual,AR AFA,8a93279f-7aab-3d11-99a2-cf0b6e1552cb +2020,industrial,184.0,TJ,I.3.1,CH4,5.0,kg/TJ,920.0,kg,San Rafael,deie_mendoza,annual,AR AFA,ca2ddf5e-26ba-3a11-88f5-6b936dcd4870 +2021,industrial,263.0,TJ,I.3.1,CH4,5.0,kg/TJ,1317.0,kg,San Rafael,deie_mendoza,annual,AR AFA,52d64d6c-59b5-3b4b-a082-84dfc7a1936c +2022,industrial,286.0,TJ,I.3.1,CH4,5.0,kg/TJ,1431.0,kg,San Rafael,deie_mendoza,annual,AR AFA,d95128db-9c49-3fb2-9f7b-7708c7062a7f +2018,residential,90.0,TJ,I.1.1,CH4,5.0,kg/TJ,449.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,accbf2f5-b45a-3094-bd6e-b4b163b538f2 +2019,residential,88.0,TJ,I.1.1,CH4,5.0,kg/TJ,439.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,07983ab8-e93f-395c-bda8-b5b9f789338e +2020,residential,88.0,TJ,I.1.1,CH4,5.0,kg/TJ,441.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,803a9ed5-4fcd-3e4b-aba4-c7ded3bc2e54 +2021,residential,91.0,TJ,I.1.1,CH4,5.0,kg/TJ,457.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,5521faf6-3bde-3eb7-afd1-a0fca56e6446 +2022,residential,98.0,TJ,I.1.1,CH4,5.0,kg/TJ,488.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,15efcc54-cf57-3253-97d4-c395113232eb +2018,commercial,54.0,TJ,I.2.1,CH4,5.0,kg/TJ,271.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,eaac13d9-1dcd-36f5-8fc2-f5b0fa13c16c +2019,commercial,49.0,TJ,I.2.1,CH4,5.0,kg/TJ,243.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,9f093d2d-18f7-3ad7-bdce-3043d032b542 +2020,commercial,42.0,TJ,I.2.1,CH4,5.0,kg/TJ,209.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,14d0a260-b0fe-346b-8dcc-458783c9f713 +2021,commercial,28.0,TJ,I.2.1,CH4,5.0,kg/TJ,139.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,73513378-c916-3671-84e3-7464ddc5b8f8 +2022,commercial,49.0,TJ,I.2.1,CH4,5.0,kg/TJ,243.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,74b5252b-5b5b-30f5-8e41-aa8a575fa7e8 +2018,industrial,37.0,TJ,I.3.1,CH4,5.0,kg/TJ,184.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,991d6665-bde8-3238-b2bc-79c78a00b81d +2019,industrial,33.0,TJ,I.3.1,CH4,5.0,kg/TJ,165.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,beaabf8f-9445-3a24-ad6d-e7079d13b64d +2020,industrial,29.0,TJ,I.3.1,CH4,5.0,kg/TJ,143.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,4bdd61ba-4355-3bbe-9496-d25a6de82ec8 +2021,industrial,19.0,TJ,I.3.1,CH4,5.0,kg/TJ,95.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,67455a1e-1db9-331c-bd39-97127f0a56a6 +2022,industrial,33.0,TJ,I.3.1,CH4,5.0,kg/TJ,166.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,8cff9f12-d7ee-3e21-a053-f3fb83a7bc6e +2018,residential,121.0,TJ,I.1.1,CH4,5.0,kg/TJ,606.0,kg,Lavalle,deie_mendoza,annual,AR LAV,f3696f60-26a0-3dad-a54e-b594fd126a84 +2019,residential,126.0,TJ,I.1.1,CH4,5.0,kg/TJ,630.0,kg,Lavalle,deie_mendoza,annual,AR LAV,5109a652-6b46-3cd7-acfc-2f9948784cf1 +2020,residential,130.0,TJ,I.1.1,CH4,5.0,kg/TJ,652.0,kg,Lavalle,deie_mendoza,annual,AR LAV,a86d23f7-0225-33f7-8f72-54f2937e70d4 +2021,residential,130.0,TJ,I.1.1,CH4,5.0,kg/TJ,650.0,kg,Lavalle,deie_mendoza,annual,AR LAV,ce9df6f2-0789-3fed-a8c0-1c819b06da66 +2022,residential,145.0,TJ,I.1.1,CH4,5.0,kg/TJ,723.0,kg,Lavalle,deie_mendoza,annual,AR LAV,edcb2a12-1e86-3ea9-a835-a91760c2e70a +2018,commercial,39.0,TJ,I.2.1,CH4,5.0,kg/TJ,195.0,kg,Lavalle,deie_mendoza,annual,AR LAV,4f9acb5c-b1a8-39e8-b36f-ae652509603d +2019,commercial,43.0,TJ,I.2.1,CH4,5.0,kg/TJ,217.0,kg,Lavalle,deie_mendoza,annual,AR LAV,3e15512d-e2ca-3f8e-bfc8-3d0c02f1f8d9 +2020,commercial,46.0,TJ,I.2.1,CH4,5.0,kg/TJ,230.0,kg,Lavalle,deie_mendoza,annual,AR LAV,d91734e0-7615-3157-ad0c-5d66f0e259ad +2021,commercial,162.0,TJ,I.2.1,CH4,5.0,kg/TJ,808.0,kg,Lavalle,deie_mendoza,annual,AR LAV,a3cddf1b-93ea-345a-8103-dde4be63eca2 +2022,commercial,41.0,TJ,I.2.1,CH4,5.0,kg/TJ,206.0,kg,Lavalle,deie_mendoza,annual,AR LAV,ab07e030-775e-3e54-aefc-4f4668c15203 +2018,industrial,360.0,TJ,I.3.1,CH4,5.0,kg/TJ,1802.0,kg,Lavalle,deie_mendoza,annual,AR LAV,db247000-154e-32e9-b63c-2c8d22e17d2f +2019,industrial,400.0,TJ,I.3.1,CH4,5.0,kg/TJ,1998.0,kg,Lavalle,deie_mendoza,annual,AR LAV,95893ce1-274e-3c4b-912b-81544c214a1c +2020,industrial,425.0,TJ,I.3.1,CH4,5.0,kg/TJ,2124.0,kg,Lavalle,deie_mendoza,annual,AR LAV,22226c05-d4d6-3fb0-a434-8be8fb9bb875 +2021,industrial,1489.0,TJ,I.3.1,CH4,5.0,kg/TJ,7447.0,kg,Lavalle,deie_mendoza,annual,AR LAV,2746cdf9-2ace-36e9-8da6-e927f2b50067 +2022,industrial,380.0,TJ,I.3.1,CH4,5.0,kg/TJ,1900.0,kg,Lavalle,deie_mendoza,annual,AR LAV,adef5e6c-5005-34ff-a99f-dce56829b703 +2018,residential,1593.0,TJ,I.1.1,CH4,5.0,kg/TJ,7966.0,kg,Maipú,deie_mendoza,annual,AR MPU,4ceb07ea-b049-36dd-a992-3371f64ba912 +2019,residential,1662.0,TJ,I.1.1,CH4,5.0,kg/TJ,8310.0,kg,Maipú,deie_mendoza,annual,AR MPU,e36b8949-96d4-32d7-bae0-44053c20be2f +2020,residential,1748.0,TJ,I.1.1,CH4,5.0,kg/TJ,8742.0,kg,Maipú,deie_mendoza,annual,AR MPU,3132a66c-bec7-374f-8b03-1674f033fb87 +2021,residential,1780.0,TJ,I.1.1,CH4,5.0,kg/TJ,8901.0,kg,Maipú,deie_mendoza,annual,AR MPU,6d935c3d-2ba9-3937-ba6b-40f4745a55d6 +2022,residential,1949.0,TJ,I.1.1,CH4,5.0,kg/TJ,9746.0,kg,Maipú,deie_mendoza,annual,AR MPU,af38097a-f4c0-39fd-bce0-846fa44ed37a +2018,commercial,605.0,TJ,I.2.1,CH4,5.0,kg/TJ,3026.0,kg,Maipú,deie_mendoza,annual,AR MPU,35c9e549-5da6-3af6-96e9-9ee9b3ffb254 +2019,commercial,600.0,TJ,I.2.1,CH4,5.0,kg/TJ,2998.0,kg,Maipú,deie_mendoza,annual,AR MPU,b4b8c03a-7bc4-3076-a36f-ab415bb555f2 +2020,commercial,586.0,TJ,I.2.1,CH4,5.0,kg/TJ,2929.0,kg,Maipú,deie_mendoza,annual,AR MPU,a0bb2d8e-898d-339e-b3a8-b837d1b07517 +2021,commercial,632.0,TJ,I.2.1,CH4,5.0,kg/TJ,3161.0,kg,Maipú,deie_mendoza,annual,AR MPU,05ab5b06-66d7-376c-a35b-506ecd5a0ffd +2022,commercial,771.0,TJ,I.2.1,CH4,5.0,kg/TJ,3854.0,kg,Maipú,deie_mendoza,annual,AR MPU,1c018b7d-bf91-3da3-bfb5-ec8c5fce606e +2018,industrial,1390.0,TJ,I.3.1,CH4,5.0,kg/TJ,6949.0,kg,Maipú,deie_mendoza,annual,AR MPU,482c7244-dfac-3e61-96ed-0b5c46f565fb +2019,industrial,1377.0,TJ,I.3.1,CH4,5.0,kg/TJ,6884.0,kg,Maipú,deie_mendoza,annual,AR MPU,d405e059-1543-31a8-86aa-64241ed271cd +2020,industrial,1345.0,TJ,I.3.1,CH4,5.0,kg/TJ,6725.0,kg,Maipú,deie_mendoza,annual,AR MPU,d81c8484-6d87-3e20-93a6-d0b3f77e581e +2021,industrial,1452.0,TJ,I.3.1,CH4,5.0,kg/TJ,7259.0,kg,Maipú,deie_mendoza,annual,AR MPU,bc5d776c-9325-3cb8-a3c4-2c8ae5523ff2 +2022,industrial,1770.0,TJ,I.3.1,CH4,5.0,kg/TJ,8850.0,kg,Maipú,deie_mendoza,annual,AR MPU,920a6900-9059-349f-be6b-cbc73cd5366c +2018,power_plants,24.0,TJ,nan,CH4,5.0,kg/TJ,118.0,kg,Maipú,deie_mendoza,annual,AR MPU,4903773c-fc39-3319-b048-370fa916df1e +2019,power_plants,23.0,TJ,nan,CH4,5.0,kg/TJ,117.0,kg,Maipú,deie_mendoza,annual,AR MPU,e5189392-d4b7-3f11-b1ab-4cb90ba92257 +2020,power_plants,23.0,TJ,nan,CH4,5.0,kg/TJ,114.0,kg,Maipú,deie_mendoza,annual,AR MPU,f6556e21-af0f-382b-86de-60e86b7becb9 +2021,power_plants,25.0,TJ,nan,CH4,5.0,kg/TJ,123.0,kg,Maipú,deie_mendoza,annual,AR MPU,0326354c-16a2-3010-b172-bc016b44f720 +2022,power_plants,30.0,TJ,nan,CH4,5.0,kg/TJ,150.0,kg,Maipú,deie_mendoza,annual,AR MPU,19bd8e88-b086-35a1-905f-ba5814c3a277 +2018,residential,1632.0,TJ,I.1.1,CH4,5.0,kg/TJ,8160.0,kg,Las Heras,deie_mendoza,annual,AR LHE,8c80cbf7-3504-3412-98d2-d073f6ebe846 +2019,residential,1622.0,TJ,I.1.1,CH4,5.0,kg/TJ,8112.0,kg,Las Heras,deie_mendoza,annual,AR LHE,680b3280-f850-36dc-be30-f3ab374e5a49 +2020,residential,1696.0,TJ,I.1.1,CH4,5.0,kg/TJ,8480.0,kg,Las Heras,deie_mendoza,annual,AR LHE,edfc937d-78bb-3b66-8613-e7ba6e211595 +2021,residential,1680.0,TJ,I.1.1,CH4,5.0,kg/TJ,8400.0,kg,Las Heras,deie_mendoza,annual,AR LHE,f9d4f645-3fb1-34e3-a345-93689fc48fdf +2022,residential,1768.0,TJ,I.1.1,CH4,5.0,kg/TJ,8840.0,kg,Las Heras,deie_mendoza,annual,AR LHE,eadd4910-55fe-38d8-95c2-b292eb5cbe7d +2018,commercial,415.0,TJ,I.2.1,CH4,5.0,kg/TJ,2074.0,kg,Las Heras,deie_mendoza,annual,AR LHE,96c4857e-2b02-3fe8-b67f-3524630f2558 +2019,commercial,392.0,TJ,I.2.1,CH4,5.0,kg/TJ,1962.0,kg,Las Heras,deie_mendoza,annual,AR LHE,6dd0b637-8658-302e-b828-7139264e70fb +2020,commercial,511.0,TJ,I.2.1,CH4,5.0,kg/TJ,2557.0,kg,Las Heras,deie_mendoza,annual,AR LHE,458c1085-d12b-39c4-a175-a44e7504c9bb +2021,commercial,604.0,TJ,I.2.1,CH4,5.0,kg/TJ,3022.0,kg,Las Heras,deie_mendoza,annual,AR LHE,e9da9e50-f51d-35b7-b0da-bb1ff998c8a2 +2022,commercial,611.0,TJ,I.2.1,CH4,5.0,kg/TJ,3053.0,kg,Las Heras,deie_mendoza,annual,AR LHE,72a3246e-f338-3440-b1a0-f3aec9a145e6 +2018,industrial,1591.0,TJ,I.3.1,CH4,5.0,kg/TJ,7954.0,kg,Las Heras,deie_mendoza,annual,AR LHE,529241ef-5d20-37f9-9242-1709dd1890f9 +2019,industrial,1505.0,TJ,I.3.1,CH4,5.0,kg/TJ,7525.0,kg,Las Heras,deie_mendoza,annual,AR LHE,a47af6e6-4fde-3f40-9c5a-6eb65410e5c7 +2020,industrial,1961.0,TJ,I.3.1,CH4,5.0,kg/TJ,9804.0,kg,Las Heras,deie_mendoza,annual,AR LHE,2e76fcbf-f504-3a43-a758-85fdec717140 +2021,industrial,2317.0,TJ,I.3.1,CH4,5.0,kg/TJ,11587.0,kg,Las Heras,deie_mendoza,annual,AR LHE,fc52523b-89f3-318f-8398-4bfa22d00304 +2022,industrial,2341.0,TJ,I.3.1,CH4,5.0,kg/TJ,11706.0,kg,Las Heras,deie_mendoza,annual,AR LHE,360ab948-071b-333a-9d13-599c610f0e5b +2018,residential,1912.0,TJ,I.1.1,CH4,5.0,kg/TJ,9562.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,9f20b318-4f16-3d68-9823-45da847e63bb +2019,residential,1958.0,TJ,I.1.1,CH4,5.0,kg/TJ,9792.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,7c644ab0-ec55-3d71-b4a3-80876bf437ba +2020,residential,2112.0,TJ,I.1.1,CH4,5.0,kg/TJ,10561.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,79ea0e02-124f-315e-8622-a4b4787c25c8 +2021,residential,2707.0,TJ,I.1.1,CH4,5.0,kg/TJ,13537.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,d316d9c4-d7e1-39a8-9166-838387999546 +2022,residential,2921.0,TJ,I.1.1,CH4,5.0,kg/TJ,14603.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,633328a1-269f-32cb-83d8-c0e0ea3784b4 +2018,commercial,1107.0,TJ,I.2.1,CH4,5.0,kg/TJ,5534.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,60db1995-e7f2-3196-8ff7-9addd334b8db +2019,commercial,1102.0,TJ,I.2.1,CH4,5.0,kg/TJ,5512.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,77ef1c0b-1a3e-334f-a6c2-e01acf388961 +2020,commercial,974.0,TJ,I.2.1,CH4,5.0,kg/TJ,4871.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,34e08e0d-aa3f-3cbd-844e-c4c0d2108e62 +2021,commercial,1057.0,TJ,I.2.1,CH4,5.0,kg/TJ,5284.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c2bbe197-8cf6-3cce-b1cc-76d40d09f06d +2022,commercial,1066.0,TJ,I.2.1,CH4,5.0,kg/TJ,5330.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,d4a488bc-d5fa-3414-ac18-53db56516356 +2018,industrial,13115.0,TJ,I.3.1,CH4,5.0,kg/TJ,65577.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,c0256b28-14ec-3def-b3c9-1a45c2eee028 +2019,industrial,13064.0,TJ,I.3.1,CH4,5.0,kg/TJ,65318.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,f5b85bbb-544b-3a0a-9d61-518a04f86320 +2020,industrial,11546.0,TJ,I.3.1,CH4,5.0,kg/TJ,57728.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,9b74df57-d124-30cb-9029-76d5afc9d096 +2021,industrial,12525.0,TJ,I.3.1,CH4,5.0,kg/TJ,62625.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,b3e92035-cd83-3197-89c7-26b11b241070 +2022,industrial,12634.0,TJ,I.3.1,CH4,5.0,kg/TJ,63171.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,e26bc036-083e-3118-97c9-7504a4eb24c9 +2018,power_plants,24005.0,TJ,nan,CH4,5.0,kg/TJ,120026.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,e3d7d89d-c789-377b-97d6-a6fee689a972 +2019,power_plants,23910.0,TJ,nan,CH4,5.0,kg/TJ,119552.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,6a4c8bd9-a408-3ec0-ac24-42c3a6c381fb +2020,power_plants,21132.0,TJ,nan,CH4,5.0,kg/TJ,105661.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,bec19384-8988-3b69-a1cb-8ab2c57011b9 +2021,power_plants,22925.0,TJ,nan,CH4,5.0,kg/TJ,114623.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,52bda0f6-49fc-341c-81d2-2498ffb24215 +2022,power_plants,23124.0,TJ,nan,CH4,5.0,kg/TJ,115622.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,d8eae22b-6af4-382b-b864-41bbb1dc0299 +2018,residential,897.0,TJ,I.1.1,CH4,5.0,kg/TJ,4486.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,df654716-5a73-3d5d-a74a-a464361751c9 +2019,residential,888.0,TJ,I.1.1,CH4,5.0,kg/TJ,4440.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,25cde8a1-8c89-372b-af23-1c3382f943c5 +2020,residential,919.0,TJ,I.1.1,CH4,5.0,kg/TJ,4593.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,e07e3f00-8ef1-3b0a-bc4d-ffed48a574bf +2021,residential,918.0,TJ,I.1.1,CH4,5.0,kg/TJ,4589.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,d74f517d-6aac-32a2-a78c-36280d7519c1 +2022,residential,983.0,TJ,I.1.1,CH4,5.0,kg/TJ,4917.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,bbab13e6-9d6d-3d9a-88ee-14e69ee573a9 +2018,commercial,145.0,TJ,I.2.1,CH4,5.0,kg/TJ,727.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,6db4cdae-6761-3649-9f15-27df262f63db +2019,commercial,134.0,TJ,I.2.1,CH4,5.0,kg/TJ,672.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,917310f9-ff21-35e9-b0e3-b16748bf239d +2020,commercial,134.0,TJ,I.2.1,CH4,5.0,kg/TJ,669.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,ea49c357-25b4-34ca-b9b7-b0e593367992 +2021,commercial,85.0,TJ,I.2.1,CH4,5.0,kg/TJ,427.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,9159e758-9834-39a7-b66a-10058cddf891 +2022,commercial,88.0,TJ,I.2.1,CH4,5.0,kg/TJ,438.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,c6ab0437-4052-3526-90f5-dd4e59d60c4f +2018,industrial,378.0,TJ,I.3.1,CH4,5.0,kg/TJ,1892.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,23096f84-3138-34c8-bfd5-137af720df73 +2019,industrial,349.0,TJ,I.3.1,CH4,5.0,kg/TJ,1747.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,f48109c8-7a6b-3515-90b7-ab541c5b348a +2020,industrial,348.0,TJ,I.3.1,CH4,5.0,kg/TJ,1741.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,86dec624-8707-3ade-ab15-9f68e4753669 +2021,industrial,222.0,TJ,I.3.1,CH4,5.0,kg/TJ,1111.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,d079d314-338d-31a4-882d-019643f333cb +2022,industrial,228.0,TJ,I.3.1,CH4,5.0,kg/TJ,1138.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,69fdd508-682c-350d-9dcd-bad9ddb5eaa7 +2018,residential,88.0,TJ,I.1.1,CH4,5.0,kg/TJ,442.0,kg,La Paz,deie_mendoza,annual,AR LPM,b40bd3d1-9988-3754-b12f-98cde0f7b1eb +2019,residential,84.0,TJ,I.1.1,CH4,5.0,kg/TJ,421.0,kg,La Paz,deie_mendoza,annual,AR LPM,e98fb05b-3969-3f77-9054-ab8de745868b +2020,residential,86.0,TJ,I.1.1,CH4,5.0,kg/TJ,430.0,kg,La Paz,deie_mendoza,annual,AR LPM,90f2aaaf-d999-3b41-8557-9517c3b47014 +2021,residential,89.0,TJ,I.1.1,CH4,5.0,kg/TJ,445.0,kg,La Paz,deie_mendoza,annual,AR LPM,a39c1eb6-0683-3edb-87e7-515259b81a64 +2022,residential,95.0,TJ,I.1.1,CH4,5.0,kg/TJ,473.0,kg,La Paz,deie_mendoza,annual,AR LPM,6f130f58-7991-3d69-875e-e70baa633ebb +2018,commercial,5.0,TJ,I.2.1,CH4,5.0,kg/TJ,27.0,kg,La Paz,deie_mendoza,annual,AR LPM,a05219f8-13d1-3b9b-a5f9-4a63e68811bb +2019,commercial,1.0,TJ,I.2.1,CH4,5.0,kg/TJ,6.0,kg,La Paz,deie_mendoza,annual,AR LPM,1c08948c-e7be-372e-b2c4-181c9e48ce28 +2020,commercial,6.0,TJ,I.2.1,CH4,5.0,kg/TJ,28.0,kg,La Paz,deie_mendoza,annual,AR LPM,95f320c5-a424-35ac-aa06-d76f14812c01 +2021,commercial,10.0,TJ,I.2.1,CH4,5.0,kg/TJ,50.0,kg,La Paz,deie_mendoza,annual,AR LPM,e4ff4f58-4164-3adb-ba84-5ff327b2a7d7 +2022,commercial,13.0,TJ,I.2.1,CH4,5.0,kg/TJ,65.0,kg,La Paz,deie_mendoza,annual,AR LPM,1b75f36b-53a5-3220-96c5-8bb9cbedbb3b +2018,industrial,0.0,TJ,I.3.1,CH4,5.0,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,32412f89-4b0f-3537-a378-9fd0e4d45a9d +2019,industrial,0.0,TJ,I.3.1,CH4,5.0,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,0a3718ea-8fcb-3f83-8d24-18080a3c7192 +2020,industrial,0.0,TJ,I.3.1,CH4,5.0,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,cf6e5710-a936-3b56-92af-e5ea7daad443 +2021,industrial,0.0,TJ,I.3.1,CH4,5.0,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,bc2ec22d-e11d-3c7d-a36a-6a2e4adeea62 +2022,industrial,0.0,TJ,I.3.1,CH4,5.0,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,0cdc6e4a-e505-3585-9ccc-86b6c61eaa15 +2018,residential,279.0,TJ,I.1.1,CH4,5.0,kg/TJ,1397.0,kg,Tupungato,deie_mendoza,annual,Tupungato,918a8330-a8f7-3371-8e74-0fac69ab7eed +2019,residential,255.0,TJ,I.1.1,CH4,5.0,kg/TJ,1274.0,kg,Tupungato,deie_mendoza,annual,Tupungato,31e94a85-4499-3861-894a-74d60db2d857 +2020,residential,268.0,TJ,I.1.1,CH4,5.0,kg/TJ,1340.0,kg,Tupungato,deie_mendoza,annual,Tupungato,14d0185e-d96d-37b9-ab7a-204acddbba11 +2021,residential,271.0,TJ,I.1.1,CH4,5.0,kg/TJ,1354.0,kg,Tupungato,deie_mendoza,annual,Tupungato,e206a368-9419-3b85-a056-c711ff09f21c +2022,residential,294.0,TJ,I.1.1,CH4,5.0,kg/TJ,1469.0,kg,Tupungato,deie_mendoza,annual,Tupungato,8ae1cae0-f7c3-38cc-819c-d1413b4df2de +2018,commercial,44.0,TJ,I.2.1,CH4,5.0,kg/TJ,218.0,kg,Tupungato,deie_mendoza,annual,Tupungato,807c73ec-8e25-330c-ae98-1e5c81119249 +2019,commercial,46.0,TJ,I.2.1,CH4,5.0,kg/TJ,229.0,kg,Tupungato,deie_mendoza,annual,Tupungato,239a1e29-2c65-3f0f-929f-8252acb6b8c8 +2020,commercial,25.0,TJ,I.2.1,CH4,5.0,kg/TJ,123.0,kg,Tupungato,deie_mendoza,annual,Tupungato,d9166699-c8b9-3537-9db8-72d359021124 +2021,commercial,36.0,TJ,I.2.1,CH4,5.0,kg/TJ,178.0,kg,Tupungato,deie_mendoza,annual,Tupungato,c6916228-0a84-3e21-bf0f-7d2b3c3fbaf0 +2022,commercial,40.0,TJ,I.2.1,CH4,5.0,kg/TJ,201.0,kg,Tupungato,deie_mendoza,annual,Tupungato,05d04a3b-d3f9-3533-964c-a232b0929f1d +2018,industrial,81.0,TJ,I.3.1,CH4,5.0,kg/TJ,407.0,kg,Tupungato,deie_mendoza,annual,Tupungato,d685fd4e-07d7-3ba9-8f9f-9719b77797c7 +2019,industrial,86.0,TJ,I.3.1,CH4,5.0,kg/TJ,429.0,kg,Tupungato,deie_mendoza,annual,Tupungato,40828c12-32c9-357c-b1b5-bc78692d2778 +2020,industrial,46.0,TJ,I.3.1,CH4,5.0,kg/TJ,231.0,kg,Tupungato,deie_mendoza,annual,Tupungato,f0d0fd82-5253-327a-8052-86f0547f84b4 +2021,industrial,67.0,TJ,I.3.1,CH4,5.0,kg/TJ,333.0,kg,Tupungato,deie_mendoza,annual,Tupungato,115ad66b-2df5-3e6f-ab3c-7449b87c4bc6 +2022,industrial,75.0,TJ,I.3.1,CH4,5.0,kg/TJ,376.0,kg,Tupungato,deie_mendoza,annual,Tupungato,dafd3e6d-ac0f-3a9d-8b83-7af732c2c98f +2018,residential,294.0,TJ,I.1.1,CH4,5.0,kg/TJ,1470.0,kg,Junín,deie_mendoza,annual,AR NIN,3968c82b-da9b-373a-9a97-77c13db50d2b +2019,residential,300.0,TJ,I.1.1,CH4,5.0,kg/TJ,1501.0,kg,Junín,deie_mendoza,annual,AR NIN,58d6f108-d612-3eb0-8d7e-97dfb45d7e69 +2020,residential,319.0,TJ,I.1.1,CH4,5.0,kg/TJ,1597.0,kg,Junín,deie_mendoza,annual,AR NIN,84fa3812-c1a6-3407-a404-30fbbe5be251 +2021,residential,317.0,TJ,I.1.1,CH4,5.0,kg/TJ,1585.0,kg,Junín,deie_mendoza,annual,AR NIN,82ee83d7-c756-3f92-bb08-e2490d6fd3db +2022,residential,341.0,TJ,I.1.1,CH4,5.0,kg/TJ,1706.0,kg,Junín,deie_mendoza,annual,AR NIN,629c5c8a-8473-3d85-90e8-71559aeac79a +2018,commercial,39.0,TJ,I.2.1,CH4,5.0,kg/TJ,197.0,kg,Junín,deie_mendoza,annual,AR NIN,15b95e19-8fe9-39cf-901a-cc1d6f628194 +2019,commercial,32.0,TJ,I.2.1,CH4,5.0,kg/TJ,162.0,kg,Junín,deie_mendoza,annual,AR NIN,73e0c698-9313-3ffb-b3e7-31ed9b46d891 +2020,commercial,29.0,TJ,I.2.1,CH4,5.0,kg/TJ,145.0,kg,Junín,deie_mendoza,annual,AR NIN,bfa361fc-f7b9-3df7-b08f-866abea10ded +2021,commercial,36.0,TJ,I.2.1,CH4,5.0,kg/TJ,178.0,kg,Junín,deie_mendoza,annual,AR NIN,f790c6f7-9048-3337-b32a-bfa42bd1f653 +2022,commercial,35.0,TJ,I.2.1,CH4,5.0,kg/TJ,176.0,kg,Junín,deie_mendoza,annual,AR NIN,3f17879b-326f-3284-976c-a7c2a84da572 +2018,industrial,24.0,TJ,I.3.1,CH4,5.0,kg/TJ,120.0,kg,Junín,deie_mendoza,annual,AR NIN,ccd531b4-61a0-3a2e-8678-0e894dcd11fc +2019,industrial,20.0,TJ,I.3.1,CH4,5.0,kg/TJ,99.0,kg,Junín,deie_mendoza,annual,AR NIN,75f92572-e363-3a5f-a56d-0a340c249533 +2020,industrial,18.0,TJ,I.3.1,CH4,5.0,kg/TJ,88.0,kg,Junín,deie_mendoza,annual,AR NIN,3d36d8b6-80c5-38f5-8857-01dd2d50accd +2021,industrial,22.0,TJ,I.3.1,CH4,5.0,kg/TJ,109.0,kg,Junín,deie_mendoza,annual,AR NIN,a9b9d1e7-430a-306e-ba73-3e0fd555a004 +2022,industrial,22.0,TJ,I.3.1,CH4,5.0,kg/TJ,108.0,kg,Junín,deie_mendoza,annual,AR NIN,3562313e-0b03-3c2f-9cd2-58f482cecf51 +2018,residential,1527.0,TJ,I.1.1,CH4,5.0,kg/TJ,7634.0,kg,Capital,deie_mendoza,annual,AR MDZ,32fbb660-9515-3efb-a681-0e390bf081ab +2019,residential,1485.0,TJ,I.1.1,CH4,5.0,kg/TJ,7426.0,kg,Capital,deie_mendoza,annual,AR MDZ,6ddb6c60-ce4a-36ab-a5eb-33c0f756b322 +2020,residential,1518.0,TJ,I.1.1,CH4,5.0,kg/TJ,7588.0,kg,Capital,deie_mendoza,annual,AR MDZ,998b8157-1a1b-3f8d-9ec9-55c04e5fdf66 +2021,residential,1012.0,TJ,I.1.1,CH4,5.0,kg/TJ,5060.0,kg,Capital,deie_mendoza,annual,AR MDZ,69062c6c-fb9d-3514-bcbc-d266125596a4 +2022,residential,1083.0,TJ,I.1.1,CH4,5.0,kg/TJ,5417.0,kg,Capital,deie_mendoza,annual,AR MDZ,85ec0400-b499-3f2f-b0a2-4b11b27a0f26 +2018,commercial,647.0,TJ,I.2.1,CH4,5.0,kg/TJ,3235.0,kg,Capital,deie_mendoza,annual,AR MDZ,5862af68-e2e6-38e4-81b6-c7758d6219ec +2019,commercial,632.0,TJ,I.2.1,CH4,5.0,kg/TJ,3162.0,kg,Capital,deie_mendoza,annual,AR MDZ,e73b653c-8a37-3b15-b5c7-ea9b07ab84be +2020,commercial,402.0,TJ,I.2.1,CH4,5.0,kg/TJ,2010.0,kg,Capital,deie_mendoza,annual,AR MDZ,6353e698-16fc-357e-b8e2-fbd2a17f05e9 +2021,commercial,507.0,TJ,I.2.1,CH4,5.0,kg/TJ,2535.0,kg,Capital,deie_mendoza,annual,AR MDZ,54f05f78-ab54-3b2d-8614-3007b1f266c5 +2022,commercial,619.0,TJ,I.2.1,CH4,5.0,kg/TJ,3093.0,kg,Capital,deie_mendoza,annual,AR MDZ,b4ee2908-ad0e-365d-bd16-bd7c2279595f +2018,industrial,12.0,TJ,I.3.1,CH4,5.0,kg/TJ,59.0,kg,Capital,deie_mendoza,annual,AR MDZ,4e23f20a-aa8b-3833-a621-a7147dade34a +2019,industrial,12.0,TJ,I.3.1,CH4,5.0,kg/TJ,58.0,kg,Capital,deie_mendoza,annual,AR MDZ,1fef2c2e-4b00-3acd-96d4-d2d34e472547 +2020,industrial,7.0,TJ,I.3.1,CH4,5.0,kg/TJ,37.0,kg,Capital,deie_mendoza,annual,AR MDZ,4c9b2c38-76b3-3105-80e4-dde3927a9701 +2021,industrial,9.0,TJ,I.3.1,CH4,5.0,kg/TJ,46.0,kg,Capital,deie_mendoza,annual,AR MDZ,c9d405bd-5691-314e-9aaf-ed46f2502c3d +2022,industrial,11.0,TJ,I.3.1,CH4,5.0,kg/TJ,56.0,kg,Capital,deie_mendoza,annual,AR MDZ,f85b018c-1e4d-3191-83a6-d5872a173ab2 +2018,power_plants,0.0,TJ,nan,CH4,5.0,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,6d4e0df8-f34c-3050-95fe-7e858b9b13f5 +2019,power_plants,0.0,TJ,nan,CH4,5.0,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,0743e326-51fd-381b-ac59-a544f6a7ede3 +2020,power_plants,0.0,TJ,nan,CH4,5.0,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,4c5def79-88a8-38ac-9479-782cdde788d8 +2021,power_plants,0.0,TJ,nan,CH4,5.0,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,60ed0116-d52d-3641-b730-d62daebf1dd5 +2022,power_plants,0.0,TJ,nan,CH4,5.0,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,e22e3e5a-6ba1-324f-88c4-99a4fb5f2470 +2018,residential,658.0,TJ,I.1.1,CH4,5.0,kg/TJ,3292.0,kg,Malargüe,deie_mendoza,annual,AR LGS,c0eba66c-493b-3de5-b893-3007d3dcffb5 +2019,residential,584.0,TJ,I.1.1,CH4,5.0,kg/TJ,2922.0,kg,Malargüe,deie_mendoza,annual,AR LGS,085b64f9-bf8b-3260-8991-3d3999b43906 +2020,residential,577.0,TJ,I.1.1,CH4,5.0,kg/TJ,2885.0,kg,Malargüe,deie_mendoza,annual,AR LGS,2fa3ee25-a28c-34fc-b6ce-f7b3430847e9 +2021,residential,613.0,TJ,I.1.1,CH4,5.0,kg/TJ,3066.0,kg,Malargüe,deie_mendoza,annual,AR LGS,9ac9ce6a-2738-32d6-adae-b8c15368159c +2022,residential,681.0,TJ,I.1.1,CH4,5.0,kg/TJ,3407.0,kg,Malargüe,deie_mendoza,annual,AR LGS,f7397dba-ca61-3dba-a691-de1c97e8c157 +2018,commercial,149.0,TJ,I.2.1,CH4,5.0,kg/TJ,743.0,kg,Malargüe,deie_mendoza,annual,AR LGS,970ee0f3-b3c0-3c5c-8200-3f64831978c7 +2019,commercial,139.0,TJ,I.2.1,CH4,5.0,kg/TJ,697.0,kg,Malargüe,deie_mendoza,annual,AR LGS,af64d7fa-4ec2-3975-bb84-c605df088e89 +2020,commercial,106.0,TJ,I.2.1,CH4,5.0,kg/TJ,530.0,kg,Malargüe,deie_mendoza,annual,AR LGS,f8690b60-8091-370c-85f9-eba9a399cbe2 +2021,commercial,134.0,TJ,I.2.1,CH4,5.0,kg/TJ,670.0,kg,Malargüe,deie_mendoza,annual,AR LGS,35595aa7-2200-34aa-9235-077ebdae519d +2022,commercial,146.0,TJ,I.2.1,CH4,5.0,kg/TJ,730.0,kg,Malargüe,deie_mendoza,annual,AR LGS,4afc201e-94c7-3533-b5d3-6364a3515a02 +2018,industrial,91.0,TJ,I.3.1,CH4,5.0,kg/TJ,456.0,kg,Malargüe,deie_mendoza,annual,AR LGS,f01004b0-6853-3784-aea6-aef0d0b97b37 +2019,industrial,85.0,TJ,I.3.1,CH4,5.0,kg/TJ,427.0,kg,Malargüe,deie_mendoza,annual,AR LGS,dc0691bd-2c7b-331b-acfd-526dac965033 +2020,industrial,65.0,TJ,I.3.1,CH4,5.0,kg/TJ,325.0,kg,Malargüe,deie_mendoza,annual,AR LGS,e3207837-9366-328c-9a78-5a7367151690 +2021,industrial,82.0,TJ,I.3.1,CH4,5.0,kg/TJ,411.0,kg,Malargüe,deie_mendoza,annual,AR LGS,ad6115b6-1c95-3adb-9918-9f5090c12f96 +2022,industrial,90.0,TJ,I.3.1,CH4,5.0,kg/TJ,448.0,kg,Malargüe,deie_mendoza,annual,AR LGS,66a3c5cb-7f54-3a31-907f-2327343403a3 +2018,residential,2851.0,TJ,I.1.1,CH4,5.0,kg/TJ,14255.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,eb41219b-7952-30b7-aa79-e8035b062942 +2019,residential,2895.0,TJ,I.1.1,CH4,5.0,kg/TJ,14474.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,83ffe17c-2177-35d5-9a82-2964cfaca2c0 +2020,residential,2918.0,TJ,I.1.1,CH4,5.0,kg/TJ,14591.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,1c6badf1-5b15-39fe-a0bd-34b335d831d1 +2021,residential,2908.0,TJ,I.1.1,CH4,5.0,kg/TJ,14542.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,8207d409-3fc5-30c0-ac35-64f1b8284284 +2022,residential,3088.0,TJ,I.1.1,CH4,5.0,kg/TJ,15442.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,f99c82e4-d511-3947-a2f1-bcef4b311901 +2018,commercial,789.0,TJ,I.2.1,CH4,5.0,kg/TJ,3947.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,4d2e14f5-958a-3fbc-98fa-5bdcc66e985d +2019,commercial,764.0,TJ,I.2.1,CH4,5.0,kg/TJ,3818.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,e43585b3-10a6-3563-990b-13d40244a904 +2020,commercial,721.0,TJ,I.2.1,CH4,5.0,kg/TJ,3607.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,afd2199c-08e3-352c-a767-1ef75d214c35 +2021,commercial,855.0,TJ,I.2.1,CH4,5.0,kg/TJ,4275.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,94c89f75-9054-3602-8401-9a3e3899c788 +2022,commercial,725.0,TJ,I.2.1,CH4,5.0,kg/TJ,3625.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,0bbb164f-711a-3d14-804c-67a3c2127569 +2018,industrial,1523.0,TJ,I.3.1,CH4,5.0,kg/TJ,7613.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,f3d04b66-18a4-3d7d-ba66-4085dce0d64d +2019,industrial,1473.0,TJ,I.3.1,CH4,5.0,kg/TJ,7365.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,6ac75cd8-5f8b-339e-b0e2-b34641aebf40 +2020,industrial,1391.0,TJ,I.3.1,CH4,5.0,kg/TJ,6957.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,2655f31a-3b59-371d-a5f7-2bb361be02f7 +2021,industrial,1649.0,TJ,I.3.1,CH4,5.0,kg/TJ,8246.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,70ef5eaa-c489-333f-acbf-3405cacdfd6f +2022,industrial,1398.0,TJ,I.3.1,CH4,5.0,kg/TJ,6991.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,386ff129-50cb-3227-9030-1104be2e6427 +2018,residential,1757.0,TJ,I.1.1,CH4,5.0,kg/TJ,8784.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,8ccadd68-eff5-3b4e-8c78-0184b5b58208 +2019,residential,1954.0,TJ,I.1.1,CH4,5.0,kg/TJ,9770.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,17095394-c8f5-3e9b-8ba6-eb42396cd066 +2020,residential,2168.0,TJ,I.1.1,CH4,5.0,kg/TJ,10841.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,7497af89-9695-3507-bda5-5c75e47ae8da +2021,residential,2134.0,TJ,I.1.1,CH4,5.0,kg/TJ,10668.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,4853ee15-9b81-3dad-9641-d4158a927711 +2022,residential,2248.0,TJ,I.1.1,CH4,5.0,kg/TJ,11239.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,949c9953-873c-3eea-b9b8-96b35fa56408 +2018,commercial,258.0,TJ,I.2.1,CH4,5.0,kg/TJ,1289.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,df03ea66-200f-3e62-9115-c386439e872c +2019,commercial,245.0,TJ,I.2.1,CH4,5.0,kg/TJ,1223.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,fac5b496-b887-32df-9b1b-517959cfe6d4 +2020,commercial,253.0,TJ,I.2.1,CH4,5.0,kg/TJ,1264.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,a2963f7a-4873-36bf-97a0-accdfc923a96 +2021,commercial,292.0,TJ,I.2.1,CH4,5.0,kg/TJ,1459.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,0e4139f4-e623-3f4d-941d-43282ada4b73 +2022,commercial,304.0,TJ,I.2.1,CH4,5.0,kg/TJ,1520.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,6c8ecd0a-5211-35f1-909c-5b159138fd4f +2018,industrial,148.0,TJ,I.3.1,CH4,5.0,kg/TJ,742.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,7e6355f1-a2c1-34d9-95c0-306864217fb2 +2019,industrial,141.0,TJ,I.3.1,CH4,5.0,kg/TJ,704.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,98d92143-b545-3c91-81ad-f6c2900c3ce1 +2020,industrial,145.0,TJ,I.3.1,CH4,5.0,kg/TJ,727.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,15ba9be4-cb35-39b1-b6d6-76a03aeb5056 +2021,industrial,168.0,TJ,I.3.1,CH4,5.0,kg/TJ,840.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,c9888b20-8c4d-3114-8693-8ede66c72e4f +2022,industrial,175.0,TJ,I.3.1,CH4,5.0,kg/TJ,875.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,ab818b76-0990-3b64-ac5d-b179c31fe502 +2018,residential,441.0,TJ,I.1.1,N2O,0.1,kg/TJ,44.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,bd082113-08db-3aaa-a8ff-f198dad6d2dd +2019,residential,459.0,TJ,I.1.1,N2O,0.1,kg/TJ,46.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,4c5b54fa-c1e0-3c57-a3a2-c12a6222e35c +2020,residential,471.0,TJ,I.1.1,N2O,0.1,kg/TJ,47.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,40de067e-2406-3c76-8411-210f7b9b7d01 +2021,residential,481.0,TJ,I.1.1,N2O,0.1,kg/TJ,48.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,0b23aaa1-13d2-38a8-965f-a300607c0aa0 +2022,residential,506.0,TJ,I.1.1,N2O,0.1,kg/TJ,51.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,25fdf92e-35a9-31ed-b16e-f1d6de0f4707 +2018,commercial,103.0,TJ,I.2.1,N2O,0.1,kg/TJ,10.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,2bc1bb08-c683-39ee-8413-80005ebe8052 +2019,commercial,105.0,TJ,I.2.1,N2O,0.1,kg/TJ,11.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,d32034f2-afba-345b-8ff5-583decdf96e0 +2020,commercial,89.0,TJ,I.2.1,N2O,0.1,kg/TJ,9.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,1a064c9f-afbf-3f5e-9123-7a1ff1b7ebfc +2021,commercial,93.0,TJ,I.2.1,N2O,0.1,kg/TJ,9.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,4038820c-2c00-30e7-bcd2-f07f07b95149 +2022,commercial,92.0,TJ,I.2.1,N2O,0.1,kg/TJ,9.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,6d5c4349-9039-350b-9df4-e9e0e2c7128a +2018,industrial,162.0,TJ,I.3.1,N2O,0.1,kg/TJ,16.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,0222a6cc-f138-3a5a-8f99-33742c04208d +2019,industrial,165.0,TJ,I.3.1,N2O,0.1,kg/TJ,17.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,b58e963e-ef71-3d03-a8a6-ea03a7fff46a +2020,industrial,140.0,TJ,I.3.1,N2O,0.1,kg/TJ,14.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,6bce5fb6-ecbe-3954-aaf9-88fc345c31ed +2021,industrial,146.0,TJ,I.3.1,N2O,0.1,kg/TJ,15.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,ecaa2aa6-29e8-3cda-9263-90bfac87bf21 +2022,industrial,144.0,TJ,I.3.1,N2O,0.1,kg/TJ,14.0,kg,Rivadavia,deie_mendoza,annual,AR RIV,2ad2ae5e-f8c5-3e3b-9a2b-d84eda415adf +2018,residential,442.0,TJ,I.1.1,N2O,0.1,kg/TJ,44.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,c34f456c-6667-3501-a5a3-22fd42075097 +2019,residential,419.0,TJ,I.1.1,N2O,0.1,kg/TJ,42.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,15eab2e6-9a59-38f0-b399-6d6e7277e882 +2020,residential,442.0,TJ,I.1.1,N2O,0.1,kg/TJ,44.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,05770393-5cb0-3947-872f-23cce9e2b31a +2021,residential,451.0,TJ,I.1.1,N2O,0.1,kg/TJ,45.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,64de2a93-e1a8-358a-9a9d-ae6bd3743836 +2022,residential,502.0,TJ,I.1.1,N2O,0.1,kg/TJ,50.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,7616f2a4-ad2e-3f33-ba58-757cdf1309b6 +2018,commercial,56.0,TJ,I.2.1,N2O,0.1,kg/TJ,6.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,1c53c935-ca82-3aae-91e8-8ee665514a2b +2019,commercial,55.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,bbd69386-b709-335c-989b-a1055e9cbb72 +2020,commercial,41.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,b2037b44-cd75-3752-ab3b-d550befa149e +2021,commercial,52.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,8d5dd9c0-84b5-395f-bbf1-2465d77d5324 +2022,commercial,56.0,TJ,I.2.1,N2O,0.1,kg/TJ,6.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,599acba8-3b22-3e6d-b45f-b39d9a197079 +2018,industrial,3.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,43515b07-20a4-388b-8854-8491a6dfa3a6 +2019,industrial,2.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,6df0f9c3-e13d-31b6-95d5-f34284c9017e +2020,industrial,2.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,ffa4f183-9dd5-3a5f-8e8e-4851c3112877 +2021,industrial,2.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,bdbe1098-31d7-3e45-8500-499a29c69ce9 +2022,industrial,3.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,Tunuyán,deie_mendoza,annual,AR TUN,a9006bb0-749a-3970-810b-6b4ab775a305 +2018,residential,398.0,TJ,I.1.1,N2O,0.1,kg/TJ,40.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,8e14edbe-20d8-3996-bdd0-30f6b7721d50 +2019,residential,382.0,TJ,I.1.1,N2O,0.1,kg/TJ,38.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,67bfa9f1-6889-3c8b-bb4a-f75f8caaae4a +2020,residential,386.0,TJ,I.1.1,N2O,0.1,kg/TJ,39.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,4a6bdd10-8bf1-3906-9116-1bfc85ebc41d +2021,residential,413.0,TJ,I.1.1,N2O,0.1,kg/TJ,41.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,04002ca0-8a8b-3e5e-b00e-3e369e4ed9b2 +2022,residential,421.0,TJ,I.1.1,N2O,0.1,kg/TJ,42.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,2aa4ab22-c020-3d43-abb4-67be9da7911e +2018,commercial,66.0,TJ,I.2.1,N2O,0.1,kg/TJ,7.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,41c8080f-7762-3820-9d90-ca487ce35e33 +2019,commercial,52.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,92631aa6-f8d2-35a4-a75a-31cb68d6ff84 +2020,commercial,4641.0,TJ,I.2.1,N2O,0.1,kg/TJ,464.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,28b43d13-8bbb-3abb-85c9-019b25b23ec3 +2021,commercial,53.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,64599c19-1f60-307e-81de-95db3915313f +2022,commercial,58.0,TJ,I.2.1,N2O,0.1,kg/TJ,6.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,05e4f121-9bbf-310f-8af5-52d3e9d7fd6f +2018,industrial,7.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,52f5f164-9d2d-3f12-9d4d-d7f78cbf0082 +2019,industrial,6.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,b074531c-28e6-340e-b681-fca7888ffceb +2020,industrial,519.0,TJ,I.3.1,N2O,0.1,kg/TJ,52.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,bca6171b-be5f-3aea-87c3-97a962e0ac2a +2021,industrial,6.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,505435b1-d597-3d0f-af8e-4fb5a5859788 +2022,industrial,7.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Gral. Alvear,deie_mendoza,annual,AR GVA,7091a6de-e301-3566-b784-54f11a3ffb18 +2018,residential,2075.0,TJ,I.1.1,N2O,0.1,kg/TJ,208.0,kg,San Rafael,deie_mendoza,annual,AR AFA,d26ba341-1d3a-3d80-881a-444d898c0b16 +2019,residential,1662.0,TJ,I.1.1,N2O,0.1,kg/TJ,166.0,kg,San Rafael,deie_mendoza,annual,AR AFA,041a8112-2e0e-3d0b-a79f-514d6392c38c +2020,residential,1621.0,TJ,I.1.1,N2O,0.1,kg/TJ,162.0,kg,San Rafael,deie_mendoza,annual,AR AFA,5d93b532-c8c9-3d67-8db8-6e1e05b09d37 +2021,residential,1690.0,TJ,I.1.1,N2O,0.1,kg/TJ,169.0,kg,San Rafael,deie_mendoza,annual,AR AFA,5158c840-7bd1-3b83-a40d-b361ceecaae3 +2022,residential,1800.0,TJ,I.1.1,N2O,0.1,kg/TJ,180.0,kg,San Rafael,deie_mendoza,annual,AR AFA,2ddeef6d-caf2-308c-ac14-ba5316077084 +2018,commercial,320.0,TJ,I.2.1,N2O,0.1,kg/TJ,32.0,kg,San Rafael,deie_mendoza,annual,AR AFA,16f38489-fec2-3e51-aece-e90e5d35368a +2019,commercial,261.0,TJ,I.2.1,N2O,0.1,kg/TJ,26.0,kg,San Rafael,deie_mendoza,annual,AR AFA,eefd13a3-64f3-3789-9578-f0dc18e32728 +2020,commercial,215.0,TJ,I.2.1,N2O,0.1,kg/TJ,21.0,kg,San Rafael,deie_mendoza,annual,AR AFA,f5ae1b69-d701-3f26-85de-d1a57627af5e +2021,commercial,308.0,TJ,I.2.1,N2O,0.1,kg/TJ,31.0,kg,San Rafael,deie_mendoza,annual,AR AFA,8a1ed423-b70c-38c0-8e80-ee395980da02 +2022,commercial,334.0,TJ,I.2.1,N2O,0.1,kg/TJ,33.0,kg,San Rafael,deie_mendoza,annual,AR AFA,c06aa033-d303-3e48-919e-60622962e545 +2018,industrial,274.0,TJ,I.3.1,N2O,0.1,kg/TJ,27.0,kg,San Rafael,deie_mendoza,annual,AR AFA,e42374d1-1a9f-3197-9f97-eeb2e90505c9 +2019,industrial,224.0,TJ,I.3.1,N2O,0.1,kg/TJ,22.0,kg,San Rafael,deie_mendoza,annual,AR AFA,3625615e-1311-3bb7-ba26-f43eeb70de4f +2020,industrial,184.0,TJ,I.3.1,N2O,0.1,kg/TJ,18.0,kg,San Rafael,deie_mendoza,annual,AR AFA,fd65159c-5d51-3a6f-9c43-04eadbc105a6 +2021,industrial,263.0,TJ,I.3.1,N2O,0.1,kg/TJ,26.0,kg,San Rafael,deie_mendoza,annual,AR AFA,8d056b41-8a30-3304-9d6c-11dd2deedff9 +2022,industrial,286.0,TJ,I.3.1,N2O,0.1,kg/TJ,29.0,kg,San Rafael,deie_mendoza,annual,AR AFA,da0a255c-32ef-3be0-b8bc-2c5768629e7b +2018,residential,90.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,357af366-be34-3411-8ca4-e6bf46a5c504 +2019,residential,88.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,121fb5ae-dedc-3e83-8cf3-4435cd84d969 +2020,residential,88.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,77c43fe5-0cb4-34c3-8322-a8835312620a +2021,residential,91.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,f2354aa0-41f9-38a1-9a83-9de27e2c1dcc +2022,residential,98.0,TJ,I.1.1,N2O,0.1,kg/TJ,10.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,410dbf9e-b6d6-3af8-942a-264603720899 +2018,commercial,54.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,58dfe080-1f61-3871-ab8f-0cdce4574349 +2019,commercial,49.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,18b45529-f110-3d33-97de-2182ba7e874e +2020,commercial,42.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,8c092b5e-3391-3c22-81e1-c956b8a25606 +2021,commercial,28.0,TJ,I.2.1,N2O,0.1,kg/TJ,3.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,fe0e2ee2-1442-3530-a8a0-c59c737e655e +2022,commercial,49.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,471d11d5-d710-388f-9323-94d8725e64b2 +2018,industrial,37.0,TJ,I.3.1,N2O,0.1,kg/TJ,4.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,a285ca6b-230d-35fb-9fae-4ee7e063796b +2019,industrial,33.0,TJ,I.3.1,N2O,0.1,kg/TJ,3.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,295e18ca-9c76-35a2-9245-296119d0a3e6 +2020,industrial,29.0,TJ,I.3.1,N2O,0.1,kg/TJ,3.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,86bb0bf1-3397-3a39-91c5-e3f1df3d3115 +2021,industrial,19.0,TJ,I.3.1,N2O,0.1,kg/TJ,2.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,13d76ab6-fa09-3fc6-979a-1e629ee64b5f +2022,industrial,33.0,TJ,I.3.1,N2O,0.1,kg/TJ,3.0,kg,Santa Rosa,deie_mendoza,annual,AR STA,93dc5297-72db-30cc-ac26-1d12507d026e +2018,residential,121.0,TJ,I.1.1,N2O,0.1,kg/TJ,12.0,kg,Lavalle,deie_mendoza,annual,AR LAV,235391ef-cca8-362d-b9f8-ab88254924d3 +2019,residential,126.0,TJ,I.1.1,N2O,0.1,kg/TJ,13.0,kg,Lavalle,deie_mendoza,annual,AR LAV,919df1c5-3891-3157-ac0a-e9dbb4d21584 +2020,residential,130.0,TJ,I.1.1,N2O,0.1,kg/TJ,13.0,kg,Lavalle,deie_mendoza,annual,AR LAV,24ed8653-53f7-3fb1-8d9e-90d4411a18b1 +2021,residential,130.0,TJ,I.1.1,N2O,0.1,kg/TJ,13.0,kg,Lavalle,deie_mendoza,annual,AR LAV,3a9dcdb4-ed0f-3f0d-8c15-f6e77e7441aa +2022,residential,145.0,TJ,I.1.1,N2O,0.1,kg/TJ,14.0,kg,Lavalle,deie_mendoza,annual,AR LAV,ebad534b-75cb-311b-bba6-09423c5766bf +2018,commercial,39.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Lavalle,deie_mendoza,annual,AR LAV,2eb683c3-9548-3f9d-b8eb-ffaa3bdad1ac +2019,commercial,43.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Lavalle,deie_mendoza,annual,AR LAV,1e7393af-499e-3265-a37a-b1e68e234a6b +2020,commercial,46.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Lavalle,deie_mendoza,annual,AR LAV,aa0efaaa-1b8f-3781-a538-3bcbfc68b3a9 +2021,commercial,162.0,TJ,I.2.1,N2O,0.1,kg/TJ,16.0,kg,Lavalle,deie_mendoza,annual,AR LAV,96759f0c-781d-325d-8fc0-fde70802d3a6 +2022,commercial,41.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Lavalle,deie_mendoza,annual,AR LAV,2b73c38c-1890-31ad-bf41-71f80e000724 +2018,industrial,360.0,TJ,I.3.1,N2O,0.1,kg/TJ,36.0,kg,Lavalle,deie_mendoza,annual,AR LAV,b037050c-5895-3973-bc14-bb5b3aa875ee +2019,industrial,400.0,TJ,I.3.1,N2O,0.1,kg/TJ,40.0,kg,Lavalle,deie_mendoza,annual,AR LAV,bcf55a2a-9946-3672-ac7a-02e8675fa445 +2020,industrial,425.0,TJ,I.3.1,N2O,0.1,kg/TJ,42.0,kg,Lavalle,deie_mendoza,annual,AR LAV,048a23f9-30b7-37b1-b2f2-fac9400f0b27 +2021,industrial,1489.0,TJ,I.3.1,N2O,0.1,kg/TJ,149.0,kg,Lavalle,deie_mendoza,annual,AR LAV,1b9f80d9-4559-3b34-84b5-e70db55e5d19 +2022,industrial,380.0,TJ,I.3.1,N2O,0.1,kg/TJ,38.0,kg,Lavalle,deie_mendoza,annual,AR LAV,bdfe4901-5a94-396b-a7c4-7a28f6bc48c6 +2018,residential,1593.0,TJ,I.1.1,N2O,0.1,kg/TJ,159.0,kg,Maipú,deie_mendoza,annual,AR MPU,341ae533-e5ac-3a82-b418-64dce7d49cea +2019,residential,1662.0,TJ,I.1.1,N2O,0.1,kg/TJ,166.0,kg,Maipú,deie_mendoza,annual,AR MPU,909325e8-4a1f-3efb-a23d-b8b17a07a34d +2020,residential,1748.0,TJ,I.1.1,N2O,0.1,kg/TJ,175.0,kg,Maipú,deie_mendoza,annual,AR MPU,400dc6e2-453a-31bb-9597-483b3526ccd7 +2021,residential,1780.0,TJ,I.1.1,N2O,0.1,kg/TJ,178.0,kg,Maipú,deie_mendoza,annual,AR MPU,ce9dc61e-6d8f-38f9-9c91-4540ff48438d +2022,residential,1949.0,TJ,I.1.1,N2O,0.1,kg/TJ,195.0,kg,Maipú,deie_mendoza,annual,AR MPU,0affccd1-815c-3239-ac86-798e946f4336 +2018,commercial,605.0,TJ,I.2.1,N2O,0.1,kg/TJ,61.0,kg,Maipú,deie_mendoza,annual,AR MPU,7045ebc9-f11a-3404-b074-45fe4c1115c2 +2019,commercial,600.0,TJ,I.2.1,N2O,0.1,kg/TJ,60.0,kg,Maipú,deie_mendoza,annual,AR MPU,ac401af0-bf8f-3c3d-857c-9e3b146e5353 +2020,commercial,586.0,TJ,I.2.1,N2O,0.1,kg/TJ,59.0,kg,Maipú,deie_mendoza,annual,AR MPU,38345522-658d-389d-8441-6d3cab08bd24 +2021,commercial,632.0,TJ,I.2.1,N2O,0.1,kg/TJ,63.0,kg,Maipú,deie_mendoza,annual,AR MPU,5e959bd9-4758-368b-9ec5-57971355ae20 +2022,commercial,771.0,TJ,I.2.1,N2O,0.1,kg/TJ,77.0,kg,Maipú,deie_mendoza,annual,AR MPU,e2c18779-79bc-38c4-852a-f8d199b4910b +2018,industrial,1390.0,TJ,I.3.1,N2O,0.1,kg/TJ,139.0,kg,Maipú,deie_mendoza,annual,AR MPU,46e6bb4f-d965-3a30-b905-234cba039766 +2019,industrial,1377.0,TJ,I.3.1,N2O,0.1,kg/TJ,138.0,kg,Maipú,deie_mendoza,annual,AR MPU,422fbf50-1797-32f5-93d5-068ead17b866 +2020,industrial,1345.0,TJ,I.3.1,N2O,0.1,kg/TJ,135.0,kg,Maipú,deie_mendoza,annual,AR MPU,e214fa8e-d3d1-3d9a-a7f0-da9849f641a0 +2021,industrial,1452.0,TJ,I.3.1,N2O,0.1,kg/TJ,145.0,kg,Maipú,deie_mendoza,annual,AR MPU,b212d5e8-1105-3a3d-b597-0e3a31179c4b +2022,industrial,1770.0,TJ,I.3.1,N2O,0.1,kg/TJ,177.0,kg,Maipú,deie_mendoza,annual,AR MPU,bfe1d960-32ef-3e63-a44d-fbb3afa45ad5 +2018,power_plants,24.0,TJ,nan,N2O,0.1,kg/TJ,2.0,kg,Maipú,deie_mendoza,annual,AR MPU,f6b1dd2c-b402-3cd8-8646-4412b2205c2a +2019,power_plants,23.0,TJ,nan,N2O,0.1,kg/TJ,2.0,kg,Maipú,deie_mendoza,annual,AR MPU,af1a7713-fdbf-3703-83cf-a5c4c29395c9 +2020,power_plants,23.0,TJ,nan,N2O,0.1,kg/TJ,2.0,kg,Maipú,deie_mendoza,annual,AR MPU,7e03a9a6-bffa-3fab-bd13-5587f0310d57 +2021,power_plants,25.0,TJ,nan,N2O,0.1,kg/TJ,2.0,kg,Maipú,deie_mendoza,annual,AR MPU,c8df4f5f-e919-3c3e-aa87-9501d94b4247 +2022,power_plants,30.0,TJ,nan,N2O,0.1,kg/TJ,3.0,kg,Maipú,deie_mendoza,annual,AR MPU,0be0630b-7ac8-38bc-83ed-1c560ff558d9 +2018,residential,1632.0,TJ,I.1.1,N2O,0.1,kg/TJ,163.0,kg,Las Heras,deie_mendoza,annual,AR LHE,86285845-535a-3e48-a06b-5c0f7adbda6e +2019,residential,1622.0,TJ,I.1.1,N2O,0.1,kg/TJ,162.0,kg,Las Heras,deie_mendoza,annual,AR LHE,8d17b184-1afb-3cca-86e8-fc41c73ef73a +2020,residential,1696.0,TJ,I.1.1,N2O,0.1,kg/TJ,170.0,kg,Las Heras,deie_mendoza,annual,AR LHE,9dc863e8-53ab-3313-a0ed-6fd7815ae6aa +2021,residential,1680.0,TJ,I.1.1,N2O,0.1,kg/TJ,168.0,kg,Las Heras,deie_mendoza,annual,AR LHE,bac37f10-935b-3491-85ed-757bfc84a03d +2022,residential,1768.0,TJ,I.1.1,N2O,0.1,kg/TJ,177.0,kg,Las Heras,deie_mendoza,annual,AR LHE,cdb64851-f434-3411-8e54-65b4372a953f +2018,commercial,415.0,TJ,I.2.1,N2O,0.1,kg/TJ,41.0,kg,Las Heras,deie_mendoza,annual,AR LHE,96f47449-ad4a-36e8-894a-87d1282236f1 +2019,commercial,392.0,TJ,I.2.1,N2O,0.1,kg/TJ,39.0,kg,Las Heras,deie_mendoza,annual,AR LHE,56a34bcb-ebac-3486-b964-f32abe9cebb9 +2020,commercial,511.0,TJ,I.2.1,N2O,0.1,kg/TJ,51.0,kg,Las Heras,deie_mendoza,annual,AR LHE,7ecfab75-dfcb-3097-ad48-1c46bcddaf69 +2021,commercial,604.0,TJ,I.2.1,N2O,0.1,kg/TJ,60.0,kg,Las Heras,deie_mendoza,annual,AR LHE,f019e89a-f655-33a8-850a-e905aac19bc0 +2022,commercial,611.0,TJ,I.2.1,N2O,0.1,kg/TJ,61.0,kg,Las Heras,deie_mendoza,annual,AR LHE,7414ae9c-aa9f-3ba0-8dab-35d8789a02c6 +2018,industrial,1591.0,TJ,I.3.1,N2O,0.1,kg/TJ,159.0,kg,Las Heras,deie_mendoza,annual,AR LHE,971f1742-31ba-3aaa-9195-5bf9e3391113 +2019,industrial,1505.0,TJ,I.3.1,N2O,0.1,kg/TJ,151.0,kg,Las Heras,deie_mendoza,annual,AR LHE,5190c296-9ef4-3916-86cb-167cfd5c1ae8 +2020,industrial,1961.0,TJ,I.3.1,N2O,0.1,kg/TJ,196.0,kg,Las Heras,deie_mendoza,annual,AR LHE,a29b19f8-8a76-37f7-829c-9ef6858d298f +2021,industrial,2317.0,TJ,I.3.1,N2O,0.1,kg/TJ,232.0,kg,Las Heras,deie_mendoza,annual,AR LHE,21d92ed4-a1ad-3076-9ccf-c9a3fec677ec +2022,industrial,2341.0,TJ,I.3.1,N2O,0.1,kg/TJ,234.0,kg,Las Heras,deie_mendoza,annual,AR LHE,310d9e18-e219-38d1-8c90-23858742ae84 +2018,residential,1912.0,TJ,I.1.1,N2O,0.1,kg/TJ,191.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,19fbc4e3-db1f-32d5-b080-1638c83c0058 +2019,residential,1958.0,TJ,I.1.1,N2O,0.1,kg/TJ,196.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,fa58c451-e57b-317c-a4b6-49f921c0ad79 +2020,residential,2112.0,TJ,I.1.1,N2O,0.1,kg/TJ,211.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,53cfc0d2-c8a1-338f-90d4-cf4a6659b17a +2021,residential,2707.0,TJ,I.1.1,N2O,0.1,kg/TJ,271.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,8978f16d-9fe2-3d31-9e69-a1c06f6d79c3 +2022,residential,2921.0,TJ,I.1.1,N2O,0.1,kg/TJ,292.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,569564e2-7af1-35b2-be9d-84d8d16e26bb +2018,commercial,1107.0,TJ,I.2.1,N2O,0.1,kg/TJ,111.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,6c67a74c-f136-31f6-ae39-cab01dc360af +2019,commercial,1102.0,TJ,I.2.1,N2O,0.1,kg/TJ,110.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,82045842-258a-3227-9f64-bd6e2386556e +2020,commercial,974.0,TJ,I.2.1,N2O,0.1,kg/TJ,97.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,ad1085c4-7892-3d3d-b375-cf0c01282fc5 +2021,commercial,1057.0,TJ,I.2.1,N2O,0.1,kg/TJ,106.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,86eacda1-7e6a-379e-8364-16a90013a5a1 +2022,commercial,1066.0,TJ,I.2.1,N2O,0.1,kg/TJ,107.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,e83b9f00-7ad3-369b-982e-7a62e3fa48b8 +2018,industrial,13115.0,TJ,I.3.1,N2O,0.1,kg/TJ,1312.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,620d6c49-72bd-3179-ad5f-622b5cb369db +2019,industrial,13064.0,TJ,I.3.1,N2O,0.1,kg/TJ,1306.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,2978d70a-659d-34b9-b97f-0b31807a2c9e +2020,industrial,11546.0,TJ,I.3.1,N2O,0.1,kg/TJ,1155.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,9a9c4003-000b-3c73-a787-66c155a296bc +2021,industrial,12525.0,TJ,I.3.1,N2O,0.1,kg/TJ,1252.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,ccc8a1b5-088f-3f5f-a540-aabb4c676e64 +2022,industrial,12634.0,TJ,I.3.1,N2O,0.1,kg/TJ,1263.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,de966933-ea1c-3c9b-aa29-a45b5d51a4d7 +2018,power_plants,24005.0,TJ,nan,N2O,0.1,kg/TJ,2401.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,134336c1-fd96-33fc-ac85-ebbf94156476 +2019,power_plants,23910.0,TJ,nan,N2O,0.1,kg/TJ,2391.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,67b16863-e1c6-3f87-9dbe-a9c63240b002 +2020,power_plants,21132.0,TJ,nan,N2O,0.1,kg/TJ,2113.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,3f214aed-a8a4-384f-9788-730aea3669db +2021,power_plants,22925.0,TJ,nan,N2O,0.1,kg/TJ,2292.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,10a84f46-95d0-3fec-add5-7cce9433b6d8 +2022,power_plants,23124.0,TJ,nan,N2O,0.1,kg/TJ,2312.0,kg,Luján de Cuyo,deie_mendoza,annual,AR LCU,f6845b7a-ff08-30ba-8727-b1bcb6672952 +2018,residential,897.0,TJ,I.1.1,N2O,0.1,kg/TJ,90.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,2919394d-e67f-38c8-a1ac-795923f6d691 +2019,residential,888.0,TJ,I.1.1,N2O,0.1,kg/TJ,89.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,d2885513-6c62-328f-90bc-6d2a1f498a7b +2020,residential,919.0,TJ,I.1.1,N2O,0.1,kg/TJ,92.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,5588d681-9ed3-32d8-a896-9081dd373c52 +2021,residential,918.0,TJ,I.1.1,N2O,0.1,kg/TJ,92.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,8af42848-72b2-3e4e-b1e1-80987e4a24c5 +2022,residential,983.0,TJ,I.1.1,N2O,0.1,kg/TJ,98.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,6a8cb868-7c32-376f-957d-c1adc7c5213e +2018,commercial,145.0,TJ,I.2.1,N2O,0.1,kg/TJ,15.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,593f12d4-ca3a-3e2e-9b15-5620a2157f68 +2019,commercial,134.0,TJ,I.2.1,N2O,0.1,kg/TJ,13.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,6d6dc860-bbe3-3eb0-9bff-0b08a3d36ef8 +2020,commercial,134.0,TJ,I.2.1,N2O,0.1,kg/TJ,13.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,c2fe39df-2728-3409-884d-29d527037ff7 +2021,commercial,85.0,TJ,I.2.1,N2O,0.1,kg/TJ,9.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,658a6d4b-9b2d-3cff-8e15-6520f967a25c +2022,commercial,88.0,TJ,I.2.1,N2O,0.1,kg/TJ,9.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,520a89a6-04d1-327c-80f6-4cd405aec907 +2018,industrial,378.0,TJ,I.3.1,N2O,0.1,kg/TJ,38.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,d3ec6c92-6cd1-3a3b-be6e-bc9954022120 +2019,industrial,349.0,TJ,I.3.1,N2O,0.1,kg/TJ,35.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,34baf07f-4f98-3a3b-a715-ee1d6765e8ce +2020,industrial,348.0,TJ,I.3.1,N2O,0.1,kg/TJ,35.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,8b2f8f2c-ec14-3fdc-bc7f-31fc2604a5ef +2021,industrial,222.0,TJ,I.3.1,N2O,0.1,kg/TJ,22.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,b1947758-2d4b-34d6-8a6d-ce54e5d5546c +2022,industrial,228.0,TJ,I.3.1,N2O,0.1,kg/TJ,23.0,kg,Gral. San Martín,deie_mendoza,annual,AR SMR,a0e03013-978b-3e28-98d6-69e948089dcf +2018,residential,88.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,La Paz,deie_mendoza,annual,AR LPM,78201ea0-a175-3149-8a0a-d4533a53aa38 +2019,residential,84.0,TJ,I.1.1,N2O,0.1,kg/TJ,8.0,kg,La Paz,deie_mendoza,annual,AR LPM,c6985631-99a2-3220-a82f-29dd7a63c296 +2020,residential,86.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,La Paz,deie_mendoza,annual,AR LPM,86b7578c-0eed-359a-854b-9c4d3a9404a7 +2021,residential,89.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,La Paz,deie_mendoza,annual,AR LPM,72fee4c6-9694-3b2d-80e7-b3c52807efae +2022,residential,95.0,TJ,I.1.1,N2O,0.1,kg/TJ,9.0,kg,La Paz,deie_mendoza,annual,AR LPM,890b5e50-aae3-3ba2-bf8b-e18119d90855 +2018,commercial,5.0,TJ,I.2.1,N2O,0.1,kg/TJ,1.0,kg,La Paz,deie_mendoza,annual,AR LPM,938e0870-3007-38e7-8fa7-660bdfca11a8 +2019,commercial,1.0,TJ,I.2.1,N2O,0.1,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,4c9b8fd6-1950-39be-91bf-3c3bad5b2919 +2020,commercial,6.0,TJ,I.2.1,N2O,0.1,kg/TJ,1.0,kg,La Paz,deie_mendoza,annual,AR LPM,f42f0f98-6706-3768-8f81-4c914ad156e4 +2021,commercial,10.0,TJ,I.2.1,N2O,0.1,kg/TJ,1.0,kg,La Paz,deie_mendoza,annual,AR LPM,c058a62b-0a43-34af-ab33-08c33fd85cd9 +2022,commercial,13.0,TJ,I.2.1,N2O,0.1,kg/TJ,1.0,kg,La Paz,deie_mendoza,annual,AR LPM,cc07de5d-4a9c-31c0-b1a7-d940f275a8b3 +2018,industrial,0.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,9e634d39-f5c1-34f6-ae83-aa7f9e196499 +2019,industrial,0.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,0069d069-1e17-3d6d-8b73-13e357c9da63 +2020,industrial,0.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,e2b5fb3d-d00d-374b-b850-6e2338d8457b +2021,industrial,0.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,2f5c7b4c-c0a8-35eb-aaca-6455c0090f43 +2022,industrial,0.0,TJ,I.3.1,N2O,0.1,kg/TJ,0.0,kg,La Paz,deie_mendoza,annual,AR LPM,a792e3ed-58f1-319d-89a2-61edfcffe9d9 +2018,residential,279.0,TJ,I.1.1,N2O,0.1,kg/TJ,28.0,kg,Tupungato,deie_mendoza,annual,Tupungato,4e2e97f0-f756-38ed-8b3d-6d2466955c3c +2019,residential,255.0,TJ,I.1.1,N2O,0.1,kg/TJ,25.0,kg,Tupungato,deie_mendoza,annual,Tupungato,a36cda75-d899-336f-9229-7c7cfd145b19 +2020,residential,268.0,TJ,I.1.1,N2O,0.1,kg/TJ,27.0,kg,Tupungato,deie_mendoza,annual,Tupungato,088b0aad-49db-3b07-921c-306e2c0fc950 +2021,residential,271.0,TJ,I.1.1,N2O,0.1,kg/TJ,27.0,kg,Tupungato,deie_mendoza,annual,Tupungato,8e803a3e-d3f5-3088-ab93-5d739793b3e8 +2022,residential,294.0,TJ,I.1.1,N2O,0.1,kg/TJ,29.0,kg,Tupungato,deie_mendoza,annual,Tupungato,7440fde6-2b1a-33e4-9a85-8bdafb868a75 +2018,commercial,44.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Tupungato,deie_mendoza,annual,Tupungato,17dbbc1f-f927-3419-89ac-2041eaca31e8 +2019,commercial,46.0,TJ,I.2.1,N2O,0.1,kg/TJ,5.0,kg,Tupungato,deie_mendoza,annual,Tupungato,97e3a82d-28be-39e9-9bdc-978815f498d6 +2020,commercial,25.0,TJ,I.2.1,N2O,0.1,kg/TJ,2.0,kg,Tupungato,deie_mendoza,annual,Tupungato,e13fc0fb-5dde-3b66-90a4-51e7e5bb1dd4 +2021,commercial,36.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Tupungato,deie_mendoza,annual,Tupungato,607bba53-2757-33c4-8d25-77b7d593de41 +2022,commercial,40.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Tupungato,deie_mendoza,annual,Tupungato,5a845546-dffc-3be8-96ac-7f65458c3def +2018,industrial,81.0,TJ,I.3.1,N2O,0.1,kg/TJ,8.0,kg,Tupungato,deie_mendoza,annual,Tupungato,76605a78-a9c9-3af1-9206-14c1ede636f5 +2019,industrial,86.0,TJ,I.3.1,N2O,0.1,kg/TJ,9.0,kg,Tupungato,deie_mendoza,annual,Tupungato,fed45b27-ad13-38db-9bae-951fd6848717 +2020,industrial,46.0,TJ,I.3.1,N2O,0.1,kg/TJ,5.0,kg,Tupungato,deie_mendoza,annual,Tupungato,6eae26cf-d66a-3ca1-8c48-036547c7cbd8 +2021,industrial,67.0,TJ,I.3.1,N2O,0.1,kg/TJ,7.0,kg,Tupungato,deie_mendoza,annual,Tupungato,90b0d639-4f29-3e6f-9588-0bb811c8f5c1 +2022,industrial,75.0,TJ,I.3.1,N2O,0.1,kg/TJ,8.0,kg,Tupungato,deie_mendoza,annual,Tupungato,779b566c-15ff-3991-a34c-5c433cad7e59 +2018,residential,294.0,TJ,I.1.1,N2O,0.1,kg/TJ,29.0,kg,Junín,deie_mendoza,annual,AR NIN,560ff070-12ae-3aa0-9f9c-ea51bcaf363d +2019,residential,300.0,TJ,I.1.1,N2O,0.1,kg/TJ,30.0,kg,Junín,deie_mendoza,annual,AR NIN,b6bd083d-a5f9-3cb0-8488-c6940a76bdf9 +2020,residential,319.0,TJ,I.1.1,N2O,0.1,kg/TJ,32.0,kg,Junín,deie_mendoza,annual,AR NIN,ffbe9fd5-5a85-3586-9faf-585df7cb693c +2021,residential,317.0,TJ,I.1.1,N2O,0.1,kg/TJ,32.0,kg,Junín,deie_mendoza,annual,AR NIN,2f8fe689-40d1-3ebf-912c-5e4798ff7dd1 +2022,residential,341.0,TJ,I.1.1,N2O,0.1,kg/TJ,34.0,kg,Junín,deie_mendoza,annual,AR NIN,a32dd554-98bf-3d4f-b2ed-c97fa84c92cd +2018,commercial,39.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Junín,deie_mendoza,annual,AR NIN,627742aa-bfc2-35f3-bc58-339493e5a83c +2019,commercial,32.0,TJ,I.2.1,N2O,0.1,kg/TJ,3.0,kg,Junín,deie_mendoza,annual,AR NIN,e3841c22-7a06-34b3-bde2-2478cf897e4b +2020,commercial,29.0,TJ,I.2.1,N2O,0.1,kg/TJ,3.0,kg,Junín,deie_mendoza,annual,AR NIN,9ae098fd-4827-36f8-bf92-d5257909dd4d +2021,commercial,36.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Junín,deie_mendoza,annual,AR NIN,58818908-54cf-368f-a3eb-08627cf01826 +2022,commercial,35.0,TJ,I.2.1,N2O,0.1,kg/TJ,4.0,kg,Junín,deie_mendoza,annual,AR NIN,dba7973a-bbb5-31d9-a75c-3d6c65fda300 +2018,industrial,24.0,TJ,I.3.1,N2O,0.1,kg/TJ,2.0,kg,Junín,deie_mendoza,annual,AR NIN,f57bf0b1-0207-3b10-a963-dc1f795f75e4 +2019,industrial,20.0,TJ,I.3.1,N2O,0.1,kg/TJ,2.0,kg,Junín,deie_mendoza,annual,AR NIN,16392c14-23fa-3370-883a-0322c069f81e +2020,industrial,18.0,TJ,I.3.1,N2O,0.1,kg/TJ,2.0,kg,Junín,deie_mendoza,annual,AR NIN,6b54fc63-7687-335c-8272-87b65867ca50 +2021,industrial,22.0,TJ,I.3.1,N2O,0.1,kg/TJ,2.0,kg,Junín,deie_mendoza,annual,AR NIN,8d1cfb03-92ca-3c23-9582-53e6aa025007 +2022,industrial,22.0,TJ,I.3.1,N2O,0.1,kg/TJ,2.0,kg,Junín,deie_mendoza,annual,AR NIN,c6b964f6-67bd-33f5-a752-4da4d2b2344b +2018,residential,1527.0,TJ,I.1.1,N2O,0.1,kg/TJ,153.0,kg,Capital,deie_mendoza,annual,AR MDZ,43753a91-5baa-386f-af7b-b57e00f2d9d8 +2019,residential,1485.0,TJ,I.1.1,N2O,0.1,kg/TJ,149.0,kg,Capital,deie_mendoza,annual,AR MDZ,f2d8e2f4-85d8-3332-be70-df0400e25123 +2020,residential,1518.0,TJ,I.1.1,N2O,0.1,kg/TJ,152.0,kg,Capital,deie_mendoza,annual,AR MDZ,5a3a526e-9b30-35e4-a87d-48bff4753eb3 +2021,residential,1012.0,TJ,I.1.1,N2O,0.1,kg/TJ,101.0,kg,Capital,deie_mendoza,annual,AR MDZ,b12ef277-6866-399e-aa36-47050672341a +2022,residential,1083.0,TJ,I.1.1,N2O,0.1,kg/TJ,108.0,kg,Capital,deie_mendoza,annual,AR MDZ,f338bfea-d50a-3b5a-8912-07a55e1c0976 +2018,commercial,647.0,TJ,I.2.1,N2O,0.1,kg/TJ,65.0,kg,Capital,deie_mendoza,annual,AR MDZ,16d023bd-0091-3cb5-a144-f07af920efd4 +2019,commercial,632.0,TJ,I.2.1,N2O,0.1,kg/TJ,63.0,kg,Capital,deie_mendoza,annual,AR MDZ,dfba2945-845a-334b-bbcb-3d843089e9e9 +2020,commercial,402.0,TJ,I.2.1,N2O,0.1,kg/TJ,40.0,kg,Capital,deie_mendoza,annual,AR MDZ,b0290cc9-1c5f-3ba3-be04-1d8187304fc0 +2021,commercial,507.0,TJ,I.2.1,N2O,0.1,kg/TJ,51.0,kg,Capital,deie_mendoza,annual,AR MDZ,397aedb9-389c-3ca0-9f09-89ad6905b65c +2022,commercial,619.0,TJ,I.2.1,N2O,0.1,kg/TJ,62.0,kg,Capital,deie_mendoza,annual,AR MDZ,067e6d12-9104-395c-9847-19640915d65e +2018,industrial,12.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Capital,deie_mendoza,annual,AR MDZ,9c51a30e-52a5-364d-b7f3-cd91aaf2e718 +2019,industrial,12.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Capital,deie_mendoza,annual,AR MDZ,9aecedcd-f851-3503-9646-738775a7cabc +2020,industrial,7.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Capital,deie_mendoza,annual,AR MDZ,472cc121-45a2-3a6f-b13f-e56a301e14ce +2021,industrial,9.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Capital,deie_mendoza,annual,AR MDZ,bdd5fb12-aabf-34dc-9390-d003fce619e6 +2022,industrial,11.0,TJ,I.3.1,N2O,0.1,kg/TJ,1.0,kg,Capital,deie_mendoza,annual,AR MDZ,add05c0d-3bdb-3b04-a86c-624daad2a8e5 +2018,power_plants,0.0,TJ,nan,N2O,0.1,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,7f14d8d6-c587-3bee-b4f7-cde3f04bfb42 +2019,power_plants,0.0,TJ,nan,N2O,0.1,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,651afbd8-1fa4-360c-b8c2-780a79f066e3 +2020,power_plants,0.0,TJ,nan,N2O,0.1,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,dc4619ec-deff-3568-8ca0-c35f0c5e2455 +2021,power_plants,0.0,TJ,nan,N2O,0.1,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,a52279fe-cddc-3097-a1f5-2ea17212b25f +2022,power_plants,0.0,TJ,nan,N2O,0.1,kg/TJ,0.0,kg,Capital,deie_mendoza,annual,AR MDZ,65c07621-4f6b-3da5-afdc-2fc7f8aee5cc +2018,residential,658.0,TJ,I.1.1,N2O,0.1,kg/TJ,66.0,kg,Malargüe,deie_mendoza,annual,AR LGS,70968163-3302-3145-aa78-a7aa18711979 +2019,residential,584.0,TJ,I.1.1,N2O,0.1,kg/TJ,58.0,kg,Malargüe,deie_mendoza,annual,AR LGS,f009bc5e-96ef-3b09-83cb-95bca4475241 +2020,residential,577.0,TJ,I.1.1,N2O,0.1,kg/TJ,58.0,kg,Malargüe,deie_mendoza,annual,AR LGS,68f54a36-51fd-3b47-b17c-99f50eeb2c85 +2021,residential,613.0,TJ,I.1.1,N2O,0.1,kg/TJ,61.0,kg,Malargüe,deie_mendoza,annual,AR LGS,dd81589f-57ef-3985-b5f3-d457c3a4594b +2022,residential,681.0,TJ,I.1.1,N2O,0.1,kg/TJ,68.0,kg,Malargüe,deie_mendoza,annual,AR LGS,2afb0d9c-d486-32ba-a985-e26fd31731ee +2018,commercial,149.0,TJ,I.2.1,N2O,0.1,kg/TJ,15.0,kg,Malargüe,deie_mendoza,annual,AR LGS,cacddb78-2b85-3e3d-93af-5a695d35d684 +2019,commercial,139.0,TJ,I.2.1,N2O,0.1,kg/TJ,14.0,kg,Malargüe,deie_mendoza,annual,AR LGS,0e14506f-2f8e-371b-934c-43f719fb786f +2020,commercial,106.0,TJ,I.2.1,N2O,0.1,kg/TJ,11.0,kg,Malargüe,deie_mendoza,annual,AR LGS,23025733-5c69-3650-8398-24fa45392c7a +2021,commercial,134.0,TJ,I.2.1,N2O,0.1,kg/TJ,13.0,kg,Malargüe,deie_mendoza,annual,AR LGS,555feac7-3c31-364c-8bde-7f6df3019f89 +2022,commercial,146.0,TJ,I.2.1,N2O,0.1,kg/TJ,15.0,kg,Malargüe,deie_mendoza,annual,AR LGS,a0dfa5f1-e155-3931-bcbe-9e154f439061 +2018,industrial,91.0,TJ,I.3.1,N2O,0.1,kg/TJ,9.0,kg,Malargüe,deie_mendoza,annual,AR LGS,2d7d2b81-8c86-3056-8abd-96a6f6f34d97 +2019,industrial,85.0,TJ,I.3.1,N2O,0.1,kg/TJ,9.0,kg,Malargüe,deie_mendoza,annual,AR LGS,5cc28c71-3566-3ced-a300-0e61fb33719a +2020,industrial,65.0,TJ,I.3.1,N2O,0.1,kg/TJ,7.0,kg,Malargüe,deie_mendoza,annual,AR LGS,42e4ef78-0bbe-30fe-b37e-fababc6d2d6d +2021,industrial,82.0,TJ,I.3.1,N2O,0.1,kg/TJ,8.0,kg,Malargüe,deie_mendoza,annual,AR LGS,b17cd493-e1f3-3f3f-8ba3-142fb3fd7d77 +2022,industrial,90.0,TJ,I.3.1,N2O,0.1,kg/TJ,9.0,kg,Malargüe,deie_mendoza,annual,AR LGS,502abd57-a18c-35ea-97bc-063c97000988 +2018,residential,2851.0,TJ,I.1.1,N2O,0.1,kg/TJ,285.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,43c8159a-4e68-3513-b842-c71dcb41ab1d +2019,residential,2895.0,TJ,I.1.1,N2O,0.1,kg/TJ,289.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,ad533743-2412-37b2-8c4b-2f912ba46782 +2020,residential,2918.0,TJ,I.1.1,N2O,0.1,kg/TJ,292.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,ff1436b4-47e8-31a9-9b44-03a101768963 +2021,residential,2908.0,TJ,I.1.1,N2O,0.1,kg/TJ,291.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,64e9e843-5573-3d02-8010-a4ba573c9523 +2022,residential,3088.0,TJ,I.1.1,N2O,0.1,kg/TJ,309.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,a3557c21-ac22-3e20-bda0-09475f601c86 +2018,commercial,789.0,TJ,I.2.1,N2O,0.1,kg/TJ,79.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,ade63cce-9190-3fc1-ba3b-ab875532f271 +2019,commercial,764.0,TJ,I.2.1,N2O,0.1,kg/TJ,76.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,903cb641-52f9-3b38-a7bb-4ca8dbc04296 +2020,commercial,721.0,TJ,I.2.1,N2O,0.1,kg/TJ,72.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,85d00925-ea3d-35f6-85ae-3108e7b2f67f +2021,commercial,855.0,TJ,I.2.1,N2O,0.1,kg/TJ,86.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,93a44893-c87d-3a45-abdc-bf85ff572c23 +2022,commercial,725.0,TJ,I.2.1,N2O,0.1,kg/TJ,72.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,0f00857a-e9b0-3d8b-9f4f-daf22fe569f8 +2018,industrial,1523.0,TJ,I.3.1,N2O,0.1,kg/TJ,152.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,73ed32b9-2eac-35e3-9b80-e912c6034faf +2019,industrial,1473.0,TJ,I.3.1,N2O,0.1,kg/TJ,147.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,e4fba9f2-4b8e-33bc-a961-f164860ba20c +2020,industrial,1391.0,TJ,I.3.1,N2O,0.1,kg/TJ,139.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,cc6e614f-368e-306d-8786-ce8bf44c2f4a +2021,industrial,1649.0,TJ,I.3.1,N2O,0.1,kg/TJ,165.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,9ff7f276-d7b5-3d10-a810-3b7671139c06 +2022,industrial,1398.0,TJ,I.3.1,N2O,0.1,kg/TJ,140.0,kg,Guaymallén,deie_mendoza,annual,AR GYM,387cd21d-a82d-3d9c-b41a-c0be8ed28860 +2018,residential,1757.0,TJ,I.1.1,N2O,0.1,kg/TJ,176.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,9aa62696-31ec-3886-b984-d3fb63d60371 +2019,residential,1954.0,TJ,I.1.1,N2O,0.1,kg/TJ,195.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,ecbd8de9-fba7-3a51-a97c-de3d843825be +2020,residential,2168.0,TJ,I.1.1,N2O,0.1,kg/TJ,217.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,06c5f9cf-dde0-3bc9-b68d-2f4dd28f0766 +2021,residential,2134.0,TJ,I.1.1,N2O,0.1,kg/TJ,213.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,84b66d8b-a13a-3423-a4c7-cf60dac757e7 +2022,residential,2248.0,TJ,I.1.1,N2O,0.1,kg/TJ,225.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,a7ac6761-f6fd-39cd-921e-106c498e9e07 +2018,commercial,258.0,TJ,I.2.1,N2O,0.1,kg/TJ,26.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,0faee4e7-27b3-3b5e-acf4-47a31c7029fd +2019,commercial,245.0,TJ,I.2.1,N2O,0.1,kg/TJ,24.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,9cb3d93b-09b1-35f5-a8c8-4b759c8e4501 +2020,commercial,253.0,TJ,I.2.1,N2O,0.1,kg/TJ,25.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,ad8d855d-0cc0-37dc-9ca4-1038a43c3bae +2021,commercial,292.0,TJ,I.2.1,N2O,0.1,kg/TJ,29.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,6c49ab24-cb22-3626-9c09-4daa5a5966ed +2022,commercial,304.0,TJ,I.2.1,N2O,0.1,kg/TJ,30.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,566f470f-d256-3b1d-b39d-c55742d009c4 +2018,industrial,148.0,TJ,I.3.1,N2O,0.1,kg/TJ,15.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,27e2885c-8c68-31c5-8ee3-de751d4ad3eb +2019,industrial,141.0,TJ,I.3.1,N2O,0.1,kg/TJ,14.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,75431b97-cb93-30f2-9eac-21cec7756d53 +2020,industrial,145.0,TJ,I.3.1,N2O,0.1,kg/TJ,15.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,fa500d4c-768f-3d86-a73e-fb8c3a40a8c1 +2021,industrial,168.0,TJ,I.3.1,N2O,0.1,kg/TJ,17.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,3a087166-c405-36ac-9816-177c63e3268a +2022,industrial,175.0,TJ,I.3.1,N2O,0.1,kg/TJ,17.0,kg,Godoy Cruz,deie_mendoza,annual,AR GCR,edfcfa72-2566-3791-adba-850b8b8b2a39 diff --git a/global-api/importer/mendoza_arg/transformation_mendoza_stationary_energy.py b/global-api/importer/mendoza_arg/transformation_mendoza_stationary_energy.py index c4bf41e0c..2c9655052 100644 --- a/global-api/importer/mendoza_arg/transformation_mendoza_stationary_energy.py +++ b/global-api/importer/mendoza_arg/transformation_mendoza_stationary_energy.py @@ -30,8 +30,9 @@ def read_excel(path): absolute_path = os.path.abspath(args.filepath) paths = glob.glob(f'{absolute_path}/*') + #------------------------------------------------------------------------ ### Electricity consumption - + #------------------------------------------------------------------------ def reshape_df(df): # Reshape a DataFrame tmp = pd.melt( @@ -75,6 +76,7 @@ def replace_val(df): try: df = read_excel(path) + # selection of the rows based on the file structure if "Maipu" in path: df = df.loc[32:41,] else: @@ -82,6 +84,8 @@ def replace_val(df): df.columns = column_names df = df.reset_index(drop=True) + + # adding up the commercial and public energy consumption df['commercial'] = df['general'] + df['street_lighting'] df.drop(columns=['total_provincial', 'total', 'residential_provincial', 'general_provincial', 'street_lighting_provincial', 'agricultural_irrigation_provincial', @@ -97,26 +101,31 @@ def replace_val(df): if activity_name in sector_dic.keys(): df.at[index, 'GPC_refno'] = sector_dic[activity_name] - # Production fuel mix factor (kgCO2e per kWh) + # Production fuel mix factor (kgCO2 per kWh) # source: https://www.carbonfootprint.com/docs/2023_02_emissions_factors_sources_for_2022_electricity_v10.pdf df['gas_name'] = 'CO2' df['emission_factor_value'] = 0.2881 - df['emission_factor_units'] = 'kgCO2e/kWh' + df['emission_factor_units'] = 'kgCO2/kWh' df['activity_value'] = pd.to_numeric(df['activity_value']) - df['emissions_value'] = (df['activity_value']*1000) * df['emission_factor_value'] + + # changing activity values from MWh to kWh + df['emissions_value'] = df['activity_value']*1000 + # applying EF + df['emissions_value'] = df['emissions_value']* df['emission_factor_value'] df['emissions_units'] = 'kg' + # extract city name df['city_name'] = path.split("/")[-1][:-27] result_df1 = pd.concat([result_df1, df], ignore_index=True) + except Exception as e: print(f"Error processing {path}: {e}") - + #------------------------------------------------------------------------ ### Gas consumption - - # Cubic meters of gas distributed by type of user, according to year - + ### Cubic meters of gas distributed by type of user, according to year + #------------------------------------------------------------------------ column_names2 = ['year', 'city_name', 'total', @@ -206,6 +215,7 @@ def replace_val(df): # gas: 9300 kcal/m3 # 1 kcal = 4.1858e-9 TJ + # changing activity value from m3 to TJ result_df2['activity_value'] = result_df2['activity_value']*9300*4.1858*1e-9 result_df2['activity_units'] = 'TJ' @@ -216,6 +226,7 @@ def replace_val(df): ef_natural_gas['gas_units'] = ['kg/TJ', 'kg/TJ', 'kg/TJ'] ef_natural_gas['EF_ID'] = ['118128', '118182', '118236'] + # applying emission factors result_df = pd.DataFrame() for gas in ef_natural_gas['gas_name']: @@ -236,13 +247,12 @@ def replace_val(df): # Concatenate the temporary DataFrame to the result_df result_df = pd.concat([result_df, temp_df], ignore_index=True) + # assigning gpc reference number based on the user sector_dic = { 'residential': 'I.1.1', 'commercial': 'I.2.1', 'industrial': 'I.3.1' } - - # assigning gpc reference number based on the user for index, row in result_df.iterrows(): activity_name = row['activity_name'] @@ -251,8 +261,19 @@ def replace_val(df): final_df = pd.concat([result_df1, result_df], ignore_index=True) + # delete rows without data final_df = final_df[final_df != 0].dropna() + # delete decimals + columns_to_round = ['activity_value', 'emissions_value'] + + # convert the specified columns to numeric type + final_df[columns_to_round] = final_df[columns_to_round].apply(pd.to_numeric, errors='coerce') + + # round the values in the specified columns to the specified number of decimals + final_df[columns_to_round] = final_df[columns_to_round].round(0) + + # change city names val_to_replace = ['Tunuyan', 'General_Alvear', 'San_Rafael', 'Santa_Rosa', 'San_Carlos', 'Maipu', 'Las_Heras', 'Lujan de Cuyo', 'Gral San Martin', 'La_Paz', 'Malargue', 'Guaymallen', 'Godoy_Cruz', 'Junin'] @@ -263,6 +284,7 @@ def replace_val(df): final_df['source_name'] = 'deie_mendoza' final_df['temporal_granularity'] = 'annual' + # assigning city locode based on the city name locode_dic = { 'Rivadavia':'AR RIV', 'Lavalle':'AR LAV', @@ -283,8 +305,6 @@ def replace_val(df): 'Guaymallén':'AR GYM', 'Godoy Cruz':'AR GCR' } - - # assigning city locode based on the city name for index, row in final_df.iterrows(): city_name = row['city_name'] @@ -303,4 +323,4 @@ def replace_val(df): final_df.at[index, 'id'] = uuid_generate_v3(id_string) - final_df.to_csv(f'{absolute_path}/stationary_energy_mendoza.csv', sep=";", decimal=".", index=False) \ No newline at end of file + final_df.to_csv(f'{absolute_path}/stationary_energy_mendoza.csv', sep=",", decimal=".", index=False) \ No newline at end of file diff --git a/global-api/importer/misc/dedupe.py b/global-api/importer/misc/dedupe.py new file mode 100644 index 000000000..0a8edf04d --- /dev/null +++ b/global-api/importer/misc/dedupe.py @@ -0,0 +1,22 @@ +from csv import DictReader, DictWriter +import sys +import csv + +csv.field_size_limit(sys.maxsize) + +def main(input, output, key): + seen = set() + with open(input, 'r') as f: + reader = DictReader(f) + with open(output, 'w') as f: + writer = DictWriter(f, fieldnames=reader.fieldnames) + writer.writeheader() + for row in reader: + if row[key] in seen: + continue + seen.add(row[key]) + writer.writerow(row) + +if __name__ == '__main__': + import sys + main(sys.argv[1], sys.argv[2], sys.argv[3]) diff --git a/global-api/importer/misc/mergecsv.py b/global-api/importer/misc/mergecsv.py new file mode 100644 index 000000000..4934d4e37 --- /dev/null +++ b/global-api/importer/misc/mergecsv.py @@ -0,0 +1,26 @@ +from csv import DictReader, DictWriter +import sys +import csv + +csv.field_size_limit(sys.maxsize) + +def main(key, output, inputs): + merged = {} + fieldnames = None + for file in inputs: + with open(file, 'r') as f: + reader = DictReader(f) + if not fieldnames: + fieldnames = reader.fieldnames + for row in reader: + merged[row[key]] = row + + with open(output, 'w') as f: + writer = DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + for row in merged.values(): + writer.writerow(row) + +if __name__ == '__main__': + import sys + main(sys.argv[1], sys.argv[2], sys.argv[3:]) diff --git a/global-api/importer/misc/ordercols.py b/global-api/importer/misc/ordercols.py new file mode 100644 index 000000000..12b90315b --- /dev/null +++ b/global-api/importer/misc/ordercols.py @@ -0,0 +1,25 @@ +from csv import DictReader, DictWriter +import sys +import csv + +csv.field_size_limit(sys.maxsize) + +def main(first, others): + merged = {} + fieldnames = None + with open(first, 'r') as f: + reader = DictReader(f) + fieldnames = reader.fieldnames + + for other in others: + with open(other, 'r') as f: + reader = DictReader(f) + with open(other + '.reordered', 'w') as g: + writer = DictWriter(g, fieldnames=fieldnames) + writer.writeheader() + for row in reader: + writer.writerow(row) + +if __name__ == '__main__': + import sys + main(sys.argv[1], sys.argv[2:]) diff --git a/global-api/importer/misc/semicolon_to_csv.py b/global-api/importer/misc/semicolon_to_csv.py new file mode 100644 index 000000000..8badb4efa --- /dev/null +++ b/global-api/importer/misc/semicolon_to_csv.py @@ -0,0 +1,14 @@ +from csv import DictReader, DictWriter + +def main(inputfile, outputfile): + with open(inputfile, 'r') as f: + reader = DictReader(f, delimiter=';') + with open(outputfile, 'w') as f: + writer = DictWriter(f, delimiter=',', fieldnames=reader.fieldnames) + writer.writeheader() + for row in reader: + writer.writerow(row) + +if __name__ == '__main__': + import sys + main(sys.argv[1], sys.argv[2]) diff --git a/global-api/importer/misc/sortcsv.py b/global-api/importer/misc/sortcsv.py new file mode 100644 index 000000000..364bf6c3f --- /dev/null +++ b/global-api/importer/misc/sortcsv.py @@ -0,0 +1,24 @@ +from csv import DictReader, DictWriter +import sys +import csv + +csv.field_size_limit(sys.maxsize) + +def main(key, input, output): + data = {} + fieldnames = None + with open(input, 'r') as f: + reader = DictReader(f) + fieldnames = reader.fieldnames + for row in reader: + data[row[key]] = row + + with open(output, 'w') as f: + writer = DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + for key in sorted(data.keys()): + writer.writerow(data[key]) + +if __name__ == '__main__': + import sys + main(sys.argv[1], sys.argv[2], sys.argv[3]) diff --git a/global-api/importer/osm/osm_geometry_import.sql b/global-api/importer/osm/osm_geometry_import.sql new file mode 100644 index 000000000..34d6ec6c6 --- /dev/null +++ b/global-api/importer/osm/osm_geometry_import.sql @@ -0,0 +1,45 @@ +/* Create a staging table */ + +CREATE TEMP TABLE IF NOT EXISTS osm_staging (LIKE osm INCLUDING ALL); + +/* Clear the staging table */ + +TRUNCATE osm_staging; + +/* Load the staging table from the transformed file */ + +\copy osm_staging (geometry,bbox_north,bbox_south,bbox_east,bbox_west,place_id,osm_type,osm_id,lat,lon,class,type,place_rank,importance,addresstype,name,display_name,locode) FROM '/var/local/input-data/osm_geometry.csv' WITH CSV HEADER; + +/* Delete conflicts */ + +DELETE FROM osm +WHERE EXISTS (SELECT 1 FROM osm_staging WHERE osm_staging.locode != osm.locode AND osm_staging.osm_id = osm.osm_id); + +/* Update the main table with the staging table */ + +UPDATE osm +SET geometry = osm_staging.geometry, + bbox_north = osm_staging.bbox_north, + bbox_south = osm_staging.bbox_south, + bbox_east = osm_staging.bbox_east, + bbox_west = osm_staging.bbox_west, + place_id = osm_staging.place_id, + osm_type = osm_staging.osm_type, + osm_id = osm_staging.osm_id, + lat = osm_staging.lat, + lon = osm_staging.lon, + class = osm_staging.class, + type = osm_staging.type, + place_rank = osm_staging.place_rank, + importance = osm_staging.importance, + addresstype = osm_staging.addresstype, + name = osm_staging.name, + display_name = osm_staging.display_name +FROM osm_staging WHERE osm_staging.locode = osm.locode; + +/* Insert new rows from the staging table */ + +INSERT INTO osm +SELECT osm_staging.* +FROM osm_staging +WHERE NOT EXISTS (SELECT 1 FROM osm WHERE osm.locode = osm_staging.locode); diff --git a/global-api/main.py b/global-api/main.py index 0601945cb..9dd131c45 100644 --- a/global-api/main.py +++ b/global-api/main.py @@ -14,8 +14,8 @@ from routes.catalogue_endpoint import api_router as catalouge_route from routes.catalogue_last_update_endpoint import api_router as catalogue_last_update_endpoint from routes.city_locode_endpoint_ghgrp import api_router as ghgrp_city_locode_route -from routes.city_locode_endpoint_mendoza_stationary_energy import api_router as mendoza_stationary_energy_city_locode_route from routes.country_code_IEA_energy import api_router as country_code_IEA_energy_route +from routes.citywide_emission_endpoint import api_router as citywide_route """ Logger instance initialized and configured @@ -130,10 +130,9 @@ def read_root(): tags=["IEA energy"], ) - app.include_router( - mendoza_stationary_energy_city_locode_route, - tags=["Mendoza cities - Stationary Energy"], + citywide_route, + tags=["Citywide emissions"], ) """ diff --git a/global-api/migrations/versions/191489d19e2a_datacatalog_updatev01.py b/global-api/migrations/versions/191489d19e2a_datacatalog_updatev01.py new file mode 100644 index 000000000..950125913 --- /dev/null +++ b/global-api/migrations/versions/191489d19e2a_datacatalog_updatev01.py @@ -0,0 +1,39 @@ +"""datacatalog_updateV01 + +Revision ID: 191489d19e2a +Revises: 0ca75cb48d2c +Create Date: 2024-03-11 13:29:48.302595 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '191489d19e2a' +down_revision: Union[str, None] = '0ca75cb48d2c' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +def upgrade(): + op.add_column('datasource', sa.Column("datasource_name", sa.String(), nullable=True)) + op.add_column('datasource', sa.Column("dataset_name", sa.TEXT(), nullable=True)) + op.add_column('datasource', sa.Column("methodology_description", sa.TEXT(), nullable=True)) + op.add_column('datasource', sa.Column("transformation_description", sa.TEXT(), nullable=True)) + op.add_column('datasource', sa.Column("scope", sa.String(), nullable=True)) + op.alter_column("datasource", "url", new_column_name="dataset_url") + op.drop_column("datasource", "name") + op.drop_column("datasource", "description") + +def downgrade(): + op.drop_column('datasource', 'datasource_name') + op.drop_column('datasource', 'dataset_name') + op.drop_column('datasource', 'methodology_description') + op.drop_column('datasource', 'transformation_description') + op.drop_column('datasource', 'scope') + op.alter_column("datasource", "dataset_url", new_column_name="url") + op.add_column("datasource", sa.Column("name", sa.String(), nullable=True)) + op.add_column("datasource", sa.Column("description", sa.TEXT(), nullable=True)) + diff --git a/global-api/migrations/versions/2f940581ac2b_datasource_dataset_description.py b/global-api/migrations/versions/2f940581ac2b_datasource_dataset_description.py new file mode 100644 index 000000000..2ba7945c9 --- /dev/null +++ b/global-api/migrations/versions/2f940581ac2b_datasource_dataset_description.py @@ -0,0 +1,27 @@ +"""datasource.dataset_description + +Revision ID: 2f940581ac2b +Revises: f852767448af +Create Date: 2024-03-29 15:05:42.928203 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '2f940581ac2b' +down_revision: Union[str, None] = 'f852767448af' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +def upgrade() -> None: + op.add_column('datasource', sa.Column("dataset_description", sa.Text(), nullable=True)) + pass + + +def downgrade() -> None: + op.drop_column('datasource', 'dataset_description') + pass \ No newline at end of file diff --git a/global-api/migrations/versions/68a6467bb509_regionwide_emissions.py b/global-api/migrations/versions/68a6467bb509_regionwide_emissions.py new file mode 100644 index 000000000..cb31fabca --- /dev/null +++ b/global-api/migrations/versions/68a6467bb509_regionwide_emissions.py @@ -0,0 +1,49 @@ +"""regionwide_emissions + +Revision ID: 68a6467bb509 +Revises: 191489d19e2a +Create Date: 2024-03-18 13:29:17.038764 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.sql import text + + +# revision identifiers, used by Alembic. +revision: str = '68a6467bb509' +down_revision: Union[str, None] = '191489d19e2a' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +def upgrade() -> None: + op.create_table( + "regionwide_emissions", + sa.Column("id", sa.dialects.postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("source_name", sa.String, nullable=False), + sa.Column("GPC_refno", sa.String, nullable=False), + sa.Column("region_name", sa.String, nullable=False), + sa.Column("region_code", sa.String, nullable=False), + sa.Column("temporal_granularity", sa.String, nullable=False), + sa.Column("year", sa.Float, nullable=False), + sa.Column("activity_name", sa.String, nullable=False), + sa.Column("activity_value", sa.Float, nullable=True), + sa.Column("activity_units", sa.String, nullable=True), + sa.Column("gas_name", sa.String, nullable=False), + sa.Column("emission_factor_value", sa.Float, nullable=False), + sa.Column("emission_factor_units", sa.String, nullable=False), + sa.Column("emissions_value", sa.Float, nullable=False), + sa.Column("emissions_units", sa.String, nullable=False), + sa.Column( + "created_date", sa.DateTime(), server_default=text("CURRENT_TIMESTAMP") + ), + sa.Column( + "modified_date", sa.DateTime(), server_default=text("CURRENT_TIMESTAMP") + ), + ) + + +def downgrade() -> None: + op.drop_table("regionwide_emissions") diff --git a/global-api/migrations/versions/f852767448af_.py b/global-api/migrations/versions/f852767448af_.py new file mode 100644 index 000000000..a5c84788b --- /dev/null +++ b/global-api/migrations/versions/f852767448af_.py @@ -0,0 +1,26 @@ +"""empty message + +Revision ID: f852767448af +Revises: 68a6467bb509, 9e89145acbe7 +Create Date: 2024-03-29 14:56:33.290421 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = 'f852767448af' +down_revision: Union[str, None] = ('68a6467bb509', '9e89145acbe7') +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + pass + + +def downgrade() -> None: + pass diff --git a/global-api/models/datasource.py b/global-api/models/datasource.py index 097c00cb9..5241eb56f 100644 --- a/global-api/models/datasource.py +++ b/global-api/models/datasource.py @@ -8,10 +8,8 @@ class Datasource(Base): datasource_id = Column(String, primary_key=True) publisher_id = Column(String) - name = Column(String) source_type = Column(String) - url = Column(Text) - description = Column(Text) + dataset_url = Column(Text) access_type = Column(String) geographical_location = Column(String) start_year = Column(Integer) @@ -30,6 +28,12 @@ class Datasource(Base): gpc_reference_number = Column(String) created_date = Column(DateTime) modified_date = Column(DateTime) + datasource_name = Column(String) + dataset_name = Column(Text) + methodology_description = Column(Text) + transformation_description = Column(Text) + scope = Column(String) + dataset_description = Column(Text) def to_dict(self): return {column.name: getattr(self, column.name) for column in self.__table__.columns} \ No newline at end of file diff --git a/global-api/requirements.txt b/global-api/requirements.txt index 95001222d..9440b4bce 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -14,13 +14,16 @@ pytest==8.1.1 rioxarray==0.15.* scipy==1.12.* shapely==2.0.3 -SQLAlchemy==2.0.28 +SQLAlchemy==2.0.29 tqdm==4.66.* -uvicorn==0.28.0 +uvicorn==0.29.0 xarray==2024.* geojson==3.1.* openclimate==0.1.* nest_asyncio==1.6.* xlrd==2.0.* dns-cache==0.3.* -openpyxl==3.1.* \ No newline at end of file +openpyxl==3.1.* +pytest==8.1.1 +pytest-cov==4.1.0 +httpx==0.27.0 \ No newline at end of file diff --git a/global-api/routes/city_locode_endpoint_mendoza_stationary_energy.py b/global-api/routes/citywide_emission_endpoint.py similarity index 76% rename from global-api/routes/city_locode_endpoint_mendoza_stationary_energy.py rename to global-api/routes/citywide_emission_endpoint.py index df87e93a0..10ce95d7f 100644 --- a/global-api/routes/city_locode_endpoint_mendoza_stationary_energy.py +++ b/global-api/routes/citywide_emission_endpoint.py @@ -4,6 +4,14 @@ api_router = APIRouter(prefix="/api/v0") +# TODO: establish best-practice values for these numbers + +CO2_EF_CH4_100yr = 30 +CO2_EF_N2O_100yr = 298 + +CO2_EF_CH4_20yr = 84 +CO2_EF_N2O_20yr = 264 + # this is a placeholder for now gpc_quality_data = "NA" @@ -33,7 +41,7 @@ def get_emissions_by_locode_and_year(source_name: str, locode: str, year: str, G if not records: raise HTTPException(status_code=404, detail="No data available") - masses = {'CO2': 0.0, 'CH4': 0.0, 'N2O': 0.0} + masses = {'CO2': 0, 'CH4': 0, 'N2O': 0} for record in records: record = record._mapping @@ -44,9 +52,11 @@ def get_emissions_by_locode_and_year(source_name: str, locode: str, year: str, G totals = { "totals": { "emissions": { - "co2_mass": str(masses["CO2"]), - "ch4_mass": str(masses["CH4"]), - "n2o_mass": str(masses["N2O"]), + "co2eq_100yr": str(round(masses["CO2"] + CO2_EF_CH4_100yr * masses["CH4"] + CO2_EF_N2O_100yr * masses["N2O"])), + "co2eq_20yr": str(round(masses["CO2"] + CO2_EF_CH4_20yr * masses["CH4"] + CO2_EF_N2O_20yr * masses["N2O"])), + "co2_mass": str(round(masses["CO2"])), + "ch4_mass": str(round(masses["CH4"])), + "n2o_mass": str(round(masses["N2O"])), "gpc_quality": str(gpc_quality_data), } } diff --git a/global-api/tests/test_main.py b/global-api/tests/test_main.py new file mode 100644 index 000000000..05f627aab --- /dev/null +++ b/global-api/tests/test_main.py @@ -0,0 +1,24 @@ +import pytest +from fastapi.testclient import TestClient +from main import app + +# Create a TestClient instance with your FastAPI app +client = TestClient(app) + +# Test the root endpoint +def test_read_root(): + response = client.get("/") + assert response.status_code == 200 + assert response.json() == {"message": "Welcome"} + +# Test Health Check Endpoint +def test_health_check(): + response = client.get("/health") + assert response.status_code == 200 + assert response.json() == {'status': 'ok'} + +# Test the data catalogue end point has no data +def test_catalgue_no_data_available(): + response = client.get("/api/v0/catalogue") + assert response.status_code == 404 + assert response.json() == {"detail": "No data available"} \ No newline at end of file diff --git a/k8s/cc-global-api-coverage.yml b/k8s/cc-global-api-coverage.yml new file mode 100644 index 000000000..c40ffcd40 --- /dev/null +++ b/k8s/cc-global-api-coverage.yml @@ -0,0 +1,25 @@ +apiVersion: batch/v1 +kind: Job +metadata: + generateName: cc-global-api-coverage- +spec: + ttlSecondsAfterFinished: 86400 + template: + spec: + restartPolicy: OnFailure + containers: + - name: cc-global-api + image: ghcr.io/open-earth-foundation/citycatalyst-global-api:latest + imagePullPolicy: Always + command: ["python", "data-coverage/data-coverage.py", "--outputfile", "/var/local/input-data/data-coverage.csv", "--inputfile", "data-coverage/locodes.txt", "--concurrency", "128", "--origin", "https://ccglobal.openearth.dev"] + resources: + limits: + memory: "4096Mi" + cpu: "1000m" + volumeMounts: + - name: cc-global-api-input-data + mountPath: /var/local/input-data + volumes: + - name: cc-global-api-input-data + persistentVolumeClaim: + claimName: cc-global-api-input-data-pvc diff --git a/k8s/cc-global-api-data-shell.yml b/k8s/cc-global-api-data-shell.yml new file mode 100644 index 000000000..2a4653d1c --- /dev/null +++ b/k8s/cc-global-api-data-shell.yml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Pod +metadata: + name: cc-global-api-data-shell +spec: + containers: + - name: cc-global-api-data-shell + image: busybox + command: ["sh", "-c", "sleep infinity"] + volumeMounts: + - name: cc-global-api-input-data + mountPath: /var/local/input-data + resources: + limits: + memory: "1024Mi" + cpu: "1000m" + volumes: + - name: cc-global-api-input-data + persistentVolumeClaim: + claimName: cc-global-api-input-data-pvc diff --git a/k8s/cc-global-api-import-everything.yml b/k8s/cc-global-api-import-everything.yml new file mode 100644 index 000000000..7833b4225 --- /dev/null +++ b/k8s/cc-global-api-import-everything.yml @@ -0,0 +1,32 @@ +apiVersion: batch/v1 +kind: Job +metadata: + generateName: cc-global-api-import-everything- +spec: + ttlSecondsAfterFinished: 86400 + template: + spec: + restartPolicy: OnFailure + containers: + - name: cc-global-api + image: ghcr.io/open-earth-foundation/citycatalyst-global-api:latest + env: + - name: CC_GLOBAL_API_DB_HOST + value: "cc-global-api-db" + - name: CC_GLOBAL_API_DB_NAME + value: "ccglobal" + - name: CC_GLOBAL_API_DB_USER + value: "ccglobal" + - name: CC_GLOBAL_API_DB_PASSWORD + value: "ccglobal" + - name: CC_GLOBAL_API_BASE + value: "https://openclimate.openearth.dev" + command: ["/usr/bin/bash", "./import_everything.sh"] + volumeMounts: + - name: cc-global-api-input-data + mountPath: /var/local/input-data + readOnly: true + volumes: + - name: cc-global-api-input-data + persistentVolumeClaim: + claimName: cc-global-api-input-data-pvc diff --git a/k8s/cc-global-api-input-data-pvc.yml b/k8s/cc-global-api-input-data-pvc.yml new file mode 100644 index 000000000..0e97f7701 --- /dev/null +++ b/k8s/cc-global-api-input-data-pvc.yml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: cc-global-api-input-data-pvc +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 25Gi diff --git a/k8s/test/cc-test-global-api-import-everything.yml b/k8s/test/cc-test-global-api-import-everything.yml new file mode 100644 index 000000000..efdf68537 --- /dev/null +++ b/k8s/test/cc-test-global-api-import-everything.yml @@ -0,0 +1,32 @@ +apiVersion: batch/v1 +kind: Job +metadata: + generateName: cc-test-global-api-import-everything- +spec: + ttlSecondsAfterFinished: 86400 + template: + spec: + restartPolicy: OnFailure + containers: + - name: cc-test-global-api + image: ghcr.io/open-earth-foundation/citycatalyst-global-api:latest + env: + - name: CC_GLOBAL_API_DB_HOST + value: "cc-global-api-db" + - name: CC_GLOBAL_API_DB_NAME + value: "ccglobaltest" + - name: CC_GLOBAL_API_DB_USER + value: "ccglobaltest" + - name: CC_GLOBAL_API_DB_PASSWORD + value: "ccglobaltest" + - name: CC_GLOBAL_API_BASE + value: "https://ccglobal-test.openearth.dev" + command: ["/usr/bin/bash", "./import_everything.sh"] + volumeMounts: + - name: cc-global-api-input-data + mountPath: /var/local/input-data + readOnly: true + volumes: + - name: cc-global-api-input-data + persistentVolumeClaim: + claimName: cc-global-api-input-data-pvc diff --git a/k8s/test/cc-test-web-deploy.yml b/k8s/test/cc-test-web-deploy.yml index 8280f3886..8308685e5 100644 --- a/k8s/test/cc-test-web-deploy.yml +++ b/k8s/test/cc-test-web-deploy.yml @@ -46,8 +46,8 @@ spec: value: "587" - name: GLOBAL_API_URL value: "https://ccglobal-test.openearth.dev" - - name: OPENCLIMATE_API_URL - value: "https://openclimate.openearth.dev" + - name: NEXT_PUBLIC_OPENCLIMATE_API_URL + value: "https://app.openclimate.network" resources: limits: memory: "1024Mi"