From 14c0bcab2ba849f1cfd543507e425fa479955cf0 Mon Sep 17 00:00:00 2001 From: maddendeavor Date: Tue, 26 Mar 2024 14:04:46 -0700 Subject: [PATCH 1/5] feat(src): initial wue implementation --- package-lock.json | 12 ++++++------ src/__tests__/unit/lib/cloud-metadata/index.test.ts | 4 ++++ src/lib/cloud-metadata/index.ts | 2 ++ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 22387c8..478e599 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4846,9 +4846,9 @@ "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "funding": [ { "type": "individual", @@ -13522,9 +13522,9 @@ "dev": true }, "follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" }, "foreground-child": { "version": "3.1.1", diff --git a/src/__tests__/unit/lib/cloud-metadata/index.test.ts b/src/__tests__/unit/lib/cloud-metadata/index.test.ts index 2a044fd..0b94ea2 100644 --- a/src/__tests__/unit/lib/cloud-metadata/index.test.ts +++ b/src/__tests__/unit/lib/cloud-metadata/index.test.ts @@ -40,6 +40,7 @@ describe('lib/cloud-metadata:', () => { 'vcpus-total': 96, 'memory-available': 8, 'cpu/thermal-design-power': 210, + 'water-usage-effectiveness': 1.8, }, ]); }); @@ -69,6 +70,7 @@ describe('lib/cloud-metadata:', () => { 'vcpus-total': 28, 'memory-available': 448, 'cpu/thermal-design-power': 135, + 'water-usage-effectiveness': 1.8, }, ]); }); @@ -99,6 +101,7 @@ describe('lib/cloud-metadata:', () => { 'vcpus-allocated': 1, 'vcpus-total': 64, 'memory-available': 2, + 'water-usage-effectiveness': 1.8, }, ]); }); @@ -174,6 +177,7 @@ describe('lib/cloud-metadata:', () => { 'Intel® Xeon® Platinum 8272CL,Intel® Xeon® 8171M 2.1 GHz,Intel® Xeon® E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3 2.4 GHz', 'vcpus-allocated': 1, 'vcpus-total': 52, + 'water-usage-effectiveness': 1.8, }, ]); }); diff --git a/src/lib/cloud-metadata/index.ts b/src/lib/cloud-metadata/index.ts index a6b606f..721c08d 100644 --- a/src/lib/cloud-metadata/index.ts +++ b/src/lib/cloud-metadata/index.ts @@ -21,6 +21,7 @@ const {UnsupportedValueError} = ERRORS; export const CloudMetadata = (): PluginInterface => { const SUPPORTED_CLOUDS = ['aws', 'azure'] as const; + // const SUPPORTED_CLOUDS = ['aws', 'azure', 'gcp'] as const; const errorBuilder = buildErrorMessage(CloudMetadata.name); const metadata = { kind: 'execute', @@ -109,6 +110,7 @@ export const CloudMetadata = (): PluginInterface => { 'memory-available': parseInt(instance['memory-available']), 'physical-processor': instance['cpu-model-name'], 'cpu/thermal-design-power': parseFloat(instance['cpu-tdp']), + 'water-usage-effectiveness': 1.8, }; }; From 2479ac632475a886f8bccddeaaa96c96710d80f2 Mon Sep 17 00:00:00 2001 From: maddendeavor Date: Tue, 2 Apr 2024 09:37:40 -0700 Subject: [PATCH 2/5] feat(src): add wue and pue data columns with dummy data in gsf csv for test purposes --- .../unit/lib/cloud-metadata/index.test.ts | 5 +- src/lib/cloud-metadata/README.md | 10 +- src/lib/cloud-metadata/config.ts | 6 + src/lib/cloud-metadata/gsf-data.csv | 534 +++++++++--------- src/lib/cloud-metadata/index.ts | 15 +- src/lib/cloud-metadata/types.ts | 1 + 6 files changed, 297 insertions(+), 274 deletions(-) diff --git a/src/__tests__/unit/lib/cloud-metadata/index.test.ts b/src/__tests__/unit/lib/cloud-metadata/index.test.ts index 0b94ea2..3154295 100644 --- a/src/__tests__/unit/lib/cloud-metadata/index.test.ts +++ b/src/__tests__/unit/lib/cloud-metadata/index.test.ts @@ -40,7 +40,6 @@ describe('lib/cloud-metadata:', () => { 'vcpus-total': 96, 'memory-available': 8, 'cpu/thermal-design-power': 210, - 'water-usage-effectiveness': 1.8, }, ]); }); @@ -70,7 +69,6 @@ describe('lib/cloud-metadata:', () => { 'vcpus-total': 28, 'memory-available': 448, 'cpu/thermal-design-power': 135, - 'water-usage-effectiveness': 1.8, }, ]); }); @@ -101,7 +99,6 @@ describe('lib/cloud-metadata:', () => { 'vcpus-allocated': 1, 'vcpus-total': 64, 'memory-available': 2, - 'water-usage-effectiveness': 1.8, }, ]); }); @@ -177,7 +174,7 @@ describe('lib/cloud-metadata:', () => { 'Intel® Xeon® Platinum 8272CL,Intel® Xeon® 8171M 2.1 GHz,Intel® Xeon® E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3 2.4 GHz', 'vcpus-allocated': 1, 'vcpus-total': 52, - 'water-usage-effectiveness': 1.8, + 'water-usage-effectiveness': 164, }, ]); }); diff --git a/src/lib/cloud-metadata/README.md b/src/lib/cloud-metadata/README.md index d6db2e5..f188315 100644 --- a/src/lib/cloud-metadata/README.md +++ b/src/lib/cloud-metadata/README.md @@ -15,7 +15,7 @@ Not Needed ## Returns -An array containing: +An array containing compute information: - `cloud/instance-type`: echo input `instance-type` - `cloud/vendor`: echo input `vendor` @@ -23,6 +23,14 @@ An array containing: - `vcpus-allocated`: number of vCPUs allocated to this instance - `vcpus-total`: total number of vCPUs available to this instance +And cloud data: +- `cloud/region-cfe`: the cfe region +- `cloud/region-em-zone-id`: the em zone id +- `cloud/region-wt-id`: region id for the Watt-Time plugin +- `cloud/region-location`: region location (text) +- `cloud/region-geolocation`: geolocation lat/lon (decimal) +- `water-usage-effectiveness`: operational water usage effectiveness of a data center in L/kWh + ## IF Implementation IF implements this plugin using data from Cloud Carbon Footprint. This allows determination of cpu for type of instance in a cloud and can be invoked as part of a plugin pipeline defined in a `manifest`. diff --git a/src/lib/cloud-metadata/config.ts b/src/lib/cloud-metadata/config.ts index 4e06013..13b7f7c 100644 --- a/src/lib/cloud-metadata/config.ts +++ b/src/lib/cloud-metadata/config.ts @@ -16,6 +16,10 @@ export const GSF_HEADERS = [ 'grid-carbon-intensity-marginal', 'grid-carbon-intensity-production', 'grid-carbon-intensity', + 'water-usage-effectiveness', + 'water-usage-effectiveness-source', + 'power-usage-effectiveness', + 'power-usage-effectiveness-source', ]; export const AZURE_HEADERS = [ @@ -47,3 +51,5 @@ export const AWS_HEADERS = [ 'release-date', 'storage-drives', ]; + +export const WUE_DEFAULT = 1.8; diff --git a/src/lib/cloud-metadata/gsf-data.csv b/src/lib/cloud-metadata/gsf-data.csv index 58e02d7..9c1a445 100644 --- a/src/lib/cloud-metadata/gsf-data.csv +++ b/src/lib/cloud-metadata/gsf-data.csv @@ -1,267 +1,267 @@ -year,cloud-provider,cloud-region,cfe-region,em-zone-id,wt-region-id,location,geolocation,cfe-hourly,cfe-annual,power-usage-efficiency,net-carbon,grid-carbon-intensity-24x7,grid-carbon-intensity-consumption,grid-carbon-intensity-marginal,grid-carbon-intensity-production,grid-carbon-intensity -2022,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,,0,453,,,,453 -2022,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360 -2022,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,463,,,,463 -2022,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.32,,,0,383,,,,383 -2022,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425 -2022,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.24,,,0,555,,,,555 -2022,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.23,,,0,632,,,,632 -2022,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,372,,,,372 -2022,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580 -2022,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.27,,,0,538,,,,538 -2022,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.34,,,0,490,,,,490 -2022,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.24,,,0,738,,,,738 -2022,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.97,,,0,112,,,,112 -2022,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0.67,,,0,160,,,,160 -2022,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.8,,,0,123,,,,123 -2022,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,0,166,,,,166 -2022,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.96,,,0,413,,,,413 -2022,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.57,,,0,317,,,,317 -2022,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,118,,,,118 -2022,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0.42,,,0,323,,,,323 -2022,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,0,71,,,,71 -2022,Google Cloud,europe-west12,North Italy,IT,IT,Turin,"45.0792,7.6761",0.42,,,0,323,,,,323 -2022,Google Cloud,me-west1,Israel,IL,IL,Tel Aviv,"32.0167,34.7667",0.02,,,0,476,,,,476 -2022,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0 -2022,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.9,,,0,36,,,,36 -2022,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.89,,,0,65,,,,65 -2022,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.9,,,0,165,,,,165 -2022,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,0,445,,,,445 -2022,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.26,,,0,532,,,,532 -2022,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.6,,,0,354,429,,,354 -2022,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.6,,,0,354,429,,,354 -2022,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.41,,,0,342,,,,342 -2022,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,,0,67,,,,67 -2022,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.56,,,0,202,,,,202 -2022,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,606,,,,606 -2022,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.27,,,0,396,,,,396 -2022,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,1,,0,,,,, -2022,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,1,,0,,,,, -2022,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,1,,0,,,,, -2022,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,1,,0,,,,, -2022,Amazon Web Services,af-south-1,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2022,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2022,Amazon Web Services,ap-south-2,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,1,,0,,,,, -2022,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,, -2022,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2022,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,1,,0,,,,, -2022,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,, -2022,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,, -2022,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,, -2022,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,, -2022,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,, -2022,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,1,,0,,,,, -2022,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,1,,0,,,,, -2022,Amazon Web Services,eu-west-1,Ireland,IE,IE,Europe (Ireland),"53.35,-6.2603 ",,1,,0,,,,, -2022,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,1,,0,,,,, -2022,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,1,,0,,,,, -2022,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,1,,0,,,,, -2022,Amazon Web Services,eu-south-2,Spain,ES,ES,Europe (Spain),"40.3333,-3.8667",,1,,0,,,,, -2022,Amazon Web Services,eu-north-1,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,1,,0,,,,, -2022,Amazon Web Services,eu-central-2,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,1,,0,,,,, -2022,Amazon Web Services,il-central-1,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,, -2022,Amazon Web Services,me-south-1,Bahrain,BH,BH,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,, -2022,Amazon Web Services,me-central-1,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2022,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,, -2022,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,1,,0,,,,, -2022,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,1,,0,,,,, -2022,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,1,,0,,,,, -2022,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,1,,0,,,,, -2024,Microsoft Azure,eastus,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,, -2024,Microsoft Azure,eastus2,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,,,,,,, -2024,Microsoft Azure,southcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,westus2,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,westus3,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,australiaeast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,southeastasia,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,northeurope,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,, -2024,Microsoft Azure,swedencentral,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,, -2024,Microsoft Azure,uksouth,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,, -2024,Microsoft Azure,westeurope,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,, -2024,Microsoft Azure,centralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,southafricanorth,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2024,Microsoft Azure,centralindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,eastasia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2024,Microsoft Azure,japaneast,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",,,,,,,,, -2024,Microsoft Azure,koreacentral,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,, -2024,Microsoft Azure,canadacentral,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,, -2024,Microsoft Azure,francecentral,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,, -2024,Microsoft Azure,germanywestcentral,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,, -2024,Microsoft Azure,italynorth,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,,,,,,,, -2024,Microsoft Azure,norwayeast,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,, -2024,Microsoft Azure,polandcentral,Poland,PL,PL,Warsaw,"52.23,21.0111",,,,,,,,, -2024,Microsoft Azure,switzerlandnorth,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,,,,,, -2024,Microsoft Azure,uaenorth,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2024,Microsoft Azure,brazilsouth,South Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,, -2024,Microsoft Azure,centraluseuap,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,israelcentral,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,, -2024,Microsoft Azure,qatarcentral,Qatar,QT,QT,Qatar,"25.69,51.51 ",,,,,,,,, -2024,Microsoft Azure,centralusstage,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,eastusstage,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,, -2024,Microsoft Azure,eastus2stage,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,,,,,,, -2024,Microsoft Azure,northcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,, -2024,Microsoft Azure,southcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,, -2024,Microsoft Azure,westusstage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,westus2stage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,asia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2024,Microsoft Azure,asiapacific,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,australia,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,brazil,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,, -2024,Microsoft Azure,canada,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,, -2024,Microsoft Azure,europe,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,, -2024,Microsoft Azure,france,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,, -2024,Microsoft Azure,germany,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,, -2024,Microsoft Azure,global,,,,,,,,,,,,,, -2024,Microsoft Azure,india,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,japan,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,, -2024,Microsoft Azure,korea,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,, -2024,Microsoft Azure,norway,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,, -2024,Microsoft Azure,singapore,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,southafrica,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2024,Microsoft Azure,sweden,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,, -2024,Microsoft Azure,switzerland,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,, -2024,Microsoft Azure,uae,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2024,Microsoft Azure,uk,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,, -2024,Microsoft Azure,unitedstates,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,unitedstateseuap,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,eastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,southeastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,brazilus,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,,,,,,,, -2024,Microsoft Azure,eastusstg,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),,,,,,,,,, -2024,Microsoft Azure,northcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,westus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,japanwest,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,, -2024,Microsoft Azure,jioindiawest,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,eastus2euap,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,, -2024,Microsoft Azure,westcentralus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,southafricawest,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2024,Microsoft Azure,australiacentral,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,australiacentral2,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,australiasoutheast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,jioindiacentral,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,koreasouth,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,, -2024,Microsoft Azure,southindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,westindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,canadaeast,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,, -2024,Microsoft Azure,francesouth,France,FR,FR,Paris,"48.8567,2.3522",,,,,,,,, -2024,Microsoft Azure,germanynorth,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,, -2024,Microsoft Azure,norwaywest,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,, -2024,Microsoft Azure,switzerlandwest,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,, -2024,Microsoft Azure,ukwest,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,, -2024,Microsoft Azure,uaecentral,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2024,Microsoft Azure,brazilsoutheast,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,, -2021,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.17,,,0,456,,,,456 -2021,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360 -2021,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,464,,,,464 -2021,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.31,,,0,384,,,,384 -2021,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425 -2021,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.1,,,0,670,,,,670 -2021,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.08,,,0,671,,,,671 -2021,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,372,,,,372 -2021,Google Cloud,asia-southeast2,Indonesia,ID,,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580 -2021,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.21,,,0,598,,,,598 -2021,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.31,,,0,521,,,,521 -2021,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.2,,,0,576,,,,576 -2021,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.91,,,0,127,,,,127 -2021,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0,,,0,121,,,,121 -2021,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.82,,,0,110,,,,110 -2021,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.57,,,0,172,,,,172 -2021,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.6,,,0,269,,,,269 -2021,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.53,,,0,283,,,,283 -2021,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,86,,,,86 -2021,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0,,,0,298,,,,298 -2021,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0,,,0,59,,,,59 -2021,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0 -2021,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.92,,,0,29,,,,29 -2021,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.78,,,0,129,,,,129 -2021,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.69,,,0,190,,,,190 -2021,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.97,,,0,394,,,,394 -2021,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.25,,,0,434,,,,434 -2021,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.64,,,0,309,442,,,309 -2021,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.64,,,0,309,442,,,309 -2021,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.4,,,0,296,,,,296 -2021,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.88,,,0,60,,,,60 -2021,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.53,,,0,190,,,,190 -2021,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,448,,,,448 -2021,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.21,,,0,365,,,,365 -2021,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,0.95,,,,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html,,, -2021,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,0.95,,,,,,, -2021,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,0.95,,,,,,, -2021,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,0.95,,,,,,, -2021,Amazon Web Services,af-south-1,,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2021,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2021,Amazon Web Services,ap-south-2,,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2021,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,, -2021,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2021,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,,,,,,,, -2021,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,, -2021,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,, -2021,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,, -2021,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,, -2021,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,, -2021,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,0.95,,,,,,, -2021,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,0.95,,,,,,, -2021,Amazon Web Services,eu-west-1,,,IE,Europe (Ireland),"53.35,-6.2603 ",,0.95,,,,,,, -2021,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,0.95,,,,,,, -2021,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,0.95,,,,,,, -2021,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,0.95,,,,,,, -2021,Amazon Web Services,eu-north-1,Spain,ES,SE,Europe (Stockholm),"59.3294,18.0686 ",,0.95,,,,,,, -2021,Amazon Web Services,il-central-1,,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,, -2021,Amazon Web Services,me-south-1,,,,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,, -2021,Amazon Web Services,me-central-1,,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2021,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,, -2021,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,0.95,,,,,,, -2021,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,0.95,,,,,,, -2021,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,,,,,,,, -2021,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,,,,,,,, -2020,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,,0,540,,,,540 -2020,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,453,,,,453 -2020,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.12,,,0,554,,,,554 -2020,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,442,,,,442 -2020,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,457,,,,457 -2020,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.12,,,0,721,,,,721 -2020,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0,,,0,657,,,,657 -2020,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,493,,,,493 -2020,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647 -2020,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,727,,,,727 -2020,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0,,,0,691,,,,691 -2020,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0,,,0,622,,,,622 -2020,Google Cloud,europe-north1,Belgium,BE,BE,Finland,"60.1708,24.9375",0.94,,,0,133,,,,133 -2020,Google Cloud,europe-west1,Great Britain,GB,UK,Belgium,"51.1333,4.5667",0.79,,,0,212,,,,212 -2020,Google Cloud,europe-west2,Germany,DE,DE,London,"51.726,-0.3",0.59,,,0,231,,,,231 -2020,Google Cloud,europe-west3,Netherlands,NL,NL,Frankfurt,"50.1106,8.6822",0.63,,,0,293,,,,293 -2020,Google Cloud,europe-west4,Switzerland,CH,CH,Netherlands,"51.9167,4.5",0.6,,,0,410,,,,410 -2020,Google Cloud,europe-west6,North Italy,IT,IT,Zurich,"47.3744,8.5411",0,,,0,87,,,,87 -2020,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",0,,,0,27,,,,27 -2020,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.88,,,0,103,,,,103 -2020,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.93,,,0,454,,,,454 -2020,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.27,,,0,480,,,,480 -2020,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.58,,,0,361,423,,,361 -2020,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.9,,,0,78,,,,78 -2020,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.54,,,0,253,,,,253 -2020,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.28,,,0,533,,,,533 -2020,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.19,,,0,455,,,,455 -2019,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.19,,,0,541,,,,541 -2019,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,506,,,,506 -2019,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0,,,0,569,,,,569 -2019,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,414,,,,414 -2019,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0,,,0,490,,,,490 -2019,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0,,,0,752,,,,752 -2019,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.03,,,0,493,,,,493 -2019,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647 -2019,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,725,,,,725 -2019,Google Cloud,europe-north1,Victoria,AUS-VIC,NEM_VIC,Finland,"60.1708,24.9375",0.77,,,0,181,,,,181 -2019,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.68,,,0,196,,,,196 -2019,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.54,,,0,257,,,,257 -2019,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.61,,,0,319,,,,319 -2019,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.61,,,0,474,,,,474 -2019,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0,,,0,87,,,,87 -2019,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montreal,"45.5089,-73.5617",0,,,0,27,,,,27 -2019,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,Sao Paulo,"-3.45,-68.95",0.87,,,0,109,,,,109 -2019,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.78,,,0,479,,,,479 -2019,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.19,,,0,500,,,,500 -2019,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.41,,,0,383,454,,,383 -2019,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,,0,117,,,,117 -2019,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.55,,,0,248,,,,248 -2019,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.25,,,0,561,,,,561 -2019,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.13,,,0,491,,,,491 +year,cloud-provider,cloud-region,cfe-region,em-zone-id,wt-region-id,location,geolocation,cfe-hourly,cfe-annual,power-usage-efficiency,net-carbon,grid-carbon-intensity-24x7,grid-carbon-intensity-consumption,grid-carbon-intensity-marginal,grid-carbon-intensity-production,grid-carbon-intensity,water-usage-effectiveness,water-usage-effectiveness-source,power-usage-effectiveness,power-usage-effectiveness-source +2022,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,,0,453,,,,453,20,http://,, +2022,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360,21,http://,, +2022,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,463,,,,463,22,http://,, +2022,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.32,,,0,383,,,,383,23,http://,, +2022,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425,24,http://,, +2022,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.24,,,0,555,,,,555,25,http://,, +2022,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.23,,,0,632,,,,632,26,http://,, +2022,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,372,,,,372,27,http://,, +2022,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580,28,http://,, +2022,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.27,,,0,538,,,,538,29,http://,, +2022,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.34,,,0,490,,,,490,30,http://,, +2022,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.24,,,0,738,,,,738,31,http://,, +2022,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.97,,,0,112,,,,112,32,http://,, +2022,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0.67,,,0,160,,,,160,33,http://,, +2022,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.8,,,0,123,,,,123,34,http://,, +2022,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,0,166,,,,166,35,http://,, +2022,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.96,,,0,413,,,,413,36,http://,, +2022,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.57,,,0,317,,,,317,37,http://,, +2022,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,118,,,,118,38,http://,, +2022,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0.42,,,0,323,,,,323,39,http://,, +2022,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,0,71,,,,71,40,http://,, +2022,Google Cloud,europe-west12,North Italy,IT,IT,Turin,"45.0792,7.6761",0.42,,,0,323,,,,323,41,http://,, +2022,Google Cloud,me-west1,Israel,IL,IL,Tel Aviv,"32.0167,34.7667",0.02,,,0,476,,,,476,42,http://,, +2022,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0,43,http://,, +2022,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.9,,,0,36,,,,36,44,http://,, +2022,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.89,,,0,65,,,,65,45,http://,, +2022,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.9,,,0,165,,,,165,46,http://,, +2022,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,0,445,,,,445,47,http://,, +2022,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.26,,,0,532,,,,532,48,http://,, +2022,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.6,,,0,354,429,,,354,49,http://,, +2022,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.6,,,0,354,429,,,354,50,http://,, +2022,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.41,,,0,342,,,,342,51,http://,, +2022,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,,0,67,,,,67,52,http://,, +2022,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.56,,,0,202,,,,202,53,http://,, +2022,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,606,,,,606,54,http://,, +2022,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.27,,,0,396,,,,396,55,http://,, +2022,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,1,,0,,,,,,56,http://,, +2022,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,1,,0,,,,,,57,http://,, +2022,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,1,,0,,,,,,58,http://,, +2022,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,1,,0,,,,,,59,http://,, +2022,Amazon Web Services,af-south-1,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,60,http://,, +2022,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,61,http://,, +2022,Amazon Web Services,ap-south-2,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,1,,0,,,,,,62,http://,, +2022,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,,,63,http://,, +2022,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,64,http://,, +2022,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,1,,0,,,,,,65,http://,, +2022,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,,,66,http://,, +2022,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,,,67,http://,, +2022,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,,,68,http://,, +2022,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,,,69,http://,, +2022,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,,,70,http://,, +2022,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,1,,0,,,,,,71,http://,, +2022,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,1,,0,,,,,,72,http://,, +2022,Amazon Web Services,eu-west-1,Ireland,IE,IE,Europe (Ireland),"53.35,-6.2603 ",,1,,0,,,,,,73,http://,, +2022,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,1,,0,,,,,,74,http://,, +2022,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,1,,0,,,,,,75,http://,, +2022,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,1,,0,,,,,,76,http://,, +2022,Amazon Web Services,eu-south-2,Spain,ES,ES,Europe (Spain),"40.3333,-3.8667",,1,,0,,,,,,77,http://,, +2022,Amazon Web Services,eu-north-1,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,1,,0,,,,,,78,http://,, +2022,Amazon Web Services,eu-central-2,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,1,,0,,,,,,79,http://,, +2022,Amazon Web Services,il-central-1,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,,,80,http://,, +2022,Amazon Web Services,me-south-1,Bahrain,BH,BH,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,,,81,http://,, +2022,Amazon Web Services,me-central-1,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,82,http://,, +2022,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,,,83,http://,, +2022,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,1,,0,,,,,,84,http://,, +2022,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,1,,0,,,,,,85,http://,, +2022,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,1,,0,,,,,,86,http://,, +2022,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,1,,0,,,,,,87,http://,, +2024,Microsoft Azure,eastus,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,,,88,http://,, +2024,Microsoft Azure,eastus2,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,,,,,,,,89,http://,, +2024,Microsoft Azure,southcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,90,http://,, +2024,Microsoft Azure,westus2,CAISO,US-CAL-CISO,CAISO_NORTH,US West (Arizona),"34.0497,-118.1326 ",,,,,,,,,,2.24,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Arizona%20(West%20US%203).pdf,, +2024,Microsoft Azure,westus3,CAISO,US-CAL-CISO,CAISO_NORTH,US West (Washington),"34.0497,-118.1326 ",,,,,,,,,,,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Washington%20(West%20US%202).pdf,, +2024,Microsoft Azure,australiaeast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,93,http://,, +2024,Microsoft Azure,southeastasia,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,94,http://,, +2024,Microsoft Azure,northeurope,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,,,95,http://,, +2024,Microsoft Azure,swedencentral,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,,,96,http://,, +2024,Microsoft Azure,uksouth,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,,,97,http://,, +2024,Microsoft Azure,westeurope,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,,,98,http://,, +2024,Microsoft Azure,centralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,99,http://,, +2024,Microsoft Azure,southafricanorth,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,100,http://,, +2024,Microsoft Azure,centralindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,101,http://,, +2024,Microsoft Azure,eastasia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,102,http://,, +2024,Microsoft Azure,japaneast,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",,,,,,,,,,103,http://,, +2024,Microsoft Azure,koreacentral,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,,,104,http://,, +2024,Microsoft Azure,canadacentral,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,,,105,http://,, +2024,Microsoft Azure,francecentral,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,,,106,http://,, +2024,Microsoft Azure,germanywestcentral,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,,,107,http://,, +2024,Microsoft Azure,italynorth,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,,,,,,,,,108,http://,, +2024,Microsoft Azure,norwayeast,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,,,109,http://,, +2024,Microsoft Azure,polandcentral,Poland,PL,PL,Warsaw,"52.23,21.0111",,,,,,,,,,110,http://,, +2024,Microsoft Azure,switzerlandnorth,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,,,,,,,111,http://,, +2024,Microsoft Azure,uaenorth,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,112,http://,, +2024,Microsoft Azure,brazilsouth,South Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,,,113,http://,, +2024,Microsoft Azure,centraluseuap,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,114,http://,, +2024,Microsoft Azure,israelcentral,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,,,115,http://,, +2024,Microsoft Azure,qatarcentral,Qatar,QT,QT,Qatar,"25.69,51.51 ",,,,,,,,,,116,http://,, +2024,Microsoft Azure,centralusstage,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,117,http://,, +2024,Microsoft Azure,eastusstage,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,,,118,http://,, +2024,Microsoft Azure,eastus2stage,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,,,,,,,,119,http://,, +2024,Microsoft Azure,northcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,,,120,http://,, +2024,Microsoft Azure,southcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,,,121,http://,, +2024,Microsoft Azure,westusstage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,122,http://,, +2024,Microsoft Azure,westus2stage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,123,http://,, +2024,Microsoft Azure,asia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,124,http://,, +2024,Microsoft Azure,asiapacific,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,125,http://,, +2024,Microsoft Azure,australia,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,126,http://,, +2024,Microsoft Azure,brazil,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,,,127,http://,, +2024,Microsoft Azure,canada,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,,,128,http://,, +2024,Microsoft Azure,europe,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,,,129,http://,, +2024,Microsoft Azure,france,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,,,130,http://,, +2024,Microsoft Azure,germany,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,,,131,http://,, +2024,Microsoft Azure,global,,,,,,,,,,,,,,,132,http://,, +2024,Microsoft Azure,india,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,133,http://,, +2024,Microsoft Azure,japan,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,,,134,http://,, +2024,Microsoft Azure,korea,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,,,135,http://,, +2024,Microsoft Azure,norway,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,,,136,http://,, +2024,Microsoft Azure,singapore,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,137,http://,, +2024,Microsoft Azure,southafrica,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,138,http://,, +2024,Microsoft Azure,sweden,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,,,139,http://,, +2024,Microsoft Azure,switzerland,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,,,140,http://,, +2024,Microsoft Azure,uae,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,141,http://,, +2024,Microsoft Azure,uk,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,,,142,http://,, +2024,Microsoft Azure,unitedstates,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,143,http://,, +2024,Microsoft Azure,unitedstateseuap,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,144,http://,, +2024,Microsoft Azure,eastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,145,http://,, +2024,Microsoft Azure,southeastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,146,http://,, +2024,Microsoft Azure,brazilus,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,,,,,,,,,147,http://,, +2024,Microsoft Azure,eastusstg,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),,,,,,,,,,,148,http://,, +2024,Microsoft Azure,northcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,149,http://,, +2024,Microsoft Azure,westus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,150,http://,, +2024,Microsoft Azure,japanwest,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,,,151,http://,, +2024,Microsoft Azure,jioindiawest,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,152,http://,, +2024,Microsoft Azure,eastus2euap,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,,,153,http://,, +2024,Microsoft Azure,westcentralus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,154,http://,, +2024,Microsoft Azure,southafricawest,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,155,http://,, +2024,Microsoft Azure,australiacentral,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,156,http://,, +2024,Microsoft Azure,australiacentral2,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,157,http://,, +2024,Microsoft Azure,australiasoutheast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,158,http://,, +2024,Microsoft Azure,jioindiacentral,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,159,http://,, +2024,Microsoft Azure,koreasouth,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,,,160,http://,, +2024,Microsoft Azure,southindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,161,http://,, +2024,Microsoft Azure,westindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,162,http://,, +2024,Microsoft Azure,canadaeast,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,,,163,http://,, +2024,Microsoft Azure,francesouth,France,FR,FR,Paris,"48.8567,2.3522",,,,,,,,,,164,http://,, +2024,Microsoft Azure,germanynorth,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,,,165,http://,, +2024,Microsoft Azure,norwaywest,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,,,166,http://,, +2024,Microsoft Azure,switzerlandwest,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,,,167,http://,, +2024,Microsoft Azure,ukwest,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,,,168,http://,, +2024,Microsoft Azure,uaecentral,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,169,http://,, +2024,Microsoft Azure,brazilsoutheast,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,,,170,http://,, +2021,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.17,,,0,456,,,,456,171,http://,, +2021,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360,172,http://,, +2021,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,464,,,,464,173,http://,, +2021,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.31,,,0,384,,,,384,174,http://,, +2021,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425,175,http://,, +2021,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.1,,,0,670,,,,670,176,http://,, +2021,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.08,,,0,671,,,,671,177,http://,, +2021,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,372,,,,372,178,http://,, +2021,Google Cloud,asia-southeast2,Indonesia,ID,,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580,179,http://,, +2021,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.21,,,0,598,,,,598,180,http://,, +2021,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.31,,,0,521,,,,521,181,http://,, +2021,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.2,,,0,576,,,,576,182,http://,, +2021,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.91,,,0,127,,,,127,183,http://,, +2021,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0,,,0,121,,,,121,184,http://,, +2021,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.82,,,0,110,,,,110,185,http://,, +2021,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.57,,,0,172,,,,172,186,http://,, +2021,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.6,,,0,269,,,,269,187,http://,, +2021,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.53,,,0,283,,,,283,188,http://,, +2021,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,86,,,,86,189,http://,, +2021,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0,,,0,298,,,,298,190,http://,, +2021,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0,,,0,59,,,,59,191,http://,, +2021,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0,192,http://,, +2021,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.92,,,0,29,,,,29,193,http://,, +2021,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.78,,,0,129,,,,129,194,http://,, +2021,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.69,,,0,190,,,,190,195,http://,, +2021,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.97,,,0,394,,,,394,196,http://,, +2021,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.25,,,0,434,,,,434,197,http://,, +2021,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.64,,,0,309,442,,,309,198,http://,, +2021,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.64,,,0,309,442,,,309,199,http://,, +2021,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.4,,,0,296,,,,296,200,http://,, +2021,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.88,,,0,60,,,,60,201,http://,, +2021,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.53,,,0,190,,,,190,202,http://,, +2021,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,448,,,,448,203,http://,, +2021,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.21,,,0,365,,,,365,204,http://,, +2021,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,0.95,,,,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html,,,,205,http://,, +2021,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,0.95,,,,,,,,206,http://,, +2021,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,0.95,,,,,,,,207,http://,, +2021,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,0.95,,,,,,,,208,http://,, +2021,Amazon Web Services,af-south-1,,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,209,http://,, +2021,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,210,http://,, +2021,Amazon Web Services,ap-south-2,,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,211,http://,, +2021,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,,,212,http://,, +2021,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,213,http://,, +2021,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,,,,,,,,,214,http://,, +2021,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,,,215,http://,, +2021,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,,,216,http://,, +2021,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,,,217,http://,, +2021,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,,,218,http://,, +2021,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,,,219,http://,, +2021,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,0.95,,,,,,,,220,http://,, +2021,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,0.95,,,,,,,,221,http://,, +2021,Amazon Web Services,eu-west-1,,,IE,Europe (Ireland),"53.35,-6.2603 ",,0.95,,,,,,,,222,http://,, +2021,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,0.95,,,,,,,,223,http://,, +2021,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,0.95,,,,,,,,224,http://,, +2021,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,0.95,,,,,,,,225,http://,, +2021,Amazon Web Services,eu-north-1,Spain,ES,SE,Europe (Stockholm),"59.3294,18.0686 ",,0.95,,,,,,,,226,http://,, +2021,Amazon Web Services,il-central-1,,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,,,227,http://,, +2021,Amazon Web Services,me-south-1,,,,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,,,228,http://,, +2021,Amazon Web Services,me-central-1,,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,229,http://,, +2021,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,,,230,http://,, +2021,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,0.95,,,,,,,,231,http://,, +2021,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,0.95,,,,,,,,232,http://,, +2021,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,,,,,,,,,233,http://,, +2021,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,,,,,,,,,234,http://,, +2020,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,,0,540,,,,540,235,http://,, +2020,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,453,,,,453,236,http://,, +2020,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.12,,,0,554,,,,554,237,http://,, +2020,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,442,,,,442,238,http://,, +2020,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,457,,,,457,239,http://,, +2020,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.12,,,0,721,,,,721,240,http://,, +2020,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0,,,0,657,,,,657,241,http://,, +2020,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,493,,,,493,242,http://,, +2020,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647,243,http://,, +2020,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,727,,,,727,244,http://,, +2020,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0,,,0,691,,,,691,245,http://,, +2020,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0,,,0,622,,,,622,246,http://,, +2020,Google Cloud,europe-north1,Belgium,BE,BE,Finland,"60.1708,24.9375",0.94,,,0,133,,,,133,247,http://,, +2020,Google Cloud,europe-west1,Great Britain,GB,UK,Belgium,"51.1333,4.5667",0.79,,,0,212,,,,212,248,http://,, +2020,Google Cloud,europe-west2,Germany,DE,DE,London,"51.726,-0.3",0.59,,,0,231,,,,231,249,http://,, +2020,Google Cloud,europe-west3,Netherlands,NL,NL,Frankfurt,"50.1106,8.6822",0.63,,,0,293,,,,293,250,http://,, +2020,Google Cloud,europe-west4,Switzerland,CH,CH,Netherlands,"51.9167,4.5",0.6,,,0,410,,,,410,251,http://,, +2020,Google Cloud,europe-west6,North Italy,IT,IT,Zurich,"47.3744,8.5411",0,,,0,87,,,,87,252,http://,, +2020,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",0,,,0,27,,,,27,253,http://,, +2020,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.88,,,0,103,,,,103,254,http://,, +2020,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.93,,,0,454,,,,454,255,http://,, +2020,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.27,,,0,480,,,,480,256,http://,, +2020,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.58,,,0,361,423,,,361,257,http://,, +2020,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.9,,,0,78,,,,78,258,http://,, +2020,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.54,,,0,253,,,,253,259,http://,, +2020,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.28,,,0,533,,,,533,260,http://,, +2020,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.19,,,0,455,,,,455,261,http://,, +2019,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.19,,,0,541,,,,541,262,http://,, +2019,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,506,,,,506,263,http://,, +2019,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0,,,0,569,,,,569,264,http://,, +2019,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,414,,,,414,265,http://,, +2019,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0,,,0,490,,,,490,266,http://,, +2019,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0,,,0,752,,,,752,267,http://,, +2019,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.03,,,0,493,,,,493,268,http://,, +2019,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647,269,http://,, +2019,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,725,,,,725,270,http://,, +2019,Google Cloud,europe-north1,Victoria,AUS-VIC,NEM_VIC,Finland,"60.1708,24.9375",0.77,,,0,181,,,,181,271,http://,, +2019,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.68,,,0,196,,,,196,272,http://,, +2019,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.54,,,0,257,,,,257,273,http://,, +2019,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.61,,,0,319,,,,319,274,http://,, +2019,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.61,,,0,474,,,,474,275,http://,, +2019,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0,,,0,87,,,,87,276,http://,, +2019,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montreal,"45.5089,-73.5617",0,,,0,27,,,,27,277,http://,, +2019,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,Sao Paulo,"-3.45,-68.95",0.87,,,0,109,,,,109,278,http://,, +2019,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.78,,,0,479,,,,479,279,http://,, +2019,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.19,,,0,500,,,,500,280,http://,, +2019,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.41,,,0,383,454,,,383,281,http://,, +2019,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,,0,117,,,,117,282,http://,, +2019,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.55,,,0,248,,,,248,283,http://,, +2019,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.25,,,0,561,,,,561,284,http://,, +2019,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.13,,,0,491,,,,491,285,http://,, diff --git a/src/lib/cloud-metadata/index.ts b/src/lib/cloud-metadata/index.ts index 721c08d..aa693c8 100644 --- a/src/lib/cloud-metadata/index.ts +++ b/src/lib/cloud-metadata/index.ts @@ -11,7 +11,7 @@ import {buildErrorMessage} from '../../util/helpers'; import {ERRORS} from '../../util/errors'; import {InstanceInput, RegionInput} from './types'; -import {AWS_HEADERS, AZURE_HEADERS, GSF_HEADERS} from './config'; +import {AWS_HEADERS, AZURE_HEADERS, GSF_HEADERS, WUE_DEFAULT} from './config'; const AWS_INSTANCES = path.resolve(__dirname, './aws-instances.csv'); const AZURE_INSTANCES = path.resolve(__dirname, './azure-instances.csv'); @@ -64,6 +64,7 @@ export const CloudMetadata = (): PluginInterface => { const processRegionData = async (input: PluginParams) => { const region = input['cloud/region']; const vendor = input['cloud/vendor']; + let wue: number; const regionInput: RegionInput = await getVendorRegion(vendor, region); @@ -74,12 +75,23 @@ export const CloudMetadata = (): PluginInterface => { }) ); } + + if ( + !regionInput['water-usage-effectiveness'] || // Check if it's empty + isNaN(parseFloat(regionInput['water-usage-effectiveness'])) // Check if it's not a number + ) { + wue = WUE_DEFAULT; // Assign default value + } else { + wue = parseFloat(regionInput['water-usage-effectiveness']); // Otherwise, parse the value + } + return { 'cloud/region-cfe': regionInput['cfe-region'], 'cloud/region-em-zone-id': regionInput['em-zone-id'], 'cloud/region-wt-id': regionInput['wt-region-id'], 'cloud/region-location': regionInput['location'], 'cloud/region-geolocation': regionInput['geolocation'].trim(), + 'water-usage-effectiveness': wue, }; }; @@ -110,7 +122,6 @@ export const CloudMetadata = (): PluginInterface => { 'memory-available': parseInt(instance['memory-available']), 'physical-processor': instance['cpu-model-name'], 'cpu/thermal-design-power': parseFloat(instance['cpu-tdp']), - 'water-usage-effectiveness': 1.8, }; }; diff --git a/src/lib/cloud-metadata/types.ts b/src/lib/cloud-metadata/types.ts index 91d264d..79b1657 100644 --- a/src/lib/cloud-metadata/types.ts +++ b/src/lib/cloud-metadata/types.ts @@ -12,4 +12,5 @@ export type RegionInput = { 'wt-region-id': string; location: string; geolocation: string; + 'water-usage-effectiveness': string; }; From 48ee7d223dfa343cecb6926005c24c6750aefb83 Mon Sep 17 00:00:00 2001 From: Ridhee Gupta <56942399+ridhee1gupta@users.noreply.github.com> Date: Tue, 2 Apr 2024 21:37:44 -0400 Subject: [PATCH 3/5] WUE and PUE real data with source tracking Signed-off-by: Ridhee Gupta <56942399+ridhee1gupta@users.noreply.github.com> --- src/lib/cloud-metadata/gsf-data.csv | 534 ++++++++++++++-------------- 1 file changed, 267 insertions(+), 267 deletions(-) diff --git a/src/lib/cloud-metadata/gsf-data.csv b/src/lib/cloud-metadata/gsf-data.csv index 58e02d7..451b16d 100644 --- a/src/lib/cloud-metadata/gsf-data.csv +++ b/src/lib/cloud-metadata/gsf-data.csv @@ -1,267 +1,267 @@ -year,cloud-provider,cloud-region,cfe-region,em-zone-id,wt-region-id,location,geolocation,cfe-hourly,cfe-annual,power-usage-efficiency,net-carbon,grid-carbon-intensity-24x7,grid-carbon-intensity-consumption,grid-carbon-intensity-marginal,grid-carbon-intensity-production,grid-carbon-intensity -2022,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,,0,453,,,,453 -2022,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360 -2022,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,463,,,,463 -2022,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.32,,,0,383,,,,383 -2022,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425 -2022,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.24,,,0,555,,,,555 -2022,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.23,,,0,632,,,,632 -2022,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,372,,,,372 -2022,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580 -2022,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.27,,,0,538,,,,538 -2022,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.34,,,0,490,,,,490 -2022,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.24,,,0,738,,,,738 -2022,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.97,,,0,112,,,,112 -2022,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0.67,,,0,160,,,,160 -2022,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.8,,,0,123,,,,123 -2022,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,0,166,,,,166 -2022,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.96,,,0,413,,,,413 -2022,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.57,,,0,317,,,,317 -2022,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,118,,,,118 -2022,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0.42,,,0,323,,,,323 -2022,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,0,71,,,,71 -2022,Google Cloud,europe-west12,North Italy,IT,IT,Turin,"45.0792,7.6761",0.42,,,0,323,,,,323 -2022,Google Cloud,me-west1,Israel,IL,IL,Tel Aviv,"32.0167,34.7667",0.02,,,0,476,,,,476 -2022,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0 -2022,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.9,,,0,36,,,,36 -2022,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.89,,,0,65,,,,65 -2022,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.9,,,0,165,,,,165 -2022,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,0,445,,,,445 -2022,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.26,,,0,532,,,,532 -2022,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.6,,,0,354,429,,,354 -2022,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.6,,,0,354,429,,,354 -2022,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.41,,,0,342,,,,342 -2022,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,,0,67,,,,67 -2022,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.56,,,0,202,,,,202 -2022,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,606,,,,606 -2022,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.27,,,0,396,,,,396 -2022,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,1,,0,,,,, -2022,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,1,,0,,,,, -2022,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,1,,0,,,,, -2022,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,1,,0,,,,, -2022,Amazon Web Services,af-south-1,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2022,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2022,Amazon Web Services,ap-south-2,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,1,,0,,,,, -2022,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,, -2022,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2022,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,1,,0,,,,, -2022,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,, -2022,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,, -2022,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,, -2022,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,, -2022,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,, -2022,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,1,,0,,,,, -2022,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,1,,0,,,,, -2022,Amazon Web Services,eu-west-1,Ireland,IE,IE,Europe (Ireland),"53.35,-6.2603 ",,1,,0,,,,, -2022,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,1,,0,,,,, -2022,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,1,,0,,,,, -2022,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,1,,0,,,,, -2022,Amazon Web Services,eu-south-2,Spain,ES,ES,Europe (Spain),"40.3333,-3.8667",,1,,0,,,,, -2022,Amazon Web Services,eu-north-1,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,1,,0,,,,, -2022,Amazon Web Services,eu-central-2,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,1,,0,,,,, -2022,Amazon Web Services,il-central-1,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,, -2022,Amazon Web Services,me-south-1,Bahrain,BH,BH,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,, -2022,Amazon Web Services,me-central-1,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2022,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,, -2022,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,1,,0,,,,, -2022,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,1,,0,,,,, -2022,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,1,,0,,,,, -2022,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,1,,0,,,,, -2024,Microsoft Azure,eastus,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,, -2024,Microsoft Azure,eastus2,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,,,,,,, -2024,Microsoft Azure,southcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,westus2,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,westus3,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,australiaeast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,southeastasia,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,northeurope,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,, -2024,Microsoft Azure,swedencentral,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,, -2024,Microsoft Azure,uksouth,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,, -2024,Microsoft Azure,westeurope,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,, -2024,Microsoft Azure,centralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,southafricanorth,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2024,Microsoft Azure,centralindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,eastasia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2024,Microsoft Azure,japaneast,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",,,,,,,,, -2024,Microsoft Azure,koreacentral,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,, -2024,Microsoft Azure,canadacentral,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,, -2024,Microsoft Azure,francecentral,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,, -2024,Microsoft Azure,germanywestcentral,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,, -2024,Microsoft Azure,italynorth,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,,,,,,,, -2024,Microsoft Azure,norwayeast,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,, -2024,Microsoft Azure,polandcentral,Poland,PL,PL,Warsaw,"52.23,21.0111",,,,,,,,, -2024,Microsoft Azure,switzerlandnorth,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,,,,,, -2024,Microsoft Azure,uaenorth,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2024,Microsoft Azure,brazilsouth,South Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,, -2024,Microsoft Azure,centraluseuap,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,israelcentral,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,, -2024,Microsoft Azure,qatarcentral,Qatar,QT,QT,Qatar,"25.69,51.51 ",,,,,,,,, -2024,Microsoft Azure,centralusstage,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,eastusstage,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,, -2024,Microsoft Azure,eastus2stage,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,,,,,,, -2024,Microsoft Azure,northcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,, -2024,Microsoft Azure,southcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,, -2024,Microsoft Azure,westusstage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,westus2stage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,asia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2024,Microsoft Azure,asiapacific,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,australia,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,brazil,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,, -2024,Microsoft Azure,canada,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,, -2024,Microsoft Azure,europe,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,, -2024,Microsoft Azure,france,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,, -2024,Microsoft Azure,germany,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,, -2024,Microsoft Azure,global,,,,,,,,,,,,,, -2024,Microsoft Azure,india,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,japan,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,, -2024,Microsoft Azure,korea,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,, -2024,Microsoft Azure,norway,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,, -2024,Microsoft Azure,singapore,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,southafrica,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2024,Microsoft Azure,sweden,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,, -2024,Microsoft Azure,switzerland,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,, -2024,Microsoft Azure,uae,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2024,Microsoft Azure,uk,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,, -2024,Microsoft Azure,unitedstates,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,unitedstateseuap,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,eastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,southeastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,, -2024,Microsoft Azure,brazilus,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,,,,,,,, -2024,Microsoft Azure,eastusstg,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),,,,,,,,,, -2024,Microsoft Azure,northcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,, -2024,Microsoft Azure,westus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,japanwest,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,, -2024,Microsoft Azure,jioindiawest,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,eastus2euap,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,, -2024,Microsoft Azure,westcentralus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,, -2024,Microsoft Azure,southafricawest,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2024,Microsoft Azure,australiacentral,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,australiacentral2,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,australiasoutheast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2024,Microsoft Azure,jioindiacentral,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,koreasouth,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,, -2024,Microsoft Azure,southindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,westindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2024,Microsoft Azure,canadaeast,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,, -2024,Microsoft Azure,francesouth,France,FR,FR,Paris,"48.8567,2.3522",,,,,,,,, -2024,Microsoft Azure,germanynorth,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,, -2024,Microsoft Azure,norwaywest,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,, -2024,Microsoft Azure,switzerlandwest,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,, -2024,Microsoft Azure,ukwest,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,, -2024,Microsoft Azure,uaecentral,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2024,Microsoft Azure,brazilsoutheast,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,, -2021,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.17,,,0,456,,,,456 -2021,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360 -2021,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,464,,,,464 -2021,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.31,,,0,384,,,,384 -2021,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425 -2021,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.1,,,0,670,,,,670 -2021,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.08,,,0,671,,,,671 -2021,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,372,,,,372 -2021,Google Cloud,asia-southeast2,Indonesia,ID,,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580 -2021,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.21,,,0,598,,,,598 -2021,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.31,,,0,521,,,,521 -2021,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.2,,,0,576,,,,576 -2021,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.91,,,0,127,,,,127 -2021,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0,,,0,121,,,,121 -2021,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.82,,,0,110,,,,110 -2021,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.57,,,0,172,,,,172 -2021,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.6,,,0,269,,,,269 -2021,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.53,,,0,283,,,,283 -2021,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,86,,,,86 -2021,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0,,,0,298,,,,298 -2021,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0,,,0,59,,,,59 -2021,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0 -2021,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.92,,,0,29,,,,29 -2021,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.78,,,0,129,,,,129 -2021,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.69,,,0,190,,,,190 -2021,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.97,,,0,394,,,,394 -2021,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.25,,,0,434,,,,434 -2021,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.64,,,0,309,442,,,309 -2021,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.64,,,0,309,442,,,309 -2021,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.4,,,0,296,,,,296 -2021,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.88,,,0,60,,,,60 -2021,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.53,,,0,190,,,,190 -2021,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,448,,,,448 -2021,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.21,,,0,365,,,,365 -2021,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,0.95,,,,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html,,, -2021,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,0.95,,,,,,, -2021,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,0.95,,,,,,, -2021,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,0.95,,,,,,, -2021,Amazon Web Services,af-south-1,,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,, -2021,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,, -2021,Amazon Web Services,ap-south-2,,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,, -2021,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,, -2021,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,, -2021,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,,,,,,,, -2021,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,, -2021,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,, -2021,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,, -2021,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,, -2021,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,, -2021,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,0.95,,,,,,, -2021,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,0.95,,,,,,, -2021,Amazon Web Services,eu-west-1,,,IE,Europe (Ireland),"53.35,-6.2603 ",,0.95,,,,,,, -2021,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,0.95,,,,,,, -2021,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,0.95,,,,,,, -2021,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,0.95,,,,,,, -2021,Amazon Web Services,eu-north-1,Spain,ES,SE,Europe (Stockholm),"59.3294,18.0686 ",,0.95,,,,,,, -2021,Amazon Web Services,il-central-1,,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,, -2021,Amazon Web Services,me-south-1,,,,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,, -2021,Amazon Web Services,me-central-1,,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,, -2021,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,, -2021,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,0.95,,,,,,, -2021,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,0.95,,,,,,, -2021,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,,,,,,,, -2021,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,,,,,,,, -2020,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,,0,540,,,,540 -2020,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,453,,,,453 -2020,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.12,,,0,554,,,,554 -2020,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,442,,,,442 -2020,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,457,,,,457 -2020,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.12,,,0,721,,,,721 -2020,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0,,,0,657,,,,657 -2020,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,,0,493,,,,493 -2020,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647 -2020,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,727,,,,727 -2020,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0,,,0,691,,,,691 -2020,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0,,,0,622,,,,622 -2020,Google Cloud,europe-north1,Belgium,BE,BE,Finland,"60.1708,24.9375",0.94,,,0,133,,,,133 -2020,Google Cloud,europe-west1,Great Britain,GB,UK,Belgium,"51.1333,4.5667",0.79,,,0,212,,,,212 -2020,Google Cloud,europe-west2,Germany,DE,DE,London,"51.726,-0.3",0.59,,,0,231,,,,231 -2020,Google Cloud,europe-west3,Netherlands,NL,NL,Frankfurt,"50.1106,8.6822",0.63,,,0,293,,,,293 -2020,Google Cloud,europe-west4,Switzerland,CH,CH,Netherlands,"51.9167,4.5",0.6,,,0,410,,,,410 -2020,Google Cloud,europe-west6,North Italy,IT,IT,Zurich,"47.3744,8.5411",0,,,0,87,,,,87 -2020,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",0,,,0,27,,,,27 -2020,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.88,,,0,103,,,,103 -2020,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.93,,,0,454,,,,454 -2020,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.27,,,0,480,,,,480 -2020,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.58,,,0,361,423,,,361 -2020,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.9,,,0,78,,,,78 -2020,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.54,,,0,253,,,,253 -2020,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.28,,,0,533,,,,533 -2020,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.19,,,0,455,,,,455 -2019,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.19,,,0,541,,,,541 -2019,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,506,,,,506 -2019,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0,,,0,569,,,,569 -2019,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,414,,,,414 -2019,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0,,,0,490,,,,490 -2019,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0,,,0,752,,,,752 -2019,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.03,,,0,493,,,,493 -2019,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647 -2019,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,725,,,,725 -2019,Google Cloud,europe-north1,Victoria,AUS-VIC,NEM_VIC,Finland,"60.1708,24.9375",0.77,,,0,181,,,,181 -2019,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.68,,,0,196,,,,196 -2019,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.54,,,0,257,,,,257 -2019,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.61,,,0,319,,,,319 -2019,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.61,,,0,474,,,,474 -2019,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0,,,0,87,,,,87 -2019,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montreal,"45.5089,-73.5617",0,,,0,27,,,,27 -2019,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,Sao Paulo,"-3.45,-68.95",0.87,,,0,109,,,,109 -2019,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.78,,,0,479,,,,479 -2019,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.19,,,0,500,,,,500 -2019,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.41,,,0,383,454,,,383 -2019,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,,0,117,,,,117 -2019,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.55,,,0,248,,,,248 -2019,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.25,,,0,561,,,,561 -2019,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.13,,,0,491,,,,491 +year,cloud-provider,cloud-region,cfe-region,em-zone-id,wt-region-id,location,geolocation,cfe-hourly,cfe-annual,power-usage-efficiency,net-carbon,grid-carbon-intensity-24x7,grid-carbon-intensity-consumption,grid-carbon-intensity-marginal,grid-carbon-intensity-production,grid-carbon-intensity,water-usage-effectiveness,water-usage-effectiveness-source,power-usage-efficiency-source,, +2022,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,1.12,0,453,,,,453,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360,,,,, +2022,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,463,,,,463,,,,, +2022,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.32,,,0,383,,,,383,,,,, +2022,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425,,,,, +2022,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.24,,,0,555,,,,555,,,,, +2022,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.23,,,0,632,,,,632,,,,, +2022,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,1.13,0,372,,,,372,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580,,,,, +2022,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.27,,,0,538,,,,538,,,,, +2022,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.34,,,0,490,,,,490,,,,, +2022,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.24,,,0,738,,,,738,,,,, +2022,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.97,,1.09,0,112,,,,112,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0.67,,,0,160,,,,160,,,,, +2022,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.8,,1.09,0,123,,,,123,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,0,166,,,,166,,,,, +2022,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.96,,,0,413,,,,413,,,,, +2022,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.57,,1.07,0,317,,,,317,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,118,,,,118,,,,, +2022,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0.42,,,0,323,,,,323,,,,, +2022,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,0,71,,,,71,,,,, +2022,Google Cloud,europe-west12,North Italy,IT,IT,Turin,"45.0792,7.6761",0.42,,,0,323,,,,323,,,,, +2022,Google Cloud,me-west1,Israel,IL,IL,Tel Aviv,"32.0167,34.7667",0.02,,,0,476,,,,476,,,,, +2022,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0,,,,, +2022,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.9,,,0,36,,,,36,,,,, +2022,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.89,,,0,65,,,,65,,,,, +2022,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.9,,1.09,0,165,,,,165,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,1.11,0,445,,,,445,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.26,,1.1,0,532,,,,532,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.6,,1.08,0,354,429,,,354,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.6,,,0,354,429,,,354,,,,, +2022,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.41,,,0,342,,,,342,,,,, +2022,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,1.1,0,67,,,,67,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf,, +2022,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.56,,,0,202,,,,202,,,,, +2022,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,606,,,,606,,,,, +2022,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.27,,,0,396,,,,396,,,,, +2022,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,af-south-1,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-south-2,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-west-1,Ireland,IE,IE,Europe (Ireland),"53.35,-6.2603 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-south-2,Spain,ES,ES,Europe (Spain),"40.3333,-3.8667",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-north-1,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,eu-central-2,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,il-central-1,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,me-south-1,Bahrain,BH,BH,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,me-central-1,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2022,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,1,,0,,,,,,0.19,https://sustainability.aboutamazon.com/natural-resources/water,,, +2024,Microsoft Azure,eastus,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,,,,,,, +2024,Microsoft Azure,eastus2,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,1.144,,,,,,,0.17,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Virginia%20(East%20US%20&%20East%20US%202).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Virginia%20(East%20US%20&%20East%20US%202).pdf,, +2024,Microsoft Azure,southcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,1.307,,,,,,,1.82,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Texas%20(South%20Central%20US).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Texas%20(South%20Central%20US).pdf,, +2024,Microsoft Azure,westus2,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,westus3,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,australiaeast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,,,,, +2024,Microsoft Azure,southeastasia,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,1.358,,,,,,,2.06,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Singapore%20(Southeast%20Asia).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Singapore%20(Southeast%20Asia).pdf,, +2024,Microsoft Azure,northeurope,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,1.172,,,,,,,0.16,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Sweden%20(Sweden%20Central).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Sweden%20(Sweden%20Central).pdf,, +2024,Microsoft Azure,swedencentral,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,,,,,,, +2024,Microsoft Azure,uksouth,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,,,,,,, +2024,Microsoft Azure,westeurope,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,,,,,,, +2024,Microsoft Azure,centralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,,,,, +2024,Microsoft Azure,southafricanorth,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,,,,, +2024,Microsoft Azure,centralindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2024,Microsoft Azure,eastasia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,,,,, +2024,Microsoft Azure,japaneast,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",,,,,,,,,,,,,, +2024,Microsoft Azure,koreacentral,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,,,,,,, +2024,Microsoft Azure,canadacentral,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,,,,,,, +2024,Microsoft Azure,francecentral,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,,,,,,, +2024,Microsoft Azure,germanywestcentral,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,,,,,,, +2024,Microsoft Azure,italynorth,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,,,,,,,,,,,,, +2024,Microsoft Azure,norwayeast,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,,,,,,, +2024,Microsoft Azure,polandcentral,Poland,PL,PL,Warsaw,"52.23,21.0111",,,,,,,,,,,,,, +2024,Microsoft Azure,switzerlandnorth,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,,,,,,,,,,, +2024,Microsoft Azure,uaenorth,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,,,,, +2024,Microsoft Azure,brazilsouth,South Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,,,,,,, +2024,Microsoft Azure,centraluseuap,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,,,,, +2024,Microsoft Azure,israelcentral,Israel,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,,,,,,, +2024,Microsoft Azure,qatarcentral,Qatar,QT,QT,Qatar,"25.69,51.51 ",,,,,,,,,,,,,, +2024,Microsoft Azure,centralusstage,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,,,,, +2024,Microsoft Azure,eastusstage,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,,,,,,, +2024,Microsoft Azure,eastus2stage,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,,1.144,,,,,,,0.17,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Virginia%20(East%20US%20&%20East%20US%202).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Virginia%20(East%20US%20&%20East%20US%202).pdf,, +2024,Microsoft Azure,northcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,1.16,,,,,,,0.19,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Iowa%20(Central%20US).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Iowa%20(Central%20US).pdf,, +2024,Microsoft Azure,southcentralusstage,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.92,,,,,,,,,,,,, +2024,Microsoft Azure,westusstage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,westus2stage,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,asia,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,,,,, +2024,Microsoft Azure,asiapacific,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,,,,, +2024,Microsoft Azure,australia,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,,,,, +2024,Microsoft Azure,brazil,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,,,,,,, +2024,Microsoft Azure,canada,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,,,,,,, +2024,Microsoft Azure,europe,France,FR,FR,Europe (Paris),"48.8567,2.3522",,,,,,,,,,,,,, +2024,Microsoft Azure,france,France,FR,FR,Paris,"48.8567,2.3522",0.87,,,,,,,,,,,,, +2024,Microsoft Azure,germany,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,,,,,,, +2024,Microsoft Azure,global,,,,,,,,,,,,,,,,,,, +2024,Microsoft Azure,india,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2024,Microsoft Azure,japan,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,,,,,,, +2024,Microsoft Azure,korea,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,,,,,,, +2024,Microsoft Azure,norway,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,,,,,,, +2024,Microsoft Azure,singapore,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,,,,, +2024,Microsoft Azure,southafrica,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,,,,, +2024,Microsoft Azure,sweden,Sweden,SE,SE,Europe (Stockholm),"59.3294,18.0686 ",,,,,,,,,,,,,, +2024,Microsoft Azure,switzerland,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,,,,,,, +2024,Microsoft Azure,uae,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,,,,, +2024,Microsoft Azure,uk,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,,,,,,, +2024,Microsoft Azure,unitedstates,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,unitedstateseuap,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,eastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,,,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Singapore%20(Southeast%20Asia).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Singapore%20(Southeast%20Asia).pdf, +2024,Microsoft Azure,southeastasiastage,Singapore,SG,SGP,Singapore,"1.3,103.8",,0.13,,,,,,,,,,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Singapore%20(Southeast%20Asia).pdf,https://datacenters.microsoft.com/globe/pdfs/sustainability/factsheets/Singapore%20(Southeast%20Asia).pdf, +2024,Microsoft Azure,brazilus,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,,,,,,,,,,,,, +2024,Microsoft Azure,eastusstg,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),,,,,,,,,,,,,,, +2024,Microsoft Azure,northcentralus,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",,,,,,,,,,,,,, +2024,Microsoft Azure,westus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,japanwest,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,,,,,,,,,,, +2024,Microsoft Azure,jioindiawest,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2024,Microsoft Azure,eastus2euap,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,,,,,,,,,,,,, +2024,Microsoft Azure,westcentralus,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,,,,,,,,,,,,, +2024,Microsoft Azure,southafricawest,South Africa,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,,,,, +2024,Microsoft Azure,australiacentral,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,,,,, +2024,Microsoft Azure,australiacentral2,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,,,,, +2024,Microsoft Azure,australiasoutheast,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,,,,, +2024,Microsoft Azure,jioindiacentral,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2024,Microsoft Azure,koreasouth,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,,,,,,,,,,, +2024,Microsoft Azure,southindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2024,Microsoft Azure,westindia,India,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2024,Microsoft Azure,canadaeast,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,,,,,,,,,,,,, +2024,Microsoft Azure,francesouth,France,FR,FR,Paris,"48.8567,2.3522",,,,,,,,,,,,,, +2024,Microsoft Azure,germanynorth,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,,,,,,,,,,,,, +2024,Microsoft Azure,norwaywest,Norway,NO,NO,Europe(Bergen),"60.3894,5.33 ",,,,,,,,,,,,,, +2024,Microsoft Azure,switzerlandwest,Switzerland,CH,CH,Europe (Zurich),"47.3744,8.5411",,,,,,,,,,,,,, +2024,Microsoft Azure,ukwest,Great Britain,GB,UK,London,"51.726,-0.3",0.85,,,,,,,,,,,,, +2024,Microsoft Azure,uaecentral,UAE,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,,,,, +2024,Microsoft Azure,brazilsoutheast,Brazil,BR-CS,BRA,Brazil,"-3.45,-68.95",,0.05,,,,,,,,,,,, +2021,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.17,,1.12,0,456,,,,456,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0.28,,,0,360,,,,360,,,,, +2021,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.16,,,0,464,,,,464,,,,, +2021,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0.31,,,0,384,,,,384,,,,, +2021,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,425,,,,425,,,,, +2021,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.1,,,0,670,,,,670,,,,, +2021,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0.08,,,0,671,,,,671,,,,, +2021,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,1.13,0,372,,,,372,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,asia-southeast2,Indonesia,ID,,Jakarta,"-6.2507,106.869",0.13,,,0,580,,,,580,,,,, +2021,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.21,,,0,598,,,,598,,,,, +2021,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0.31,,,0,521,,,,521,,,,, +2021,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0.2,,,0,576,,,,576,,,,, +2021,Google Cloud,europe-north1,Finland,FI,FI,Finland,"60.1708,24.9375",0.91,,1.09,0,127,,,,127,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,europe-southwest1,Spain,ES,ES,Madrid,"40.3333,-3.8667",0,,,0,121,,,,121,,,,, +2021,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.82,,1.08,0,110,,,,110,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.57,,,0,172,,,,172,,,,, +2021,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.6,,,0,269,,,,269,,,,, +2021,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.53,,1.08,0,283,,,,283,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0.85,,,0,86,,,,86,,,,, +2021,Google Cloud,europe-west8,North Italy,IT,IT,Milan,"45.4669,9.19",0,,,0,298,,,,298,,,,, +2021,Google Cloud,europe-west9,France,FR,FR,Paris,"48.8567,2.3522",0,,,0,59,,,,59,,,,, +2021,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",1,,,0,0,,,,0,,,,, +2021,Google Cloud,northamerica-northeast2,Ontario,CA-ON,IESO_NORTH,Toronto,"43.7417,-79.3733",0.92,,,0,29,,,,29,,,,, +2021,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.78,,,0,129,,,,129,,,,, +2021,Google Cloud,southamerica-west1,Chile,CL-SEN,CHL,Santiago,"-33.4372,-70.6506 ",0.69,,1.09,0,190,,,,190,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.97,,1.12,0,394,,,,394,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.25,,1.1,0,434,,,,434,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.64,,1.1,0,309,442,,,309,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,us-east5,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,Columbus,"41.4366,-97.3565 ",0.64,,,0,309,442,,,309,,,,, +2021,Google Cloud,us-south1,ERCOT,US-TEX-ERCO,ERCOT_NORTHCENTRAL,Dallas,"44.9221,-123.313 ",0.4,,,0,296,,,,296,,,,, +2021,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.88,,1.11,0,60,,,,60,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2021,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.53,,,0,190,,,,190,,,,, +2021,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.31,,,0,448,,,,448,,,,, +2021,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.21,,,0,365,,,,365,,,,, +2021,Amazon Web Services,us-east-2,PJM,US-MIDA-PJM,PJM_SOUTHWEST_OH,US East (Ohio),"39.8689,-84.3292 ",,0.95,,,,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html,,,,,,,, +2021,Amazon Web Services,us-east-1,PJM,US-MIDA-PJM,PJM_DC,US East (N. Virginia),"39.1057,-77.5544 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,us-west-1,CAISO,US-CAL-CISO,CAISO_NORTH,US West (N. California),"34.0497,-118.1326 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,us-west-2,BPA,US-NW-BPAT,BPA,US West (Oregon),"45.5371,-122.65 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,af-south-1,,ZA,ZA,Africa (Cape Town),"-33.9253,18.4239 ",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-east-1,Hong Kong,HK,HK,Asia Pacific (Hong Kong),"22.3,114.2",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-south-2,,,IND,Asia Pacific (Hyderabad),"17.385,78.4867 ",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-southeast-3,Indonesia,ID,ID,Asia Pacific (Jakarta),"-6.175,106.8275 ",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-southeast-4,Victoria,AUS-VIC,NEM_VIC,Asia Pacific (Melbourne),"-37.8142,144.963",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-south-1,Maharashtra,IN-MH,IND,Asia Pacific (Mumbai),"19.0761,72.8775",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-northeast-3,Kansai,JP-KN,JP_KN,Asia Pacific (Osaka),"34.6939,135.502",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-northeast-2,South Korea,KR,KOR,Asia Pacific (Seoul),"37.56,126.99",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-southeast-1,Singapore,SG,SGP,Asia Pacific (Singapore),"1.3,103.8",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-southeast-2,New South Wales,AUS-NSW,NEM_NSW,Asia Pacific (Sydney),"-33.8678,151.21",,,,,,,,,,,,,, +2021,Amazon Web Services,ap-northeast-1,Tokyo,JP-TK,JP_TK,Asia Pacific (Tokyo),"35.6897,139.692",,,,,,,,,,,,,, +2021,Amazon Web Services,ca-central-1,Quebec,CA-QC,HQ,Canada (Central),"45.5089,-73.5617",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,eu-central-1,Germany,DE,DE,Europe (Frankfurt),"50.1106,8.6822",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,eu-west-1,,,IE,Europe (Ireland),"53.35,-6.2603 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,eu-west-2,Great Britain,GB,UK,Europe (London),"51.726,-0.3",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,eu-south-1,North Italy,IT,IT,Europe (Milan),"45.4669,9.19",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,eu-west-3,France,FR,FR,Europe (Paris),"48.8567,2.3522",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,eu-north-1,Spain,ES,SE,Europe (Stockholm),"59.3294,18.0686 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,il-central-1,,IL,IL,Israel (Tel Aviv),"32.0167,34.7667",,,,,,,,,,,,,, +2021,Amazon Web Services,me-south-1,,,,Middle East (Bahrain),"26.219,50.538 ",,,,,,,,,,,,,, +2021,Amazon Web Services,me-central-1,,AE,AE,Middle East (UAE),"25.2631,55.2972 ",,,,,,,,,,,,,, +2021,Amazon Web Services,sa-east-1,Central Brazil,BR-CS,BRA,South America (S�o Paulo),"-3.45,-68.95",,,,,,,,,,,,,, +2021,Amazon Web Services,us-gov-east-1,PJM,US-MIDA-PJM,PJM_DC,GovCloud (US East),"39.1057,-77.5544 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,us-gov-west-1,BPA,US-NW-BPAT,BPA,GovCloud (US West),"45.5371,-122.65 ",,0.95,,,,,,,,,,,, +2021,Amazon Web Services,cn-north-1,,,,China (Beijing),"39.904,116.4075 ",,,,,,,,,,,,,, +2021,Amazon Web Services,cn-northwest-1,,,,China (Ningxia),"38.4795,106.2254 ",,,,,,,,,,,,,, +2020,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.18,,1.13,0,540,,,,540,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,453,,,,453,,,,, +2020,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0.12,,,0,554,,,,554,,,,, +2020,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,442,,,,442,,,,, +2020,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0.31,,,0,457,,,,457,,,,, +2020,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0.12,,,0,721,,,,721,,,,, +2020,Google Cloud,asia-south2,Uttar Pradesh,IN-UP,IND,Delhi,"28.6092,76.9798",0,,,0,657,,,,657,,,,, +2020,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.04,,1.14,0,493,,,,493,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647,,,,, +2020,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,727,,,,727,,,,, +2020,Google Cloud,australia-southeast2,Victoria,AUS-VIC,NEM_VIC,Melbourne,"-37.8142,144.963",0,,,0,691,,,,691,,,,, +2020,Google Cloud,europe-central2,Poland,PL,PL,Warsaw,"52.23,21.0111",0,,,0,622,,,,622,,,,, +2020,Google Cloud,europe-north1,Belgium,BE,BE,Belgium,"60.1708,24.9375",0.94,,1.08,0,133,,,,133,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,europe-west1,Great Britain,GB,UK,London,"51.1333,4.5667",0.79,,,0,212,,,,212,,,,, +2020,Google Cloud,europe-west2,Germany,DE,DE,Frankfurt,"51.726,-0.3",0.59,,,0,231,,,,231,,,,, +2020,Google Cloud,europe-west3,Netherlands,NL,NL,Netherlands,"50.1106,8.6822",0.63,,1.09,0,293,,,,293,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,europe-west4,Switzerland,CH,CH,Zurich,"51.9167,4.5",0.6,,,0,410,,,,410,,,,, +2020,Google Cloud,europe-west6,North Italy,IT,IT,Italy,"47.3744,8.5411",0,,,0,87,,,,87,,,,, +2020,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montr�al,"45.5089,-73.5617",0,,,0,27,,,,27,,,,, +2020,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,S�o Paulo,"-3.45,-68.95",0.88,,,0,103,,,,103,,,,, +2020,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.93,,1.11,0,454,,,,454,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.27,,1.11,0,480,,,,480,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.58,,,0,361,423,,,361,,,,, +2020,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.9,,1.1,0,78,,,,78,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2020,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.54,,,0,253,,,,253,,,,, +2020,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.28,,,0,533,,,,533,,,,, +2020,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.19,,,0,455,,,,455,,,,, +2019,Google Cloud,asia-east1,Taiwan,TW,TW,Taiwan,"25.0375,121.5625",0.19,,1.13,0,541,,,,541,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,asia-east2,Hong Kong,HK,HK,Hong Kong,"22.3,114.2",0,,,0,506,,,,506,,,,, +2019,Google Cloud,asia-northeast1,Tokyo,JP-TK,JP_TK,Tokyo,"35.6897,139.692",0,,,0,569,,,,569,,,,, +2019,Google Cloud,asia-northeast2,Kansai,JP-KN,JP_KN,Osaka,"34.6939,135.502",0,,,0,414,,,,414,,,,, +2019,Google Cloud,asia-northeast3,South Korea,KR,KOR,Seoul,"37.56,126.99",0,,,0,490,,,,490,,,,, +2019,Google Cloud,asia-south1,Maharashtra,IN-MH,IND,Mumbai,"19.0761,72.8775",0,,,0,752,,,,752,,,,, +2019,Google Cloud,asia-southeast1,Singapore,SG,SGP,Singapore,"1.3,103.8",0.03,,1.15,0,493,,,,493,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,asia-southeast2,Indonesia,ID,ID,Jakarta,"-6.2507,106.869",0,,,0,647,,,,647,,,,, +2019,Google Cloud,australia-southeast1,New South Wales,AUS-NSW,NEM_NSW,Sydney,"-33.8678,151.21",0.11,,,0,725,,,,725,,,,, +2019,Google Cloud,europe-north1,Victoria,AUS-VIC,NEM_VIC,Finland,"60.1708,24.9375",0.77,,,0,181,,,,181,,,,, +2019,Google Cloud,europe-west1,Belgium,BE,BE,Belgium,"51.1333,4.5667",0.68,,1.09,0,196,,,,196,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,europe-west2,Great Britain,GB,UK,London,"51.726,-0.3",0.54,,,0,257,,,,257,,,,, +2019,Google Cloud,europe-west3,Germany,DE,DE,Frankfurt,"50.1106,8.6822",0.61,,,0,319,,,,319,,,,, +2019,Google Cloud,europe-west4,Netherlands,NL,NL,Netherlands,"51.9167,4.5",0.61,,1.09,0,474,,,,474,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,europe-west6,Switzerland,CH,CH,Zurich,"47.3744,8.5411",0,,,0,87,,,,87,,,,, +2019,Google Cloud,northamerica-northeast1,Quebec,CA-QC,HQ,Montreal,"45.5089,-73.5617",0,,,0,27,,,,27,,,,, +2019,Google Cloud,southamerica-east1,Central Brazil,BR-CS,BRA,Sao Paulo,"-3.45,-68.95",0.87,,,0,109,,,,109,,,,, +2019,Google Cloud,us-central1,MISO,US-MIDW-MISO,MISO_MASON_CITY,Iowa,"41.5725,-93.6105 ",0.78,,1.12,0,479,,,,479,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,us-east1,SC,US-CAR-SC,SC,South Carolina,"34.8354,-82.3646 ",0.19,,1.11,0,500,,,,500,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,us-east4,PJM,US-MIDA-PJM,PJM_DC,Northern Virginia,"39.1057,-77.5544 ",0.41,,,0,383,454,,,383,,,,, +2019,Google Cloud,us-west1,BPA,US-NW-BPAT,BPA,Oregon,"45.5372,-122.3955 ",0.89,,1.11,0,117,,,,117,,,,,https://www.gstatic.com/gumdrop/sustainability/google-2023-environmental-report.pdf +2019,Google Cloud,us-west2,CAISO,US-CAL-CISO,LDWP,Los Angeles,"34.1141,-118.4068 ",0.55,,,0,248,,,,248,,,,, +2019,Google Cloud,us-west3,PACE,US-NW-PACE,PACE,Salt Lake City,"40.7776,-111.9311 ",0.25,,,0,561,,,,561,,,,, +2019,Google Cloud,us-west4,NVE,US-NW-NEVP,NEVP,Las Vegas,"35.6011,-105.2206 ",0.13,,,0,491,,,,491,,,,, From 9a095d03e4ea601c897cdc2a09f337aaab3bfae2 Mon Sep 17 00:00:00 2001 From: maddendeavor Date: Fri, 5 Apr 2024 16:35:15 -0700 Subject: [PATCH 4/5] feat(src): fixed test --- src/__tests__/unit/lib/cloud-metadata/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__tests__/unit/lib/cloud-metadata/index.test.ts b/src/__tests__/unit/lib/cloud-metadata/index.test.ts index 3154295..c82596f 100644 --- a/src/__tests__/unit/lib/cloud-metadata/index.test.ts +++ b/src/__tests__/unit/lib/cloud-metadata/index.test.ts @@ -174,7 +174,7 @@ describe('lib/cloud-metadata:', () => { 'Intel® Xeon® Platinum 8272CL,Intel® Xeon® 8171M 2.1 GHz,Intel® Xeon® E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3 2.4 GHz', 'vcpus-allocated': 1, 'vcpus-total': 52, - 'water-usage-effectiveness': 164, + 'water-usage-effectiveness': 1.8, }, ]); }); From 860b629ef013fe19294649a2f7e64dd748e4215e Mon Sep 17 00:00:00 2001 From: maddendeavor Date: Fri, 5 Apr 2024 17:05:11 -0700 Subject: [PATCH 5/5] feat(src): readme fix & DCO Remediation Commit maddendeavor adds Signed-off-by to commits: 14c0bcab2ba849f1cfd543507e425fa479955cf0 2479ac632475a886f8bccddeaaa96c96710d80f2 9a095d03e4ea601c897cdc2a09f337aaab3bfae2 Signed-off-by: maddendeavor --- src/lib/cloud-metadata/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cloud-metadata/README.md b/src/lib/cloud-metadata/README.md index 13a6b8e..9367c4d 100644 --- a/src/lib/cloud-metadata/README.md +++ b/src/lib/cloud-metadata/README.md @@ -37,7 +37,7 @@ And cloud data: - `cloud/region-wt-id`: region id for the Watt-Time plugin - `cloud/region-location`: region location (text) - `cloud/region-geolocation`: geolocation lat/lon (decimal) -- `water-usage-effectiveness`: operational water usage effectiveness of a data center in L/kWh +- `water-usage-effectiveness`: operational water usage effectiveness of a data center (L/kWh) ## IF Implementation