Skip to content

Instantly share code, notes, and snippets.

@maskati
Last active September 7, 2023 12:47
Show Gist options
  • Save maskati/b454a7c9478fc153dfe62ac7547d5d0a to your computer and use it in GitHub Desktop.
Save maskati/b454a7c9478fc153dfe62ac7547d5d0a to your computer and use it in GitHub Desktop.

This script retrieves published Azure location information and transforms it into GeoJSON format, with Point features indicating Azure regions and LineString features indicating links between paired regions.

$locations=az account list-locations --query "[?metadata.regionType=='Physical']"|convertfrom-json
@{type='FeatureCollection';features=$($locations|?{$_.metadata.pairedRegion.count -eq 1}|%{$r=$_;$p=$locations|?{$_.name -eq $r.metadata.pairedRegion[0].name}|select -first 1;if($null -ne $p -and -not (($r.metadata.longitude -eq 0 -and $r.metadata.latitude -eq 0) -or ($p.metadata.longitude -eq 0 -and $p.metadata.latitude -eq 0))){@{type='Feature';properties=@{region=$r.name;paired=$p.name};geometry=@{type='LineString';coordinates=@(@([double]$r.metadata.longitude,[double]$r.metadata.latitude),@([double]$p.metadata.longitude,[double]$p.metadata.latitude))}}}})+$($locations|?{-not ($_.metadata.longitude -eq 0 -and $_.metadata.latitude -eq 0)}|%{@{type='Feature';properties=@{name=$_.name;displayName=$_.displayName;physicalLocation=$_.metadata.physicalLocation;regionType=$_.metadata.regionType;regionCategory=$_.metadata.regionCategory;pairedRegions=($_.metadata.pairedRegion.name -join ',');'marker-symbol'='communications-tower'};geometry=@{coordinates=@([double]$_.metadata.longitude,[double]$_.metadata.latitude);type='Point'}}})}|convertto-json -depth 5 > azure-locations-map.geojson

An example output is included in azure-locations-map.geojson.

GitHub supports displaying GeoJSON files, but the map rendering is somewhat unstable (sometimes shows only blue, sometimes fixed by force refreshing the page). A better rendering of the same azure-locations-map.geojson can be viewed at geojson.io.

image

Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-79.8164,
37.3719
],
[
-122.417,
37.783
]
]
},
"properties": {
"region": "eastus",
"paired": "westus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-78.3889,
36.6681
],
[
-93.6208,
41.5908
]
]
},
"properties": {
"region": "eastus2",
"paired": "centralus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-98.5,
29.4167
],
[
-87.6278,
41.8819
]
]
},
"properties": {
"region": "southcentralus",
"paired": "northcentralus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-119.852,
47.233
],
[
-110.234,
40.89
]
]
},
"properties": {
"region": "westus2",
"paired": "westcentralus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-112.074036,
33.448376
],
[
-79.8164,
37.3719
]
]
},
"properties": {
"region": "westus3",
"paired": "eastus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
151.2094,
-33.86
],
[
144.9631,
-37.8136
]
]
},
"properties": {
"region": "australiaeast",
"paired": "australiasoutheast"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
103.833,
1.283
],
[
114.188,
22.267
]
]
},
"properties": {
"region": "southeastasia",
"paired": "eastasia"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-6.2597,
53.3478
],
[
4.9,
52.3667
]
]
},
"properties": {
"region": "northeurope",
"paired": "westeurope"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-0.799,
50.941
],
[
-3.084,
53.427
]
]
},
"properties": {
"region": "uksouth",
"paired": "ukwest"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
4.9,
52.3667
],
[
-6.2597,
53.3478
]
]
},
"properties": {
"region": "westeurope",
"paired": "northeurope"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-93.6208,
41.5908
],
[
-78.3889,
36.6681
]
]
},
"properties": {
"region": "centralus",
"paired": "eastus2"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
28.21837,
-25.73134
],
[
18.843266,
-34.075691
]
]
},
"properties": {
"region": "southafricanorth",
"paired": "southafricawest"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
73.9197,
18.5822
],
[
80.1636,
12.9822
]
]
},
"properties": {
"region": "centralindia",
"paired": "southindia"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
114.188,
22.267
],
[
103.833,
1.283
]
]
},
"properties": {
"region": "eastasia",
"paired": "southeastasia"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
139.77,
35.68
],
[
135.5022,
34.6939
]
]
},
"properties": {
"region": "japaneast",
"paired": "japanwest"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
126.978,
37.5665
],
[
129.0756,
35.1796
]
]
},
"properties": {
"region": "koreacentral",
"paired": "koreasouth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-79.383,
43.653
],
[
-71.217,
46.817
]
]
},
"properties": {
"region": "canadacentral",
"paired": "canadaeast"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
2.373,
46.3772
],
[
2.1972,
43.8345
]
]
},
"properties": {
"region": "francecentral",
"paired": "francesouth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
8.682127,
50.110924
],
[
8.806422,
53.073635
]
]
},
"properties": {
"region": "germanywestcentral",
"paired": "germanynorth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
10.752245,
59.913868
],
[
5.733107,
58.969975
]
]
},
"properties": {
"region": "norwayeast",
"paired": "norwaywest"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
8.564572,
47.451542
],
[
6.143158,
46.204391
]
]
},
"properties": {
"region": "switzerlandnorth",
"paired": "switzerlandwest"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
55.316666,
25.266666
],
[
54.366669,
24.466667
]
]
},
"properties": {
"region": "uaenorth",
"paired": "uaecentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-46.633,
-23.55
],
[
-98.5,
29.4167
]
]
},
"properties": {
"region": "brazilsouth",
"paired": "southcentralus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-93.6208,
41.5908
],
[
-78.3889,
36.6681
]
]
},
"properties": {
"region": "centraluseuap",
"paired": "eastus2euap"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-79.8164,
37.3719
],
[
-98.5,
29.4167
]
]
},
"properties": {
"region": "eastusstg",
"paired": "southcentralusstg"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-87.6278,
41.8819
],
[
-98.5,
29.4167
]
]
},
"properties": {
"region": "northcentralus",
"paired": "southcentralus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-122.417,
37.783
],
[
-79.8164,
37.3719
]
]
},
"properties": {
"region": "westus",
"paired": "eastus"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
70.05773,
22.470701
],
[
79.08886,
21.146633
]
]
},
"properties": {
"region": "jioindiawest",
"paired": "jioindiacentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-78.3889,
36.6681
],
[
-93.6208,
41.5908
]
]
},
"properties": {
"region": "eastus2euap",
"paired": "centraluseuap"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-98.5,
29.4167
],
[
-79.8164,
37.3719
]
]
},
"properties": {
"region": "southcentralusstg",
"paired": "eastusstg"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-110.234,
40.89
],
[
-119.852,
47.233
]
]
},
"properties": {
"region": "westcentralus",
"paired": "westus2"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
18.843266,
-34.075691
],
[
28.21837,
-25.73134
]
]
},
"properties": {
"region": "southafricawest",
"paired": "southafricanorth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
149.1244,
-35.3075
],
[
149.1244,
-35.3075
]
]
},
"properties": {
"region": "australiacentral",
"paired": "australiacentral2"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
149.1244,
-35.3075
],
[
149.1244,
-35.3075
]
]
},
"properties": {
"region": "australiacentral2",
"paired": "australiacentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
144.9631,
-37.8136
],
[
151.2094,
-33.86
]
]
},
"properties": {
"region": "australiasoutheast",
"paired": "australiaeast"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
135.5022,
34.6939
],
[
139.77,
35.68
]
]
},
"properties": {
"region": "japanwest",
"paired": "japaneast"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
79.08886,
21.146633
],
[
70.05773,
22.470701
]
]
},
"properties": {
"region": "jioindiacentral",
"paired": "jioindiawest"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
129.0756,
35.1796
],
[
126.978,
37.5665
]
]
},
"properties": {
"region": "koreasouth",
"paired": "koreacentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
80.1636,
12.9822
],
[
73.9197,
18.5822
]
]
},
"properties": {
"region": "southindia",
"paired": "centralindia"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
72.868,
19.088
],
[
80.1636,
12.9822
]
]
},
"properties": {
"region": "westindia",
"paired": "southindia"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-71.217,
46.817
],
[
-79.383,
43.653
]
]
},
"properties": {
"region": "canadaeast",
"paired": "canadacentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
2.1972,
43.8345
],
[
2.373,
46.3772
]
]
},
"properties": {
"region": "francesouth",
"paired": "francecentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
8.806422,
53.073635
],
[
8.682127,
50.110924
]
]
},
"properties": {
"region": "germanynorth",
"paired": "germanywestcentral"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
5.733107,
58.969975
],
[
10.752245,
59.913868
]
]
},
"properties": {
"region": "norwaywest",
"paired": "norwayeast"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
6.143158,
46.204391
],
[
8.564572,
47.451542
]
]
},
"properties": {
"region": "switzerlandwest",
"paired": "switzerlandnorth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-3.084,
53.427
],
[
-0.799,
50.941
]
]
},
"properties": {
"region": "ukwest",
"paired": "uksouth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
54.366669,
24.466667
],
[
55.316666,
25.266666
]
]
},
"properties": {
"region": "uaecentral",
"paired": "uaenorth"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-43.2075,
-22.90278
],
[
-46.633,
-23.55
]
]
},
"properties": {
"region": "brazilsoutheast",
"paired": "brazilsouth"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8164,
37.3719
]
},
"properties": {
"pairedRegions": "westus",
"displayName": "East US",
"physicalLocation": "Virginia",
"name": "eastus",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.3889,
36.6681
]
},
"properties": {
"pairedRegions": "centralus",
"displayName": "East US 2",
"physicalLocation": "Virginia",
"name": "eastus2",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-98.5,
29.4167
]
},
"properties": {
"pairedRegions": "northcentralus",
"displayName": "South Central US",
"physicalLocation": "Texas",
"name": "southcentralus",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.852,
47.233
]
},
"properties": {
"pairedRegions": "westcentralus",
"displayName": "West US 2",
"physicalLocation": "Washington",
"name": "westus2",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.074036,
33.448376
]
},
"properties": {
"pairedRegions": "eastus",
"displayName": "West US 3",
"physicalLocation": "Phoenix",
"name": "westus3",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
151.2094,
-33.86
]
},
"properties": {
"pairedRegions": "australiasoutheast",
"displayName": "Australia East",
"physicalLocation": "New South Wales",
"name": "australiaeast",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.833,
1.283
]
},
"properties": {
"pairedRegions": "eastasia",
"displayName": "Southeast Asia",
"physicalLocation": "Singapore",
"name": "southeastasia",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.2597,
53.3478
]
},
"properties": {
"pairedRegions": "westeurope",
"displayName": "North Europe",
"physicalLocation": "Ireland",
"name": "northeurope",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
17.14127,
60.67488
]
},
"properties": {
"pairedRegions": "swedensouth",
"displayName": "Sweden Central",
"physicalLocation": "Gävle",
"name": "swedencentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-0.799,
50.941
]
},
"properties": {
"pairedRegions": "ukwest",
"displayName": "UK South",
"physicalLocation": "London",
"name": "uksouth",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.9,
52.3667
]
},
"properties": {
"pairedRegions": "northeurope",
"displayName": "West Europe",
"physicalLocation": "Netherlands",
"name": "westeurope",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-93.6208,
41.5908
]
},
"properties": {
"pairedRegions": "eastus2",
"displayName": "Central US",
"physicalLocation": "Iowa",
"name": "centralus",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
28.21837,
-25.73134
]
},
"properties": {
"pairedRegions": "southafricawest",
"displayName": "South Africa North",
"physicalLocation": "Johannesburg",
"name": "southafricanorth",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
73.9197,
18.5822
]
},
"properties": {
"pairedRegions": "southindia",
"displayName": "Central India",
"physicalLocation": "Pune",
"name": "centralindia",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
114.188,
22.267
]
},
"properties": {
"pairedRegions": "southeastasia",
"displayName": "East Asia",
"physicalLocation": "Hong Kong",
"name": "eastasia",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
139.77,
35.68
]
},
"properties": {
"pairedRegions": "japanwest",
"displayName": "Japan East",
"physicalLocation": "Tokyo, Saitama",
"name": "japaneast",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
126.978,
37.5665
]
},
"properties": {
"pairedRegions": "koreasouth",
"displayName": "Korea Central",
"physicalLocation": "Seoul",
"name": "koreacentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.383,
43.653
]
},
"properties": {
"pairedRegions": "canadaeast",
"displayName": "Canada Central",
"physicalLocation": "Toronto",
"name": "canadacentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.373,
46.3772
]
},
"properties": {
"pairedRegions": "francesouth",
"displayName": "France Central",
"physicalLocation": "Paris",
"name": "francecentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
8.682127,
50.110924
]
},
"properties": {
"pairedRegions": "germanynorth",
"displayName": "Germany West Central",
"physicalLocation": "Frankfurt",
"name": "germanywestcentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.18109,
45.46888
]
},
"properties": {
"pairedRegions": "",
"displayName": "Italy North",
"physicalLocation": "Milan",
"name": "italynorth",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
10.752245,
59.913868
]
},
"properties": {
"pairedRegions": "norwaywest",
"displayName": "Norway East",
"physicalLocation": "Norway",
"name": "norwayeast",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
21.01666,
52.23334
]
},
"properties": {
"pairedRegions": "",
"displayName": "Poland Central",
"physicalLocation": "Warsaw",
"name": "polandcentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
8.564572,
47.451542
]
},
"properties": {
"pairedRegions": "switzerlandwest",
"displayName": "Switzerland North",
"physicalLocation": "Zurich",
"name": "switzerlandnorth",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.316666,
25.266666
]
},
"properties": {
"pairedRegions": "uaecentral",
"displayName": "UAE North",
"physicalLocation": "Dubai",
"name": "uaenorth",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-46.633,
-23.55
]
},
"properties": {
"pairedRegions": "southcentralus",
"displayName": "Brazil South",
"physicalLocation": "Sao Paulo State",
"name": "brazilsouth",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-93.6208,
41.5908
]
},
"properties": {
"pairedRegions": "eastus2euap",
"displayName": "Central US EUAP",
"physicalLocation": "",
"name": "centraluseuap",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.439327,
25.551462
]
},
"properties": {
"pairedRegions": "",
"displayName": "Qatar Central",
"physicalLocation": "Doha",
"name": "qatarcentral",
"regionType": "Physical",
"regionCategory": "Recommended",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8164,
37.3719
]
},
"properties": {
"pairedRegions": "southcentralusstg",
"displayName": "East US STG",
"physicalLocation": "Virginia",
"name": "eastusstg",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.6278,
41.8819
]
},
"properties": {
"pairedRegions": "southcentralus",
"displayName": "North Central US",
"physicalLocation": "Illinois",
"name": "northcentralus",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.417,
37.783
]
},
"properties": {
"pairedRegions": "eastus",
"displayName": "West US",
"physicalLocation": "California",
"name": "westus",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
70.05773,
22.470701
]
},
"properties": {
"pairedRegions": "jioindiacentral",
"displayName": "Jio India West",
"physicalLocation": "Jamnagar",
"name": "jioindiawest",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.3889,
36.6681
]
},
"properties": {
"pairedRegions": "centraluseuap",
"displayName": "East US 2 EUAP",
"physicalLocation": "",
"name": "eastus2euap",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-98.5,
29.4167
]
},
"properties": {
"pairedRegions": "eastusstg",
"displayName": "South Central US STG",
"physicalLocation": "Texas",
"name": "southcentralusstg",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-110.234,
40.89
]
},
"properties": {
"pairedRegions": "westus2",
"displayName": "West Central US",
"physicalLocation": "Wyoming",
"name": "westcentralus",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
18.843266,
-34.075691
]
},
"properties": {
"pairedRegions": "southafricanorth",
"displayName": "South Africa West",
"physicalLocation": "Cape Town",
"name": "southafricawest",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
149.1244,
-35.3075
]
},
"properties": {
"pairedRegions": "australiacentral2",
"displayName": "Australia Central",
"physicalLocation": "Canberra",
"name": "australiacentral",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
149.1244,
-35.3075
]
},
"properties": {
"pairedRegions": "australiacentral",
"displayName": "Australia Central 2",
"physicalLocation": "Canberra",
"name": "australiacentral2",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
144.9631,
-37.8136
]
},
"properties": {
"pairedRegions": "australiaeast",
"displayName": "Australia Southeast",
"physicalLocation": "Victoria",
"name": "australiasoutheast",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
135.5022,
34.6939
]
},
"properties": {
"pairedRegions": "japaneast",
"displayName": "Japan West",
"physicalLocation": "Osaka",
"name": "japanwest",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
79.08886,
21.146633
]
},
"properties": {
"pairedRegions": "jioindiawest",
"displayName": "Jio India Central",
"physicalLocation": "Nagpur",
"name": "jioindiacentral",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
129.0756,
35.1796
]
},
"properties": {
"pairedRegions": "koreacentral",
"displayName": "Korea South",
"physicalLocation": "Busan",
"name": "koreasouth",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
80.1636,
12.9822
]
},
"properties": {
"pairedRegions": "centralindia",
"displayName": "South India",
"physicalLocation": "Chennai",
"name": "southindia",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
72.868,
19.088
]
},
"properties": {
"pairedRegions": "southindia",
"displayName": "West India",
"physicalLocation": "Mumbai",
"name": "westindia",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.217,
46.817
]
},
"properties": {
"pairedRegions": "canadacentral",
"displayName": "Canada East",
"physicalLocation": "Quebec",
"name": "canadaeast",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.1972,
43.8345
]
},
"properties": {
"pairedRegions": "francecentral",
"displayName": "France South",
"physicalLocation": "Marseille",
"name": "francesouth",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
8.806422,
53.073635
]
},
"properties": {
"pairedRegions": "germanywestcentral",
"displayName": "Germany North",
"physicalLocation": "Berlin",
"name": "germanynorth",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.733107,
58.969975
]
},
"properties": {
"pairedRegions": "norwayeast",
"displayName": "Norway West",
"physicalLocation": "Norway",
"name": "norwaywest",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.143158,
46.204391
]
},
"properties": {
"pairedRegions": "switzerlandnorth",
"displayName": "Switzerland West",
"physicalLocation": "Geneva",
"name": "switzerlandwest",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.084,
53.427
]
},
"properties": {
"pairedRegions": "uksouth",
"displayName": "UK West",
"physicalLocation": "Cardiff",
"name": "ukwest",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
54.366669,
24.466667
]
},
"properties": {
"pairedRegions": "uaenorth",
"displayName": "UAE Central",
"physicalLocation": "Abu Dhabi",
"name": "uaecentral",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-43.2075,
-22.90278
]
},
"properties": {
"pairedRegions": "brazilsouth",
"displayName": "Brazil Southeast",
"physicalLocation": "Rio",
"name": "brazilsoutheast",
"regionType": "Physical",
"regionCategory": "Other",
"marker-symbol": "communications-tower"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment