@digital4better/data 1.3.38 → 1.3.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/README.md +122 -89
  2. package/data/cloud/accelerators.csv +1 -0
  3. package/data/cloud/accelerators.json +9 -0
  4. package/data/cloud/aws-regions.csv +32 -32
  5. package/data/cloud/aws-regions.json +68 -68
  6. package/data/cloud/azure-regions.csv +10 -10
  7. package/data/cloud/azure-regions.json +66 -42
  8. package/data/cloud/cpus.csv +16 -0
  9. package/data/cloud/cpus.json +194 -0
  10. package/data/cloud/gcp-regions.csv +39 -39
  11. package/data/cloud/gcp-regions.json +73 -73
  12. package/data/cloud/oracle-regions.csv +46 -0
  13. package/data/cloud/oracle-regions.json +548 -0
  14. package/data/cloud/oracle-vms.csv +141 -0
  15. package/data/cloud/oracle-vms.json +2759 -0
  16. package/data/cloud/ovhcloud-regions.csv +21 -21
  17. package/data/cloud/ovhcloud-regions.json +68 -35
  18. package/data/cloud/scaleway-regions.csv +9 -9
  19. package/data/cloud/scaleway-regions.json +21 -21
  20. package/data/factor/continent-monthly-green.csv +6 -0
  21. package/data/factor/continent-monthly-green.json +66 -0
  22. package/data/factor/continent-monthly.csv +6 -0
  23. package/data/factor/continent-monthly.json +66 -0
  24. package/data/factor/continent-yearly-green.csv +6 -6
  25. package/data/factor/continent-yearly-green.json +54 -54
  26. package/data/factor/continent-yearly.csv +6 -6
  27. package/data/factor/continent-yearly.json +54 -54
  28. package/data/factor/country-monthly-green.csv +214 -0
  29. package/data/factor/country-monthly-green.json +2354 -0
  30. package/data/factor/country-monthly.csv +214 -0
  31. package/data/factor/country-monthly.json +2354 -0
  32. package/data/factor/country-yearly-green.csv +53 -53
  33. package/data/factor/country-yearly-green.json +453 -453
  34. package/data/factor/country-yearly.csv +55 -55
  35. package/data/factor/country-yearly.json +454 -454
  36. package/data/factor/subdivision-monthly-green.csv +90 -26
  37. package/data/factor/subdivision-monthly-green.json +938 -234
  38. package/data/factor/subdivision-monthly.csv +90 -26
  39. package/data/factor/subdivision-monthly.json +938 -234
  40. package/data/factor/subdivision-yearly-green.csv +13 -13
  41. package/data/factor/subdivision-yearly-green.json +117 -117
  42. package/data/factor/subdivision-yearly.csv +13 -13
  43. package/data/factor/subdivision-yearly.json +117 -117
  44. package/data/factor/world-monthly-green.csv +1 -0
  45. package/data/factor/world-monthly-green.json +11 -0
  46. package/data/factor/world-monthly.csv +1 -0
  47. package/data/factor/world-monthly.json +11 -0
  48. package/data/factor/world-yearly-green.csv +1 -1
  49. package/data/factor/world-yearly-green.json +9 -9
  50. package/data/factor/world-yearly.csv +1 -1
  51. package/data/factor/world-yearly.json +9 -9
  52. package/data/mix/continent-monthly-green.csv +6 -0
  53. package/data/mix/continent-monthly-green.json +36 -0
  54. package/data/mix/continent-monthly.csv +6 -0
  55. package/data/mix/continent-monthly.json +66 -0
  56. package/data/mix/continent-yearly-green.csv +5 -5
  57. package/data/mix/continent-yearly-green.json +18 -18
  58. package/data/mix/continent-yearly.csv +5 -5
  59. package/data/mix/continent-yearly.json +34 -34
  60. package/data/mix/country-monthly-green.csv +214 -0
  61. package/data/mix/country-monthly-green.json +1284 -0
  62. package/data/mix/country-monthly.csv +214 -0
  63. package/data/mix/country-monthly.json +2354 -0
  64. package/data/mix/country-yearly-green.csv +50 -50
  65. package/data/mix/country-yearly-green.json +180 -180
  66. package/data/mix/country-yearly.csv +50 -50
  67. package/data/mix/country-yearly.json +358 -358
  68. package/data/mix/subdivision-monthly-green.csv +88 -24
  69. package/data/mix/subdivision-monthly-green.json +470 -86
  70. package/data/mix/subdivision-monthly.csv +88 -24
  71. package/data/mix/subdivision-monthly.json +866 -162
  72. package/data/mix/subdivision-yearly-green.csv +12 -12
  73. package/data/mix/subdivision-yearly-green.json +43 -43
  74. package/data/mix/subdivision-yearly.csv +12 -12
  75. package/data/mix/subdivision-yearly.json +81 -81
  76. package/data/mix/world-monthly-green.csv +1 -0
  77. package/data/mix/world-monthly-green.json +6 -0
  78. package/data/mix/world-monthly.csv +1 -0
  79. package/data/mix/world-monthly.json +11 -0
  80. package/data/mix/world-yearly-green.csv +1 -1
  81. package/data/mix/world-yearly-green.json +4 -4
  82. package/data/mix/world-yearly.csv +1 -1
  83. package/data/mix/world-yearly.json +7 -7
  84. package/package.json +1 -1
package/README.md CHANGED
@@ -1,132 +1,165 @@
1
1
  # Digital4Better Open Data
2
2
 
3
- This repository contains the geographic and environmental data used by Digital4Better to calculate the footprints of digital services.
3
+ Open datasets maintained by Digital4Better to describe the environmental footprint of digital services, cloud infrastructure, electricity systems, and AI models.
4
4
 
5
- This data is also used by the calculation engine of fruggr (www.fruggr.io), a service that automates the evaluation of the footprints of digital services.
5
+ This repository is meant to be used as a data source, not as developer documentation. The main audience is analysts, sustainability teams, researchers, product teams, and anyone who needs reusable reference data in `JSON` or `CSV`.
6
6
 
7
- Each file is produced/generated in CSV and JSON format.
7
+ These reference datasets are used, among other things, by [fruggr](https://www.fruggr.io), Digital4Better's platform for measuring and managing the environmental footprint of digital services.
8
8
 
9
- ## Country data (country)
9
+ ## What You Can Find Here
10
10
 
11
- ### Geographical regions (regions.csv)
11
+ The repository is organized as a set of reusable data collections:
12
12
 
13
- This data is used to generate administrative data and to compute distances between regions.
13
+ | Collection | What it covers | Main files |
14
+ | --- | --- | --- |
15
+ | [`data/ai`](./data/ai) | AI model catalog across vendors and cloud providers | `models.json` |
16
+ | [`data/cloud`](./data/cloud) | Cloud regions, virtual machines, CPUs, accelerators | `*-regions.*`, `*-vms.*`, `cpus.*`, `accelerators.*` |
17
+ | [`data/country`](./data/country) | Countries, regions, continents, and distance referentials | `regions.*`, `countries.*`, `continents.*`, `*-distances.*` |
18
+ | [`data/energy`](./data/energy) | Environmental impacts of electricity production technologies | `energy-impacts.*` |
19
+ | [`data/mix`](./data/mix) | Electricity mix by geography and time period | `world-*`, `continent-*`, `country-*`, `subdivision-*` |
20
+ | [`data/factor`](./data/factor) | Electricity impact factors derived from energy mix data | `world-*`, `continent-*`, `country-*`, `subdivision-*` |
21
+ | [`data/equipment`](./data/equipment) | Equipment energy and embodied impact reference data | `energy.*`, `embodied.*` |
14
22
 
15
- | Field | Description |
16
- |-------------|-----------------------------------|
17
- | name | Country name |
18
- | alpha-2 | ISO 3166-1 alpha-2 country code |
19
- | alpha-3 | ISO 3166-1 alpha-3 country code |
20
- | continent | Region continent |
21
- | subdivision | ISO 3166-2 country subdivision |
22
- | type | continent, country or subdivision |
23
- | area | Area |
24
- | lat | Latitude |
25
- | lon | Longitude |
23
+ ## Why This Repository Exists
26
24
 
27
- ### Administrative data (countries.csv)
25
+ These datasets are used to:
28
26
 
29
- This data is used to map data and to distribute impact factors (see Impact factors) by continent.
27
+ - estimate the environmental footprint of digital services
28
+ - compare cloud infrastructure options across providers and regions
29
+ - model electricity-related impacts by country, continent, or subdivision
30
+ - enrich internal or public sustainability dashboards
31
+ - document AI models and their characteristics in a structured way
30
32
 
31
- | Field | Description |
32
- |-----------|---------------------------------|
33
- | name | Country name |
34
- | alpha-2 | ISO 3166-1 alpha-2 country code |
35
- | alpha-3 | ISO 3166-1 alpha-3 country code |
36
- | continent | Country continent |
33
+ ## Highlights
37
34
 
38
- ### Distances from country to country (country-to-country-distances)
35
+ ### AI Models
39
36
 
40
- This data can be used to determine the distance traveled by data on the network between a user and a datacenter located in different countries.
37
+ The AI catalog in [`data/ai/models.json`](./data/ai/models.json) documents model families from providers such as OpenAI, Anthropic, Google, Mistral, Meta, Qwen, DeepSeek, Amazon, Cohere, and others.
41
38
 
42
- The distance is calculated between the baricenters in each country.
39
+ This makes it useful for market mapping, observatories, governance, and cloud/AI portfolio analysis.
43
40
 
44
- | Field | Description |
45
- |-------------|---------------------|
46
- | origin | Origin country |
47
- | destination | Destination country |
48
- | distance | Distance (km) |
41
+ Main source families:
49
42
 
50
- ### Distances from region to region (region-to-region-distances)
43
+ - cloud provider catalogs such as [AWS Bedrock](https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html), [Azure AI Foundry](https://ai.azure.com/catalog/models/), [Google Cloud Vertex AI](https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/use-partner-models), [OVHcloud AI Endpoints](https://www.ovhcloud.com/en/public-cloud/ai-endpoints/catalog/), and [Scaleway Generative APIs](https://www.scaleway.com/en/docs/generative-apis/reference-content/supported-models/)
44
+ - official model vendor documentation such as [OpenAI](https://platform.openai.com/docs/models), [Anthropic](https://docs.anthropic.com/en/docs/about-claude/models/overview), [Mistral](https://docs.mistral.ai/getting-started/models/), [Qwen](https://qwen.ai/), and [DeepSeek](https://api-docs.deepseek.com/)
45
+ - model cards and open model hubs such as [Hugging Face](https://huggingface.co/)
46
+ - technical reports and synthesis sources such as [LifeArchitect](https://lifearchitect.ai/models-table/) and [ApXML Models](https://apxml.com/models/)
51
47
 
52
- This data can be used to determine the distance traveled by data on the network between a user and a datacenter located in different countries or country subdivisions.
48
+ ### Cloud Infrastructure
53
49
 
54
- The distance is calculated between the baricenters in each country / subdivision.
50
+ The cloud referentials in [`data/cloud`](./data/cloud) provide structured information for major providers including AWS, Azure, GCP, Oracle Cloud Infrastructure, OVHcloud, and Scaleway.
55
51
 
56
- | Field | Description |
57
- |-------------|-----------------------------------|
58
- | origin | Origin country / subdivision |
59
- | destination | Destination country / subdivision |
60
- | distance | Distance (km) |
52
+ Typical use cases:
61
53
 
62
- ### Average distance from a user to a datacenter (user-to-datacenter-distances.csv)
54
+ - mapping regions and datacenter footprints
55
+ - comparing VM families and hardware characteristics
56
+ - linking compute infrastructure to sustainability calculations
63
57
 
64
- These data represent a rough estimate for each country of the average distance traveled by data on a network between a user and a datacenter.
58
+ Main source families:
65
59
 
66
- | Field | Description |
67
- |----------|---------------------------------|
68
- | alpha-2 | ISO 3166-1 alpha-2 country code |
69
- | distance | Distance (km) |
60
+ - provider region and infrastructure documentation from [AWS](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Microsoft Azure](https://azure.microsoft.com/en-us/explore/global-infrastructure/geographies/), [Google Cloud](https://cloud.google.com/compute/docs/regions-zones), [Oracle Cloud Infrastructure](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm), [OVHcloud](https://eco.ovhcloud.com/en-ie/our-commitments/global-infrastructure/), and [Scaleway](https://www.scaleway.com/en/docs/console/my-project/how-to/view-the-list-of-scaleway-regions-and-availability-zones/)
61
+ - manufacturer and hardware reference sources for CPUs and accelerators
62
+ - provider sustainability disclosures used for `pue`, `wue`, and `ref`, including [AWS regional PUE/WUE](https://sustainability.aboutamazon.com/aws-wue-pue.csv), Microsoft regional fact sheets via [datacenters.microsoft.com](https://datacenters.microsoft.com/sustainability/efficiency/), [Google Cloud regional CFE%](https://cloud.google.com/sustainability/region-carbon), Oracle's [Corporate Citizenship Report](https://www.oracle.com/a/ocom/docs/corporate/citizenship/oracle-corp-citizenship-report-3941904.pdf), [OVHcloud FY25 KPIs](https://www.ovhcloud.com/sites/default/files/external_files/kpis_fy25.pdf) and [methodology note](https://corporate.ovhcloud.com/sites/default/files/2025-10/methodology_-_environmental_impact_tracker_fr.pdf), and Scaleway's [calculation reference values](https://www.scaleway.com/en/docs/environmental-footprint/additional-content/calculation-values-reference/) and [impact reports](https://www-uploads.scaleway.com/Impact_Report2024_A4_EN_9a7bd88445.pdf)
70
63
 
71
- ## Impacts of ICT equipment manufacturing (embodied)
64
+ Current cloud assumptions kept in the datasets:
72
65
 
73
- The environmental impacts associated with the manufacture of each of these equipment categories : mobile, desktop, network mobile, network fixed, vm small, vm medium, vm large.
66
+ - `aws`: `pue` and `wue` come from the 2024 AWS regional CSV; `ref` stays at `0` because AWS public renewable matching disclosures are not used as a region-level factor in this referential
67
+ - `azure`: values come from Microsoft regional fact sheets, combining still-live PDFs with previously curated factsheet values for regions whose older PDFs are no longer publicly retrievable
68
+ - `gcp`: `ref` comes from regional `CFE%`; `wue` comes from previously derived values based on Google environmental reporting and is kept until Google publishes a clearer general regional water metric
69
+ - `oracle`: use a uniform `pue = 1.07` and provisional `wue = 0` until OCI publishes region-level metrics
70
+ - `ovhcloud`: follow FY25 KPI values for `pue`, `wue`, and `ref`
71
+ - `scaleway`: values come from documented datacenter figures, completed where needed with the provider's impact reports
74
72
 
75
- ### Environmental impact (equipment-impacts)
73
+ ### Electricity Mix And Impact Factors
76
74
 
77
- | Impact | Unit | Description |
78
- |---------|------------|-----------------------------------------------------------------|
79
- | ADPe | kg Sb-Eq | Abiotic Depletion Potential (Resource use, minerals and metals) |
80
- | AP | kg SO2-Eq | Acidification Power |
81
- | CTUe | CTUe | Comparative Toxic Unit (Ecotoxicity, freshwater) |
82
- | CTUh-c | CTUh | Comparative Toxic Unit (Human, cancer) |
83
- | CTUh-nc | CTUh | Comparative Toxic Unit (Human, non-cancer) |
84
- | GWP | kg CO2-Eq | Global Warming Potential (Climate change) |
85
- | IR | kg U235-Eq | Ionising Radiation (human health) |
86
- | PM | Disease | Particulate Matter emission |
87
- | WU | m3 Water | Water use |
75
+ The datasets in [`data/mix`](./data/mix) and [`data/factor`](./data/factor) help translate electricity consumption into environmental impacts.
88
76
 
89
- ## Impacts of energy production (energy)
77
+ They are available at several levels:
90
78
 
91
- The environmental impacts associated with each of these energy production technologies: coal, gas, other fossil fuels, wind, solar, bioenergy, hydropower, other renewables, nuclear.
79
+ - world
80
+ - continent
81
+ - country
82
+ - subdivision
92
83
 
93
- ### Environmental impact (energy-impacts)
84
+ And across different time granularities:
94
85
 
95
- | Impact | Unit | Description |
96
- |---------|------------|-----------------------------------------------------------------|
97
- | ADPe | kg Sb-Eq | Abiotic Depletion Potential (Resource use, minerals and metals) |
98
- | AP | kg SO2-Eq | Acidification Power |
99
- | CTUe | CTUe | Comparative Toxic Unit (Ecotoxicity, freshwater) |
100
- | CTUh-c | CTUh | Comparative Toxic Unit (Human, cancer) |
101
- | CTUh-nc | CTUh | Comparative Toxic Unit (Human, non-cancer) |
102
- | GWP | kg CO2-Eq | Global Warming Potential (Climate change) |
103
- | IR | kg U235-Eq | Ionising Radiation (human health) |
104
- | PM | Disease | Particulate Matter emission |
105
- | WU | m3 Water | Water use |
86
+ - yearly
87
+ - monthly
106
88
 
107
- ### Source
89
+ Green-only variants are also available through files ending with `-green`.
108
90
 
109
- The impact data for each electricity generation technology per kWh come from various bibliographical sources. Due to the scarcity of such data in a global scope, an extrapolation is made and these values are generalized in our model.
91
+ Main source families:
110
92
 
111
- Source : Life cycle assessment of electricity generation options, UNECE 2021 (1) et https://www.sciencedirect.com/science/article/pii/S0196890422008159#b0530 (2)
93
+ - electricity generation data from [Ember monthly electricity data](https://ember-climate.org/data-catalogue/monthly-electricity-data/) and [Ember yearly electricity data](https://ember-climate.org/data-catalogue/yearly-electricity-data/)
94
+ - impact factors built from lifecycle assessment literature, including [UNECE 2021 - Life cycle assessment of electricity generation options](https://unece.org/sed/documents/2021/10/reports/life-cycle-assessment-electricity-generation-options) and related academic work such as [this Energy paper](https://www.sciencedirect.com/science/article/pii/S0196890422008159#b0530)
112
95
 
113
- ## Impact factors (factor)
96
+ ### Geography And Distances
114
97
 
115
- These data represent the environmental impact factors of one kWh of electricity consumption (not production) in each country, continent or worldwide.
116
- The amount of energy imported by each country is taken into account to adjust these factors.
98
+ The datasets in [`data/country`](./data/country) provide geographic referentials used to map countries, continents, subdivisions, and estimated network distances.
117
99
 
118
- ### Data generation
100
+ Typical use cases:
119
101
 
120
- Impact factors are determined by country according to the national energy mix, as well as the environmental impacts associated with each of energy production sources (see Environmental impacts).
102
+ - geographic normalization
103
+ - country and subdivision mapping
104
+ - rough estimation of distances between users, countries, regions, and datacenters
121
105
 
122
- Factors are generated on an annual and monthly basis starting in January 2019.
106
+ Main source families:
123
107
 
124
- Files ending with the suffix `-green` contain impact factors for green energies only (bioenergy, hydro, solar and wind).
108
+ - ISO country and subdivision standards
109
+ - internally maintained geographic referentials used to derive administrative mappings and distance approximations
125
110
 
126
- ### Source
111
+ ### Equipment Reference Data
127
112
 
128
- Our energy mix data for all countries are taken from https://ember-climate.org/.
113
+ The datasets in [`data/equipment`](./data/equipment) provide reference values for embodied impacts and operational energy of common digital equipment categories.
129
114
 
130
- - Monthly : https://ember-climate.org/data-catalogue/monthly-electricity-data/
131
- - Yearly : https://ember-climate.org/data-catalogue/yearly-electricity-data/
115
+ Typical use cases:
132
116
 
117
+ - footprint modeling at equipment level
118
+ - simplified lifecycle modeling for digital services
119
+ - comparative analysis of device or infrastructure categories
120
+
121
+ Main source families:
122
+
123
+ - Digital4Better internal modeling inputs
124
+ - lifecycle assessment literature and equipment reference datasets used for sustainability calculations
125
+
126
+ ## Formats
127
+
128
+ Most collections are published in both formats:
129
+
130
+ - `JSON` for structured or nested data
131
+ - `CSV` for tabular exploration, spreadsheets, and BI tools
132
+
133
+ If a collection is only available in one format, it is usually because that format is the most natural one for the data structure.
134
+
135
+ ## Quick Navigation
136
+
137
+ - AI models: [`data/ai/models.json`](./data/ai/models.json)
138
+ - Cloud regions: [`data/cloud`](./data/cloud)
139
+ - Country and region referentials: [`data/country`](./data/country)
140
+ - Energy impacts: [`data/energy/energy-impacts.json`](./data/energy/energy-impacts.json)
141
+ - Electricity mix: [`data/mix`](./data/mix)
142
+ - Electricity factors: [`data/factor`](./data/factor)
143
+ - Equipment data: [`data/equipment`](./data/equipment)
144
+
145
+ ## Notes On Data Quality
146
+
147
+ This repository aims to provide transparent and reusable reference data, but some values should be interpreted with care.
148
+
149
+ - Some fields are derived from public documentation, model cards, technical reports, or literature rather than official disclosures.
150
+ - Some collections include explicit uncertainty markers such as `estimated`.
151
+ - AI and cloud catalogs evolve quickly, so historical and legacy entries may coexist with current ones.
152
+ - Environmental factors are based on a mix of primary data, literature, and modeling assumptions.
153
+
154
+ When available, source URLs are kept directly in the data files themselves.
155
+
156
+ ## Related Links
157
+
158
+ - GitHub repository: [digital4better/data](https://github.com/digital4better/data)
159
+ - Digital4Better: [digital4better.com](https://digital4better.com)
160
+ - fruggr: [fruggr.io](https://www.fruggr.io)
161
+ - Contributing guide: [CONTRIBUTING.md](./CONTRIBUTING.md)
162
+
163
+ ## License
164
+
165
+ This repository is published under the [ODC Open Database License (ODbL)](./LICENCE).
@@ -36,3 +36,4 @@ nvidia-tesla-t4,gpu,nvidia,tesla,t4,turing,2560,16,70,12,545,13600
36
36
  nvidia-tesla-v10016,gpu,nvidia,tesla,v100,volta,5120,16,250,12,815,21100
37
37
  nvidia-tesla-v10032,gpu,nvidia,tesla,v100,volta,5120,32,250,12,815,21100
38
38
  qualcomm-ai100-standard,asic,qualcomm,ai100,standard,cloud ai,16,16,75,7,0,0
39
+ amd-radeon-mi355x,gpu,amd,radeon,mi355x,instinct,,288,,,,
@@ -516,5 +516,14 @@
516
516
  "process": 7,
517
517
  "die": 0,
518
518
  "transistors": 0
519
+ },
520
+ {
521
+ "id": "amd-radeon-mi355x",
522
+ "type": "gpu",
523
+ "manufacturer": "amd",
524
+ "serie": "radeon",
525
+ "model": "mi355x",
526
+ "platform": "instinct",
527
+ "memory": 288
519
528
  }
520
529
  ]
@@ -1,33 +1,33 @@
1
1
  id,name,provider,lat,lon,location,country,subdivision,pue,wue,ref
2
- af-south-1,af-south-1,aws,-33.93,18.42,Cape Town,za,,1.135,0.18,0
3
- ap-east-1,ap-east-1,aws,22.27,114.16,Hong Kong,hk,,1.135,0.18,0
4
- ap-south-1,ap-south-1,aws,19.08,72.88,Mumbai,in,,1.135,0.18,0
5
- ap-south-2,ap-south-2,aws,17.387,78.492,Hyderabad,in,,1.135,0.18,0
6
- ap-northeast-1,ap-south-1,aws,35.41,139.42,Tokyo,jp,,1.135,0.18,0
7
- ap-northeast-2,ap-northeast-2,aws,37.56,126.98,Seoul,kr,,1.135,0.18,0
8
- ap-northeast-3,ap-northeast-3,aws,34.69,135.49,Osaka,jp,,1.135,0.18,0
9
- ap-southeast-1,ap-southeast-1,aws,1.37,103.8,Singapore,sg,,1.135,0.18,0
10
- ap-southeast-2,ap-southeast-2,aws,-33.86,151.2,Sydney,au,,1.135,0.18,0
11
- ap-southeast-3,ap-southeast-3,aws,-6.2,106.817,Jakarta,id,,1.135,0.18,0
12
- ap-southeast-4,ap-southeast-4,aws,-37.841,144.946,Melbourne,au,,1.135,0.18,0
13
- ap-southeast-5,ap-southeast-5,aws,3.141,101.693,Malaysia,my,,1.135,0.18,0
14
- ca-central-1,ca-central-1,aws,45.5,-73.6,Montreal,ca,qc,1.135,0.18,0
15
- ca-west-1,ca-west-1,aws,51.05,-114.067,Calgary,ca,ab,1.135,0.18,0
16
- cn-north-1,cn-north-1,aws,40,116.4,Beijing,cn,,1.135,0.18,0
17
- cn-northwest-1,cn-northwest-1,aws,37,106,Ningxia,cn,,1.135,0.18,0
18
- eu-central-1,eu-central-1,aws,50,8,Frankfurt,de,,1.135,0.18,0
19
- eu-central-2,eu-central-2,aws,47.451542,8.564572,Zurich,ch,,1.135,0.18,0
20
- eu-north-1,eu-north-1,aws,59.25,17.81,Stockholm,se,,1.135,0.18,0
21
- eu-south-1,eu-south-1,aws,45.43,9.29,Milan,it,,1.135,0.18,0
22
- eu-south-2,eu-south-2,aws,41.65,-0.89,Zaragoza,es,,1.135,0.18,0
23
- eu-west-1,eu-west-1,aws,53,-8,Dublin,ie,,1.135,0.18,0
24
- eu-west-2,eu-west-2,aws,51,-0.1,London,gb,,1.135,0.18,0
25
- eu-west-3,eu-west-3,aws,48.86,2.35,Paris,fr,,1.135,0.18,0
26
- il-central-1,il-central-1,aws,32.085,34.782,Tel Aviv,il,,1.135,0.18,0
27
- me-central-1,me-central-1,aws,24.466667,54.366669,Abu Dhabi,ae,,1.135,0.18,0
28
- me-south-1,me-south-1,aws,26.1,50.46,Bahrain,bh,,1.135,0.18,0
29
- sa-east-1,sa-east-1,aws,-23.34,-46.38,Sao Paulo,br,,1.135,0.18,0
30
- us-east-1,us-east-1,aws,38.13,-78.45,Ashburn,us,va,1.135,0.18,0
31
- us-east-2,us-east-2,aws,39.96,-83,Hilliard,us,oh,1.135,0.18,0
32
- us-west-1,us-west-1,aws,37.35,-121.96,San Jose,us,ca,1.135,0.18,0
33
- us-west-2,us-west-2,aws,46.15,-123.88,Madras,us,or,1.135,0.18,0
2
+ af-south-1,af-south-1,aws,-33.93,18.42,Cape Town,za,,1.24,0.15,0
3
+ ap-east-1,ap-east-1,aws,22.27,114.16,Hong Kong,hk,,1.15,0.15,0
4
+ ap-south-1,ap-south-1,aws,19.08,72.88,Mumbai,in,,1.42,0.15,0
5
+ ap-south-2,ap-south-2,aws,17.387,78.492,Hyderabad,in,,1.46,0.15,0
6
+ ap-northeast-1,ap-south-1,aws,35.41,139.42,Tokyo,jp,,1.27,0.91,0
7
+ ap-northeast-2,ap-northeast-2,aws,37.56,126.98,Seoul,kr,,1.15,0.15,0
8
+ ap-northeast-3,ap-northeast-3,aws,34.69,135.49,Osaka,jp,,1.15,0.15,0
9
+ ap-southeast-1,ap-southeast-1,aws,1.37,103.8,Singapore,sg,,1.32,1.68,0
10
+ ap-southeast-2,ap-southeast-2,aws,-33.86,151.2,Sydney,au,,1.15,0.12,0
11
+ ap-southeast-3,ap-southeast-3,aws,-6.2,106.817,Jakarta,id,,1.4,2.75,0
12
+ ap-southeast-4,ap-southeast-4,aws,-37.841,144.946,Melbourne,au,,1.15,0.02,0
13
+ ap-southeast-5,ap-southeast-5,aws,3.141,101.693,Malaysia,my,,1.15,0.15,0
14
+ ca-central-1,ca-central-1,aws,45.5,-73.6,Montreal,ca,qc,1.19,0.04,0
15
+ ca-west-1,ca-west-1,aws,51.05,-114.067,Calgary,ca,ab,1.17,0.08,0
16
+ cn-north-1,cn-north-1,aws,40,116.4,Beijing,cn,,1.15,0.15,0
17
+ cn-northwest-1,cn-northwest-1,aws,37,106,Ningxia,cn,,1.25,0.15,0
18
+ eu-central-1,eu-central-1,aws,50,8,Frankfurt,de,,1.35,0.01,0
19
+ eu-central-2,eu-central-2,aws,47.451542,8.564572,Zurich,ch,,1.15,0.15,0
20
+ eu-north-1,eu-north-1,aws,59.25,17.81,Stockholm,se,,1.1,0.02,0
21
+ eu-south-1,eu-south-1,aws,45.43,9.29,Milan,it,,1.15,0.15,0
22
+ eu-south-2,eu-south-2,aws,41.65,-0.89,Zaragoza,es,,1.09,0.24,0
23
+ eu-west-1,eu-west-1,aws,53,-8,Dublin,ie,,1.11,0.03,0
24
+ eu-west-2,eu-west-2,aws,51,-0.1,London,gb,,1.15,0.15,0
25
+ eu-west-3,eu-west-3,aws,48.86,2.35,Paris,fr,,1.15,0.15,0
26
+ il-central-1,il-central-1,aws,32.085,34.782,Tel Aviv,il,,1.15,0.15,0
27
+ me-central-1,me-central-1,aws,24.466667,54.366669,Abu Dhabi,ae,,1.27,0.15,0
28
+ me-south-1,me-south-1,aws,26.1,50.46,Bahrain,bh,,1.33,0.15,0
29
+ sa-east-1,sa-east-1,aws,-23.34,-46.38,Sao Paulo,br,,1.17,0.23,0
30
+ us-east-1,us-east-1,aws,39.043719,-77.48749,Ashburn,us,va,1.15,0.12,0
31
+ us-east-2,us-east-2,aws,39.96,-83,Hilliard,us,oh,1.13,0.1,0
32
+ us-west-1,us-west-1,aws,37.35,-121.96,San Jose,us,ca,1.18,0.51,0
33
+ us-west-2,us-west-2,aws,46.15,-123.88,Madras,us,or,1.12,0.16,0