diff --git a/.gitignore b/.gitignore index 52e1b1d..331c67f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ openskycredentials.json .env # Generated by ais_bridge.py — live data, never committed. ais_snapshot.json +# Vendored upstream open-source release (reference only, 88MB — never commit) +gods-eye-view-main/ diff --git a/COMPARISON.md b/COMPARISON.md new file mode 100644 index 0000000..80ed495 --- /dev/null +++ b/COMPARISON.md @@ -0,0 +1,71 @@ +# GODSIGH vs. the open-sourced God's Eye View + +*2026-08-25 — Bilawal Sidhu open-sourced the real +[God's Eye View](https://github.com/bilawalsidhu/gods-eye-view) (vendored here +at `gods-eye-view-main/`, gitignored). GODSIGH was our guess at it, built from +the YouTube videos alone. This is the honest side-by-side, and the record of +what we ported in Wave 4.* + +## Architecture — two different bets + +| | GODSIGH (ours) | God's Eye View (theirs) | +|---|---|---| +| Size | ~2,400 lines, 12 modules | ~300 modules + per-module test files | +| Build | none — ES modules + 2 CDN globals | Vite, Node 24/26 enforced | +| Globe | CARTO dark / EOX Sentinel-2 raster (keyless) | **Google Photorealistic 3D Tiles** (metered 🔴 key required) | +| Entry fee | $0, zero keys | Google Maps key mandatory; OpenAI key for voice | +| Server | stdlib `serve.py` proxy + shared OpenSky cache | Vite dev server + key-brokering proxies, rate limits | +| Testing | none | huge `.test.mjs` suite + QA screenshot scripts | +| Focus | **one theater, one timeline** (Persian Gulf OSINT, scrubbable ±6h) | **the whole planet as a place** (photoreal, cinematic, voice-driven) | + +The big divergence: we guessed "OSINT analysis console" (time scrubbing, +replay, choke points, dark vessels); the real one is an "experience" (cockpit +rides, voice agent, sensor skins, cinematic scenes). Their README even concedes +our corner: *"the moment you try to go back in time… the data gets expensive"* +— our timeline/replay/record.py stack is the thing they explicitly didn't build. + +## Feature matrix + +| Feature | Theirs | Ours before | Ours now (Wave 4) | +|---|---|---|---| +| Live aircraft (OpenSky + adsb.lol) | ✅ | ✅ | ✅ | +| Military ADS-B | ✅ | ✅ | ✅ | +| Satellites (SGP4) | ~840 + Starlink chip | ~97 curated recon/EO | unchanged (curated > bulk for our theater) | +| Earthquakes / fires / launches | ✅ | ✅ (+GDACS, NWS, RFS they lack) | ✅ | +| **Timeline scrub + aircraft replay** | ❌ | ✅ | ✅ — still our moat | +| Demo ship analytics (AIS-gap, toll route) | live AIS only | ✅ | ✅ | +| **Smooth motion between polls** | ✅ interpolation | ❌ planes teleported every 90 s | ✅ dead reckoning, aircraft + military | +| **Sensor styles (NVG/FLIR/CRT GLSL)** | ✅ 6 styles + uniforms | ❌ | ✅ 3 compact post-process styles, keys `1–4`, in share links | +| **Submarine cables** | ✅ bundled TeleGeography | ❌ | ✅ 712 cables + 1,917 landings | +| **Datacenters / dams** | ✅ bundled OSM | ❌ | ✅ 4,351 + 704 as registry layers | +| Voice agent (28 tools) | ✅ OpenAI Realtime 🔴 | ❌ | skipped — needs paid key, against our zero-key rule | +| Cockpit / contacts / 3D hangar | ✅ | ❌ | skipped — built on Google 3D tiles 🔴 | +| CCTV projected into 3D | ✅ | ❌ | skipped — same reason; flat raster has nothing to project onto | +| Traffic (TomTom), radio tuner, bikeshare | ✅ | ❌ | skipped/deferred — off-theater or key-gated | +| Detection overlay / military HUD | ✅ | ❌ | skipped — cosmetic without their photoreal globe | + +## What Wave 4 ported (all keyless, no build step) + +1. **Submarine cables** — their bundled TeleGeography GeoJSON, rendered by a + new [`js/layers/cables.js`](js/layers/cables.js). © TeleGeography, + CC BY-NC-SA 3.0 — non-commercial only, see [`assets/README.md`](assets/README.md). +2. **Datacenters + dams** — their OSM/Open Infrastructure Map snapshots, + collapsed to centroid points and dropped into the layer registry as two + data entries (ODbL, attributed). Off by default. +3. **Sensor styles** — NVG / FLIR-Ironbow / CRT as Cesium `PostProcessStage` + GLSL in [`js/styles.js`](js/styles.js), compacted from their style system. + Hotkeys `1–4`; serialized into share links as `s=`. +4. **Smooth motion** — their "render behind, interpolate" idea, done the lazy + way: `lib.deadReckon()` advances every billboard along its reported course + at 10 Hz between polls, live-only, capped at 5 min extrapolation. + +## Worth stealing later + +- **Trace-history backfill** — click a military contact, see its last ~24 h as + 3D loops. Feasible keyless via OpenSky `/tracks` through `serve.py`. +- **First-run missions** — their staged "first five minutes" onboarding card. +- **Their test culture** — per-module `.test.mjs`; ours has none. +- **Radio layer** — Radio Browser API is keyless and geolocated; audio-in- + InfoBox needs a spike. +- Natural Earth named-region polygons (public domain) if we ever want + "outline the Strait of Hormuz"-style annotation. diff --git a/README.md b/README.md index af70c4d..11bc5a9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # GODSIGH ▸ World View -A browser-based **3D/4D OSINT world view** — a CesiumJS digital-twin globe that fuses independent, public sensor feeds onto one scrubbable timeline. Satellite orbits, live aircraft, ship traffic, and energy infrastructure, all synced to a single space-time slider. Inspired by Bilawal Sidhu's *God's Eye View*. +A browser-based **3D/4D OSINT world view** — a CesiumJS digital-twin globe that fuses independent, public sensor feeds onto one scrubbable timeline. Satellite orbits, live aircraft, ship traffic, and energy infrastructure, all synced to a single space-time slider. Inspired by Bilawal Sidhu's *God's Eye View* — which has since been [open-sourced](https://github.com/bilawalsidhu/gods-eye-view); see [COMPARISON.md](COMPARISON.md) for our guess vs. the real thing, and what Wave 4 ported from it. Everything runs client-side from free, public, **unclassified** data. No API keys are required. No Cesium ion token. No build step. @@ -24,6 +24,8 @@ A dark digital-twin globe with the built-in Cesium **timeline + animation widget - **Data Mode** — a flat, high-contrast dark basemap for asset tracking (the default). - **Photo Mode** — Sentinel-2 satellite imagery with a live day/night terminator. +Below those, **sensor styles** (keys `1–4`): full-screen GLSL post-process skins ported from the open-sourced God's Eye View — **NVG** night vision, **FLIR** Ironbow thermal, and **CRT** phosphor console. They compose with either render mode and travel in share links. + The HUD lists every layer with a live status line and an on/off toggle, plus a `LIVE / SCRUBBED` chip that shows when you've scrubbed off wall-clock-now (at which point the live-only layers pause to save quota). ## Layers & data sources @@ -31,7 +33,7 @@ The HUD lists every layer with a live status line and an on/off toggle, plus a ` | Layer | Source | Live? | Notes | |---|---|---|---| | **Satellites** (~97) | [Celestrak](https://celestrak.org) GP/TLE | ✅ deterministic | SGP4-propagated orbits with glowing paths; EO/recon birds incl. WorldView, Pléiades, Capella, SkySat, plus Chinese **Gaofen** and Russian **Cosmos** (Persona) military satellites. Click one for orbital elements. | -| **Aircraft** | [OpenSky Network](https://opensky-network.org) ADS-B | ✅ live | Thousands of live flights, colored by altitude band; **military callsigns highlighted** and filterable; click one for callsign/country/altitude/speed/heading. Scrub off-live and it **replays recorded traffic** (see below). | +| **Aircraft** | [OpenSky Network](https://opensky-network.org) ADS-B | ✅ live | Thousands of live flights, colored by altitude band; **military callsigns highlighted** and filterable; click one for callsign/country/altitude/speed/heading. Between polls every plane **dead-reckons smoothly along its course** instead of teleporting. Scrub off-live and it **replays recorded traffic** (see below). | | **Earthquakes** | [USGS](https://earthquake.usgs.gov) GeoJSON | ✅ real | Last 24 h of quakes, time-anchored so each **appears as the slider crosses its origin time**; magnitude ramps amber→red, recent quakes pulse, M≥4.5 labeled. Click one for magnitude/depth/time and the USGS event link. | | **Wildfires** | [NASA EONET](https://eonet.gsfc.nasa.gov) | ✅ real | Active wildfire events worldwide as flame glyphs; click one for the event details and EONET link. | | **Military** | [adsb.lol](https://adsb.lol) `/v2/mil` | ✅ real | Unfiltered military ADS-B the civil feeds hide (Reach airlift, tankers, the Area 51 "Janet" shuttle). Free & keyless; emergency squawks highlighted. | @@ -41,6 +43,9 @@ The HUD lists every layer with a live status line and an on/off toggle, plus a ` | **NSW bushfires** | [NSW RFS](https://www.rfs.nsw.gov.au) | ✅ real | Current major bushfire incidents (Advice/Watch/Emergency). *(Regional — Australia, off by default)* | | **Ships** `[DEMO]` | synthetic | — | Illustrative tanker traffic through the Strait of Hormuz, incl. a "toll-route" carrier, a **dark-vessel AIS gap**, and the Fujairah idle anchorage. Optional live AIS — see below. | | **Infrastructure** | static vectors | — | Choke points (Hormuz, Bab el-Mandeb, Suez, Malacca), the East–West Petroline & Habshan–Fujairah pipelines, and key oil/desal/base facilities. Coordinates approximate. | +| **Submarine cables** | [TeleGeography](https://www.submarinecablemap.com) (bundled) | — | 712 international cable systems in their map colors + 1,917 landing points. **CC BY-NC-SA — non-commercial only** (see `assets/README.md`). | +| **Datacenters** | OpenStreetMap (bundled) | — | 4,351 datacenter locations with operator, via Open Infrastructure Map (ODbL). *(off by default)* | +| **Dams** | OpenStreetMap (bundled) | — | 704 dams with hydro output where tagged (ODbL). *(off by default)* | | **Events** `[DEMO]` | synthetic | — | Time-anchored markers that appear as the slider crosses their moment — illustrative placeholders for a future real event feed. | Select a satellite and its **sub-satellite ground track** draws under it. In **Data Mode**, the whole picture reads as orbits + markers on a dark globe: @@ -99,10 +104,12 @@ No framework, no bundler — vanilla ES modules plus two CDN globals (CesiumJS, index.html CDN script tags, HUD shell, #cesiumContainer css/style.css dark HUD styling js/config.js all URLs, intervals, camera, colors, keys — one file -js/lib.js shared helpers (glyphs, bearing, color bands) +js/lib.js shared helpers (glyphs, bearing, color bands, dead reckoning) js/ui.js HUD: layer rows, status lines, LIVE/SCRUBBED chip +js/styles.js sensor styles: NVG/FLIR/CRT GLSL post-process skins js/main.js viewer bootstrap, basemaps, clock, gating, picking, loader, URL-state sync -js/layers/*.js one module per layer (satellites, aircraft, ships, infra, events, quakes, fires) +js/layers/*.js one module per layer (satellites, aircraft, ships, infra, cables, events, quakes, fires) +assets/ bundled datasets: submarine cables, datacenters, dams (see assets/README.md) serve.py dev server + same-origin proxy, shared OpenSky cache, history + snap endpoints record.py optional dev daemon: snapshots live aircraft into data/history.db for replay ``` @@ -125,7 +132,7 @@ record.py optional dev daemon: snapshots live aircraft into data/his ## Deployment -Target: `https://partly.party/godsigh/` (games VPS, behind the `forum-nginx` container and Cloudflare). Only `index.html`, `css/`, and `js/` ship; `serve.py` is replaced by nginx `location` blocks that proxy OpenSky/Celestrak. See [SPEC.md](SPEC.md) §9 for the exact deploy steps. +Target: `https://partly.party/godsigh/` (games VPS, behind the `forum-nginx` container and Cloudflare). Only `index.html`, `css/`, `js/`, and `assets/` ship; `serve.py` is replaced by nginx `location` blocks that proxy OpenSky/Celestrak. See [SPEC.md](SPEC.md) §9 for the exact deploy steps. ## Attribution & terms @@ -133,6 +140,8 @@ Target: `https://partly.party/godsigh/` (games VPS, behind the `forum-nginx` con - **Celestrak** — GP/TLE orbital data. https://celestrak.org - **CARTO / OpenStreetMap** — basemap tiles. © OpenStreetMap contributors © CARTO. - **EOX** — Sentinel-2 cloudless; modified Copernicus Sentinel data 2023. https://s2maps.eu +- **TeleGeography** — submarine cable & landing-point data, CC BY-NC-SA 3.0 (**non-commercial**). https://www.submarinecablemap.com +- **OpenStreetMap contributors** — datacenter & dam data via Open Infrastructure Map, ODbL 1.0. - **CesiumJS**, **satellite.js** — Apache-2.0 / MIT. The Cesium credit display is kept visible in-app as a condition of these licenses. diff --git a/assets/README.md b/assets/README.md new file mode 100644 index 0000000..ef26660 --- /dev/null +++ b/assets/README.md @@ -0,0 +1,19 @@ +# Bundled datasets — provenance & licenses + +Static datasets vendored from the open-sourced +[God's Eye View](https://github.com/bilawalsidhu/gods-eye-view) repo +(`src/data/local_data/`), reduced to what GODSIGH renders. + +| File | Contents | Source | License | +|---|---|---|---| +| `datacenters.geojson` | 4,351 datacenter points (name, operator). Polygons collapsed to centroids. | OpenStreetMap contributors, via Open Infrastructure Map | **ODbL 1.0** — keep OSM attribution | +| `dams.geojson` | 704 dam points (name, power output/source). Polygons collapsed to centroids. | OpenStreetMap contributors, via Open Infrastructure Map | **ODbL 1.0** — keep OSM attribution | +| `cables/cable-geo.json` | 712 submarine cable routes (MultiLineString, per-cable color) | TeleGeography — submarinecablemap.com | **CC BY-NC-SA 3.0** — see below | +| `cables/landing-point-geo.json` | 1,917 cable landing points | TeleGeography — submarinecablemap.com | **CC BY-NC-SA 3.0** — see below | + +## ⚠️ TeleGeography cable data — NonCommercial + +The cable files are © TeleGeography, CC BY-NC-SA 3.0. Attribution +("© TeleGeography — submarinecablemap.com") is shown in the layer's info +panels. **Non-commercial use only** — if GODSIGH is ever deployed +commercially, remove `assets/cables/` or license the data from TeleGeography. diff --git a/assets/cables/cable-geo.json b/assets/cables/cable-geo.json new file mode 100644 index 0000000..39f1f37 --- /dev/null +++ b/assets/cables/cable-geo.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","name":"submarine_cables","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"id":"kunoa-north","name":"Kunoa North","color":"#939597","feature_id":"kunoa-north-0","coordinates":[-156.9665630882687,21.295721056114605]},"geometry":{"type":"MultiLineString","coordinates":[[[-155.98674859999997,20.758889136336883],[-155.90974609999998,20.58804526040611],[-155.91557111892848,20.352107812644185],[-155.8327436,20.240940704337877]],[[-157.7460045774889,21.396572],[-157.55220471967434,21.444450862926626],[-157.28479134194126,21.337518919200047],[-156.80525422850113,21.274533856181144],[-156.46310227824227,21.16957074507486],[-156.503135,20.884760102747034]],[[-159.40532650000003,22.215110945272016],[-159.11459846491226,22.150960720583736],[-158.79461333774822,21.9128163130342],[-158.4399589418041,21.829558295178412],[-158.22066328843266,21.717836296561472],[-158.12307759999996,21.56809172379588]]]}},{"type":"Feature","properties":{"id":"oceanic-tatitlek-telecommunications-enhancement-route-otter","name":"Oceanic Tatitlek Telecommunications Enhancement Route (OTTER)","color":"#939597","feature_id":"oceanic-tatitlek-telecommunications-enhancement-route-otter-0","coordinates":[-146.68979114956804,61.00651754266184]},"geometry":{"type":"MultiLineString","coordinates":[[[-146.5804962255995,60.865128606480916],[-146.69056686122886,60.83790231458027],[-146.76608515657378,60.865128606480916],[-146.75236391816247,60.95477039449461],[-146.63545891597727,61.05144983837184],[-146.54973544558572,61.09192827355534],[-146.35343293589426,61.13035646305128]]]}},{"type":"Feature","properties":{"id":"iokwe","name":"IOKWE","color":"#939597","feature_id":"iokwe-0","coordinates":[171.3392295405602,6.834015700933953]},"geometry":{"type":"MultiLineString","coordinates":[[[171.29818908112054,6.578321401868001],[171.38026999999985,7.08971]]]}},{"type":"Feature","properties":{"id":"andromeda","name":"ANDROMEDA","color":"#939597","feature_id":"andromeda-0","coordinates":[22.22426740344288,36.20957593836509]},"geometry":{"type":"MultiLineString","coordinates":[[[35.005095000000225,29.581033231032787],[35.09407707525654,29.791309936248265],[35.09258106291824,31.01930574551369],[34.76967960477271,31.669509999999626],[35.03999086843967,32.65551986665992],[34.998746580236514,32.811596],[34.200050008303506,32.896243407162636],[30.769743513702018,33.53335968863164],[28.554783191139578,34.28173085454878],[25.892178118938983,35.74306843576459],[25.376086016528483,35.71069562446953],[24.006181725996615,35.511169691366945],[23.621978066243148,35.96505111951632],[19.051532763673276,36.76463528197097],[18.114532544729055,37.121655665582466],[15.750063078447363,37.67887792909206],[15.525063237243426,38.06370455144154],[15.637563157547534,38.240638159471985],[15.354067264628604,38.55462024669397],[14.841825511799467,38.77307354824823],[13.50162967125888,38.959248078378096],[12.226913000000101,39.75405284068902],[10.84161269111189,41.557848620600836],[10.284778286332376,42.46701890694944],[9.954701037372352,43.445517559460725],[9.613161999999766,43.96751155521148],[9.3383810796972,44.18008469439857],[8.938867903561944,44.41035752885385]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-06","name":"Norte Conectado (Infovia 06)","color":"#939597","feature_id":"norte-conectado-infovia-06-0","coordinates":[-64.34704313879367,-6.435769079187864]},"geometry":{"type":"MultiLineString","coordinates":[[[-67.83284106969606,-9.993359703946657],[-67.50749507970924,-9.674819640496032],[-67.45608810500033,-9.227782542395829],[-67.39305203832167,-8.761671000000462],[-67.40864332969578,-8.430490503126785],[-67.27485426719613,-7.996419461382065],[-67.05444411094578,-7.797840312008653],[-66.7298835640715,-7.671622619179622],[-66.35961989219578,-7.558344029269731],[-66.10229567344659,-7.668204731266927],[-65.73232497032132,-7.722988587494916],[-65.22353590782123,-7.408542799054667],[-64.57758864219642,-7.075688906343259],[-64.56882528649051,-6.801470773864218],[-64.2341294798481,-6.249583144669121],[-64.4320808296965,-5.844024005533163],[-64.31128004844595,-5.598032256217185],[-63.59755934532132,-5.797540465752491],[-63.138013446884,-5.735871641680001],[-62.94201979830971,-5.379172975761144],[-62.71470023726901,-4.910261666732165],[-62.194848247392024,-4.724558060019035],[-62.08695443817308,-4.450799451363403],[-61.725792643437515,-4.236395515422113],[-61.40161207969596,-3.863340799836464],[-60.90012253675791,-3.736608406262437],[-60.63541789000012,-3.289115312000247]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-08","name":"Norte Conectado (Infovia 08)","color":"#939597","feature_id":"norte-conectado-infovia-08-0","coordinates":[-68.27711461195817,-6.425708100314885]},"geometry":{"type":"MultiLineString","coordinates":[[[-72.65583127632956,-7.625022373429889],[-72.4589691611615,-7.319649292446373],[-71.78483579960094,-7.161134671579085],[-71.10615309532113,-6.781408087311286],[-70.25676071022866,-6.711689148935116],[-69.84274733164465,-6.605875898339203],[-68.86147536094578,-6.50587662625094],[-68.31909254844595,-6.475847930849965],[-67.83999098594605,-5.903593237963245],[-67.50749507970924,-5.408734996358173],[-66.84051449413049,-4.911587444716941],[-66.58813551719605,-4.195367917963259],[-66.29856930214855,-3.639068396564793],[-65.9803718453216,-3.009590095292037],[-66.09530680999958,-2.515185832000585]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-05","name":"Norte Conectado (Infovia 05)","color":"#939597","feature_id":"norte-conectado-infovia-05-0","coordinates":[-61.76313926792772,-6.130729856897143]},"geometry":{"type":"MultiLineString","coordinates":[[[-63.90199200000045,-8.761671000000462],[-63.67593599213367,-8.552731993692847],[-63.5091910142493,-8.543032418789759],[-63.26019144030393,-8.193685552927706],[-62.87561474613567,-8.028764882726103],[-63.02843195756456,-7.512483097681169],[-62.76311482583174,-7.017315803029286],[-62.577380843716355,-6.767747819432295],[-62.2635079441688,-6.52056933478215],[-62.12618855061624,-6.177338617615112],[-61.83829256374144,-6.249583144669121],[-61.59652803262971,-5.867237845262617],[-61.294561306781766,-5.812875170999313],[-60.99820781786641,-5.535398042271369],[-60.63541789000012,-5.301045325496302],[-60.376099902415476,-5.120327441572783],[-60.376099902415476,-5.120327441572783],[-59.94907301719632,-4.838669491156266],[-59.8519538765715,-4.496633405697968],[-59.59452675344915,-4.392520854353163],[-59.09214036361938,-3.891201025333833],[-59.131660679999904,-3.580329971999896]]]}},{"type":"Feature","properties":{"id":"fea","name":"FEA","color":"#97b93c","feature_id":"fea-0","coordinates":[48.28492053481918,12.648196968516562]},"geometry":{"type":"MultiLineString","coordinates":[[[32.52993119143143,29.972545436050364],[32.48440122368525,29.63833609362628],[32.653276104052736,29.344566989489813],[32.65318110412008,29.113614162980063],[33.412950565897326,28.161052262220792],[34.14380004815155,27.364667993860262],[34.931299490279585,26.562513149236715],[35.55004905195155,25.75470426341523],[36.56254833468653,24.12261698700344],[37.80004745803156,22.05298561667754],[38.5875469001596,20.375041253465433],[39.93754594380764,18.251816319028222],[40.950045226544624,16.534196198259725],[42.07504442958354,14.801154224791581],[42.58129407095158,13.92930384327183],[43.03129375216765,13.054150695298627],[43.22816861269962,12.834868817846521],[43.31254355292765,12.615395567393394],[43.65004331383962,12.395734000022975],[44.55004267627159,11.900822861999712],[45.450042038703735,11.955858207114732],[48.60003980721571,12.72515592356304],[55.35003502545574,14.801154224791581],[58.95003247518379,16.534196198259725],[61.65003056247987,18.251816319028222],[66.60002705585578,19.104405475930452],[70.20002450558383,19.104405475930452],[72.87590260996693,19.07607425728523]],[[56.33372432860119,25.121690004958644],[56.92503390971164,24.83931282559271],[58.50003279396771,24.353428099494565],[59.85003183761575,23.71125814248539],[61.65003056247987,22.469443964829516],[61.65003056247987,18.251816319028222]],[[100.06611334816643,6.613518860854109],[100.29385318683336,6.908035999527216],[100.5951029728293,7.198818071264419]],[[100.40982310408316,5.368393581488473],[99.67500362523216,5.510071711803246],[97.42500521915215,6.908035999527216]],[[72.87590260996693,19.07607425728523],[72.67502275227187,16.965102599435927],[73.74513399127409,13.492128176464083],[75.09513303492214,9.52441134501949],[77.29024347696435,6.852191098754328],[78.69513048465001,5.061986954416114],[81.00001685476798,4.389285926050993],[85.500013666928,5.510071711803246],[90.00001047908802,6.405200795356032],[92.70000856638391,6.405200795356032],[94.27500745064,6.628746603597807],[95.40000665368001,6.628746603597807],[97.42500521915215,6.908035999527216],[99.00000410340806,6.852191098754328],[99.67500362523216,6.740481724921185],[100.06611334816643,6.613518860854109]],[[35.005095000000225,29.581033231032787],[34.71137964666887,29.08904402302273],[34.51762978332711,28.313851747133643],[34.46137982257925,28.115586087218034],[34.44732233253752,27.991483447904724],[34.44732233253752,27.916953178205596],[34.76254960982351,26.964304734562898],[35.55004905195155,25.75470426341523]],[[39.18783647490891,21.48407381384701],[37.80004745803156,22.05298561667754]]]}},{"type":"Feature","properties":{"id":"pasela","name":"PASELA","color":"#939597","feature_id":"pasela-0","coordinates":[136.29596537745573,-8.335578946920924]},"geometry":{"type":"MultiLineString","coordinates":[[[132.75203019315614,-5.635389324566357],[132.75132173870077,-5.638089913963488],[132.75215256227642,-5.643842084390133],[132.75445977651174,-5.652517743218946],[132.7581804940354,-5.663988797822581],[132.763251827476,-5.678127155573691],[132.76961088946223,-5.694804723844929],[132.77719479262274,-5.713893410008949],[132.78594064958614,-5.735265121438406],[132.79578557298112,-5.758791765505952],[132.8066666754363,-5.784345249584241],[132.81852106958033,-5.811797481045927],[132.83128586804185,-5.841020367263663],[132.84489818344952,-5.871885815610105],[132.859295128432,-5.904265733457903],[132.8744138156179,-5.938032028179713],[132.8901913576359,-5.973056607148188],[132.90656486711464,-6.009211377735982],[132.92347145668276,-6.046368247315748],[132.94084823896893,-6.08439912326014],[132.95863232660173,-6.123175912941812],[132.9767608322099,-6.162570523733417],[132.995170868422,-6.202454863007609],[133.01379954786677,-6.242700838137042],[133.03258398317277,-6.283180356494368],[133.0514612869687,-6.323765325452243],[133.07036857188317,-6.364327652383318],[133.08924295054487,-6.40473924466025],[133.1080215355824,-6.44487200965569],[133.12664143962445,-6.484597854742292],[133.14503977529964,-6.523788687292711],[133.16315365523664,-6.562316414679599],[133.18092019206406,-6.60005294427561],[133.1982764984106,-6.636870183453399],[133.21515968690485,-6.672640039585618],[133.23150687017548,-6.707234420044921],[133.24725516085115,-6.740525232203963],[133.26234167156053,-6.772384383435396],[133.2767035149322,-6.802683781111874],[133.29027780359485,-6.83129533260605],[133.30300165017712,-6.85809094529058],[133.31481216730768,-6.882942526538115],[133.32564646761514,-6.90572198372131],[133.33544166372815,-6.926301224212819],[133.34413486827538,-6.944552155385295],[133.35166319388546,-6.960346684611391],[133.35796375318705,-6.973556719263761],[133.36297365880878,-6.98405416671506],[133.36663002337932,-6.99171093433794],[133.36963057988137,-6.99799005958906],[133.36963057988137,-6.99799005958906],[134.55281094812023,-7.301940466303752],[136.29213864612524,-8.332313959673433],[137.24155488658988,-9.142360877005329],[138.61735885000633,-9.29105305225314],[140.04666628519757,-9.068306003874412],[140.4050547716818,-8.499084023854886]]]}},{"type":"Feature","properties":{"id":"kattegat-cable","name":"Kattegat Cable","color":"#939597","feature_id":"kattegat-cable-0","coordinates":[11.20702178600836,57.40084135723764]},"geometry":{"type":"MultiLineString","coordinates":[[[10.516666785834435,57.331044232885546],[10.774635166514315,57.38436745580995],[11.746354976615885,57.42138991590753],[11.8993793999998,57.45542159999994]]]}},{"type":"Feature","properties":{"id":"le-vasa","name":"Le Vasa","color":"#939597","feature_id":"le-vasa-0","coordinates":[-170.3269943972844,-15.336032568060777]},"geometry":{"type":"MultiLineString","coordinates":[[[-170.72687970000007,-14.33155532999987],[-170.38838405751085,-14.652114975378018],[-170.22389530791605,-16.48461818896953]]]}},{"type":"Feature","properties":{"id":"apx-east","name":"APX East","color":"#939597","feature_id":"apx-east-0","coordinates":[-158.27113338492862,19.750197618517358]},"geometry":{"type":"MultiLineString","coordinates":[[[-158.08325,21.33416151999962],[-157.612209709934,20.89386327374593]],[[-179.9997982511102,-18.061131292991963],[-179.42038154188631,-17.39087476566283],[-178.74461906750656,-15.006817032918805],[-174.85607630903357,-6.488084689915104],[-170.61177896620688,2.034307151732652],[-164.88359854945884,10.466900881405515],[-158.3545375332775,19.60543660356217],[-157.612209709934,20.89386327374593],[-157.1766943014276,21.31382923952174],[-153.02181855404697,23.579250199271907],[-147.51596477447862,25.207427175713182],[-138.5998275786419,26.642332131240735],[-127.7443269907507,30.931712269623308],[-117.59240577997376,32.74410431204178],[-117.16576683559319,32.70640764608389]],[[178.43744782917764,-18.123810943537187],[178.73193115309707,-18.559310645747416]],[[151.20699711948467,-33.86955173177822],[152.0782218382938,-34.02550502281781],[154.79996457419256,-32.7971829776099],[160.65491043157013,-30.92010189533491],[166.46655787137254,-26.350166054761747],[171.08750007969573,-23.120800845543467],[178.93328068350618,-18.437353927623583],[179.99916547224635,-18.061134844662394]]]}},{"type":"Feature","properties":{"id":"i-am-cable","name":"I-AM Cable","color":"#939597","feature_id":"i-am-cable-0","coordinates":[118.75874804835738,16.793480780830787]},"geometry":{"type":"MultiLineString","coordinates":[[[136.7199507151282,30.53294284406713],[137.36641060200284,32.785366191258156],[136.87399727311598,34.33682825203173]],[[128.52566678030564,30.091027829845515],[130.674395726876,29.025552386567824],[131.5275258053045,28.952812528511625],[135.08525859472044,30.05919859667051],[137.66282478514836,30.80514961102188],[138.97867305155404,31.561902368184647],[139.72426021939998,33.43328037624602],[139.9190731999997,35.013343599999885]],[[127.32517934949227,31.656682201919793],[127.89442654126425,32.27726247137304],[129.67643493815459,33.95373326203758],[129.98803709203204,33.96159035645912],[130.40164185819341,33.59022724332908]],[[104.94056871477744,1.736802757529686],[105.2363763727327,1.570164819342774],[108.77548545901945,1.892657008485546],[109.12499082666056,2.250177622979053],[109.83178358835691,2.952621888152617],[111.19765176138824,3.455890703299274],[114.40336233155375,5.789850566899969],[116.49540191466217,8.708813834577057],[119.08615923318736,12.264847835707236],[118.6940271732684,15.19740563655082],[118.79999007691224,17.81054639660834],[119.5708391396146,18.516117231747454],[120.14998912056028,19.025415878074014],[121.17742979836576,19.649517415292912],[122.9440789374799,20.680547036291784],[124.97763468202892,22.0068603894298],[125.68750771631929,23.606545664540995],[126.39045223093163,25.57323317368417],[126.97650517696137,26.30123502337342],[127.70079480862088,28.509888502156297],[127.95091132809287,29.540507745394493],[128.52566678030564,30.091027829845515],[127.68084378563216,31.39196231991538],[127.32517934949227,31.656682201919793],[128.48826446305196,34.32871402630493],[128.99949285148878,35.17037876180022]],[[104.00411055785635,1.373499297000449],[104.94056871477744,1.736802757529686],[104.11414047991015,1.925884465105483]]]}},{"type":"Feature","properties":{"id":"barracuda","name":"Barracuda","color":"#939597","feature_id":"barracuda-0","coordinates":[5.069024473018344,41.15519508537312]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.21038561561685,39.662556],[0.483472379851483,39.58670754238123],[2.492748250707712,39.959265640999455],[6.715499215025335,41.91950273465837],[8.867232920304009,43.219996838594724],[9.05556965563947,43.55145303403965],[9.054846151238989,43.820955522508875],[8.938867903561944,44.41035752885385]]]}},{"type":"Feature","properties":{"id":"thetis-express","name":"Thetis Express","color":"#939597","feature_id":"thetis-express-0","coordinates":[24.28686130004089,36.59558861269815]},"geometry":{"type":"MultiLineString","coordinates":[[[23.73618742100205,37.97607797573181],[23.850307765318078,37.64303390027617],[24.075057180943467,37.23235432155614],[24.212778264254776,36.76958758196072],[24.3275439960815,36.67797753464718],[24.275545260934937,36.57267183595012],[24.655778198324487,35.90443032966631],[24.981892475437025,35.60332732895848],[25.1278602660048,35.33839682411487]]]}},{"type":"Feature","properties":{"id":"antigua-st-kitts","name":"Antigua-St.Kitts","color":"#276fac","feature_id":"antigua-st-kitts-0","coordinates":[-62.30109480148145,17.253804274762178]},"geometry":{"type":"MultiLineString","coordinates":[[[-62.729761325708566,17.298635546518675],[-62.48121517710202,17.39781910572708],[-62.14016494710522,17.125133180804305],[-61.85794194331368,17.051481714044815]]]}},{"type":"Feature","properties":{"id":"panam-south","name":"PanAm South","color":"#c86d28","feature_id":"panam-south-0","coordinates":[-80.41343461451028,3.3764964380344193]},"geometry":{"type":"MultiLineString","coordinates":[[[-79.53670942010494,8.964826000000414],[-79.47249508697996,8.218897733240102],[-78.8937724634585,7.259764560250654],[-78.9945475385525,5.061986954416114],[-81.25182445429934,2.380576362406587],[-81.71381918802314,0.568578852526193],[-81.40623013196011,-1.906094995190245],[-80.9263332794323,-2.276284296577346]]]}},{"type":"Feature","properties":{"id":"grand-bahama-bimini-submarine-cable","name":"Grand Bahama Bimini Submarine Cable","color":"#c86d28","feature_id":"grand-bahama-bimini-submarine-cable-0","coordinates":[-78.94767106902685,26.061450076344837]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.81193048042013,26.536259889701554],[-78.96232205155829,26.010202101419708],[-79.29391256085444,25.720603599533877]]]}},{"type":"Feature","properties":{"id":"adamasia-cable-system-1","name":"Adamasia Cable System 1","color":"#939597","feature_id":"adamasia-cable-system-1-0","coordinates":[159.97629280393255,-6.967845031985698]},"geometry":{"type":"MultiLineString","coordinates":[[[161.2246209360468,-4.473704847762091],[159.89346682468684,-7.133330049762573],[159.8937666160936,-8.008623782040287],[160.25715498894073,-8.362421764470914],[160.13767651393036,-8.70116679265294],[159.94980844854496,-8.749364592835976],[159.94980844854496,-9.417176735429976]]]}},{"type":"Feature","properties":{"id":"red-hook-little-saint-james","name":"Red Hook-Little Saint James","color":"#c45527","feature_id":"red-hook-little-saint-james-0","coordinates":[-64.83241945567785,18.31236130004825]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.83920983135545,18.32460417009705],[-64.82562908000025,18.300118429999443]]]}},{"type":"Feature","properties":{"id":"verena","name":"Verena","color":"#939597","feature_id":"verena-0","coordinates":[4.018840383165226,54.87980262900769]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.411160999999824,54.27636578581614],[7.618209414856966,55.37009409803965],[8.21669807969593,55.403943032561145],[8.447237362321745,55.46495334929468]]]}},{"type":"Feature","properties":{"id":"dhivaru","name":"Dhivaru","color":"#939597","feature_id":"dhivaru-0","coordinates":[74.54454111498403,-1.4353149100485663]},"geometry":{"type":"MultiLineString","coordinates":[[[73.08918245887737,-0.605519711481727],[72.96721004468763,-0.856036275299538]],[[58.40778285872253,23.58412999999983],[59.12890734816923,23.95691876049908],[59.85003265596724,23.613306477496128],[61.43184006201105,22.443137450517234],[61.43184006201105,17.70450691214013],[66.58928706346421,4.200837482124073],[72.96721004468763,-0.856036275299538],[95.01270223995415,-8.952296383106004],[105.697069844276,-10.437358645528692]]]}},{"type":"Feature","properties":{"id":"fastnet","name":"Fastnet","color":"#939597","feature_id":"fastnet-0","coordinates":[-42.130994975499426,45.9247091404965]},"geometry":{"type":"MultiLineString","coordinates":[[[-75.0868362216179,38.333973036424055],[-74.15954119809128,38.98903709691993],[-71.20833234451034,40.384331936905745],[-68.39383801346253,40.87581011427994],[-61.11086880126824,41.90275121351782],[-50.3984584393863,43.90604356235435],[-39.60007920054038,46.54268254653617],[-23.399918393327315,50.45145951678565],[-16.199914287888834,50.32426129232395],[-10.759631602539102,50.4569444653093],[-8.963843834000034,51.557783405563]]]}},{"type":"Feature","properties":{"id":"longyearbyen-ny-lesund","name":"Longyearbyen-Ny-Ålesund","color":"#cf3a26","feature_id":"longyearbyen-ny-lesund-0","coordinates":[11.792249362979419,78.12717327583434]},"geometry":{"type":"MultiLineString","coordinates":[[[15.642983075583015,78.21811207261818],[14.390139242279188,78.19893286543507],[13.425633978043717,78.21532136999372],[12.264958151590536,78.10800320893884],[11.267757793652537,78.21811207261818],[10.489481769969634,78.55852997828387],[10.296713510676524,78.85337381187666],[10.708671691332297,78.96094079551753],[11.535857562016208,79.00093560089958],[11.889317022209221,78.96157484541638],[11.921007920000019,78.92419333144106]],[[15.642983075583015,78.21811207261818],[14.399947770389728,78.1805481048246],[13.439915521912717,78.19553573312052],[12.263388654575373,78.07462869329086],[11.14997050809113,78.19880447898082],[10.33406490277247,78.54942321411524],[10.153754271763217,78.86018755510426],[10.622561912388363,78.98059783611505],[11.555669427862263,79.02102059975907],[12.00644600538694,78.96594066644326],[11.921007920000019,78.92419333144106]]]}},{"type":"Feature","properties":{"id":"portsmouth-ryde-11","name":"Portsmouth-Ryde 11","color":"#50429a","feature_id":"portsmouth-ryde-11-0","coordinates":[-1.0997943654086653,50.74599612197139]},"geometry":{"type":"MultiLineString","coordinates":[[[-1.163284145999637,50.7293040384293],[-1.103827181491531,50.741177116843836],[-1.078430423480916,50.77152491961015],[-1.087284,50.80401000000017]]]}},{"type":"Feature","properties":{"id":"portsmouth-ryde-10","name":"Portsmouth-Ryde 10","color":"#923e97","feature_id":"portsmouth-ryde-10-0","coordinates":[-1.1252840729997904,50.76665701921473]},"geometry":{"type":"MultiLineString","coordinates":[[[-1.087284,50.80401000000017],[-1.163284145999637,50.7293040384293]]]}},{"type":"Feature","properties":{"id":"cowes-fawley-2","name":"Cowes-Fawley 2","color":"#8fc73e","feature_id":"cowes-fawley-2-0","coordinates":[-1.3444650684999404,50.77350782666271]},"geometry":{"type":"MultiLineString","coordinates":[[[-1.367483365000111,50.78676515744321],[-1.32144677199977,50.7602504958822]]]}},{"type":"Feature","properties":{"id":"kardesa","name":"Kardesa","color":"#939597","feature_id":"kardesa-0","coordinates":[34.68143413079067,42.206094956360786]},"geometry":{"type":"MultiLineString","coordinates":[[[29.632133841504242,41.18215605694779],[30.43512571142348,42.47399656722068]],[[29.91841246536385,42.50649430985511],[30.95183895748293,46.37235771784133],[30.684537421371765,46.48929000000015]],[[41.66752471827441,42.14675635811542],[41.41783617710218,41.97043253752729],[35.57410782973017,42.14987092248887],[27.648440999999888,42.649060000000276]]]}},{"type":"Feature","properties":{"id":"asia-united-gateway-east-aug-east","name":"Asia United Gateway East (AUG East)","color":"#939597","feature_id":"asia-united-gateway-east-aug-east-0","coordinates":[120.5229491866214,21.194716626934056]},"geometry":{"type":"MultiLineString","coordinates":[[[111.39672165701015,6.171501577529976],[113.00481498190783,5.487590881986131],[114.23759482610686,4.588647828574142]],[[104.11414047991015,1.925884465105483],[104.87449000000015,1.892657008485546]],[[118.6425127475267,17.11527658709149],[120.35483897484683,16.830716773770945]],[[120.88977859589048,22.340450000000153],[121.56833222233168,21.924689276263475]],[[121.81483169057424,24.644044899818205],[122.54589674250994,23.362789999999872]],[[126.73662929999966,35.96767720000027],[125.87119947589126,35.24748606079355],[125.29998547165854,34.21298798248237],[127.09744513582127,30.889576581749527],[128.20623341284528,29.582151688140414]],[[104.36205904297623,1.270050569926827],[104.87449000000015,1.892657008485546],[105.01938569859679,2.694535330212616],[105.6249994591074,3.122369746724294],[108.12382576441128,4.52214502236528],[110.04937200000029,5.3874206225493],[110.77665596587559,5.851759500300678],[114.12509490580292,7.582140257363066],[116.33876816197802,8.922093709519404],[118.95653880706887,12.3233643030216],[118.54461916347348,15.204850542914642],[118.68094913578804,17.860172049184143],[119.63564587191297,18.712816516277243],[120.07376012753181,19.097338103155888],[120.15077449851793,19.766307370739014],[120.60995966425898,21.52866349547806],[121.00227992030457,21.515456423470585],[122.27260117306696,22.41379429784117],[122.81360897983394,24.28586318606878],[125.35516121382157,27.94597135692341],[128.9423827125133,30.00041066943345],[130.46892712243186,29.23580178344556],[135.04811304345853,29.018742247699468],[137.7291107270958,29.776436679647418],[138.86036096921643,30.49131312259013],[139.68430240954356,31.888856797764863],[140.59357815315917,32.88889579845178],[140.00231880638776,35.01763482425761]],[[103.98701057056589,1.389451396800233],[104.36205904297623,1.270050569926827],[104.0166370000003,1.066798000000349]]]}},{"type":"Feature","properties":{"id":"trans-global-cable-system-tgcs","name":"Trans Global Cable System (TGCS)","color":"#939597","feature_id":"trans-global-cable-system-tgcs-0","coordinates":[108.3903467197402,-1.7671951438773597]},"geometry":{"type":"MultiLineString","coordinates":[[[109.96894164481395,-1.881623426349563],[109.59906885996025,-2.108947754569495],[109.26562183055219,-2.528148848261428]],[[104.0166370000003,1.066798000000349],[105.2644449676135,0.513354402238476],[107.00210046743302,-0.56027046929081],[109.26562183055219,-2.528148848261428],[107.30141322261214,-5.440604564272835],[107.11508624463684,-5.98327122197656]]]}},{"type":"Feature","properties":{"id":"tmx5","name":"TMX5","color":"#ae4b9c","feature_id":"tmx5-0","coordinates":[-108.06170450247926,23.137360575203054]},"geometry":{"type":"MultiLineString","coordinates":[[[-109.70490628441821,23.077049],[-106.4185027205403,23.197672150406124]]]}},{"type":"Feature","properties":{"id":"candle","name":"Candle","color":"#939597","feature_id":"candle-0","coordinates":[124.65330659048438,15.00880984412805]},"geometry":{"type":"MultiLineString","coordinates":[[[121.80145279439779,24.863504254255204],[123.10327422030367,23.605964017138188],[125.13103838718632,22.026048616021743]],[[120.62298878548306,14.088232047424347],[120.60765565086099,13.572496884445817]],[[124.70338539586164,16.18456011212011],[123.51328398507665,15.788534760565602],[122.2022204659374,15.763215182399467],[121.56019319908759,15.761538854943385]],[[104.0166370000003,1.066798000000349],[104.43613306430733,1.371386341516657],[104.38095732214448,1.745889155817368],[104.1120592000004,1.934672203856039]],[[103.98701057056589,1.389451396800233],[104.79111328158616,1.389440999999453],[108.80828174287835,1.736802757529686],[109.83178358835691,2.732428351392954],[111.39530787136668,3.27891318606882],[114.51459277101094,5.678236514249047],[116.08153497084551,7.767275218496221],[116.69308743865093,8.771383773025718],[119.59989185340848,12.602955744095647],[120.18280159671971,13.135750445218061],[120.60765565086099,13.572496884445817],[121.2985234625819,13.6150212673131],[122.39559299790758,12.75504864040869],[123.44753124604064,12.714337493644035],[124.09520116888906,12.319162730128816],[124.5097019530358,12.899450499230491],[125.13103838718632,22.026048616021743],[125.82482710987084,23.605964017138188],[127.32790884999972,24.81255270367667],[136.02580082175842,29.171402207908102],[137.7369866617662,29.63361253688773],[138.99232836452646,30.3690092136078],[140.17497493467252,32.43331330641721],[139.9766352308324,34.98004652018856]]]}},{"type":"Feature","properties":{"id":"mobily-red-sea-cable-mrsc","name":"Mobily Red Sea Cable (MRSC)","color":"#939597","feature_id":"mobily-red-sea-cable-mrsc-0","coordinates":[34.961760181479384,27.46848420506761]},"geometry":{"type":"MultiLineString","coordinates":[[[34.33400486710986,27.911373381384173],[35.11065407969618,27.363437709354482],[35.696548947573824,27.354010300438862]]]}},{"type":"Feature","properties":{"id":"challenger-one-bermuda","name":"Challenger One Bermuda","color":"#5bba46","feature_id":"challenger-one-bermuda-0","coordinates":[-64.68092713897882,32.24912552361271]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.63356460651755,32.158659496218654],[-64.6570088672744,32.24208387315947],[-64.78869199999986,32.28085199999989]]]}},{"type":"Feature","properties":{"id":"americas-ii-west","name":"Americas-II West","color":"#398eb1","feature_id":"americas-ii-west-0","coordinates":[-65.35452056157669,18.419355498735765]},"geometry":{"type":"MultiLineString","coordinates":[[[-66.07866673623955,18.452866862397144],[-65.60705702237637,18.621328],[-65.40270453172457,18.548726193807486],[-65.27164314025264,18.196835237961572],[-64.81925984548825,17.773909269375704]]]}},{"type":"Feature","properties":{"id":"daraja","name":"Daraja","color":"#939597","feature_id":"daraja-0","coordinates":[49.65891624771896,5.203587902722402]},"geometry":{"type":"MultiLineString","coordinates":[[[39.700146111983855,-4.050300939496507],[42.22020300218812,-3.01236914670285],[44.91427872330646,-0.786868249870226],[46.8367502330365,1.665004650489933],[53.260583380047024,9.719551502406592],[54.52122701824514,12.571397298876226],[53.646667929443154,13.296749576590368],[54.05940130585188,16.535252410268676],[54.14808587692784,17.09582718672565]]]}},{"type":"Feature","properties":{"id":"ithaafushi-maafushi-hulhumale","name":"Ithaafushi-Maafushi-Hulhumale","color":"#41b878","feature_id":"ithaafushi-maafushi-hulhumale-0","coordinates":[73.50361650995771,4.011634139896173]},"geometry":{"type":"MultiLineString","coordinates":[[[73.39404966892153,4.014321541056545],[73.48945823632215,3.933495316217852],[73.54015885755544,4.213309579234831]]]}},{"type":"Feature","properties":{"id":"farewell-change-fogo","name":"Farewell-Change-Fogo","color":"#50429a","feature_id":"farewell-change-fogo-0","coordinates":[-54.38380954792905,49.583938690000025]},"geometry":{"type":"MultiLineString","coordinates":[[[-54.479165000000414,49.55587482999968],[-54.395227,49.583938690000025],[-54.28367199999955,49.583938690000025]]]}},{"type":"Feature","properties":{"id":"indonesia-tengah-cable-systems","name":"Indonesia Tengah Cable Systems","color":"#939597","feature_id":"indonesia-tengah-cable-systems-0","coordinates":[123.22932132084962,-5.491358706544018]},"geometry":{"type":"MultiLineString","coordinates":[[[120.46336470000011,-6.121299811069376],[120.14163242833332,-5.85913466197567]],[[119.85633775440675,-6.109439521000439],[119.9999892262257,-8.13516311328244],[119.87166900462891,-8.494707229308899],[118.9980915447055,-7.814880435472708],[117.86151417923745,-8.10811342968634],[117.33064176585751,-7.581597555461874],[116.67139658423207,-7.683674603934793],[116.02120326305703,-8.055915389179498],[115.77833341374131,-9.010937529173344],[115.33144100000015,-9.032546822866914],[115.25956289748402,-8.695101915602985]],[[122.52825891955072,-2.580131292673987],[122.16745769077058,-2.829852359000335]],[[123.53383740000034,-5.321967643999664],[123.35330168599957,-5.231234621895154]],[[122.59686238717225,-5.507088069175421],[122.55989952213733,-5.905596746400206]],[[122.78695014254146,-0.940804501478792],[122.76297382289759,-1.213473230420634],[122.40047407969566,-2.005575400762364],[122.76297382289759,-3.645746178185322],[122.51297744659723,-3.998469097245179],[123.10247726276904,-3.927446994857488],[123.41503418012888,-4.023933949248898],[123.4758656701322,-4.973780077887056],[123.01138846011035,-5.948872300057597],[120.33205136778386,-5.692006790344558],[119.85633775440675,-6.109439521000439],[118.90491052765273,-5.669034918116874],[118.8705806792643,-5.472545019730354],[119.4065814434764,-5.154202750052714]]]}},{"type":"Feature","properties":{"id":"manx-northern-ireland","name":"Manx-Northern Ireland","color":"#b99633","feature_id":"manx-northern-ireland-0","coordinates":[-5.125428499999894,54.2605979828592]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.559439999999554,54.3021],[-4.691417000000235,54.21909596571838]]]}},{"type":"Feature","properties":{"id":"jako","name":"JAKO","color":"#939597","feature_id":"jako-0","coordinates":[129.9150381059809,34.54274037490852]},"geometry":{"type":"MultiLineString","coordinates":[[[128.999482851496,35.17030187110516],[130.12665587776488,34.39768832607582],[130.40164185819341,33.59022724332908]]]}},{"type":"Feature","properties":{"id":"taiwan-matsu-no-4","name":"Taiwan-Matsu No.4","color":"#939597","feature_id":"taiwan-matsu-no-4-0","coordinates":[120.7187179769595,26.10949725044253]},"geometry":{"type":"MultiLineString","coordinates":[[[121.46258819070279,25.168986122701572],[121.09588688738157,25.678720354955857],[120.49296999999949,26.36733136664364],[120.32426131491239,26.15516],[119.93434927272565,26.15516],[119.96093577202058,26.07423794659616],[119.96093577202058,26.032479263492196],[119.93907578761032,25.967044518254372]]]}},{"type":"Feature","properties":{"id":"sol","name":"Sol","color":"#939597","feature_id":"sol-0","coordinates":[-40.91502897305539,34.55949833109139]},"geometry":{"type":"MultiLineString","coordinates":[[[-25.676797574971758,37.74037606999961],[-25.456507920164015,37.35549021792695]],[[-64.02577349475438,31.895737453957153],[-64.65917995948635,32.36157723537831]],[[-81.22094335999995,29.5685423804529],[-73.34993072903801,30.97027945496055],[-64.02577349475438,31.895737453957153],[-61.85481927288275,31.74295976790169],[-50.00000020746783,33.13361886908059],[-39.99999508453427,34.70311221769831],[-25.456507920164015,37.35549021792695],[-16.199914288484827,44.694829089578164],[-9.899918750864702,45.646541495187385],[-5.810956804369809,45.16903272799839],[-4.871846141519585,44.66863115657076],[-3.833321486595139,43.45394044407752]]]}},{"type":"Feature","properties":{"id":"mjolner-east","name":"Mjolner East","color":"#939597","feature_id":"mjolner-east-0","coordinates":[20.521595305424217,58.26490685123449]},"geometry":{"type":"MultiLineString","coordinates":[[[24.752496701038964,59.43639985926234],[25.182562822898138,59.67073492362169],[25.30326504260355,59.97654868297596],[24.932476573539617,60.171163188940554]],[[19.05532073637588,57.863008],[19.816420197802014,58.14211813680734],[21.150303392895644,58.37438073506294],[22.03810158448305,58.36002823118932]]]}},{"type":"Feature","properties":{"id":"mjolner-west","name":"Mjolner West","color":"#939597","feature_id":"mjolner-west-0","coordinates":[19.917638194773204,60.52450057505016]},"geometry":{"type":"MultiLineString","coordinates":[[[18.370373721598764,60.25835727137014],[19.260073449326246,60.29099375678491],[20.7159775287011,60.80799764366938],[21.446235299999714,60.67946870000003]]]}},{"type":"Feature","properties":{"id":"rising-8","name":"RISING 8","color":"#939597","feature_id":"rising-8-0","coordinates":[106.6501894015858,-1.9342225399527513]},"geometry":{"type":"MultiLineString","coordinates":[[[107.12099835041957,-5.981154260263285],[106.4105991269382,-4.602669830685668],[106.97880809970745,-2.960568197938907],[106.51577713492394,-1.514424618967124],[105.40671542294676,0.176337305363287],[104.94099929758029,0.72341616711832],[104.53830626067602,0.869187053477447],[104.13320046700375,1.173685663377224],[103.98701057056589,1.375392999849927]]]}},{"type":"Feature","properties":{"id":"project-waterworth","name":"Project Waterworth","color":"#939597","feature_id":"project-waterworth-0","coordinates":[5.863543126433965,-27.98841784639247]},"geometry":{"type":"MultiLineString","coordinates":[[[33.490096931155925,-32.120588991728155],[31.980099654439186,-30.22719186196053],[30.88039235938437,-30.066210326831214]],[[87.72300880490236,-1.761851807844764],[90.09946213585373,-1.292098430153732],[92.73770385158454,3.460265883431271],[94.3164380847574,4.500452898358986],[95.47224819004255,5.742729330133516],[97.42500521915215,6.160631743962457],[99.6847692427181,5.86388465224445],[100.40982310408316,5.368393581488473]],[[76.85773463235368,0.847399963023893],[80.97374466123836,1.869852037928076],[85.500013666928,-1.270676198168406],[87.29076711246154,-0.856753963754112]],[[-179.9997982511102,3.097077087813343],[-169.96832199026696,16.17794031173706],[-161.61408917916899,23.0378173020752],[-147.45057458707294,30.255702942039875],[-127.79047240201581,33.529146127585946],[-122.38731473421552,33.477440406239914],[-120.6195929927509,33.45053234181001],[-118.90292030393906,33.82651440184361],[-118.24535355799169,34.053396879397056]],[[80.23727325388181,13.061502540930007],[81.52150148534334,11.831105221838026],[83.03675798088666,9.555359258837743],[83.42909910532154,7.869634986459248],[84.12223509182334,5.770024991079929],[90.77895616973278,-8.135430886528464],[94.72510478744105,-10.344819867074083],[123.06805345903014,-12.77887632491396],[129.87005785386256,-12.379679526898897],[130.84315500000028,-12.46750362874273],[131.6807426702204,-11.66969729826832],[131.72527388867405,-10.733304228874694],[132.75207980190007,-10.238639981123713],[138.5484135863478,-10.53440199037786],[142.13312784377766,-9.85125498416662],[144.89997158744055,-11.017428674932855],[147.26153671946165,-11.66969729826832],[153.48673308202717,-12.4774587840296],[160.98814378358247,-12.4774587840296],[170.00000263387216,-10.000034051545839],[179.99994672169302,3.097072904518241]],[[-78.88266988343256,33.69355790837514],[-74.2367384090291,31.895737453957153],[-56.93747717996609,23.619667749347347],[-52.10709095043794,16.57776764106849],[-38.292979177102396,1.433940786388127],[-37.82901999752645,-1.243529466953686],[-38.54877540946694,-3.720856079754825],[-35.947227022705135,-3.059997375917503],[-34.024755512974004,-3.469028991515528],[-31.65109171014376,-4.861397229447735],[13.886634799254555,-32.93449308708872],[16.894583419921453,-34.322821702626335],[18.043255079695783,-34.230964637690946],[18.41612564231266,-33.92084632399508],[18.171981177101898,-34.845022128572865],[18.74576413017278,-35.773488145151255],[19.623400227197045,-35.98012665125699],[23.413985104279334,-35.98012665125699],[27.97749587157728,-35.20204261409993],[38.62374269486827,-29.15403653793159],[45.29070355814658,-29.16507618637023],[47.34269069793371,-28.66595753524189],[56.973482479608386,-23.083727842143475],[62.53039521042826,-14.511535911566813],[65.57437726936688,-10.963562200511431],[74.66037634553088,-5.454560702582534],[76.26954099999939,-2.786733343456576],[76.85773463235368,0.847399963023893],[76.05002036139189,4.093063841323328],[75.63713069157988,8.283573814251765],[73.9070597935403,11.529557268608945],[73.90074005700309,11.538453807348953],[73.89027785728716,11.55119668203278],[73.87584899910533,11.56762651126271],[73.85762928717041,11.587583913641023],[73.83579452619524,11.610909507770005],[73.81052052089265,11.637443912251937],[73.78198307597543,11.667027745689104],[73.75035799615642,11.699501626683789],[73.71582108614845,11.734706173838275],[73.67854815066434,11.772482005754842],[73.6387149944169,11.812669741035775],[73.59649742211894,11.855109998283359],[73.55207123848332,11.899643396099872],[73.50561224822283,11.946110553087603],[73.45729625605031,11.994352087848831],[73.40729906667858,12.04420861898584],[73.35579648482046,12.095520765100915],[73.30296431518876,12.148129144796334],[73.2489783624963,12.201874376674384],[73.19401443145593,12.256597079337348],[73.13824832678046,12.312137871387508],[73.08185585318269,12.368337371427147],[73.02501281537546,12.425036198058548],[72.9678950180716,12.482074969883993],[72.91067826598392,12.539294305505766],[72.85353836382525,12.596534823526152],[72.7966511163084,12.653637142547431],[72.74019232814621,12.710441881171887],[72.68433780405148,12.766789658001803],[72.62926334873704,12.822521091639462],[72.57514476691573,12.877476800687148],[72.52215786330034,12.93149740374714],[72.47047844260372,12.984423519421728],[72.42028230953868,13.036095766313188],[72.37174526881803,13.086354763023808],[72.32504312515462,13.13504112815587],[72.28035168326124,13.181995480311652],[72.23784674785075,13.227058438093444],[72.19770412363594,13.270070620103526],[72.16009961532964,13.31087264494418],[72.12520902764467,13.34930513121769],[72.09320816529387,13.38520869752634],[72.06427283299004,13.418423962472412],[72.03857883544602,13.448791544658189],[72.01630197737461,13.476152062685951],[71.99761806348866,13.500346135157987],[71.98270289850096,13.521214380676577],[71.97173228712435,13.538597417844004],[71.9623279440557,13.562270341534498],[71.9623279440557,13.562270341534498],[71.9623279440557,16.965102599435927],[72.87590260996693,19.07607425728523]]]}},{"type":"Feature","properties":{"id":"qe-south","name":"Q\u0026E South","color":"#af3143","feature_id":"qe-south-0","coordinates":[0.7476257966814944,50.38235094939175]},"geometry":{"type":"MultiLineString","coordinates":[[[0.046277779436353,50.79292282976606],[1.150443761087762,50.14653973295111],[1.493433177977853,50.17917387330185]]]}},{"type":"Feature","properties":{"id":"qe-north","name":"Q\u0026E North","color":"#939597","feature_id":"qe-north-0","coordinates":[2.1516856743276356,51.16076158020478]},"geometry":{"type":"MultiLineString","coordinates":[[[1.449096646290332,51.38258705839249],[1.799258657292271,51.16076158020478],[2.483934780389254,51.16076158020478],[2.91277217250473,51.2312205646267]]]}},{"type":"Feature","properties":{"id":"e2a","name":"E2A","color":"#939597","feature_id":"e2a-0","coordinates":[150.20483591605063,35.3395606281797]},"geometry":{"type":"MultiLineString","coordinates":[[[141.60319903282527,42.6503368858653],[142.46989931401754,41.2387523289666],[144.5591158016331,40.046427062568554],[149.37742517921646,35.09752950393123]],[[130.1400211054319,33.59415838270747],[129.92752125596886,34.2343858923205],[128.99949285148878,35.17037876180022],[127.22759354455998,31.045550176016285],[129.44637107969632,28.381232304422188]],[[139.97546699999984,35.005433000000174],[140.5353756278244,34.73523695239605],[142.46336029527683,32.882826065515154],[142.8306622911177,32.40623097592082]],[[-179.99981351108062,41.930618376160524],[-151.17708002193328,41.930618376160524],[-138.88446003691308,39.45836886627482],[-129.6106746966534,35.73186715949322],[-122.84983873608158,34.6306903658982],[-120.85160406826154,35.34417937462789]],[[121.80144795065142,24.863504112487785],[122.87827437969564,25.925523115093068],[129.44637107969632,28.381232304422188],[135.05465206220015,28.81841452402809],[137.79450091450283,29.48716901807319],[143.5499725437925,32.81579602205538],[149.37742517921646,35.09752950393123],[172.73711131950242,41.930618376160524],[179.99992719256971,41.93061956425144]]]}},{"type":"Feature","properties":{"id":"fibre-in-gulf-fig","name":"Fibre in Gulf (FIG)","color":"#939597","feature_id":"fibre-in-gulf-fig-0","coordinates":[53.05222387166369,25.82851006776677]},"geometry":{"type":"MultiLineString","coordinates":[[[50.51253845238375,26.964304734562898],[50.214198663730556,26.28537535931817]],[[50.85003821329572,26.82364558689702],[50.65618835062081,26.25817095672994]],[[51.46310743050667,26.56481484059615],[51.212749,26.146578371109786]],[[53.55232247961318,25.627342865608828],[54.419075684956134,24.443964572625426]],[[47.97630977972595,29.371633383730508],[48.33207124645109,29.57074954758684],[48.5317798555716,29.92363278689715],[50.21426199999971,27.106120810916483],[51.739002426699074,26.463743320783486],[52.30775202379166,26.127977645442854],[53.55232247961318,25.627342865608828],[55.011461045958754,25.756582329883276],[56.279233634860766,26.60351617488129],[56.72184066493084,26.51048843368535],[57.18147788063447,24.202309555449286],[57.88605322832058,23.67872342575357]]]}},{"type":"Feature","properties":{"id":"tanjung-pandan-sungai-kakap","name":"Tanjung Pandan-Sungai Kakap","color":"#a84c9c","feature_id":"tanjung-pandan-sungai-kakap-0","coordinates":[108.00543396858707,-1.1603546988114444]},"geometry":{"type":"MultiLineString","coordinates":[[[109.18222689022609,-0.061391357195038],[108.82736530508038,-0.061391357195038],[108.67782927819995,-0.179555522582304],[107.95935298091241,-1.227571400214666],[107.56616014384186,-2.148726042101377],[107.5300761850291,-2.495065217511268],[107.66288796654008,-2.767442755874634]]]}},{"type":"Feature","properties":{"id":"groote-eylandt","name":"Groote Eylandt","color":"#37b19b","feature_id":"groote-eylandt-0","coordinates":[136.0796653738572,-14.071035115468739]},"geometry":{"type":"MultiLineString","coordinates":[[[135.73435315710455,-14.277517519622181],[136.42497759060987,-13.864552711315296]]]}},{"type":"Feature","properties":{"id":"sovetskaya-gavan-ilyinskoye","name":"Sovetskaya Gavan-Ilyinskoye","color":"#05a5d7","feature_id":"sovetskaya-gavan-ilyinskoye-0","coordinates":[141.24153704911592,48.477331279270494]},"geometry":{"type":"MultiLineString","coordinates":[[[140.28181079589305,48.965235369445],[142.2012633023388,47.989427189095984]]]}},{"type":"Feature","properties":{"id":"tampnet-south","name":"Tampnet South","color":"#2fbfcc","feature_id":"tampnet-south-0","coordinates":[3.278736327545513,56.182247136335604]},"geometry":{"type":"MultiLineString","coordinates":[[[6.786929427419412,58.06444],[6.20773590285459,57.77370115124407],[3.784811151305202,57.05999766701889],[2.700072321395319,55.1785958685009],[2.17686178854155,52.71521693088626],[1.72927301090669,52.46882263773048]]]}},{"type":"Feature","properties":{"id":"tampnet-north","name":"Tampnet North","color":"#97489b","feature_id":"tampnet-north-0","coordinates":[1.9751572601198477,57.76223385607984]},"geometry":{"type":"MultiLineString","coordinates":[[[4.015159331096359,59.00181694401486],[4.010328581080518,60.35428947498098],[4.554407710970825,60.566745741422686],[4.830229999999557,60.58733799999982]],[[3.784811151305202,57.05999766701889],[2.543382434183802,57.811692596339775]],[[-2.105148882723821,57.154005529539894],[-1.019603539673328,57.50156765666057],[2.543382434183802,57.811692596339775],[2.812797000086261,58.320872572952],[4.015159331096359,59.00181694401486],[5.45632037003535,59.12232256855451],[5.524480322346307,59.27926758037185]]]}},{"type":"Feature","properties":{"id":"sx-tasman-express-sx-tx","name":"SX Tasman Express (SX-TX)","color":"#939597","feature_id":"sx-tasman-express-sx-tx-0","coordinates":[162.64509588520926,-37.07495892416717]},"geometry":{"type":"MultiLineString","coordinates":[[[151.2577588980582,-33.91397824558519],[152.0999664863006,-34.68386748625883],[159.32095060849176,-36.85622920274014],[167.40317777184825,-37.3880420895994],[174.62339053109176,-36.78757761230096]]]}},{"type":"Feature","properties":{"id":"padang-tua-pejat","name":"Padang-Tua Pejat","color":"#7c9e3e","feature_id":"padang-tua-pejat-0","coordinates":[99.9753256809168,-1.4860406865001516]},"geometry":{"type":"MultiLineString","coordinates":[[[100.3616870000004,-0.943890000000324],[99.58896436183319,-2.028191372999979]]]}},{"type":"Feature","properties":{"id":"gc-lnz-fu-ring","name":"GC-LNZ-FU Ring","color":"#939597","feature_id":"gc-lnz-fu-ring-0","coordinates":[-14.413379396579455,27.70820083301138]},"geometry":{"type":"MultiLineString","coordinates":[[[-13.82731596925565,28.863419398977502],[-13.931985677857744,28.811610908811506],[-13.862208425006578,28.715982337200522]],[[-15.439709999999666,28.128696187104918],[-13.931985677857744,28.811610908811506]],[[-13.547572416832688,28.959501465241424],[-13.577320177102004,28.38853301873347],[-13.862220631432923,28.496470563064396]],[[-15.417372599999679,27.994844240009535],[-14.470919920303668,27.661377989173356],[-13.577320177102004,28.38853301873347]]]}},{"type":"Feature","properties":{"id":"arctic-way","name":"Arctic Way","color":"#939597","feature_id":"arctic-way-0","coordinates":[4.312682926277877,72.38263793558237]},"geometry":{"type":"MultiLineString","coordinates":[[[3.247651308331295,70.55228024514132],[7.617180079696026,66.90144145307879],[10.990984417977389,66.46843210694536],[14.400064034799321,67.28599754127343],[15.392073040652047,67.25991977910047]],[[15.642983075583015,78.21811207261818],[14.4195648266119,78.15976978593042],[13.471469882339086,78.17388694870507],[12.398621627831993,78.05318583195591],[7.014126102905231,77.0253238524219],[3.247651308331295,70.55228024514132],[-8.73434999999954,70.909133]]]}},{"type":"Feature","properties":{"id":"thailand-domestic-submarine-cable-network-tdscn","name":"Thailand Domestic Submarine Cable Network (TDSCN)","color":"#8aaa3d","feature_id":"thailand-domestic-submarine-cable-network-tdscn-0","coordinates":[99.26496211226205,10.522187085392519]},"geometry":{"type":"MultiLineString","coordinates":[[[100.92475859867298,13.172386821382146],[99.95361807969611,13.09397],[100.18581878985192,12.990582067525851],[99.94765343208446,11.314651075812046],[99.53301158722864,10.607658452356665],[99.17812300000011,10.494497206007695],[99.53301158722864,10.411934558591756],[100.03047212281895,9.526934715081014],[100.23945639927652,9.472915419561902],[100.6804228837668,7.467212832965264],[100.5951029728293,7.198818071264419]]]}},{"type":"Feature","properties":{"id":"cat-submarine-network-csn","name":"CAT Submarine Network (CSN)","color":"#a1489b","feature_id":"cat-submarine-network-csn-0","coordinates":[101.10650859619668,9.957010188028015]},"geometry":{"type":"MultiLineString","coordinates":[[[100.93057273577533,13.174371211662239],[100.80955733311677,12.83342068040501],[100.65941348674991,12.213719908155483],[100.58029314875155,11.276355495242829],[101.58841254322141,8.748764185136569],[101.23954450670672,7.413817960800556],[100.5951029728293,7.198818071264419]]]}},{"type":"Feature","properties":{"id":"orca","name":"ORCA","color":"#939597","feature_id":"orca-0","coordinates":[150.24960320115872,30.59792888376766]},"geometry":{"type":"MultiLineString","coordinates":[[[-129.5998339543217,36.87321951208928],[-122.3998390548656,33.565491482352044],[-120.59984033000157,33.51860823841915],[-118.39534899999987,33.86403999999962]],[[-123.687,38.96962000000024],[-124.64983746154178,38.651811712711336],[-129.5998339543217,36.87321951208928],[-139.00520928888923,37.327605702523414],[-151.1998186532859,35.90725015614043],[-163.79980972733406,34.43595690575565],[-179.9998012760825,33.31515395812905]],[[179.99994672169302,33.31515395812905],[172.79992073307184,32.81233785755136],[149.39996839960057,30.5144959597591],[137.24997700676838,26.36108632539156],[132.74998019460836,24.32780311165181],[128.69998306366443,23.91710129093513],[125.83455068834256,23.79499635869734],[125.08449263258076,23.798418307988157],[123.07498704846441,24.007054825363046],[121.8014540000001,24.863576000000307]]]}},{"type":"Feature","properties":{"id":"cyclades-a","name":"Cyclades A","color":"#4aba79","feature_id":"cyclades-a-0","coordinates":[24.67009331338145,37.682322894534245]},"geometry":{"type":"MultiLineString","coordinates":[[[24.053807052931386,37.711082576559505],[24.11255715378215,37.7480973319106],[24.337556994390187,37.7480973319106],[24.78755667560626,37.659089081800325],[24.939288762213785,37.43946272240985],[24.984431536138228,37.45843001852099],[25.019204911285403,37.65232235984693]],[[24.939288762213785,37.43946272240985],[25.0125565162143,37.43610122304901],[25.238146034548574,37.1222334145154]],[[24.939288762213785,37.43946272240985],[25.0125565162143,37.45843001852099],[25.237556356822154,37.48075214889993],[25.32858123375337,37.44688214068393]]]}},{"type":"Feature","properties":{"id":"cyclades-b","name":"Cyclades B","color":"#824198","feature_id":"cyclades-b-0","coordinates":[25.38123694997653,37.279695587530654]},"geometry":{"type":"MultiLineString","coordinates":[[[25.238146034548574,37.1222334145154],[25.2938063169743,37.14522100249008],[25.375974548484432,37.101840262262826]],[[25.32858123375337,37.44688214068393],[25.293811316970697,37.41376576388587],[25.406106237419756,37.241557690912636],[25.349851589771077,37.151942480084415],[25.375974548484432,37.101840262262826]]]}},{"type":"Feature","properties":{"id":"lake-tanganyika","name":"Lake Tanganyika","color":"#d77e27","feature_id":"lake-tanganyika-0","coordinates":[29.337553452345844,-4.70329064603402]},"geometry":{"type":"MultiLineString","coordinates":[[[29.149937199999965,-3.377679800000496],[29.225053532041734,-3.628980032547918],[29.281303492193878,-3.965738331112359],[29.337553452345844,-4.526691650331427],[29.337553452345844,-4.975144051242498],[29.45005337264977,-5.647241633339604],[29.337553452345844,-5.871105633944185],[29.203626000000206,-5.913414799999944]]]}},{"type":"Feature","properties":{"id":"lake-albert-1","name":"Lake Albert 1","color":"#bb8033","feature_id":"lake-albert-1-0","coordinates":[30.572324494999837,1.277493698500019]},"geometry":{"type":"MultiLineString","coordinates":[[[30.48106013999982,1.439963724999737],[30.66358884999985,1.115023672000301]]]}},{"type":"Feature","properties":{"id":"lake-albert-2","name":"Lake Albert 2","color":"#bb8033","feature_id":"lake-albert-2-0","coordinates":[30.5434221300001,1.2474964754996312]},"geometry":{"type":"MultiLineString","coordinates":[[[30.438399210000323,1.39338882199983],[30.648445049999875,1.101604128999433]]]}},{"type":"Feature","properties":{"id":"celia","name":"CELIA","color":"#939597","feature_id":"celia-0","coordinates":[-70.74409649460407,22.659466659834585]},"geometry":{"type":"MultiLineString","coordinates":[[[-62.836406367395625,17.905069665872535],[-62.680087666099276,18.04054513966678],[-62.54133653791155,18.23558553262618]],[[-69.44168277801548,13.558989085631117],[-68.84444328532055,12.823547587318025],[-68.89264695986267,12.09043961830498],[-68.58839717569401,12.33992421417949],[-68.26554560000007,12.144349099999685]],[[-80.088937,26.350505],[-78.86236989721739,26.86399017396059],[-77.84987061448132,27.264711877833996],[-77.39987093326533,27.164665812813517],[-76.83737133234132,26.562513149236715],[-76.49367157582148,26.116791262410242],[-76.24064175447413,25.90309444015418],[-73.3498738023213,24.12261698700344],[-70.19987599438629,22.35388551881099],[-67.49987794710923,20.58581909604039],[-65.69987922164921,19.316876111628712],[-64.06334834013599,19.182671634899826],[-62.54988145373323,18.251816319028222],[-62.09988177251724,17.395022634700517],[-62.04684985831844,17.063995828128565],[-61.84685007059131,17.01759004073784]],[[-67.49987794710923,20.58581909604039],[-67.94987762832521,18.678647022154717],[-68.28737738923726,17.82393441253792],[-68.62487715014923,15.23578178303578],[-69.29987667256924,13.92930384327183],[-69.87869399999971,12.414199000000362]],[[-65.69987922164921,19.316876111628712],[-66.09157894476144,18.678647022154717],[-66.10666899999953,18.46602999999961]],[[-62.04684985831844,17.063995828128565],[-61.987381852809214,16.590029438056266],[-61.76238201160518,15.452760959322058],[-61.649882091301166,15.018578573757472],[-61.48113221084519,14.801154224791581],[-60.988923800000265,14.627643199999655]]]}},{"type":"Feature","properties":{"id":"awashima-murakami","name":"Awashima-Murakami","color":"#61bb46","feature_id":"awashima-murakami-0","coordinates":[139.3170687086501,38.29678084080312]},"geometry":{"type":"MultiLineString","coordinates":[[[139.25283649999992,38.464632729999536],[139.2792255686338,38.358355301718596],[139.3334755302025,38.27008535010159],[139.47574369999958,38.22191642000002]],[[139.25283649999992,38.464632729999536],[139.337475527369,38.358355301718596],[139.3917254889377,38.27008535010159],[139.47574369999958,38.22191642000002]]]}},{"type":"Feature","properties":{"id":"tasman-ring-network","name":"Tasman Ring Network","color":"#939597","feature_id":"tasman-ring-network-0","coordinates":[163.1243917769377,-37.4755324388374]},"geometry":{"type":"MultiLineString","coordinates":[[[151.7987929508469,-34.82698199055459],[159.29996138635258,-37.222658379725665],[167.39995564824065,-37.758235764746985],[173.69995118407297,-37.04328040742407],[174.77046042690606,-36.88418050095063]],[[144.967148,-37.81753200000024],[144.8591016157972,-38.25898836030261],[144.8048516542285,-38.52352352301163],[145.34997126806056,-39.2547415615617],[146.24997063108842,-39.861878679516124],[149.39996839960057,-38.99291515860618],[150.72496746155474,-37.942453525696855],[151.7987929508469,-34.82698199055459],[151.20704000000026,-33.869695999999635]],[[149.39996839960057,-38.99291515860618],[164.99995734782604,-45.7951245820919],[166.3249564091843,-46.33285525519881],[167.67495545283234,-46.487989748417824],[168.34750000000054,-46.413056000000275]],[[171.19999999999968,-42.46666700000018],[171.22495293798085,-41.454827610945536],[173.34995143201604,-38.73986711592515],[173.69995118407297,-37.04328040742407]],[[174.08333300000044,-39.06666699999982],[173.79995111323194,-38.91515016713438],[173.34995143201604,-38.73986711592515]]]}},{"type":"Feature","properties":{"id":"okinawa-miyakojima-ishigaki","name":"Okinawa-Miyakojima-Ishigaki","color":"#c2237e","feature_id":"okinawa-miyakojima-ishigaki-0","coordinates":[126.07935132335385,24.963156259890788]},"geometry":{"type":"MultiLineString","coordinates":[[[124.2450912999995,24.388365950000072],[124.6499859327203,24.32780311165181],[125.09998561393637,24.417474698660392],[125.38733299999983,24.751502030000356],[125.99998497636834,24.915858493558826],[127.23748409911637,25.653336613276053],[127.72859249999958,26.134756180000213]]]}},{"type":"Feature","properties":{"id":"mishima-village","name":"Mishima Village","color":"#c41f45","feature_id":"mishima-village-0","coordinates":[130.28190022823586,31.26224749339653]},"geometry":{"type":"MultiLineString","coordinates":[[[129.93441360000014,30.832460340000207],[130.04998210492832,30.985825421949194],[130.1624820270205,31.08222223094729],[130.29387193394277,31.28029507274315],[130.27498194672853,31.08222223094729],[130.44173182919724,30.889328974889438],[130.42661539999997,30.81022492000007]],[[129.93441360000014,30.832460340000207],[130.2983291000001,30.792985210000303],[130.42661539999997,30.81022492000007]]]}},{"type":"Feature","properties":{"id":"talaylink","name":"TalayLink","color":"#939597","feature_id":"talaylink-0","coordinates":[110.26326781057011,-26.766476642591662]},"geometry":{"type":"MultiLineString","coordinates":[[[100.06611334816643,6.613518860854109],[96.09214483515096,5.72580268887697],[95.50021180355195,5.708127481172063],[94.39121736831608,4.30521657626247],[94.4988798791227,3.367668509872753],[99.97532568091725,-4.151795635971226],[101.90529164924416,-5.681554559384467],[102.59094710926541,-7.138190551514161],[105.41361374274392,-10.565783729977944],[105.94799918019127,-15.265358169534869],[107.9205544240356,-20.433922197637408],[110.4658162928233,-27.31398249584017],[112.85917397234627,-30.67295608460977],[113.84999358353615,-32.042386559186966],[113.60321110091725,-33.06182889373477],[113.60321110091725,-34.611299785451145],[115.44676979611502,-36.28083847394901],[119.55018485796727,-36.44205411672081],[127.09256232737636,-37.45923113608103],[134.85085761257704,-38.106390221946036],[140.39997477528055,-39.16757423638764],[142.19997350014447,-39.51559387611211],[143.9999722250084,-39.51559387611211],[144.57985181362045,-38.52352352301163],[144.75060169265976,-38.25898836030261],[144.967148,-37.81753200000024]],[[105.65751366522899,-10.4318730000001],[105.41361374274392,-10.565783729977944]],[[115.74022000000038,-32.537020895712736],[113.84999358353615,-32.042386559186966]]]}},{"type":"Feature","properties":{"id":"bosun","name":"Bosun","color":"#939597","feature_id":"bosun-0","coordinates":[118.40431639042593,-11.1110989624718]},"geometry":{"type":"MultiLineString","coordinates":[[[105.67351309999975,-10.431872499999805],[106.99999843554109,-10.472598924988871],[114.99999276827003,-11.1110989624718],[120.99998851781679,-11.1110989624718],[126.44998465698852,-11.331797193775092],[127.34998401942048,-11.331797193775092],[129.0374828245764,-11.613552343393454],[129.20623270503228,-11.66869424909462],[129.9375821869376,-11.88890717018829],[130.50000678851072,-11.999108453087024],[130.84315500000028,-12.467499999999752]]]}},{"type":"Feature","properties":{"id":"finland-estonia-connection-1-fec-1","name":"Finland Estonia Connection 1 (FEC-1)","color":"#d7c027","feature_id":"finland-estonia-connection-1-fec-1-0","coordinates":[25.018248699424372,59.7882269523489]},"geometry":{"type":"MultiLineString","coordinates":[[[24.752468999999603,59.436369],[24.975056543375437,59.679663707208995],[25.087556463679363,59.9624316341522],[24.932563000000318,60.1712]]]}},{"type":"Feature","properties":{"id":"eagle","name":"EAGLE","color":"#939597","feature_id":"eagle-0","coordinates":[22.893438595610316,34.82609007205903]},"geometry":{"type":"MultiLineString","coordinates":[[[18.843810885615575,40.04369219283004],[18.59820559145064,40.3515155000001],[18.405157,40.40923169292791],[18.175016100000146,40.3515155000001]],[[19.376194000000407,40.78671299999985],[19.13753248864648,40.654656544939996],[19.07081072540277,40.38732029077508],[18.843810885615575,40.04369219283004],[19.070260725792245,39.48474996079946],[19.57506036759165,37.67887792909206],[22.049996747577204,35.02384407226618],[25.402196026156034,34.23788494731137],[25.73091538232206,34.055455005068836],[28.28078582696705,32.39269578860082],[29.220633745914697,31.544507110396093],[29.67235321517045,31.047641997876443]]]}},{"type":"Feature","properties":{"id":"e-finest","name":"E-FINEST","color":"#40b76f","feature_id":"e-finest-0","coordinates":[24.63755678246347,59.8087855367023]},"geometry":{"type":"MultiLineString","coordinates":[[[24.65578,60.20678],[24.63755678246347,59.9624316341522],[24.63755678246347,59.679663707208995],[24.752468999999603,59.436369]]]}},{"type":"Feature","properties":{"id":"finland-estonia-connection-2-fec-2","name":"Finland Estonia Connection 2 (FEC-2)","color":"#7fc241","feature_id":"finland-estonia-connection-2-fec-2-0","coordinates":[24.908663992912608,59.79555432607822]},"geometry":{"type":"MultiLineString","coordinates":[[[24.752468999999603,59.436369],[24.86255662307151,59.679663707208995],[24.975056543375437,59.9624316341522],[24.932563000000318,60.1712]]]}},{"type":"Feature","properties":{"id":"sealink-south","name":"SEALink South","color":"#b36036","feature_id":"sealink-south-0","coordinates":[-132.33798343598562,55.368163899494924]},"geometry":{"type":"MultiLineString","coordinates":[[[-133.02193140000003,55.51384579999992],[-132.7067629486636,55.42022053018498],[-132.5380155112832,55.38828278020515],[-132.3692631962775,55.35631921417214],[-132.20051089997355,55.42022053018498],[-131.97551348456435,55.42022053018498],[-131.88157355408154,55.434270637976695],[-131.6604739746332,55.3430143091892]],[[-132.829514,56.015201999999896],[-132.61350301648966,55.947482692254525],[-132.5077430946788,55.89266381393939],[-132.37160699136777,55.79765291550112],[-132.30412703917114,55.63377825521405],[-132.16174714003438,55.526742438171844],[-131.97551348456435,55.42022053018498]]]}},{"type":"Feature","properties":{"id":"isle-au-haut-cable","name":"Isle Au Haut Cable","color":"#b2ba34","feature_id":"isle-au-haut-cable-0","coordinates":[-68.64592281999978,44.10391449000002]},"geometry":{"type":"MultiLineString","coordinates":[[[-68.66687301,44.156331730000154],[-68.62497262999955,44.05149724999989]]]}},{"type":"Feature","properties":{"id":"hokkaido-rebun-rishiri","name":"Hokkaido-Rebun-Rishiri","color":"#ddc224","feature_id":"hokkaido-rebun-rishiri-0","coordinates":[141.3723112574356,45.292603245705564]},"geometry":{"type":"MultiLineString","coordinates":[[[141.04706180000002,45.30049874000004],[141.21947430000026,45.245035859999916],[141.69815370000035,45.39401505999994]]]}},{"type":"Feature","properties":{"id":"okinawa-remote-islands","name":"Okinawa Remote Islands","color":"#c31e53","feature_id":"okinawa-remote-islands-0","coordinates":[125.18272383462778,25.418254015357316]},"geometry":{"type":"MultiLineString","coordinates":[[[122.99077429999956,24.457215450000316],[123.33748686191112,24.270840146005792],[123.77844360000016,24.06001916000044]],[[122.99077429999956,24.457215450000316],[123.74998656790437,24.73717827217609],[124.7002651000001,24.66870033000032],[125.2687354920083,25.55188275942587],[126.33105998708565,25.853235981933878],[127.23748409911637,25.957179978764344],[127.68810080000024,26.114886979999657]],[[126.77534649999994,26.353132190000167],[126.78748441790049,26.461843796188983],[127.22899780000009,26.587226800000273]],[[127.292292,26.230968589999883],[127.36352570000041,26.19683555999985]],[[127.22899780000009,26.587226800000273],[127.74376439999966,26.402044689999958]]]}},{"type":"Feature","properties":{"id":"minamidaito-island","name":"Minamidaito Island","color":"#50b748","feature_id":"minamidaito-island-0","coordinates":[129.45897087497414,25.813527639618613]},"geometry":{"type":"MultiLineString","coordinates":[[[127.68810080000024,26.114886979999657],[128.0249835418403,26.005947168900573],[130.27498194374937,25.7040312290754],[131.24255189999982,25.842984359999694]]]}},{"type":"Feature","properties":{"id":"kitadaito-island","name":"Kitadaito Island","color":"#da4326","feature_id":"kitadaito-island-0","coordinates":[129.5127865249,25.9245160611662]},"geometry":{"type":"MultiLineString","coordinates":[[[127.72859249999958,26.134756180000213],[128.0249835418403,26.05828756029904],[130.27498194374937,25.855985466072205],[131.30497690000038,25.945848989999725]]]}},{"type":"Feature","properties":{"id":"daito-loop","name":"Daito Loop","color":"#63c5b9","feature_id":"daito-loop-0","coordinates":[131.2737644000001,25.89441667499971]},"geometry":{"type":"MultiLineString","coordinates":[[[131.24255189999982,25.842984359999694],[131.30497690000038,25.945848989999725]]]}},{"type":"Feature","properties":{"id":"vaka","name":"VAKA","color":"#939597","feature_id":"vaka-0","coordinates":[176.5280354041795,-11.184211973197916]},"geometry":{"type":"MultiLineString","coordinates":[[[173.69996478053517,-13.698987269610743],[178.3249479082778,-9.586362493293953],[179.19882450000034,-8.520204505999452]]]}},{"type":"Feature","properties":{"id":"konstanz-friedrichshafen","name":"Konstanz-Friedrichshafen","color":"#a8c638","feature_id":"konstanz-friedrichshafen-0","coordinates":[9.326624849999934,47.6698572000001]},"geometry":{"type":"MultiLineString","coordinates":[[[9.173238399999894,47.67794960000021],[9.480011299999973,47.661764799999965]]]}},{"type":"Feature","properties":{"id":"konstanz-meersburg","name":"Konstanz-Meersburg","color":"#458bca","feature_id":"konstanz-meersburg-0","coordinates":[9.223155108999947,47.68741076500023]},"geometry":{"type":"MultiLineString","coordinates":[[[9.173238399999894,47.67794960000021],[9.273071818,47.69687193000024]]]}},{"type":"Feature","properties":{"id":"muroran-hachinohe","name":"Muroran-Hachinohe","color":"#93489b","feature_id":"muroran-hachinohe-0","coordinates":[141.64683877069186,41.52176759892695]},"geometry":{"type":"MultiLineString","coordinates":[[[140.98140000000038,42.369090999999734],[141.52497397772464,41.85617959436374],[141.7499738189284,41.2387523289666],[141.50050400000035,40.476710999999796]]]}},{"type":"Feature","properties":{"id":"emc-west-1","name":"EMC West-1","color":"#939597","feature_id":"emc-west-1-0","coordinates":[14.454285196906774,35.55827684735969]},"geometry":{"type":"MultiLineString","coordinates":[[[34.87197099999965,32.343948000000225],[34.73217507969621,31.514806841877277],[35.06258781939066,31.017104210092864],[35.12680721318803,29.7577662175767],[34.95220799999987,29.283851999999897]],[[8.938900000000473,44.410338999999794],[9.523041499328999,43.92966116282311],[9.867357245811593,43.41493765625121],[10.203941869976855,42.44942123712099],[10.732967775709948,41.47479235047743],[11.925065787515376,39.6983233549332],[11.925065786919474,37.85673997565852],[12.487565389631278,37.23235432155614],[13.893814392835383,35.96797434759339],[14.400064034799321,35.55718204488721],[16.65006244087933,35.60261271664616],[19.350060528175415,35.96765819663267],[22.050058614875596,35.81607643769555],[22.950057977903466,35.78566189952622],[23.400057658523455,35.26683686030974],[24.86255662247561,34.89090355336368],[24.768278120000296,35.07140756999981]],[[24.86255662247561,34.89090355336368],[25.199861071025996,34.78595414586146],[31.050052239791533,33.37780603565933],[33.750050327087614,32.62301664000789],[34.87197099999965,32.343948000000225],[34.79800093421972,31.544823108278926],[35.16479546752682,31.047641997876443],[35.16479546752682,29.750722245490483],[34.95220799999987,29.283851999999897]],[[22.950057977903466,35.78566189952622],[23.512557578827565,36.24065523321488],[23.736253999999892,37.97609300000014]]]}},{"type":"Feature","properties":{"id":"emc-west-2","name":"EMC West-2","color":"#939597","feature_id":"emc-west-2-0","coordinates":[19.498839308189734,35.235142604010285]},"geometry":{"type":"MultiLineString","coordinates":[[[34.55601100000069,31.669509999999626],[34.88686597691469,30.968861487527928],[35.03999086843967,29.821081589536274],[34.95220799999987,29.283851999999897]],[[5.372506999999549,43.293579],[6.412569693215363,41.74435878948223],[7.987568578067343,38.651811712711336],[9.000067859611436,38.475881348138756],[10.348617229769278,38.475881348138756],[11.812565867211447,37.85673997565852],[12.37506546873145,37.23235432155614],[13.187220035684541,36.137040035294845],[14.500172999899322,35.34412806223549],[16.50855144907108,34.860996398864586],[19.24898112158607,35.24657290391401],[22.12547979472243,35.114981288071654],[23.343155988951224,34.84186472475756],[24.403377260262417,34.56509456203117],[25.350645954852503,34.35479262780249],[31.050052239791533,33.001218522654476],[33.750050327087614,32.243210016262736],[34.55601100000069,31.669509999999626],[34.96840375635269,31.002358038164736],[35.09407707525654,29.791309936248265],[34.95220799999987,29.283851999999897]],[[24.768278120000296,35.07140756999981],[24.71844478368369,34.499509384245705]]]}},{"type":"Feature","properties":{"id":"asia-connect-cable-1-acc-1","name":"Asia Connect Cable-1 (ACC-1)","color":"#939597","feature_id":"asia-connect-cable-1-acc-1-0","coordinates":[143.91185695233523,12.797443250456062]},"geometry":{"type":"MultiLineString","coordinates":[[[128.24998338125656,5.061986954416114],[126.33748473549242,5.957818681088533],[125.61287587559997,7.079988883160643]],[[107.77499788652415,-3.778666580061055],[107.77499788712005,-4.60145376483711],[107.32499820590417,-5.273944363641298],[106.82782855810404,-6.171876390816321]],[[117.37991922838094,-5.945707155070644],[118.79999007691224,-5.273944363641298],[119.41238964308275,-5.152180217334703]],[[123.74998656969242,-6.914561059201749],[125.32498545454442,-7.955717094334652],[125.58071527278696,-8.570689999999674]],[[126.8999843382044,2.068137876964541],[125.99998497636834,2.143087178471855],[124.87498577273243,1.805788280129153],[124.8396357983706,1.490779296094715]],[[104.33505754105825,1.091076758263174],[104.11006048280018,1.091076758263174],[104.0166370000003,1.066798000000349]],[[127.79998370063637,-4.676208028751072],[123.74998656969242,-6.914561059201749],[120.14998911996437,-6.914561059201749],[117.37991922838094,-5.945707155070644],[116.58310164737706,-5.525204085835],[114.46970572643436,-5.721872747834119],[112.0499948586722,-4.825692499217419],[109.34999676839627,-3.479268678970064],[107.77499788652415,-3.778666580061055],[106.9874984438013,-3.029995968008661],[106.87499852468808,-2.130918480960333],[106.4249988434722,-0.331409329660265],[105.29999964043219,0.793562652607196],[104.8499999592161,0.906050180869095],[104.62500011860807,1.074774789350549],[104.33505754105825,1.091076758263174],[103.85310700000069,1.293877684611663]],[[179.99992672230314,19.95262290516439],[151.1999671244645,16.10232559580297],[146.24997063108842,14.256644994553485],[145.34997126865645,13.601498202276586],[144.89997158744055,13.3827080361257],[144.77675167413477,13.490037504527912],[143.9999722250084,12.834868817846521],[137.24997700676838,9.967915186974132],[133.19997987582445,8.190543417795496],[128.24998338125656,5.061986954416114],[126.8999843382044,2.068137876964541],[126.44998465698852,0.118588418888312],[126.44998465698852,-1.231315750217412],[126.5744945687844,-1.751747198540771],[127.23748409911637,-2.580536704984131],[127.46248393972441,-3.254657364797681],[127.79998370063637,-4.676208028751072],[127.79998370063637,-6.467627592690688],[127.46248393972441,-8.252720521974979],[127.79998370063637,-9.586362493293953],[128.92498290367638,-10.620064860363238],[129.9375821869376,-12.108990934944092],[130.50000678851072,-12.219087219884248],[130.84314154543083,-12.467474336203543]],[[-179.99979825051412,19.95262290516439],[-172.79980335105813,21.635297384859552],[-163.799809726738,21.635297384859552],[-161.44056423563913,22.469372680574537],[-152.99981737755394,26.964304734562898],[-147.6030982105313,29.738014316088],[-138.60310458621126,31.288652857283093],[-127.79983522945767,33.189714664600466],[-122.3998390548656,33.37780603565933],[-120.59984033000157,33.37780603565933],[-118.79984160513764,33.89296086026743],[-118.39945344493313,33.862474868985494]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-00","name":"Norte Conectado (Infovia 00)","color":"#e24f25","feature_id":"norte-conectado-infovia-00-0","coordinates":[-52.89739681048513,-1.612459489745365]},"geometry":{"type":"MultiLineString","coordinates":[[[-54.73603937000024,-1.944987034999834],[-54.65613704573581,-2.249581620957358],[-54.700923,-2.450628999999634],[-54.09363744421581,-2.36199043618581],[-54.074540760000104,-2.000472714000541],[-53.86863760360777,-1.912304920519021],[-53.30613800208777,-1.856085375649633],[-52.9686382411758,-1.631189860051542],[-52.57775842999971,-1.528422080999817],[-52.29363871935178,-1.462501535045741],[-52.01238891859178,-1.462501535045741],[-51.899888998287764,-1.237564295253775],[-51.73113911783178,-1.068848655458825],[-51.67488915767982,-0.843880302674306],[-51.562389237375804,-0.618898938178571],[-51.33738939676776,-0.506404460360012],[-51.11238955615982,-0.281410081654682],[-51.06571400000015,0.03453499999984]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-01","name":"Norte Conectado (Infovia 01)","color":"#424099","feature_id":"norte-conectado-infovia-01-0","coordinates":[-57.25917508844483,-2.5066788396945507]},"geometry":{"type":"MultiLineString","coordinates":[[[-60.02064900000021,-3.123895999999749],[-59.66238349926387,-3.092406737044168],[-59.324883738351815,-3.204736816895265],[-59.131660679999904,-3.580329971999896],[-58.76238413683181,-3.429359557949267],[-58.43994919999979,-3.136558105000468],[-58.154744650000374,-3.129203635000459],[-58.087384615007885,-2.867711310952125],[-57.749884854095825,-2.755346826295107],[-57.52488501348779,-2.418191459838346],[-57.18738525257582,-2.53058646932234],[-56.73720395000047,-2.633793763999875],[-56.5123857307518,-2.474390155539895],[-56.4893347300004,-2.102144401000589],[-56.0952176299996,-2.161544228000772],[-55.8674756800002,-1.76242793600052],[-55.51623128999993,-1.913198033000186],[-55.12010550000016,-1.890297457000427],[-54.71238700588778,-2.249581620957358],[-54.700923,-2.450628999999634]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-02","name":"Norte Conectado (Infovia 02)","color":"#939597","feature_id":"norte-conectado-infovia-02-0","coordinates":[-67.6977989725601,-2.8322673756260865]},"geometry":{"type":"MultiLineString","coordinates":[[[-70.19319400999984,-4.366370093000299],[-70.0287800300003,-4.379887185000328],[-69.93849640000008,-4.231296995000054],[-69.74530427947822,-4.33726001338843],[-69.40779263399965,-4.168974905715668],[-69.52181003999964,-4.037852188000214],[-69.40779263399965,-3.720042369142968],[-69.29530063673994,-3.495488576036888],[-68.95252266000007,-3.465503202000312],[-68.62032036107237,-3.327036371619034],[-68.19721486000019,-3.362085687000277],[-67.94534099,-3.327036371619034],[-67.94534099,-3.102393505999825],[-67.77536821000035,-2.86172595099949],[-67.46237797367455,-2.742861220956931],[-67.34987805337053,-2.630484978114635],[-67.1248782127626,-2.630484978114635],[-66.77157420000049,-2.750610165999518],[-66.5623786112426,-2.630484978114635],[-66.5623786112426,-2.405702542751779],[-66.33737877063454,-2.574293032075275],[-66.09530680999958,-2.515185832000585],[-65.66237924881052,-2.630484978114635],[-65.32487948789857,-2.742861220956931],[-65.16004126000051,-2.982672618999626],[-64.81206968999977,-3.21455230799988],[-64.7189821999999,-3.352162610000246]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-03","name":"Norte Conectado (Infovia 03)","color":"#3655a3","feature_id":"norte-conectado-infovia-03-0","coordinates":[-50.76431370212824,-1.4274139454300376]},"geometry":{"type":"MultiLineString","coordinates":[[[-51.06571400000015,0.03453499999984],[-51.05613959600776,-0.281410081654682],[-50.94363967570374,-0.393908030300729],[-50.71863983509571,-0.281410081654682],[-50.388307302747435,-0.157127594999777],[-50.71863983509571,-0.337659218696507],[-50.77488979524776,-0.506404460358921],[-50.83113975539982,-0.73139103014119],[-50.77488979524776,-1.068848655458825],[-50.77488979524776,-1.406269203242825],[-50.66238987494374,-1.631189860051542],[-50.481980002747754,-1.683596191000075],[-50.20909264999976,-1.898843353],[-49.7980208799999,-1.812160472999909],[-49.52887972,-1.717382211000187],[-48.869821749999836,-1.392058164000314],[-48.510443,-1.458588999999789]]]}},{"type":"Feature","properties":{"id":"norte-conectado-infovia-04","name":"Norte Conectado (Infovia 04)","color":"#939597","feature_id":"norte-conectado-infovia-04-0","coordinates":[-61.56169848630277,0.695238523519392]},"geometry":{"type":"MultiLineString","coordinates":[[[-61.63505656999974,-1.458572190999756],[-61.90013191402189,-1.162310860215265],[-61.78764966000029,-0.508038674000514],[-61.78763199371787,0.07510851284884],[-61.67513207341395,0.525100864671433],[-61.45013223280591,0.862575391371345],[-61.13126438999985,1.823914555000229],[-61.00013255158993,2.099637008787492],[-60.88763263128591,2.32446903907433],[-60.675832999999756,2.8235100000003]]]}},{"type":"Feature","properties":{"id":"projeto-amaznia-conectada-pac-01","name":"Projeto Amazônia Conectada (PAC 01)","color":"#6d4a9d","feature_id":"projeto-amaznia-conectada-pac-01-0","coordinates":[-61.838197472101974,-3.890148121235068]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.7189821999999,-3.352162610000246],[-64.49988007233594,-3.485507134028268],[-64.04988039111987,-3.710063389927138],[-63.599880709903886,-3.822320337335769],[-63.14769152,-4.091941809999533],[-62.36238158655986,-3.710063389927138],[-61.91238190534388,-3.934562592225933],[-61.349882303823875,-3.59779217905032],[-60.89988262260789,-3.59779217905032],[-60.63541789000012,-3.289115312000247],[-60.18773608000013,-3.279128219999502],[-60.02064900000021,-3.123895999999749],[-60.56238286169584,-2.980064758169332],[-60.674882781999855,-2.755346826295107],[-60.94388627000021,-2.623928290000122]]]}},{"type":"Feature","properties":{"id":"projeto-amaznia-conectada-pac-02","name":"Projeto Amazônia Conectada (PAC 02)","color":"#34af49","feature_id":"projeto-amaznia-conectada-pac-02-0","coordinates":[-63.54264465216806,-0.4873751459091228]},"geometry":{"type":"MultiLineString","coordinates":[[[-67.08799537999974,-0.119416257999669],[-66.51262864648594,-0.318639544201829],[-66.28762880587789,-0.318639544201829],[-65.61262928405397,-0.318639544201829],[-65.275129523142,-0.431137038307925],[-65.01571916999967,-0.414957876000345],[-64.6001300013179,-0.431137038307925],[-63.81263055918994,-0.318639544201829],[-63.362630877973956,-0.599880027513196],[-63.025131117061896,-0.712372553299487],[-62.925769709999486,-0.974081207000161],[-62.57513143584592,-1.049831919844808],[-61.90013191402189,-1.387254868233108],[-61.63505656999974,-1.458572190999756],[-61.45013223280591,-1.724629701463881],[-61.45013223280591,-1.837074983537492],[-61.05638251174189,-2.174352917686068],[-60.94388627000021,-2.623928290000122]]]}},{"type":"Feature","properties":{"id":"barat-timur-indonesia-2-bti-2","name":"Barat Timur Indonesia-2 (BTI-2)","color":"#939597","feature_id":"barat-timur-indonesia-2-bti-2-0","coordinates":[115.06424459648615,-6.058897973817234]},"geometry":{"type":"MultiLineString","coordinates":[[[107.92934120914595,0.125144305293085],[108.79413778955596,0.062743022966006],[109.33554678161278,-0.027021392288274]],[[108.0255698871077,-5.556836232143262],[107.5700525897694,-5.716442612332668],[106.96892712282748,-5.790569544810861],[106.791457,-6.108548339473468]],[[115.71425007478364,-6.112135256061153],[115.63417200651152,-6.971419999999669],[115.10901907969586,-7.785727122839621],[115.07594712344931,-8.115525289526817]],[[110.27177103540173,-6.048780990968187],[110.51371472880342,-6.689455323276428],[110.42549900000049,-6.971419999999669]],[[114.60399304939611,-3.327586828573115],[114.41254491570477,-3.739870959183627],[114.3103932573849,-4.424721793215856],[114.13221994550848,-4.838842846816813],[113.97217748075913,-6.048780990968187]],[[119.64813400673333,-5.679276766569264],[119.27840770615076,-5.945707155070644],[119.01248992577939,-6.690552320245617]],[[122.51297744659723,-3.998469097245179],[123.25408848349132,-3.577436557815043],[124.15161121973277,-3.585934037759635]],[[123.93724143733724,-1.188784534490496],[123.61629525815061,-0.887871730847793],[123.12391279505485,-1.0174889466678],[122.79275724839854,-0.938788738945164]],[[104.0166370000003,1.066798000000349],[104.23671914307417,0.718701163999102],[107.92934120914595,0.125144305293085],[108.518987560062,-3.308304570300115],[107.9205544240356,-3.92832730414264],[107.8752206669785,-4.421462021257835],[108.028612707457,-5.57979326526674],[108.98720405963194,-6.200644751046103],[111.39530787136668,-5.881175967910585],[112.47060007836957,-6.110368702679498],[114.55431437305602,-6.017142230629707],[117.2863535895726,-6.240855834298438],[119.13788046195164,-6.723203526046124],[120.14039440019944,-6.656981736799576],[123.70604128832369,-6.656981736799576],[124.24565408402098,-5.020341303484515],[124.19467123697362,-4.066822301947936],[123.93724143733724,-1.188784534490496],[125.00091074855803,0.147235879809841],[125.14944846892539,0.786495458405646],[125.12195825402485,1.023645803504536],[124.8396357983706,1.490779296094715]]]}},{"type":"Feature","properties":{"id":"trans-caspian-fiber-optic-cable-project","name":"Trans-Caspian Fiber Optic Cable Project","color":"#939597","feature_id":"trans-caspian-fiber-optic-cable-project-0","coordinates":[50.35170928810899,42.1662929008365]},"geometry":{"type":"MultiLineString","coordinates":[[[49.668611,40.589722],[49.77503897423938,41.00333982867244],[51.00003810643851,43.47375744845541],[51.20000099999987,43.6500019999995]]]}},{"type":"Feature","properties":{"id":"kangaroo-island-2","name":"Kangaroo Island 2","color":"#3a6bb4","feature_id":"kangaroo-island-2-0","coordinates":[137.86818235000004,-35.62775164499998]},"geometry":{"type":"MultiLineString","coordinates":[[[137.63263809999978,-35.65230045000021],[138.1037266000003,-35.60320283999976]]]}},{"type":"Feature","properties":{"id":"bangladesh-private-cable-system-bpcs","name":"Bangladesh Private Cable System (BPCS)","color":"#939597","feature_id":"bangladesh-private-cable-system-bpcs-0","coordinates":[93.18105844395623,17.212735087769786]},"geometry":{"type":"MultiLineString","coordinates":[[[96.44170591573067,14.833379080264882],[95.12500684789669,14.970281060426933],[94.00000764485668,15.621365811307367],[93.37500808761213,16.749771315644697],[92.92500840639624,17.82393441253792],[92.13750896307621,19.95262290516439],[91.99482906593992,21.42927456664916]]]}},{"type":"Feature","properties":{"id":"vstervik-visby","name":"Västervik-Visby","color":"#d96526","feature_id":"vstervik-visby-0","coordinates":[17.47347414283165,57.759223740408395]},"geometry":{"type":"MultiLineString","coordinates":[[[16.63697244955656,57.75601359999992],[17.32506196210754,57.7724256592012],[18.00006148393147,57.71238147125906],[18.3000312714301,57.63842]]]}},{"type":"Feature","properties":{"id":"oskarshamn-visby","name":"Oskarshamn-Visby","color":"#30b34a","feature_id":"oskarshamn-visby-0","coordinates":[17.354839182151327,57.53696966224951]},"geometry":{"type":"MultiLineString","coordinates":[[[18.3000312714301,57.63842],[18.00006148393147,57.652237533638846],[17.32506196210754,57.531650012322864],[16.662562431428412,57.29602797009688],[16.442539271429794,57.26520999999988]]]}},{"type":"Feature","properties":{"id":"globalconnect-6-gc6","name":"GlobalConnect 6 (GC6)","color":"#4cbb89","feature_id":"globalconnect-6-gc6-0","coordinates":[10.04430711986253,55.638189539999935]},"geometry":{"type":"MultiLineString","coordinates":[[[9.997211570862373,55.70859648999988],[10.09140266886269,55.56778259]]]}},{"type":"Feature","properties":{"id":"vietnam-singapore-cable-system-vts","name":"Vietnam-Singapore Cable System (VTS)","color":"#939597","feature_id":"vietnam-singapore-cable-system-vts-0","coordinates":[106.46282537917243,5.744681726150895]},"geometry":{"type":"MultiLineString","coordinates":[[[105.74999932164808,4.725718053703611],[105.04591744854648,5.887726394934779],[103.06289565101468,7.116812251931782],[101.70000219070414,7.131349142159139],[100.5951029728293,7.198819999999446]],[[104.28750035710021,1.918228780215599],[104.11414047991015,1.925884465105483]],[[104.00411055785635,1.373499297382436],[104.20380041699,1.349315392074356],[104.23195039704844,1.468426767331968],[104.28750035710021,1.918228780215599],[104.56875015845611,2.817450442654169],[105.74999932164808,4.725718053703611],[107.5499980453204,7.29876275445952],[107.77499788712005,9.52441134501949],[107.07933837933602,10.342231999999626]]]}},{"type":"Feature","properties":{"id":"lake-michigan-crossing-peninsula-and-island-connection","name":"Lake Michigan Crossing Peninsula and Island Connection","color":"#939597","feature_id":"lake-michigan-crossing-peninsula-and-island-connection-0","coordinates":[-85.6113839086376,45.710570899822265]},"geometry":{"type":"MultiLineString","coordinates":[[[-86.01215480000009,45.99314791],[-85.887364921241,45.84716709802962],[-85.7748650009369,45.76874730029829],[-85.53533779680885,45.740931669999895],[-85.66236508063297,45.690217095937825],[-85.66236508063297,45.57221476032958],[-85.43736524002493,45.4539639701049],[-85.25839776017807,45.31806299999966]]]}},{"type":"Feature","properties":{"id":"lake-michigan-chicago-crossing","name":"Lake Michigan Chicago Crossing","color":"#939597","feature_id":"lake-michigan-chicago-crossing-0","coordinates":[-87.04280710758722,41.996979072671245]},"geometry":{"type":"MultiLineString","coordinates":[[[-87.63241601842836,41.88414897363115],[-87.22486397374416,41.921318272948014],[-86.77486429252818,42.004970392069886],[-86.49025854999994,42.09494643278548]],[[-87.63241601842836,41.88414897363115],[-87.22486397374416,41.963158060817065],[-86.77486429252818,42.04675526247187],[-86.45448688264149,42.11623924570896]]]}},{"type":"Feature","properties":{"id":"nongsa-changi","name":"Nongsa-Changi","color":"#939597","feature_id":"nongsa-changi-0","coordinates":[104.0768804017202,1.295370025702409]},"geometry":{"type":"MultiLineString","coordinates":[[[104.00411055785635,1.373499297000449],[104.09355549449265,1.277466828746606],[104.1029504878371,1.196515539000407]]]}},{"type":"Feature","properties":{"id":"insica","name":"INSICA","color":"#939597","feature_id":"insica-0","coordinates":[103.85950463659297,1.19112580408122]},"geometry":{"type":"MultiLineString","coordinates":[[[103.64621000000031,1.338645835654649],[103.72500075558021,1.224744439668522],[103.95000059618825,1.168506749040978],[104.13311046647141,1.173205764381829]]]}},{"type":"Feature","properties":{"id":"ioema-1","name":"IOEMA-1","color":"#939597","feature_id":"ioema-1-0","coordinates":[6.183178399064579,53.852888017468835]},"geometry":{"type":"MultiLineString","coordinates":[[[2.700072321395319,52.00429650272413],[3.375071846795381,52.00429650272413],[4.317414999999649,52.08399199999982]],[[3.037572083499449,52.356869357572975],[2.25007264196731,52.34923443600231],[1.574842,52.20525622625099]],[[7.200069135343221,55.77997032709834],[7.650068816559295,55.716652093821786],[8.329197999999858,55.751672743003255]],[[7.425068975355357,54.16597178715178],[7.987568576875359,53.90168472607427],[8.10006849717947,53.70236555668246],[8.10686849236221,53.532340299999966]],[[5.85007009109946,53.76891056666807],[6.52506961292339,53.635715156995076],[6.816016292361981,53.442799]],[[1.43945857171798,51.35885],[2.025072801359273,51.86557165559819],[2.700072321395319,52.00429650272413],[3.037572083499449,52.356869357572975],[3.825071526223208,52.69150159464696],[4.275071206843381,53.23359531864929],[5.85007009109946,53.76891056666807],[7.425068975355357,54.16597178715178],[7.200069135343221,55.462350188098306],[7.200069135343221,55.77997032709834],[7.31256905505143,56.55247760361325],[8.10006849658357,57.932056586951404],[7.99484857171814,58.143805]]]}},{"type":"Feature","properties":{"id":"umoja","name":"Umoja","color":"#939597","feature_id":"umoja-0","coordinates":[73.3691361580669,-30.194272617562497]},"geometry":{"type":"MultiLineString","coordinates":[[[115.74022000000038,-32.537020895712736],[113.84999358353615,-31.85146566557725],[89.10001111606014,-30.568602759492247],[45.450041666655096,-29.52991296614913],[38.70004682046353,-29.52991296614913],[33.30005064587154,-30.115516969775936],[32.40005128343957,-30.115516969775936],[30.88039235938437,-30.05771707645661]]]}},{"type":"Feature","properties":{"id":"proa","name":"Proa","color":"#939597","feature_id":"proa-0","coordinates":[140.94409772480356,23.968318050907758]},"geometry":{"type":"MultiLineString","coordinates":[[[136.90461113662792,34.41942780492772],[137.61780690371242,32.89632905753641],[138.18030650463632,31.372163079357342],[141.78030395555655,21.728227953239347],[144.03030236163656,17.060732189607368],[144.7053018828644,15.115146651945496],[144.8178018043603,14.026348564517429],[144.81683513662824,13.543635828763595]],[[144.7053018828644,15.115146651945496],[145.49280132558852,15.06083578721253],[145.63747106498886,15.011508499399486]]]}},{"type":"Feature","properties":{"id":"taihei","name":"Taihei","color":"#939597","feature_id":"taihei-0","coordinates":[160.28836810524842,32.02917547451569]},"geometry":{"type":"MultiLineString","coordinates":[[[-158.08325,21.33416151999962],[-158.3998135047771,21.216397899942],[-158.8498131859927,21.216397899942],[-161.44056418827003,21.84429407917369],[-179.9997982353205,27.896238989528694]],[[179.99994672169302,27.896238989528694],[149.39996839960057,34.31215165223547],[141.97497365894054,36.33133835588799],[141.07497429650857,36.542522130541435],[140.7182700000002,36.71307999999942]]]}},{"type":"Feature","properties":{"id":"new-cam-ring","name":"New CAM Ring","color":"#939597","feature_id":"new-cam-ring-0","coordinates":[-18.324026527522005,38.831939222700775]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.763180749999524,32.719375367232246],[-16.312414208788844,32.8123187832876],[-13.949915881808826,34.31215165223547],[-11.924917316336764,36.51238821239364],[-9.449919069648717,37.76786242517874],[-9.112419308736753,37.899560460110116],[-8.86959948134856,37.957190000000196]],[[-16.908910485023203,32.646885],[-16.818663851348777,32.62301664000789],[-16.763182235023585,32.71937525000007]],[[-25.676797574971758,37.74037606999961],[-25.76240751372887,37.589786573603064],[-25.537407673716917,36.78317048961605],[-24.749908230992887,35.96797434759339],[-18.449912693968844,32.62301664000789],[-17.125113632468874,32.46403024100134],[-16.908913786222914,32.646885]],[[-27.250326460269058,38.66570477999988],[-27.224906478872917,38.475881348138756],[-26.99990663826488,38.03417390064187],[-25.87490743403289,37.589786573603064],[-25.668707580106854,37.739604626314694]],[[-9.337912400000349,38.6888354519986],[-10.799918113296759,38.38775473578444],[-13.94991588300081,38.53457265294195],[-23.399909187344846,39.17701458492114],[-25.199907914592835,39.17701458492114],[-26.77490679706085,38.94407095870691],[-27.25032671,38.66570093075493]]]}},{"type":"Feature","properties":{"id":"sto-hel-one","name":"STO-HEL-One","color":"#45449b","feature_id":"sto-hel-one-0","coordinates":[20.548612337285515,60.63045843072375]},"geometry":{"type":"MultiLineString","coordinates":[[[18.56540150000036,60.032046400000056],[18.900060846363438,60.03743169846873],[19.57506036818755,60.03743169846873],[19.804952900000593,60.099262]],[[19.724814400000394,60.27263870000003],[19.96881008925148,60.317170739435596],[20.137559969707553,60.3728330141931],[20.25005989001148,60.483872905447065],[20.700059571227555,60.70481713232475],[21.150059252443448,60.70481713232475],[21.446235299999714,60.67946870000003]]]}},{"type":"Feature","properties":{"id":"sovetskaya-gavan-uglegorsk","name":"Sovetskaya Gavan-Uglegorsk","color":"#a72f6a","feature_id":"sovetskaya-gavan-uglegorsk-0","coordinates":[141.13175739999988,49.015088600000205]},"geometry":{"type":"MultiLineString","coordinates":[[[140.28333299999971,48.9666670000001],[141.98018180000005,49.063510200000316]]]}},{"type":"Feature","properties":{"id":"rompin-tioman-island","name":"Rompin-Tioman Island","color":"#5ac6d1","feature_id":"rompin-tioman-island-0","coordinates":[103.82426093775084,2.808355910942874]},"geometry":{"type":"MultiLineString","coordinates":[[[103.49149565704641,2.800285607948548],[104.15702621845527,2.8164262139372]]]}},{"type":"Feature","properties":{"id":"besut-perhentian-islands","name":"Besut-Perhentian Islands","color":"#7ab542","feature_id":"besut-perhentian-islands-0","coordinates":[102.66026598075527,5.85894271864408]},"geometry":{"type":"MultiLineString","coordinates":[[[102.57171090634661,5.791616724837154],[102.72290646910318,5.906566563564761],[102.75470997931428,5.902883822383411]]]}},{"type":"Feature","properties":{"id":"lumut-pangkor-island","name":"Lumut-Pangkor Island","color":"#2961a5","feature_id":"lumut-pangkor-island-0","coordinates":[100.60442202612539,4.210781411319831]},"geometry":{"type":"MultiLineString","coordinates":[[[100.57962452963514,4.193025900179775],[100.62921952261566,4.228536922459888]]]}},{"type":"Feature","properties":{"id":"calvi-st-florent","name":"Calvi-St. Florent","color":"#bf3c95","feature_id":"calvi-st-florent-0","coordinates":[8.986297647562163,42.743713464436716]},"geometry":{"type":"MultiLineString","coordinates":[[[8.754733,42.56312],[8.775068019003399,42.661038814490205],[8.887567939307326,42.743713464436695],[9.22506770200754,42.743713464436695],[9.303703999999604,42.68184600000012]]]}},{"type":"Feature","properties":{"id":"romsar-2","name":"ROMSAR 2","color":"#6b4099","feature_id":"romsar-2-0","coordinates":[10.050807484296756,41.79429657532332]},"geometry":{"type":"MultiLineString","coordinates":[[[8.554313999999641,40.72681099999979],[8.606318138547326,40.9278295445864],[9.000067859611436,41.1823303464796],[9.225067700219473,41.2246513951782],[9.410541579024889,41.21939730561934],[9.900067222043404,41.68837522565799],[10.575066743867334,42.16268022756146],[10.91505260455934,42.35845318350371],[11.137566345387336,42.246014931829706],[11.475066106299483,42.16268022756146],[11.79157499999959,42.096099]]]}},{"type":"Feature","properties":{"id":"les-dhyres-cable","name":"Îles d'Hyères Cable","color":"#3858a7","feature_id":"les-dhyres-cable-0","coordinates":[6.36399143413161,43.00615564163939]},"geometry":{"type":"MultiLineString","coordinates":[[[6.154438781305733,43.030084136463124],[6.203652842011131,42.99989374688527],[6.387610296452823,43.00707805731055],[6.440445975376559,43.01927278405207],[6.366662207882666,43.13795969557663]]]}},{"type":"Feature","properties":{"id":"lic-lin-lamp","name":"Lic-Lin-Lamp","color":"#c4a32e","feature_id":"lic-lin-lamp-0","coordinates":[13.327132580251302,36.2515865480136]},"geometry":{"type":"MultiLineString","coordinates":[[[12.607558387730421,35.50152744443852],[12.860768932962662,35.8583596049076],[13.162564911455389,36.05897312258681],[13.781314472531456,36.78317048961605],[13.93822656670043,37.10250254786433]]]}},{"type":"Feature","properties":{"id":"ruppione-isolella","name":"Ruppione-Isolella","color":"#c41788","feature_id":"ruppione-isolella-0","coordinates":[8.601761054664493,41.7053077421622]},"geometry":{"type":"MultiLineString","coordinates":[[[8.785010999999724,41.832657],[8.583368154805507,41.793815103028855],[8.583368154805507,41.709886146904836],[8.752118035261399,41.667880521967],[8.90575,41.67415]]]}},{"type":"Feature","properties":{"id":"sarco","name":"SARCO","color":"#45b648","feature_id":"sarco-0","coordinates":[9.179701715141487,41.3151522514747]},"geometry":{"type":"MultiLineString","coordinates":[[[9.168977271135239,41.39044730433591],[9.190426159147735,41.239857198613485]]]}},{"type":"Feature","properties":{"id":"honomoana","name":"Honomoana","color":"#939597","feature_id":"honomoana-0","coordinates":[-140.30285250410262,12.5325883545074]},"geometry":{"type":"MultiLineString","coordinates":[[[152.0999664863006,-37.995035579083044],[149.39996839960057,-39.34180065396819],[147.59996967473646,-39.68895338487733],[146.24997063108842,-40.03436927637599],[145.23747134537265,-39.2547415615617],[144.69235173392437,-38.52352352301163],[144.8048516542285,-38.25898836030261],[144.96715153925368,-37.81753200000024]],[[174.59995054710086,-31.340410556277746],[175.28071006484436,-33.34801975644684],[174.82499288827472,-36.140033391295425],[174.93749280857884,-36.59297842795038],[174.77046042690606,-36.88418050095063]],[[-149.3081207740364,-17.723342219804366],[-149.25614786794546,-17.131277756723552],[-149.22482005239348,-15.97048661114128],[-148.949820247206,-13.698987269610743],[-148.04982088417785,-9.586362493293953],[-138.59982757864174,17.395022634700517],[-127.79983522945767,26.964304734562898],[-119.6998409675696,31.670513047087127],[-117.44984256148977,32.62301664000789],[-117.16576683559319,32.70640764608389]],[[-179.9997982511102,-29.790604899288688],[-163.79980972733406,-23.49392244589784],[-156.5998148272819,-21.414661827960504],[-150.97481881208188,-17.597998996155503],[-149.84981960963796,-16.953454989809906],[-149.22482005239348,-15.97048661114128]],[[-149.84981960963796,-16.953454989809906],[-149.62481976783775,-17.168553094226155],[-149.44108067057505,-17.51215245847912]],[[179.99994678470878,-29.790605028386853],[174.59995054710086,-31.340410556277746],[166.94995596702458,-32.80208389299158],[159.29996138635258,-34.67300361524697],[152.0999664863006,-37.995035579083044]],[[152.0999664863006,-37.995035579083044],[152.023790917052,-34.82698199055459],[151.20704000000026,-33.869695999999635]]]}},{"type":"Feature","properties":{"id":"tabua","name":"Tabua","color":"#939597","feature_id":"tabua-0","coordinates":[-158.6775256239548,19.76826141245578]},"geometry":{"type":"MultiLineString","coordinates":[[[178.42494704980945,-18.559310645747416],[178.43744782917764,-18.123810943537187]],[[178.0874480765248,-18.77365906052572],[177.52494847500478,-18.347065591453177],[177.31889862097242,-18.100389418495688]],[[160.64997402527118,-30.697669744492647],[155.316576355408,-27.936291840641456],[153.96657731175995,-27.138263161649714],[153.5165776281601,-26.937854887542912],[153.40407770964404,-26.837516818959585],[153.08943909999996,-26.651840200000382]],[[-158.08325,21.33416151999962],[-157.90008311233407,21.128587431864354],[-157.80225453681595,20.89386327374593]],[[179.9999049246783,-17.81234135340585],[178.8749611145193,-18.240251410711533],[178.42494704980945,-18.559310645747416],[178.0874480765248,-18.77365906052572],[170.9999666932391,-22.665969967794794],[166.49996988107907,-25.94623071841455],[160.64997402527118,-30.697669744492647],[154.8000717646766,-32.61276000573574],[152.047927014282,-33.93716236175066],[151.20704000000026,-33.869695999999635]],[[-118.24533600000012,34.05348099999984],[-120.59984033000157,32.90681902852468],[-127.79983522945767,31.286738814391754],[-138.60310458621126,27.366657115363733],[-147.6030982105313,25.75672152517522],[-152.99981737755394,24.12261698700344],[-157.27481434970198,21.356164482330126],[-157.49981418971396,21.047336588294048],[-157.80225453681595,20.89386327374593],[-159.52481275518593,18.678647022154717],[-165.59980845160203,10.41081650540272],[-170.999804626194,2.367912558705407],[-175.4998014389502,-6.616650693475355],[-178.8747990480702,-15.006817032918805],[-179.54979856929816,-17.383402005942457],[-179.99979825051412,-17.81234135340585]]]}},{"type":"Feature","properties":{"id":"hawaiian-islands-fiber-link-hifl","name":"Hawaiian Islands Fiber Link (HIFL)","color":"#939597","feature_id":"hawaiian-islands-fiber-link-hifl-0","coordinates":[-155.61158405092866,20.585795007256266]},"geometry":{"type":"MultiLineString","coordinates":[[[-158.09434432251803,21.31382923952174],[-157.949813871526,21.187263163262585],[-157.72481403091797,21.134806167482292],[-157.49981418971396,20.994830150131428],[-157.1623144288019,20.90143978523765],[-157.10606504759033,20.90143978523765],[-156.93731458879003,20.953979036599044],[-156.82481466788994,20.953979036599044],[-156.712314748182,21.059002173328942],[-156.59981482787796,21.111485983488812],[-156.48731490757396,21.059002173328942],[-156.467144,20.890755000000173]],[[-159.368579,21.974924999999782],[-158.84981323336208,21.425997872385402],[-158.3998135521461,21.268825931479064],[-158.09434432251803,21.31382923952174]],[[-157.023889,21.093332999999788],[-157.10606504759033,20.90143978523765]],[[-156.896861,20.74346999999976],[-156.82559408025796,20.782151843998083],[-156.82481466788994,20.953979036599044]],[[-156.467144,20.890755000000173],[-156.37481498727004,21.006499845176737],[-156.20606570789425,21.006499845176737],[-156.03731522635798,20.953979036599044],[-155.69981546484993,20.69109910743008],[-155.08106653327414,19.95262290516439],[-155.081864,19.719234999999824]]]}},{"type":"Feature","properties":{"id":"5-villages-6-islands","name":"5 Villages 6 Islands","color":"#694099","feature_id":"5-villages-6-islands-0","coordinates":[139.91550483423842,32.80032038085589]},"geometry":{"type":"MultiLineString","coordinates":[[[139.28026556789715,34.67086299423112],[139.19589062766912,34.62458823084221],[139.18589063475318,34.55512767736998],[139.22402060774138,34.48560908145168]],[[139.13964077948097,34.20695345476847],[139.21551869844038,34.3308542940764],[139.23807809778313,34.35800775237148],[139.258350283468,34.373853145806095]],[[139.23807809778313,34.35800775237148],[139.22402060774138,34.48560908145168],[139.27888824035568,34.529808064948476],[139.28026556789715,34.67086299423112],[139.36069278510652,34.750672522776554]],[[139.13964077948097,34.20695345476847],[139.16247565134051,34.032921789964035],[139.38747549194858,33.89296086026743],[139.597023244309,33.88350991725466]],[[139.49535639821372,34.09038084354649],[139.44372545210052,34.032921789964035],[139.4999754122525,33.93964008831966],[139.597023244309,33.88350991725466]],[[139.76561090792202,32.45723123281979],[139.72497525286053,32.55982671166815],[139.94997509346857,32.843830050378884],[139.94997509346857,33.03266260584946],[139.79680232984748,33.11229519278616]]]}},{"type":"Feature","properties":{"id":"izu-islands-cable-system","name":"Izu Islands Cable System","color":"#b72a79","feature_id":"izu-islands-cable-system-0","coordinates":[139.48631601387072,34.05581334749685]},"geometry":{"type":"MultiLineString","coordinates":[[[139.10482828483055,34.96320482218528],[139.22401560774517,34.80953220441419],[139.36069278510652,34.750672522776554],[139.3485155195481,34.67086299423112],[139.40476547970005,34.20695535766622],[139.49535639821372,34.09038084354649],[139.44372545210052,33.89296086026743],[139.61247533255641,33.22109136693108],[139.79680232984748,33.11229519278616]]]}},{"type":"Feature","properties":{"id":"hachijojima-mainland","name":"Hachijojima-Mainland","color":"#2492bd","feature_id":"hachijojima-mainland-0","coordinates":[139.8573967557421,34.13267917783602]},"geometry":{"type":"MultiLineString","coordinates":[[[139.6207699999995,35.144171],[139.83747517376037,34.381814625299135],[139.91306511961588,33.4365013965754],[139.79680232984748,33.11229519278616]]]}},{"type":"Feature","properties":{"id":"ogasawara-cable-network","name":"Ogasawara Cable Network","color":"#f5ae1a","feature_id":"ogasawara-cable-network-0","coordinates":[140.95181145231737,30.05826760234261]},"geometry":{"type":"MultiLineString","coordinates":[[[142.03122361909251,27.047832017492695],[142.03122361909251,26.797064317338755],[142.1599040123993,26.650916758530467]],[[139.79680232984748,33.11229519278616],[140.06247501377248,33.03266260584946],[140.73747453559662,30.901396088515508],[141.2999741371166,28.68871408880043],[142.03122361909251,27.047832017492695],[142.20407854982358,27.06647506480611]],[[142.1599040123993,26.650916758530467],[142.14372353939643,26.797064317338755],[142.14372353939643,26.997723094443348],[142.20407854982358,27.06647506480611]]]}},{"type":"Feature","properties":{"id":"bulikula","name":"Bulikula","color":"#939597","feature_id":"bulikula-0","coordinates":[159.83186028836406,-3.531667448778883]},"geometry":{"type":"MultiLineString","coordinates":[[[-179.99979733681937,-18.220645596860603],[-177.99980191490647,-15.97048661114128]],[[-179.9997982511102,-16.054802311227153],[-177.99980191490647,-15.97048661114128],[-169.64981232407783,-16.522522203974884],[-156.59981974082785,-16.522522203974884],[-151.8748249160457,-16.953454989809906],[-150.03446255149993,-17.837289372768534],[-149.72150385007072,-17.78028785386549],[-149.72966799010806,-17.664652292845517],[-149.69106782289776,-17.538318795988708],[-149.5776818542037,-17.43919664767101],[-149.44108067057505,-17.51215245847912]],[[175.99994955532844,-15.657788279357506],[179.14994732384042,-16.090625820394795],[179.99994672169302,-16.054802405935337]],[[-158.08325,21.33416151999962],[-157.7973234078978,20.5096446349069],[-157.04981450969004,18.251816319028222],[-155.69981546544602,5.957818681088533],[-151.24899954602645,-13.539755839687075],[-149.53372862921304,-17.03242725695966],[-149.44108067057505,-17.51215245847912]],[[-149.30591250000003,-17.71856760999951],[-149.17482008781394,-17.383402005942457],[-149.16770301754153,-17.079257710327674],[-149.53372862921304,-17.03242725695966]],[[-149.72149710853895,-17.78028785386549],[-149.62897692964813,-17.799987092276584],[-149.49562930903915,-17.81785908364595],[-149.32858584802543,-17.734063000000265]],[[179.99994672169302,-18.220645596860603],[178.8749611145193,-18.34587912918448],[178.43744600000022,-18.123634]],[[-157.7973234078978,20.5096446349069],[-158.73731331305797,20.58581909604039],[-163.799809726738,19.104405475930452],[-172.79980335105813,19.104405475930452],[-179.99979825051412,17.395022634700517]],[[179.99994675357007,17.395022634700517],[151.1999671244645,13.492128176464083],[148.49996903716843,13.492128176464083],[147.14996999352056,13.710817738179635],[146.24997063108842,14.692360031374392],[145.637512,15.011117]],[[147.14996999352056,13.710817738179635],[146.92497015172074,12.615395567393394],[146.24997063108842,11.735650161405832]],[[144.69470173285575,13.464772962370143],[146.24997063108842,11.735650161405832],[149.39996839960057,9.08033076823294],[152.99996584873273,2.367912558705407],[159.07496154574454,-3.029995968008661],[167.84995532945672,-8.846050186819125],[173.69996478053517,-13.698987269610743],[175.99994955532844,-15.657788279357506],[177.0749487937889,-18.026426383713453],[177.31889862097242,-18.100389418495688]]]}},{"type":"Feature","properties":{"id":"halaihai","name":"Halaihai","color":"#939597","feature_id":"halaihai-0","coordinates":[-128.78716876816586,-20.883657118412998]},"geometry":{"type":"MultiLineString","coordinates":[[[-148.92678359570436,-17.282577603673964],[-149.3081207740364,-17.723342219804366]],[[-71.59739837597036,-32.95696151932608],[-72.87683746960369,-32.33383519609184],[-106.97681331345684,-24.721012464905712],[-143.9767871023282,-18.211166830631022],[-148.92678359570436,-17.282577603673964],[-149.7142830378323,-17.06378750083079],[-150.0517827981482,-16.852397237765768],[-156.57677634779455,-13.377553880887607],[-168.27676988739648,-9.186173588259289],[-179.9997982511102,3.141849579307493]],[[146.27300728259013,12.937829392787588],[146.27300728259013,13.92262683581919],[145.66050771649057,15.11350037881627]],[[-149.44108067057505,-17.51215245847912],[-149.7142830378323,-17.06378750083079]],[[179.99992672230314,3.141849579307493],[167.3118697725457,8.14543454452957],[151.2058440342044,10.149281786817761],[149.45504648498684,11.060179356238443],[147.1730066450221,12.279111812101094],[146.27300728259013,12.937829392787588],[144.809541651502,13.549094363148988]]]}},{"type":"Feature","properties":{"id":"coral-bridge","name":"Coral Bridge","color":"#43b549","feature_id":"coral-bridge-0","coordinates":[34.9509968,29.536753899999738]},"geometry":{"type":"MultiLineString","coordinates":[[[34.89689859999966,29.49247829999958],[35.005095000000225,29.581029499999897]]]}},{"type":"Feature","properties":{"id":"tamtam","name":"Tamtam","color":"#939597","feature_id":"tamtam-0","coordinates":[168.2640474112099,-19.500425717349525]},"geometry":{"type":"MultiLineString","coordinates":[[[167.404643144324,-16.08611306373696],[167.56992274973342,-15.99279751873166],[167.67300232921588,-15.751013952628858]],[[168.35904735598615,-18.35539483853063],[168.03092357094425,-18.128176731173994],[167.70233787923036,-17.150350170777582],[167.97671305156445,-16.467430722196266],[167.67300232921588,-15.751013952628858],[167.42769909212595,-15.569669248869374],[167.20027400000015,-15.5064330000002]],[[168.32964248904594,-19.127069809852284],[169.01791817710196,-19.486257565978523],[169.26791799999978,-19.537939129035674]],[[167.26612318866503,-20.91651447004943],[168.19490432031384,-19.894761650039484],[168.38530051963824,-18.808896643598423],[168.32297999999963,-17.730419000000374]]]}},{"type":"Feature","properties":{"id":"barat-timur-indonesia-1-bti-1","name":"Barat Timur Indonesia-1 (BTI-1)","color":"#939597","feature_id":"barat-timur-indonesia-1-bti-1-0","coordinates":[117.21952169436639,-3.838737451548527]},"geometry":{"type":"MultiLineString","coordinates":[[[114.57481343375933,-5.385957847173066],[113.34469361088368,-5.945707155070644],[112.94999421991238,-6.393099497823911],[112.83749430080026,-6.616650693475355],[112.65238763118269,-7.165175579207309]],[[117.03310132740097,-4.179995582158629],[117.4499910332642,-4.264964252800808],[118.79999007691224,-4.825692499217419],[119.41238964308275,-5.152180217334703]],[[118.07689730311003,-1.51533365197483],[117.85190631946367,-1.627791237381674],[117.08124129449006,-1.459102642455618],[116.83129147155694,-1.265389667588013]],[[107.12089700000031,-5.981253715805995],[107.88749780742415,-5.273944363641298],[108.89999708956415,-5.124561675456293],[112.0499948586722,-5.273944363641298],[114.57481343375933,-5.385957847173066],[117.03310132740097,-4.179995582158629],[117.82499076880309,-2.730375485267853],[118.07689730311003,-1.51533365197483],[118.9912802772246,-0.810555324740758],[119.69998944053637,0.568578852526193],[119.92498928054833,1.018534216615524],[120.59998880177636,1.468426767331968],[121.49998816361243,1.730824054890829],[124.19998625150441,1.805788280129153],[124.83962579778171,1.490818000000369]],[[104.10295358788379,1.196510763639271],[104.28790035741287,1.215596520932091],[104.62500011860807,1.271658270355313],[104.8499999592161,1.299726182129338],[105.29999964043219,0.68107206531244],[106.31249892316808,-0.331409329660265],[106.76649860035869,-2.130918480960333],[106.95937346312914,-3.029995968008661],[106.87499852468808,-4.60145376483711],[106.81874856394022,-5.273944363641298],[107.12089700000031,-5.981253715805995]]]}},{"type":"Feature","properties":{"id":"jeju-udo","name":"Jeju-Udo","color":"#3a55a5","feature_id":"jeju-udo-0","coordinates":[126.93252888037216,33.473453760532934]},"geometry":{"type":"MultiLineString","coordinates":[[[126.95575023131646,33.5053360138088],[126.90930752942786,33.441571507257066]]]}},{"type":"Feature","properties":{"id":"domestic-submarine-cable-of-maldives-dscom","name":"Domestic Submarine Cable of Maldives (DSCoM)","color":"#cc1b8d","feature_id":"domestic-submarine-cable-of-maldives-dscom-0","coordinates":[72.75232269632002,3.153668530783705]},"geometry":{"type":"MultiLineString","coordinates":[[[72.95565310576072,3.608066999999686],[72.8363099155327,3.472925055920153],[72.75232269632002,3.276079687360005],[72.75232269632002,2.939076705497889],[72.8932954979876,2.67085379439719]],[[73.54027213872524,4.211913999999877],[73.63127207425991,4.164912849976942],[73.63127207425991,4.0527020972683],[73.48945837504712,3.940895595045809]],[[73.27506588125877,5.662178353024311],[73.04136330700179,5.629270004148423],[73.12502243289187,5.435413643888211],[73.12502243289187,5.211384397097438],[73.07078247131614,5.103263999999835]]]}},{"type":"Feature","properties":{"id":"nome-to-homer-express-nthe","name":"Nome to Homer Express (NTHE)","color":"#939597","feature_id":"nome-to-homer-express-nthe-0","coordinates":[-163.41547996684466,59.03611612672958]},"geometry":{"type":"MultiLineString","coordinates":[[[-166.49599769770037,61.51885919999996],[-166.1988769,61.51885919999996]],[[-165.40639895727566,64.50111053726953],[-165.59980845398627,64.31739001144432],[-165.71230837250212,63.088206521564956],[-165.5998084521981,62.47071999993706]],[[-153.632155,59.682359410640956],[-153.56295197922012,59.63553746032112],[-153.5170020129323,59.6180780639796],[-152.99981737755394,59.62282176941042],[-152.09981801512188,59.651254777633675],[-151.54939912435796,59.6425]],[[-155.886297,59.330386046597525],[-155.77637602254924,59.38733022969843],[-155.26495639776326,59.49092999474293],[-154.64737685086385,59.66780559050685],[-154.39200703822138,59.71199027213407],[-154.24512714598293,59.71592898705984],[-154.12325723539544,59.72616949287022],[-154.03575729959164,59.748218034367554],[-153.95450735920244,59.77182533874293],[-153.88049330000007,59.7760993091788]],[[-164.59792190000002,62.77621559999992],[-164.92480893037407,62.600431547112485],[-165.5998084521981,62.47071999993706],[-166.49980781463006,61.94619734289449],[-166.49980781463006,61.08784471959974],[-165.82480829280604,60.64972274466829],[-165.37480861159005,60.205560984023215],[-162.787310444598,58.66118687773907],[-162.11231092277407,58.36740335134618],[-161.774811161862,58.30835113805548],[-159.29981291517407,58.13060164022799],[-158.399813552742,58.24920018303555],[-157.61231411061405,58.6026268350673],[-157.01266562922953,58.73211899012127]]]}},{"type":"Feature","properties":{"id":"mercator","name":"Mercator","color":"#b9bc33","feature_id":"mercator-0","coordinates":[2.1884910115073875,51.376675500182785]},"geometry":{"type":"MultiLineString","coordinates":[[[1.440972309852729,51.35859517845766],[1.800052055477241,51.376675500182785],[2.475051577301171,51.376675500182785],[2.912751267230734,51.2312443647522]]]}},{"type":"Feature","properties":{"id":"iceni","name":"Iceni","color":"#d52b90","feature_id":"iceni-0","coordinates":[3.201748854214138,52.7901509051969]},"geometry":{"type":"MultiLineString","coordinates":[[[1.693552130326814,52.71521693088626],[2.250051736098142,52.78234584700751],[3.150051098530109,52.78234584700751],[4.050050460962258,52.918223068392784],[4.7007499999996,52.836929]]]}},{"type":"Feature","properties":{"id":"tam-1","name":"TAM-1","color":"#939597","feature_id":"tam-1-0","coordinates":[-73.10356090767246,23.77858245135987]},"geometry":{"type":"MultiLineString","coordinates":[[[-79.64986933934534,9.967915186974132],[-82.34986742664132,10.07869800665097],[-83.03765938887457,9.988597517410145]],[[-78.29987029569729,11.955858207114732],[-75.37487236838926,11.33148066218366],[-74.77975278938153,10.940445615726643]],[[-70.19987599438629,22.145638852308416],[-71.5498749986113,21.425997872385402],[-73.3498738023213,20.796306105108872],[-74.13737324444934,19.95262290516439],[-74.69987284596934,19.316876111628712],[-75.14987252718532,18.251816319028222],[-75.93737196931336,17.395022634700517],[-78.29987029569729,11.955858207114732],[-79.64986933934534,9.967915186974132],[-79.7534792659471,9.437721984870015]],[[-87.97486344184153,16.534196198259725],[-87.86236352213342,16.10232559580297],[-87.9461557876504,15.844981598742601]],[[-80.16016897784424,26.010548668010795],[-80.09986902056141,25.348717422116714],[-80.77486854238535,24.73717827217609],[-80.99986838299355,24.53265756616073],[-83.2498667890733,24.53265756616073],[-84.82486567332928,23.50508968095737],[-85.94986487636929,21.635297384859552],[-86.28736463787752,20.375041253465433],[-87.0748640794093,18.251816319028222],[-87.97486344184153,16.534196198259725],[-88.3123632027534,16.10232559580297],[-88.597165,15.727178884973721]],[[-85.94986487636929,21.635297384859552],[-86.51236447788929,21.268825931479064],[-86.767566,21.095663483773514]],[[-66.10666893347558,18.46610423294742],[-66.03732898259665,18.678647022154717],[-65.92487906344923,18.838433217733183]],[[-65.92487906344923,18.838433217733183],[-65.32398553479186,18.62408068875806],[-65.19362958028117,18.251816319028222],[-64.8805299999999,17.753367672551875]],[[-80.3942513282677,27.638731771078668],[-79.64986933934534,27.264711877833996],[-79.19986965991733,26.86399017396059],[-78.86236989721739,26.763586569619914],[-77.84987061448132,27.164665812813517],[-77.39987093326533,27.064530023167972],[-76.94987125324133,26.562513149236715],[-76.6061714961255,26.116791262410242],[-76.24064175447413,25.70052610903888],[-73.3498738023213,23.91710129093513],[-70.19987599438629,22.145638852308416],[-68.84987695073825,21.309590385318035],[-67.49987794710923,20.375041253465433],[-66.48737866377725,19.104405475930452],[-65.92487906344923,18.838433217733183]]]}},{"type":"Feature","properties":{"id":"cross-sound-cable","name":"Cross Sound Cable","color":"#b91e73","feature_id":"cross-sound-cable-0","coordinates":[-72.87873601507873,41.13651601131971]},"geometry":{"type":"MultiLineString","coordinates":[[[-72.92498345896654,41.30713000000013],[-72.87702413788844,41.14638300214584],[-72.9092184589667,40.96082000000039]]]}},{"type":"Feature","properties":{"id":"tautira-teahupoo","name":"Tautira-Teahupo'o","color":"#8d4098","feature_id":"tautira-teahupoo-0","coordinates":[-149.1410734769528,-17.91763374953515]},"geometry":{"type":"MultiLineString","coordinates":[[[-149.1770351107709,-17.771815724224076],[-149.11257091218943,-17.83019163808816],[-149.12169512544816,-17.913887619740432],[-149.24225611848354,-17.937193891586627],[-149.24856523377207,-17.84943323159532]]]}},{"type":"Feature","properties":{"id":"whidbey-island-seattle","name":"Whidbey Island-Seattle","color":"#ed166f","feature_id":"whidbey-island-seattle-0","coordinates":[-122.42525525402746,47.76389238568781]},"geometry":{"type":"MultiLineString","coordinates":[[[-122.44329313719003,47.93851635072451],[-122.46918400633709,47.90307887010544],[-122.44105402626471,47.82760546971162],[-122.41293050095528,47.714189281151164],[-122.3294391053337,47.60355999999983]]]}},{"type":"Feature","properties":{"id":"whidbey-island-everett","name":"Whidbey Island-Everett","color":"#55b847","feature_id":"whidbey-island-everett-0","coordinates":[-122.281925,47.9780225]},"geometry":{"type":"MultiLineString","coordinates":[[[-122.357431,47.97946999999985],[-122.206419,47.976575]]]}},{"type":"Feature","properties":{"id":"whidbey-island-hat-island","name":"Whidbey Island-Hat Island","color":"#ac4a9b","feature_id":"whidbey-island-hat-island-0","coordinates":[-122.33861676704001,47.99652985730446]},"geometry":{"type":"MultiLineString","coordinates":[[[-122.31980253408008,48.013589714609076],[-122.357431,47.97946999999985]]]}},{"type":"Feature","properties":{"id":"whidbey-island-camano-island","name":"Whidbey Island-Camano Island","color":"#cc1d53","feature_id":"whidbey-island-camano-island-0","coordinates":[-122.5417180962798,48.12044240714399]},"geometry":{"type":"MultiLineString","coordinates":[[[-122.5097258233355,48.14223038529169],[-122.57371036922409,48.09865442899629]]]}},{"type":"Feature","properties":{"id":"israel-coasting-1-ic-1","name":"Israel Coasting 1 (IC-1)","color":"#3864af","feature_id":"israel-coasting-1-ic-1-0","coordinates":[34.8277487519171,32.306398809559404]},"geometry":{"type":"MultiLineString","coordinates":[[[34.99874016776005,32.811596],[34.76254960982351,32.62301664000789],[34.650049689519584,32.243210016262736],[34.706299649075646,32.13213222598808],[34.7696581677598,32.04504300000013],[34.706299649075646,32.0368149002235],[34.53754976861957,31.989118978289795],[34.48129980846761,31.798087367585257],[34.55600816776041,31.669509999999626]],[[35.10636158023618,33.03646299999986],[34.98754944983565,32.938296728497555],[34.998746580236514,32.811596],[34.81879956937957,32.62301664000789],[34.81879956937957,32.43331330641721],[34.87197458023602,32.343948000000225],[34.790674589303684,32.27492161975156],[34.844678580236696,32.16241300000017],[34.76254960922761,32.13213222598808],[34.76966458023627,32.04504300000013],[34.73442462915154,32.012970042085655],[34.78510959324601,31.97782943227114],[34.53754976861957,31.798087367585257],[34.55601458023597,31.669509999999626]]]}},{"type":"Feature","properties":{"id":"zayo-festoon","name":"Zayo Festoon","color":"#b58636","feature_id":"zayo-festoon-0","coordinates":[-119.92123784718275,34.25287625691128]},"geometry":{"type":"MultiLineString","coordinates":[[[-120.66255178515836,35.28542699999962],[-120.93734009150971,35.08292270029031],[-121.04984001181373,34.806272556890626],[-120.59984033059774,34.25018044028598],[-119.92484080877372,34.25018044028598],[-119.6988724921824,34.41925499999979],[-119.69984096816569,34.157137999942634],[-119.2498412869497,33.97074536407291],[-118.79984160513764,33.98629373718467],[-118.24535355799169,34.053396879397056]]]}},{"type":"Feature","properties":{"id":"fish-south","name":"FISH South","color":"#939597","feature_id":"fish-south-0","coordinates":[-140.05905152238464,59.5231653195042]},"geometry":{"type":"MultiLineString","coordinates":[[[-140.06232654318987,59.52787100202234],[-139.94982662288587,59.58487361294478],[-139.83732670258183,59.58487361294478],[-139.6734859591499,59.545761772458185]],[[-136.5505601279829,58.13918563289863],[-136.46232909346182,58.10089013194181],[-136.34982917315781,58.04139277961042],[-136.22857036481375,57.96074065944373]],[[-135.76961070094336,58.330713352889795],[-135.72082551682627,58.41785832955853]],[[-135.35237100706019,58.19309178820427],[-135.43380535882486,58.11192247006416]],[[-145.75467337578323,60.542748324277206],[-145.968573218851,60.483872905447065],[-146.02482231930196,60.428400366297495],[-145.79982247869393,60.205560984023215],[-144.5623233553499,59.69858962318886],[-142.64982471018186,59.75530323694996],[-141.52482550714194,59.52787100202252],[-140.06232654318987,59.52787100202234],[-139.4998269416698,58.71964879559121],[-137.69982821680577,58.1306016402278],[-136.5505601279829,58.13918563289863],[-136.4775601815409,58.21128116930611],[-136.3920702442625,58.24491118647017],[-136.2840603235063,58.25896032097751],[-136.11301044900063,58.27149460377823],[-135.9869905414579,58.29757462462181],[-135.88347061740748,58.31409797025878],[-135.76961070094336,58.330713352889795],[-135.63186080200646,58.32837695835557],[-135.54587086509488,58.29993407371451],[-135.4474909372734,58.25798705857819],[-135.35237100706019,58.19309178820427],[-135.27131106653158,58.1693557186385],[-135.17493000487138,58.14951957724301],[-135.0638912187096,58.157144083520514],[-134.9729690130812,58.365509963814],[-134.97219514981677,58.428990502797014],[-134.92327132187842,58.43604469305952],[-134.84319138063083,58.39745579138094],[-134.76047144132005,58.3314037410391],[-134.7013914846653,58.32476180540529],[-134.60315155674115,58.341681841606146],[-134.54221160145104,58.33366118989016],[-134.4068617007534,58.299576750775365]]]}},{"type":"Feature","properties":{"id":"patara-2","name":"Patara-2","color":"#9a54a1","feature_id":"patara-2-0","coordinates":[133.2583728887021,-0.04183100947288879]},"geometry":{"type":"MultiLineString","coordinates":[[[134.5499789188764,-0.106411275875408],[134.4374789985725,-0.443906656918545],[134.32497907886446,-0.668895743818606],[134.06198926516882,-0.861458343462594]],[[130.85760153518734,-0.383358280481206],[131.0467079746435,-0.499976465400673],[131.2759166074868,-0.474388956955962],[131.53216440438356,-0.224827326582978],[132.29998051339228,0.006088583243203],[134.5499789188764,-0.106411275875408],[135.44997828190446,-0.500154705903456],[135.63855236706684,-0.729535713493556]]]}},{"type":"Feature","properties":{"id":"nuvem","name":"Nuvem","color":"#939597","feature_id":"nuvem-0","coordinates":[-52.48579468172721,33.29578855556337]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.88266988343256,33.69355790837514],[-78.26653698657397,33.47169957086474],[-69.29987667197325,32.17975358978957],[-64.46238009890118,32.052708023486204],[-62.09988177192116,32.052708023486204],[-50.39989006030513,33.565491482355505],[-39.54989774713741,35.215791334874076],[-26.22490718668583,37.569973991598665]],[[-26.22490718668583,37.569973991598665],[-25.87490743403289,37.50058844605323],[-25.668707580106854,37.739604626314694]],[[-26.22490718668583,37.569973991598665],[-25.87490743462888,38.29952060596925],[-25.199907914592835,38.827311095266374],[-23.399909187344846,38.827311095266374],[-13.94991588359671,38.29952060596925],[-10.349918432080775,38.122730108392204],[-8.869597215129223,37.95721527519206]],[[-64.65917995948635,32.36157723537831],[-64.5748800192052,32.243210016262736],[-64.46238009890118,32.052708023486204]]]}},{"type":"Feature","properties":{"id":"tko-connect","name":"TKO Connect","color":"#de542a","feature_id":"tko-connect-0","coordinates":[114.25484208234954,22.291691296870393]},"geometry":{"type":"MultiLineString","coordinates":[[[114.2586832940168,22.31829267897149],[114.25781079403889,22.296070300061047],[114.23935699999967,22.26885000000032]],[[114.2586832940168,22.31829267897149],[114.24374330400435,22.296070300061047],[114.23935699999967,22.26885000000032]]]}},{"type":"Feature","properties":{"id":"airraq","name":"Airraq","color":"#bc3e96","feature_id":"airraq-0","coordinates":[-160.4808504264838,58.32675711338343]},"geometry":{"type":"MultiLineString","coordinates":[[[-162.28609797914913,59.507429219589824],[-162.06110377956233,59.6971742699951],[-161.91244152128883,59.751830769999934]],[[-161.32481148064602,58.39689246177332],[-161.2248115514869,58.65468505389476],[-161.05606214959,58.771532652193535],[-160.83106231466593,58.80068331378435],[-160.71856239720398,58.8589112423676],[-160.49356256227992,58.97507388617798],[-160.40216262933743,59.07217535000008]],[[-158.50879580810786,59.04498530367392],[-158.51231347304602,58.95251729542412],[-158.62481339335005,58.83627867169679],[-158.51231347304602,58.543968564154575],[-158.62481339335005,58.36740335134618],[-159.29981291517407,58.24920018303555],[-161.0998116400381,58.36740335134618],[-161.32481148064602,58.39689246177332],[-161.774811161862,58.42635692511553],[-162.11231092277407,58.48521196181824],[-162.33731076338202,58.66118687773907],[-162.2248108430781,58.77801269228043],[-161.99981100247004,58.89444683796138],[-161.71068878535152,58.98588663078411]],[[-162.2248108430781,58.77801269228043],[-162.33731076338202,59.29889402722166],[-162.281061250843,59.52787100202234],[-162.33731076338202,59.755303236949786],[-162.281061250843,60.093570225923045],[-162.25293582315408,60.205560984023215],[-162.03248143321898,60.21970496867187]]]}},{"type":"Feature","properties":{"id":"javali","name":"JAVALI","color":"#3476bb","feature_id":"javali-0","coordinates":[114.59713560544341,-8.836169010231123]},"geometry":{"type":"MultiLineString","coordinates":[[[114.09716340843899,-8.615167135560569],[114.41249318505615,-8.836169010231123],[114.97499278657615,-8.836169010231123],[115.15985265561976,-8.783705413994815]]]}},{"type":"Feature","properties":{"id":"jalapati","name":"Jalapati","color":"#3f5fac","feature_id":"jalapati-0","coordinates":[114.43455937194622,-8.39017416643693]},"geometry":{"type":"MultiLineString","coordinates":[[[114.3103932573849,-8.44802754685532],[114.47074314379155,-8.3733148685123],[114.52729310373104,-8.294580235999058]]]}},{"type":"Feature","properties":{"id":"fish-north","name":"FISH North","color":"#4158a7","feature_id":"fish-north-0","coordinates":[-146.59925827081307,60.66661077053617]},"geometry":{"type":"MultiLineString","coordinates":[[[-146.35343293589426,61.13035646305128],[-146.55314278937283,61.09714043898838],[-146.6451427218751,61.06141701295124],[-146.77301262806066,60.95572329637335],[-146.8188725944145,60.849584758673764],[-146.77598736450295,60.690595783095596],[-146.47482200051795,60.64972274466811],[-146.02482231930196,60.6211590197015],[-145.79982247869393,60.6359344063654],[-145.77169749861793,60.6359344063654],[-145.75467386865427,60.542748324277206]]]}},{"type":"Feature","properties":{"id":"sydney-melbourne-adelaide-perth-smap","name":"Sydney-Melbourne-Adelaide-Perth (SMAP)","color":"#939597","feature_id":"sydney-melbourne-adelaide-perth-smap-0","coordinates":[132.4514961343884,-37.19272194034643]},"geometry":{"type":"MultiLineString","coordinates":[[[134.85085761257704,-37.39478470533192],[135.89997796252462,-36.018803301581926],[136.34997764374052,-35.653993397147275],[137.69997668738856,-35.28750958287694],[138.59988604988445,-34.926102000000434]],[[143.9999722250084,-39.34180065396819],[144.22497206502055,-38.81782397325074],[144.32691199280544,-38.329156471712544]],[[144.4499719056286,-39.51559387611211],[144.4499719056286,-38.81782397325074],[144.32691199280544,-38.329156471712544]],[[151.2070371188603,-33.869695999999635],[151.57379310964276,-34.82698199055459],[150.4999676203508,-37.942453525696855],[149.39996839960057,-38.81782397325074],[147.59996967473646,-39.34180065396819],[146.24997063108842,-39.68895338487733],[144.4499719056286,-39.51559387611211],[143.9999722250084,-39.34180065396819],[142.19997350014447,-39.34180065396819],[140.39997477528055,-38.99291515860618],[134.85085761257704,-37.39478470533192],[127.09256232737636,-36.741418127951896],[119.55018485796727,-36.260840217957096],[115.44676979611502,-36.09924960156447],[113.82821359836942,-34.611299785451145],[113.82821359836942,-33.06182889373477],[115.85731216153303,-31.953441330324313]]]}},{"type":"Feature","properties":{"id":"ulleung-mainland-2","name":"Ulleung-Mainland 2","color":"#aa422e","feature_id":"ulleung-mainland-2-0","coordinates":[130.12626832379473,37.2773307646333]},"geometry":{"type":"MultiLineString","coordinates":[[[129.33873337935873,37.17514326596579],[129.59998242550049,37.17261659294013],[130.49998178793246,37.35168786972502],[130.89327660932778,37.48932062641182]]]}},{"type":"Feature","properties":{"id":"jeju-mainland-3","name":"Jeju-Mainland 3","color":"#aa519f","feature_id":"jeju-mainland-3-0","coordinates":[127.53929599383478,34.00615714927147]},"geometry":{"type":"MultiLineString","coordinates":[[[128.0274354936125,34.72835854992582],[127.79998370123228,34.31215165223547],[127.34998401942048,33.783943282364],[127.12498417881244,33.50297483987678],[126.90930752942786,33.4415685056695]]]}},{"type":"Feature","properties":{"id":"jeju-mainland-2","name":"Jeju-Mainland 2","color":"#7a68ae","feature_id":"jeju-mainland-2-0","coordinates":[127.16999265328461,33.99757610853796]},"geometry":{"type":"MultiLineString","coordinates":[[[127.28599296347433,34.60940175186309],[127.26560907919244,34.4514196909948],[127.12498417881244,33.783943282364],[126.90930752942786,33.4415685056695]]]}},{"type":"Feature","properties":{"id":"yuza-tobishima","name":"Yuza-Tobishima","color":"#2e2f8a","feature_id":"yuza-tobishima-0","coordinates":[139.72538937049725,39.09503710375718]},"geometry":{"type":"MultiLineString","coordinates":[[[139.54899537752638,39.19500461500409],[139.83747517316465,39.03151487972872],[139.90963512204584,39.02099623671373]]]}},{"type":"Feature","properties":{"id":"yui","name":"YUI","color":"#632c8c","feature_id":"yui-0","coordinates":[126.37558620037001,24.501003998270562]},"geometry":{"type":"MultiLineString","coordinates":[[[125.29998547165854,24.7946200137949],[125.43748537425243,25.179151748812224],[126.3374847372803,26.260240971577822],[126.74738444630759,26.348765491642183]],[[124.24509621895214,24.38836538952259],[125.09998561393637,24.00705710909988],[125.7749851357603,24.01990020343248],[127.68748377735349,25.55188275942587],[127.79998370004047,25.855985466072205],[127.68080378506454,26.21236926863903]]]}},{"type":"Feature","properties":{"id":"beaufort","name":"Beaufort","color":"#939597","feature_id":"beaufort-0","coordinates":[-5.884989153529273,51.82305515495718]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.584105999999635,52.17489218348463],[-5.849924672272561,51.80540862998139],[-5.377266954753719,51.763777383135896],[-5.125215102655618,51.85573211838135]]]}},{"type":"Feature","properties":{"id":"tpu","name":"TPU","color":"#939597","feature_id":"tpu-0","coordinates":[150.20026301046514,16.574275964936565]},"geometry":{"type":"MultiLineString","coordinates":[[[145.20625803709336,14.576853976609653],[145.42186455104067,14.850056076332436],[145.63747106498886,15.011508499399486]],[[122.8730238593579,20.789874953693833],[121.74802465572199,19.34577048503237],[121.07814990718249,18.601843893825777]],[[-179.97676374562144,25.579505481562034],[-172.776773138787,28.781327858545534],[-163.77677307583247,32.648802835102664],[-151.17678200178437,36.35600267515968],[-124.15955921950356,40.803253108521126]],[[145.5437577986014,14.46794848402804],[145.37300792015816,13.758776740709814],[144.9230082389421,13.540131566252656],[144.809541651502,13.549094363148988]],[[120.88201985138694,22.34569808206579],[122.8730238593579,20.789874953693833],[131.42301780246206,18.352094170308565],[138.62301270191816,16.635422895611335],[144.47300855772602,14.68570566481149],[145.20625803709336,14.576853976609653],[145.5437577986014,14.46794848402804],[146.27300728259013,14.68570566481149],[151.22300377596605,17.066099764630273],[160.22299739969037,20.614481930232845],[179.99994672169302,25.579505481562034]]]}},{"type":"Feature","properties":{"id":"sihanoukville-hong-kong-shv-hk","name":"Sihanoukville-Hong Kong (SHV-HK)","color":"#939597","feature_id":"sihanoukville-hong-kong-shv-hk-0","coordinates":[110.01002679906081,12.571360602352751]},"geometry":{"type":"MultiLineString","coordinates":[[[103.506729,10.629948016412682],[103.83750067648003,9.52441134501949],[104.40000027621234,8.190543417795496],[105.29999964043219,7.967776882259704],[107.99999772772827,8.746907464137017],[109.12499693017237,9.967915186974132],[110.02499629260434,12.615395567393394],[112.72499438049614,18.251816319028222],[113.17499406171221,20.796306105108872],[114.2586832940168,22.31829267897149]]]}},{"type":"Feature","properties":{"id":"american-1","name":"AmeriCan-1","color":"#866baf","feature_id":"american-1-0","coordinates":[-122.59133453336406,48.01016245185861]},"geometry":{"type":"MultiLineString","coordinates":[[[-122.6471513365683,48.290598],[-122.79358877712178,48.27551390305846],[-122.79358877712178,48.23806972100289],[-122.63793388679308,48.11006090495571],[-122.6098139067135,48.034889597039694],[-122.55355394656864,47.959608461901695],[-122.49730398641668,47.90307887010544],[-122.46918045968634,47.82760546971162],[-122.44105402626471,47.714189281151164],[-122.3294391053337,47.60355999999983]],[[-123.41463833656836,48.43012000000036],[-123.0748385772857,48.35656994073399],[-122.6471513365683,48.290598]],[[-123.05676002859592,48.988680000000116],[-122.96233865698169,48.76606651214577],[-123.2435898915242,48.65471436482155],[-123.2435898915242,48.58034267150839],[-123.29983841789374,48.50586139322304],[-123.36725159811704,48.520397324657175]]]}},{"type":"Feature","properties":{"id":"anjana","name":"Anjana","color":"#939597","feature_id":"anjana-0","coordinates":[-40.72402000723348,38.72436239362389]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.88266988343256,33.69355790837514],[-78.26653698657397,33.565491482352044],[-76.94987125204935,33.565491482352044],[-62.09988177192116,34.683017659857974],[-50.39989006030513,36.33133835588799],[-39.59989771112098,39.00237890905839],[-23.399909187344846,43.401144973153954],[-16.199914287888834,45.0138336439531],[-9.899918750864702,45.96024524125342],[-5.849921619920758,45.331071073324864],[-4.724922416284671,44.694829089578164],[-3.810013065606984,43.46149931727051]]]}},{"type":"Feature","properties":{"id":"sunoque-ii","name":"Sunoque II","color":"#9f4a23","feature_id":"sunoque-ii-0","coordinates":[-68.86272863550103,48.58908639575682]},"geometry":{"type":"MultiLineString","coordinates":[[[-69.08359854223662,48.73935708855762],[-68.84987699075727,48.58034267150839],[-68.70931121562639,48.37278902244084]]]}},{"type":"Feature","properties":{"id":"sunoque-i","name":"Sunoque I","color":"#2c286e","feature_id":"sunoque-i-0","coordinates":[-68.35435428558303,48.8800286426663]},"geometry":{"type":"MultiLineString","coordinates":[[[-68.15248212795328,49.22103999999976],[-68.39987730954128,48.803129141654416],[-68.45945262418255,48.503259270981985]]]}},{"type":"Feature","properties":{"id":"vancouver-bowen-island-vancouver-island","name":"Vancouver-Bowen Island-Vancouver Island","color":"#854e9f","feature_id":"vancouver-bowen-island-vancouver-island-0","coordinates":[-123.895399598297,49.41860561220368]},"geometry":{"type":"MultiLineString","coordinates":[[[-124.35616907525649,49.3421444206449],[-124.08733786002196,49.429010440658146],[-123.74983809910962,49.41071483308015],[-123.63733817880552,49.3924124042524],[-123.42890625369192,49.343283488381665]],[[-123.33800982225094,49.38007937128451],[-123.27652986735704,49.374816039003974]]]}},{"type":"Feature","properties":{"id":"fish-west","name":"FISH West","color":"#939597","feature_id":"fish-west-0","coordinates":[-147.61809727128994,60.21192204007282]},"geometry":{"type":"MultiLineString","coordinates":[[[-145.75467386865427,60.542748324277206],[-145.77169749861793,60.62214016805568],[-145.79982247869393,60.62214016805568],[-146.02482231930196,60.59453398451654],[-146.61544690089795,60.5392507415089],[-146.6118661862618,60.482480231842025],[-146.6716968610499,60.52541515489329],[-147.15173333746702,60.42722573091017],[-147.49861045536474,60.29714870250724],[-147.5898620287615,60.22409468936658],[-147.79578024891978,60.13532016318152],[-147.90828343249714,60.07925524504043],[-148.01078611085993,60.065087981861794],[-148.04982088477394,60.03743169846873],[-148.13419582500197,60.009326600079234],[-148.21857156809125,60.009326600079234],[-148.49982056598992,59.84019347070499],[-149.0623201675099,59.84019347070499],[-149.28732000811794,59.84961238502145],[-149.34357074271136,59.906069924574304],[-149.4476706657402,60.110049313261904]]]}},{"type":"Feature","properties":{"id":"sunoque-iii","name":"Sunoque III","color":"#939597","feature_id":"sunoque-iii-0","coordinates":[-66.47500823454705,49.679665839235454]},"geometry":{"type":"MultiLineString","coordinates":[[[-66.40694325248745,50.230913957960496],[-66.47487867322835,49.68443309948498],[-66.49011413130242,49.123838360364786]]]}},{"type":"Feature","properties":{"id":"t3","name":"T3","color":"#d02a3f","feature_id":"t3-0","coordinates":[45.03562963425208,-27.137914527598255]},"geometry":{"type":"MultiLineString","coordinates":[[[30.88039235938437,-30.05771707645661],[32.40005128343957,-30.018154882677354],[38.70004682046353,-28.348517239947288],[45.00004235748766,-27.15383128539156],[47.700040444783745,-25.94623071841455],[52.20003725575196,-23.08058350574764],[54.675035502439826,-21.623977662097285],[55.350035024859835,-21.79817640109735],[56.02503454668376,-21.79817640109735],[56.70003406791198,-20.995131543025785],[57.15003375031967,-20.679706953509093],[57.485483512684034,-20.473995660946287]]]}},{"type":"Feature","properties":{"id":"submarine-cable-in-the-philippines-scip","name":"Submarine Cable in the Philippines (SCiP)","color":"#224092","feature_id":"submarine-cable-in-the-philippines-scip-0","coordinates":[122.42603465916574,12.165698513473048]},"geometry":{"type":"MultiLineString","coordinates":[[[123.98834884332426,10.406420283136939],[124.0551621347531,10.590420891923138],[124.24666621783989,10.93201162513164],[124.14373629075637,11.294709319565477],[124.01730638032068,11.246494999999399],[123.93298644005357,11.427191410552973],[122.96248712816029,11.955858207114732],[122.39998752664029,12.175887185507976],[122.17498768543635,12.065895273570327],[122.03325741497643,11.86790448093766],[121.83748792512029,12.175887185507976],[121.72498800422028,12.395734000022975],[121.52772251956107,12.586423162176041],[121.55623182195282,12.834868817846521],[121.46453818932153,13.045782550710932],[121.62498807506134,13.273238157547594],[121.47853039186327,13.620875075300322],[121.06600847164388,13.762418337904428]],[[124.63191594552143,8.454147535358473],[124.59373597256834,8.635699417327467],[123.74998657028833,9.02478143560688],[123.5249867296803,9.08033076823294],[123.28143690221334,9.295503918747997],[123.5249867296803,9.413444258507564],[123.69373661073246,9.801670473167492],[123.8062365298444,10.07869800665097],[123.83892650668652,10.252013798268077]],[[124.84217394836772,10.178582995816972],[124.81873581258047,9.967915186974132],[125.15623557408834,9.746236973759974],[125.43748537425243,9.302441529883154],[125.54061530179015,8.947610463936108]],[[124.61277595908027,11.006888020676206],[124.42498609211226,10.797840764398114],[124.31248617180833,10.742581675476407],[124.1999862503126,10.521444685552128],[124.14373629075637,10.41081650540272],[123.98834884332426,10.406420283136939]],[[124.08471633256691,12.585260603443063],[124.2281112315803,12.505588131780646],[124.28238619313154,12.501390118608773]],[[120.48748888087634,11.735650161405832],[120.37498896116831,11.790718790556442],[120.2007690845874,12.005434247136186]],[[121.05018848285071,12.363012914770698],[120.71248872148438,12.175887185507976],[120.48748888087634,11.735650161405832],[120.03748919966027,11.073982781226615],[119.50037958074992,10.820000490489418]]]}},{"type":"Feature","properties":{"id":"taiwan-penghu-kinmen-matsu-no-2-tpkm2","name":"Taiwan Penghu Kinmen Matsu No.2 (TPKM2)","color":"#5a266c","feature_id":"taiwan-penghu-kinmen-matsu-no-2-tpkm2-0","coordinates":[119.54182501885121,24.361968609765935]},"geometry":{"type":"MultiLineString","coordinates":[[[121.4626481900644,25.181604223404467],[121.27498832360028,25.742038029757644],[120.71248872148438,26.39468192538876],[120.49296999999949,26.36733136664364]],[[120.64548999999985,24.432462601860976],[120.26248904026849,24.361968609765935],[118.79999007631633,24.361968609765935],[118.43944000000037,24.43748260175769]],[[120.17047428762343,23.362789999999872],[119.92498927935526,23.43629494132288],[119.65616428762347,23.573629999999714]]]}},{"type":"Feature","properties":{"id":"red2med","name":"Red2Med","color":"#7b231b","feature_id":"red2med-0","coordinates":[32.46450486346411,29.757919351074577]},"geometry":{"type":"MultiLineString","coordinates":[[[33.08276564295245,28.365936333863583],[32.85009096581918,28.95155473219332],[32.65318110412008,29.113614162980063],[32.597126143829826,29.344566989489813],[32.42805126360424,29.63833609362628],[32.52993119143143,29.972545436050364],[32.40005128284368,30.174689758498985],[32.28755136253957,30.3690092136078],[32.28755136253957,30.5144959597591],[32.2313014023876,30.837020582397155],[32.28445136473581,31.25927814644905]]]}},{"type":"Feature","properties":{"id":"r100-north","name":"R100 North","color":"#dc673d","feature_id":"r100-north-0","coordinates":[-1.9581204936924819,59.35416748980049]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.966812000000357,60.687366],[-1.006829199999834,60.670131500000075]],[[-1.055590000000232,60.49937],[-1.124924967748694,60.47001365336859],[-1.182159999999831,60.459095000000126]],[[-1.287109,59.869131],[-1.237424888052713,59.79305890746809],[-1.293674848204677,59.679663707208995],[-1.518674688812714,59.50884868221247],[-1.613773299999882,59.52620960000002]],[[-1.024927000000176,60.341001],[-1.096799987672712,60.34501374899555],[-1.141477199999912,60.35144499999984]],[[-2.701495800000123,59.206322700000094],[-2.653659599999727,59.14894449999988]],[[-2.766228299999957,59.19230079999994],[-2.701495800000123,59.206322700000094]],[[-2.857578,59.255412999999855],[-2.783827099999826,59.22520800000012]],[[-3.110331300000158,59.11455549999981],[-3.078059000000208,59.143849]],[[-2.836203799999726,59.025199800000166],[-2.817720399999507,58.97922209999994]],[[-3.172025800000238,58.82274489999989],[-3.145124800000123,58.829682499999926]],[[-3.085608400000125,58.83105969999991],[-2.991369399999906,58.82640279999986]],[[-6.160692900000444,56.91203019999982],[-6.187421381428714,56.938040549953584],[-6.131171421276659,56.95338085470123],[-6.018671500972732,56.92269393303196],[-5.850779599999858,56.94698189999991]],[[-5.442403500000316,56.55241430000003],[-5.412411499999956,56.55230859999992]],[[-6.394503299999858,56.32939380000002],[-6.368239099999712,56.32334989999989]],[[-6.177803799999942,56.29173430000007],[-6.159296401352733,56.24117122829028],[-6.187421381428714,56.178604166899405],[-6.215546361504696,56.11593496129503],[-6.180188800000331,56.10365919999993]],[[-1.518674688812714,59.50884868221247],[-1.799924488976633,59.3944892668567],[-2.137424251676663,59.308465664600874],[-2.419078999999785,59.28984460000003]]]}},{"type":"Feature","properties":{"id":"piano-isole-minori","name":"Piano Isole Minori","color":"#3d71b7","feature_id":"piano-isole-minori-0","coordinates":[11.939137663311069,36.84014569717215]},"geometry":{"type":"MultiLineString","coordinates":[[[14.954325432103394,38.46838692145895],[14.965563633598306,38.42411761228048]],[[12.434917,37.80009191125516],[11.948015771257374,37.546826221282146],[11.756315907059484,37.23235432155614],[11.943459999999734,36.8308729620145],[12.543815349187524,36.24065523321488],[12.712565230239315,36.013486867197166],[12.860768932962662,35.858363616715195]],[[12.607558387730421,35.50153147422573],[12.712565230239315,35.602930322906126],[12.860768932962662,35.858363616715195]],[[12.513618000000546,38.01825390905765],[12.341014787775245,37.988207019957805],[12.073620000000234,37.96852790831799]],[[13.197330511231112,38.70802384499234],[13.33131479131538,38.38775473578444],[13.247603185879443,38.18994270418196]],[[14.358271440312812,38.535852973600846],[14.521948947859018,38.51099232259914],[14.576656824541493,38.564906522723184],[14.69069882831491,38.57855582737546],[14.836638463843066,38.578318962419935],[14.91568866893015,38.55656955905981],[14.96361363497976,38.488436612601895]],[[14.954325432103394,38.46838692145895],[14.965563633598306,38.42411761228048],[14.91568866893015,38.38039815807658],[14.91568866893015,38.24955995501156],[14.968438937975494,38.14702208251733]],[[15.23351223762506,38.80580638197693],[15.18756347633146,38.681091555174525],[15.075900768577364,38.6367791699852],[15.075063556027533,38.54923800463281],[14.96361363497976,38.488436612601895]],[[8.379527706426767,39.206570282821524],[8.302684658371321,39.145528666527596]],[[8.336105703397353,41.08172628147518],[8.228993742790532,40.948085546349]],[[15.563363144424395,41.91869836444879],[15.488973558507714,42.115432900583684],[15.508871650161664,42.123036161233884]],[[9.842201117068242,43.0482648142909],[10.316441790280782,42.812137578116904]],[[13.565445462699188,41.217935235484155],[12.958679203595063,40.895780106420354],[13.428232823149918,40.795367333718616],[13.454176273067278,40.78994446306511]]]}},{"type":"Feature","properties":{"id":"east-micronesia-cable-system-emcs","name":"East Micronesia Cable System (EMCS)","color":"#ed1b2c","feature_id":"east-micronesia-cable-system-emcs-0","coordinates":[165.1337907924087,2.3794925152748263]},"geometry":{"type":"MultiLineString","coordinates":[[[166.94995596642866,0.943545268913197],[166.94995596642866,0.71856924087599],[166.92110320261116,0.546700000000151]],[[163.12495867609277,5.659359572411489],[163.01245875578866,5.435413643888211],[163.00810320261044,5.327899999999427]],[[159.070334,7.786484021061388],[160.19996074818866,7.447522319872199],[163.12495867609277,5.659359572411489],[165.59995692278082,1.618372199773176],[166.94995596642866,0.943545268913197],[171.89995245980478,1.393450214463454],[172.97909999999962,1.329098003182317]]]}},{"type":"Feature","properties":{"id":"energy-bridge-cable","name":"Energy Bridge Cable","color":"#d96048","feature_id":"energy-bridge-cable-0","coordinates":[36.680986786561256,45.42731784547227]},"geometry":{"type":"MultiLineString","coordinates":[[[36.59112538599644,45.43102598053393],[36.77084818712606,45.423609710410595]]]}},{"type":"Feature","properties":{"id":"aurora","name":"Aurora","color":"#43499e","feature_id":"aurora-0","coordinates":[15.61283240960375,55.803751859339975]},"geometry":{"type":"MultiLineString","coordinates":[[[12.414885440522585,55.64730549999991],[12.487565389631278,55.526080187888724],[12.600065309935387,55.494228077820765],[12.916666440522198,55.533333]],[[18.250313736376413,58.936123],[18.22506132453951,58.758568944882946],[18.337561244843435,58.641677771385005],[18.787560926059513,58.05131589106027],[19.05532073637588,57.863008]],[[18.3000312714301,57.63842],[18.00006148393147,57.59199374701106],[17.32506196210754,57.47120623080026],[17.00849265102517,57.32475822033841]],[[16.468076609305953,56.24572402102604],[16.08756283876343,56.03221697111693],[15.30006339723147,55.65323105219792],[14.836283725181318,55.24821367563846]],[[14.240754147060123,55.433900600000094],[14.512563954507531,55.33458061322904],[14.708328999999699,55.18257019610301]],[[14.708333815822416,55.101017],[14.400064034799321,54.884127437867534],[13.648694566480692,54.51955]]]}},{"type":"Feature","properties":{"id":"tikal-amx3","name":"TIKAL-AMX3","color":"#939597","feature_id":"tikal-amx3-0","coordinates":[-85.04597081638113,22.475410567239763]},"geometry":{"type":"MultiLineString","coordinates":[[[-86.76758665233304,21.09572879236739],[-86.51236447788929,21.006499845176737],[-86.17486471697732,21.006499845176737],[-85.72486503635743,20.936468000149056]],[[-80.08893152830949,26.350585697437857],[-79.64986933994133,25.957179978764344],[-79.76236925964936,25.348717422116714],[-80.09986902056123,24.73717827217609],[-80.99986838299347,23.91710129093513],[-83.2498667890733,23.91710129093513],[-84.82486567332928,22.884654113882444],[-85.4998651951533,21.635297384859552],[-85.72486503635743,20.936468000149056],[-85.83736495666136,20.375041253465433],[-86.84986423880135,18.251816319028222],[-87.74986360123332,16.534196198259725],[-88.1998632824493,16.10232559580297],[-88.59713531004529,15.727236638721036]]]}},{"type":"Feature","properties":{"id":"connected-coast","name":"Connected Coast","color":"#939597","feature_id":"connected-coast-0","coordinates":[-126.8341387596477,50.54897851420423]},"geometry":{"type":"MultiLineString","coordinates":[[[-125.02289129999988,48.96451208999974],[-125.22483705420657,48.96341767073521],[-125.3642743999999,49.007252349999945]],[[-126.61890059999992,49.59185601999993],[-126.49358750709344,49.61563463415015],[-126.38108758963149,49.652066036289725],[-126.15608775470743,49.68847019007453],[-126.05444189999996,49.78104817000019]],[[-127.11233571708493,49.815676682583636],[-126.99983579678073,49.85195506115428],[-126.98495349999985,49.884975600000395]],[[-126.74178759999992,49.87491869999993],[-126.80295093625597,49.90632321900464],[-126.91546085655288,49.870085656987875],[-126.97171081670484,49.870085656987875],[-126.98495349999985,49.884975600000395]],[[-127.65441779999993,50.535297809999925],[-127.77483524776397,50.49242740022417],[-127.88733516806799,50.47452827438072],[-128.02796006844798,50.47452827438072]],[[-127.58161839999998,50.59938479000021],[-127.49580677179371,50.720878251368546]],[[-128.03325680000003,50.44270213000031],[-128.02796006844798,50.47452827438072],[-128.0281361,50.52390510999994]],[[-128.02407260000004,50.65227310999998],[-127.77483524776397,50.59966078659782],[-127.58161839999998,50.59938479000021]],[[-127.65441779999993,50.535297809999925],[-127.58161839999998,50.59938479000021]],[[-127.65441779999993,50.535297809999925],[-127.488056,50.42666700000024]],[[-127.3785471000001,50.03085274999997],[-127.28108692932756,49.92443018908899],[-127.11233571708493,49.815676682583636]],[[-126.91546085655288,49.870085656987875],[-126.94066089999995,49.989339350000236]],[[-126.84543780000006,49.98239051],[-126.80295093625597,49.90632321900464]],[[-126.74178759999992,49.87491869999993],[-126.63420105579999,49.833814436152586]],[[-126.65469529999984,49.92630485999983],[-126.63420105579999,49.833814436152586],[-126.60608107572041,49.68847019007453],[-126.61890059999992,49.59185601999993],[-126.60608107572041,49.396473691979516],[-126.49359115540928,49.35985139525818],[-126.27236909999998,49.36844717999986]],[[-125.98733151404844,49.21309249677026],[-126.09982143435957,49.21309249677026],[-126.24047133472175,49.249817465166835],[-126.2967212948737,49.34153001255497],[-126.27236909999998,49.36844717999986]],[[-126.05634120000003,49.27631697999994],[-125.98733151404844,49.21309249677026],[-125.907312,49.173502830000245],[-125.90621339999997,49.15253760000007]],[[-125.54668160000001,48.941831000000334],[-125.43397849999991,48.95979785999976],[-125.380662,48.994208740000296],[-125.3642743999999,49.007252349999945]],[[-125.14150869999993,48.83282788000024],[-125.0333616,48.88316308000008]],[[-125.04228309999998,49.02105635999993],[-125.02289129999988,48.96451208999974]],[[-125.0333616,48.88316308000008],[-125.02289129999988,48.96451208999974]],[[-124.55654750000006,49.75772627999974],[-124.523809,49.8358899999998]],[[-124.48885459999974,49.67789231999991],[-124.928266,49.67351299999971]],[[-123.51457759999998,49.40161704999969],[-123.74983809910962,49.429010440658146],[-124.08733786002196,49.538640877995576],[-124.08733786002196,49.68443309948498],[-123.97483793971757,49.79349119144722],[-124.17988590000003,49.783268039999825],[-124.36858766078123,49.75716572784409],[-124.55654750000006,49.75772627999974]],[[-126.20021409999995,50.94987262999997],[-126.33733626610179,50.92974809176575],[-126.50608749792255,50.92974809176575],[-126.55858745940486,50.848866325733916]],[[-126.75261187443787,50.61394812106694],[-126.75364097118762,50.67033552833753],[-126.72551479577369,50.72376904779043],[-126.6411341485579,50.75936358394642],[-126.49734715005867,50.74991847293468],[-126.52864183757086,50.79493410837472],[-126.55858745940486,50.848866325733916]],[[-126.59874742994063,50.70054017294747],[-126.6411341485579,50.67033552833753],[-126.61076460042727,50.573835184307484],[-126.75261187443787,50.61394812106694],[-126.84948623675689,50.63365191110994],[-126.8917167994461,50.61138344935585],[-127.06857708524,50.6214683879521],[-127.15484702194624,50.63120042038277]],[[-125.50343684333376,50.412765239933556],[-125.5467482017625,50.37733322590891]],[[-125.95901354477375,50.38434418820626],[-125.83107162474447,50.38892868152936],[-125.74671168450571,50.3709967557743],[-125.66233674427777,50.3709967557743],[-125.5467482017625,50.37733322590891],[-125.49358824076445,50.35305805049016],[-125.44561591823906,50.33139503733066],[-125.41540137561992,50.300060895732926],[-125.44214123814987,50.27742985648948],[-125.30261850538005,50.23583903062007]],[[-127.2105123320581,51.680119439312605],[-127.4623204691525,51.64504609032705],[-127.54671040936974,51.57518259747888],[-127.57483538944572,51.505211554524436],[-127.64481414210549,51.40557093447968]],[[-127.49580677179371,50.720878251368546],[-127.43420048907284,50.76400091416258],[-127.406076837626,50.76400091416258],[-127.237326961433,50.692788787519305],[-127.1897520459016,50.612145899404105],[-127.15484280035233,50.63120042038277],[-127.06857708524,50.6125425495688],[-127.00083579607245,50.582552529196676],[-126.9263371154381,50.588350919856595],[-126.83111117990482,50.547685615900775],[-126.7310773328539,50.550039661516315],[-126.61857741539197,50.51428147959937],[-126.44982753919888,50.496396995063854],[-126.2248277042749,50.478499373021876],[-126.08555943379818,50.49276847686975]],[[-128.72301587142533,52.26232295213411],[-128.58733467218178,52.26898811247549],[-128.40536610447592,52.271593097452715]],[[-130.3300698311155,54.313075],[-130.38751465023,54.287784565961346]],[[-126.08555943379818,50.49276847686975],[-125.95901354477375,50.38434418820626]],[[-125.1861984662876,49.91955265840255],[-125.24816842082198,50.02461]]]}},{"type":"Feature","properties":{"id":"connected-coast","name":"Connected Coast","color":"#ca1d5c","feature_id":"connected-coast-1","coordinates":[-128.63232255382107,53.132572192762204]},"geometry":{"type":"MultiLineString","coordinates":[[[-124.523809,49.8358899999998],[-124.76127877803908,49.98196414284952]],[[-128.640889,54.059548420000134],[-128.64759510000002,53.97442960000009],[-128.7788345365215,53.850100347217946],[-128.8913344568256,53.74925378592342],[-129.11633429743335,53.68267763542396],[-129.22883421773747,53.54920902084056],[-129.25478833578578,53.4252931058726]],[[-123.43478849999994,49.39615687999982],[-123.43887940000005,49.43963952000016],[-123.51457759999998,49.40161704999969]],[[-123.114034,49.260440000000195],[-123.35608837804642,49.31913446298367],[-123.43478849999994,49.39615687999982]],[[-127.64481414210549,51.40557093447968],[-127.74358659000471,51.40005320024472],[-127.85608650746674,51.32981301612922],[-127.83443834465406,51.24964662436544],[-127.85608650746674,51.18900930466248],[-127.79983523005376,51.04777407760083],[-127.72464476418678,50.97750112024519],[-127.61277278412608,50.860359994026965],[-127.51857675508803,50.83510482241375],[-127.46232046915242,50.76400091416258],[-127.49580677179371,50.720878251368546]],[[-127.95147226786968,52.06367943450714],[-127.91233015036129,51.958102539867376],[-127.94046013043375,51.853991886922685],[-127.94046013043375,51.71480209466681],[-127.86370028877155,51.60320130299947],[-127.85608650746674,51.540210523593544],[-127.74358659000471,51.40005320024472]],[[-124.81641098708053,50.0357787156605],[-124.82003734097059,50.01296739997825],[-124.76127877803908,49.98196414284952]],[[-131.9298034706778,53.56252710216991],[-131.73733244069396,53.524396750400264],[-130.83733307826125,53.524396750400264],[-130.6144988848554,53.49227407843297],[-130.61233323765376,53.65794367159378],[-130.49983331734975,53.72455893285006],[-130.43327104649978,53.794671349185506],[-130.33108469163105,53.857473440304716],[-130.25851447378096,53.94951651353444]],[[-130.25851447378096,53.94951651353444],[-130.27804473054493,54.14231329672858],[-130.32127803890825,54.223392151062704]],[[-130.32127803890825,54.223392151062704],[-130.49983331734975,54.250043061793065],[-130.4444201348533,54.33705541814711],[-130.49983331734975,54.44675601642588],[-130.43405684195642,54.55439491921293]],[[-127.69350873628818,52.35335745745368],[-127.72202740406783,52.36014436999047],[-127.79057832269325,52.26794328251682],[-127.95147226786968,52.06367943450714],[-128.06345114247472,52.06571648865028],[-128.1109469081848,52.096441035551365],[-128.12231269840387,52.15394371648719],[-128.14470446316773,52.16114984088366],[-128.11186854799377,52.18517417339168],[-128.40536610447592,52.271593097452715],[-128.48841325672365,52.317033868530515],[-128.47483475187786,52.4407664729555],[-128.52487321432534,52.591778817615186],[-128.5238351398498,52.643028264222046],[-128.53108601223883,52.78232285776401],[-128.53108601223883,52.985979380441314],[-128.58733467218178,53.121219363028196],[-128.70071815397395,53.149832031963186],[-128.92483443309376,53.32328423459359],[-129.1498342737018,53.32328423459359],[-129.25478833578578,53.4252931058726],[-129.26233419400572,53.35686906888986],[-129.37483411430983,53.39042745806576],[-129.431085351935,53.45746493836576],[-129.6056764015309,53.54320510255879],[-129.82483379552582,53.72455893285006],[-130.04983363613377,53.857473440304716],[-130.25851536025976,53.94951651353444]],[[-126.7527673169406,52.37214793561003],[-126.90461720553263,52.3382317218636],[-127.1296170404567,52.3382317218636],[-127.24086695883584,52.441217560480155],[-127.35336687629787,52.441217560480155],[-127.46586679375982,52.372587034211804],[-127.57836909607062,52.30385008818358],[-127.79057491184655,52.26794328251682]],[[-124.83905872097411,50.1237481500032],[-124.90155867511967,50.08366067969953]],[[-125.10181852819476,50.2314795270948],[-125.16070877237037,50.172390288106364],[-125.1959579476632,50.137057106101715],[-125.21592527387554,50.10125851949136],[-125.04927488516667,50.11121239715361],[-125.09983714275776,50.04700743933893],[-124.98642332019199,50.06310304527359],[-124.93253726127452,50.01296739997825],[-124.81641098708053,50.0357787156605],[-124.90103138578722,50.08449796406866],[-124.91752768258516,50.117380658006994]],[[-123.8440093857028,49.17330175420969],[-123.93561821991443,49.254577397512264],[-124.12351458051008,49.25190624440014],[-124.20451007380892,49.35223052890989],[-124.44320399853738,49.34943591538804],[-124.68672835476215,49.44353722792704],[-124.71356875282478,49.49345629218801],[-124.69712882510406,49.5134805257975],[-124.928266,49.67351299999971],[-124.82908872828878,49.70666851761774],[-124.82908872828878,49.724853565783754],[-124.94158864575081,49.79752567334692],[-125.04910592224829,49.8242225821597],[-125.1861984662876,49.91955265840255]],[[-125.1861984662876,49.91955265840255],[-125.10128500014197,50.01296739997825],[-124.98642332019199,50.06310304527359]],[[-123.114034,49.260440000000195],[-123.58108821865311,49.2824545474234],[-123.8440093857028,49.17330175420969]]]}},{"type":"Feature","properties":{"id":"haikou-beihai-cable","name":"Haikou-Beihai Cable","color":"#2cb2a0","feature_id":"haikou-beihai-cable-0","coordinates":[109.23507396949964,20.636748911764943]},"geometry":{"type":"MultiLineString","coordinates":[[[109.10530694412087,21.484500999999632],[109.2374968504763,20.620920527000067],[109.67761999999983,19.9048]]]}},{"type":"Feature","properties":{"id":"ningbo-zhoushan-cable","name":"Ningbo-Zhoushan Cable","color":"#1d9cbb","feature_id":"ningbo-zhoushan-cable-0","coordinates":[121.7635625900212,30.160824343859357]},"geometry":{"type":"MultiLineString","coordinates":[[[121.63985462881675,30.043111146660067],[121.72498800422028,30.158479119660896],[121.94569495659735,30.17189746945603]]]}},{"type":"Feature","properties":{"id":"dalian-yantai-cable","name":"Dalian-Yantai Cable","color":"#31549b","feature_id":"dalian-yantai-cable-0","coordinates":[121.60653576225305,38.220731410663035]},"geometry":{"type":"MultiLineString","coordinates":[[[121.58836700725392,38.9398441207995],[121.61248808391635,38.240638159471985],[121.4,37.53]]]}},{"type":"Feature","properties":{"id":"petropavlovsk-kamchatsky---anadyr","name":"Petropavlovsk-Kamchatsky - Anadyr","color":"#af2364","feature_id":"petropavlovsk-kamchatsky---anadyr-0","coordinates":[170.26763442158432,54.849677985687286]},"geometry":{"type":"MultiLineString","coordinates":[[[177.64027839330407,64.73783998148912],[177.57455843986074,64.72253629248193],[177.5021457567835,64.72719091772642],[178.64994767804478,64.28486693839773],[179.7749468810848,63.79239592397761],[179.99994764163228,63.596795905217576]],[[-179.99979746953576,63.596795905217576],[-179.07782904260674,62.78108049372607],[-179.9997982511102,61.488538765323895]],[[179.99994686005783,61.488538765323895],[179.5719170249131,60.8695351663294],[173.1249515920039,55.90629872677893],[168.29995501007673,54.1220405712827],[159.74996106697276,52.646019980375456],[158.65001067431297,53.01666789688405]]]}},{"type":"Feature","properties":{"id":"cadmos-2","name":"CADMOS-2","color":"#939597","feature_id":"cadmos-2-0","coordinates":[34.53155372323315,34.33003036030243]},"geometry":{"type":"MultiLineString","coordinates":[[[33.61060042587536,34.82728147271538],[33.97505016769547,34.59045588265237],[35.10004937013957,34.063992930126034],[35.48510909795581,33.89263712836985]]]}},{"type":"Feature","properties":{"id":"norfest","name":"Norfest","color":"#4db748","feature_id":"norfest-0","coordinates":[7.781000063263284,57.870716716344766]},"geometry":{"type":"MultiLineString","coordinates":[[[10.575066743867334,59.06836550247494],[10.91256650477948,58.98151591602632],[11.118406358960579,58.96833839999996]],[[10.237566982955368,58.89444683796138],[10.016367140251454,59.081110697513395]],[[9.112567779915365,58.36740335134618],[8.758668030621324,58.470047]],[[8.325068337787325,57.932056586951404],[7.99484857171814,58.143805]],[[6.52506961292339,57.928738157570194],[6.786929427419412,58.06444]],[[10.700836654770828,59.459167],[10.571156746637262,59.30270062107635],[10.575066743867334,59.06836550247494],[10.237566982955368,58.89444683796138],[9.900067222043404,58.71964879559121],[9.450067540827328,58.48521196181824],[9.112567779915365,58.36740335134618],[8.662568098699472,58.07115384928297],[8.325068337787325,57.932056586951404],[7.875068657167333,57.87227791046836],[6.883089359298951,57.85581468734289],[6.52506961292339,57.928738157570194],[5.962570011403388,58.26235337816782],[5.988709992885582,58.42414318521949],[5.512570330187313,58.48521196181824],[5.287570489579458,58.641677771385005],[5.287570489579458,58.81686755183246],[5.512570330783214,58.99117670269853],[5.730770176208511,58.9708214866686]],[[10.748015840098633,59.91860302672068],[10.575066743867334,59.755303236949786],[10.630839956892295,59.664530734634965],[10.603191723943405,59.52787100202252],[10.700836654770828,59.459167]]]}},{"type":"Feature","properties":{"id":"arimao","name":"ARIMAO","color":"#c45527","feature_id":"arimao-0","coordinates":[-71.54107005893853,16.92861162038969]},"geometry":{"type":"MultiLineString","coordinates":[[[-80.44896128872459,22.145949778587273],[-80.09986902115732,21.356164482330126],[-79.4248694987373,20.375041253465433],[-77.73737069477338,19.13983629420715],[-76.20409564349075,18.676174475359762],[-74.69987284596934,17.82393441253792],[-71.99987475867334,17.07267593989621],[-66.14987890286528,15.23578178303578],[-62.09988177251724,14.51091612787219],[-61.112138356061955,14.629000145423495]]]}},{"type":"Feature","properties":{"id":"eastern-light-sweden-finland-ii","name":"Eastern Light Sweden-Finland II","color":"#939597","feature_id":"eastern-light-sweden-finland-ii-0","coordinates":[21.31191197553788,59.90808366284734]},"geometry":{"type":"MultiLineString","coordinates":[[[24.65578212250267,60.206780251145716],[24.412558910536177,60.13094306980754],[23.850058953274402,60.074868164985745],[23.175059004559692,60.01869775526425],[22.966757966073065,59.82340864139905],[22.725058137295427,59.79305890746809],[21.37505899829746,59.9060700138268],[20.907999423920963,59.9209637334888],[20.250059226800076,59.62282165244601],[18.900059329371565,59.50884849264949],[18.33755937210979,59.42311514129758],[17.943566877498796,59.40288874272467]]]}},{"type":"Feature","properties":{"id":"timor-leste-south-submarine-cable-tlssc","name":"Timor-Leste South Submarine Cable (TLSSC)","color":"#f5ae1a","feature_id":"timor-leste-south-submarine-cable-tlssc-0","coordinates":[127.49410608780575,-9.106975524434176]},"geometry":{"type":"MultiLineString","coordinates":[[[125.57937980498313,-8.559447499464328],[125.77498513397242,-8.34548869989964],[126.44998465758441,-8.28983042135627],[126.8999843382044,-8.141369965795338],[127.34998401942048,-8.252720521974979],[127.57498386002852,-9.586362493293953],[127.23748409911637,-10.47259892498978],[126.44998465698852,-11.55232519729577]]]}},{"type":"Feature","properties":{"id":"medloop","name":"Medloop","color":"#939597","feature_id":"medloop-0","coordinates":[7.781855630424146,42.18150710942117]},"geometry":{"type":"MultiLineString","coordinates":[[[7.200069135343221,42.908732427720366],[7.425068975355357,42.329239699665536],[8.414618274945335,41.91950273465837],[8.738738045335882,41.91950273465837]]]}},{"type":"Feature","properties":{"id":"medloop","name":"Medloop","color":"#9d4529","feature_id":"medloop-1","coordinates":[7.308275093342992,42.98029988712455]},"geometry":{"type":"MultiLineString","coordinates":[[[5.962570011403388,42.661038814490205],[4.050071366235344,41.68837522565799],[2.700072322587302,41.26694507168783],[2.168725042748786,41.38560270176812]],[[8.938867903561944,44.41035752885385],[8.887567939307326,44.05151922873524],[8.437568258091433,43.72721479104982],[7.200069135343221,42.908732427720366],[6.412569692619463,42.661038814490205],[5.962570011403388,42.661038814490205],[5.372530429989069,43.29362778902908]]]}},{"type":"Feature","properties":{"id":"asia-link-cable-alc","name":"Asia Link Cable (ALC)","color":"#939597","feature_id":"asia-link-cable-alc-0","coordinates":[112.41647789726676,10.043700582907936]},"geometry":{"type":"MultiLineString","coordinates":[[[114.20292333351767,22.22205041973683],[114.41249318505615,20.796306105108872],[114.7499929459683,19.104405475930452],[114.97499278657615,18.265170800514795],[114.7499929453724,17.12195969020027],[114.07499342354828,14.801154224791581],[113.39999390232026,12.615395567393394],[112.38749461958417,9.967915186974132],[111.14999549624025,7.744889052551447],[107.99999772772827,5.286069860821008],[107.09999836529612,4.725718053703611],[105.74999932164808,3.940475772228814],[104.90624991936826,2.803404866588448],[104.66056009282137,1.961481175550864],[104.47058772799548,1.468426767331968],[104.28790035741287,1.299801162778933],[104.19209042528557,1.26242303552454],[103.98701057056589,1.389451396800233]],[[104.11414047991015,1.925884465105483],[104.32889093295785,2.027683761259223],[104.66056009282137,1.961481175550864]],[[114.07499342354828,14.801154224791581],[109.79999645259221,15.994209911785974],[108.89999709016024,16.10232559580297],[108.19247759137373,16.043393005208348]],[[111.14999549624025,7.744889052551447],[112.94999422050827,5.883218793719735],[114.29999326475222,5.174038327226071],[114.88563284987971,4.926762452886689]],[[114.7499929459683,19.104405475930452],[113.84999358353615,18.678647022154717],[111.09966159348336,18.505614628693614],[110.0493762753333,18.389897000000236]],[[114.7499929453724,17.12195969020027],[116.99999135204831,16.857467609772335],[119.92498927995224,16.749771315644697],[120.35557897432248,16.51402516186766]],[[114.97499278657615,18.265170800514795],[116.99999135204831,18.038005439608753],[119.92498927995224,16.857467609772335],[120.35483897484683,16.830716773770945]]]}},{"type":"Feature","properties":{"id":"manta","name":"MANTA","color":"#939597","feature_id":"manta-0","coordinates":[-80.95313552313398,16.0271021935348]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.74986997750936,12.542195817724492],[-79.4248694987373,9.967915186974132],[-79.7535392665006,9.437546999999826]],[[-75.50568227572235,10.387005000000206],[-76.0498718896173,10.963556857789316],[-78.74986997750936,12.542195817724492],[-79.64986934053732,13.92930384327183],[-80.99986838299328,16.10232559580297],[-82.34986742664132,17.395022634700517],[-85.04986551393732,19.104405475930452],[-86.0623647972694,20.375041253465433],[-86.17486471816949,21.635297384859552]],[[-86.01795306402694,25.56262900538288],[-84.59986583331732,27.896238989528694],[-84.11536453807635,29.953701800771658]],[[-86.01795306402694,25.56262900538288],[-88.19986328304547,23.848523186487938],[-91.79986073277334,23.022776999376084],[-94.49985882006952,21.356164482330126],[-96.14075765764133,19.195461502894283]],[[-84.82486567332928,24.94136317175375],[-84.82486567332928,23.91710129093513],[-86.17486471816949,21.635297384859552],[-86.51236447788929,21.32123529551186],[-86.76758665233304,21.09572879236739]],[[-80.16222149909747,25.933097],[-80.21236894086552,25.348717422116714],[-80.99986838299365,24.73717827217609],[-83.2498667890733,24.73717827217609],[-84.82486567332928,24.94136317175375],[-86.01795306402694,25.56262900538288]]]}},{"type":"Feature","properties":{"id":"taiwan-penghu-kinmen-matsu-no-3-tpkm3","name":"Taiwan Penghu Kinmen Matsu No.3 (TPKM3)","color":"#4dbd9a","feature_id":"taiwan-penghu-kinmen-matsu-no-3-tpkm3-0","coordinates":[119.3265271405332,23.740064833138533]},"geometry":{"type":"MultiLineString","coordinates":[[[119.93434927272565,26.15516],[119.98859609999977,26.225407299999837],[120.14998911996437,26.243424884980424],[120.37498896057242,26.29386583975231],[120.4929700000004,26.367336499999546]],[[119.93434927272565,26.15516],[119.86873931920438,26.041442343792944],[119.93907506033597,25.973144107820715]],[[119.93434927272565,26.15516],[120.26248903788452,25.75470426341523],[120.93748856149652,25.247006432636635],[121.31110780616903,24.98888889999996]],[[118.31584640000032,24.413418899999478],[118.46249031540438,24.310716907075776],[119.24998975753242,23.79706577881128],[119.51201957190797,23.60192],[119.57625399718488,23.573729363608198],[119.65615957190879,23.573629999999714],[119.69998943874958,23.43629494132288],[120.03748919965736,23.281375912673997],[120.18086199999966,22.99721]]]}},{"type":"Feature","properties":{"id":"unitirreno","name":"Unitirreno","color":"#4cb96a","feature_id":"unitirreno-0","coordinates":[10.920768425783738,41.0550610962751]},"geometry":{"type":"MultiLineString","coordinates":[[[10.809437174151219,41.20741868014851],[10.172944499999614,41.1440440429973],[9.496447507971368,40.92357574660862]],[[10.91256650477948,41.0693404382162],[11.250066265691444,41.26694507168783],[11.58756602660341,41.435845950249096],[12.037565707819484,41.60430845897962],[12.226913000000101,41.769718]],[[8.938867903561944,44.41035752885385],[9.337567620523402,44.05151922873524],[9.675067381435365,43.401144973153954],[9.787567301143575,43.073310783003215],[10.01256714115553,42.41235450073586],[10.575066743867334,41.52013202089327],[10.91256650477948,41.0693404382162],[11.700065946907337,39.6983233549332],[12.037565708415386,38.21117903702318],[12.150065626335346,37.85673997565852],[12.591375316091606,37.65058617278613]]]}},{"type":"Feature","properties":{"id":"kochi-lakshadweep-islands-kli-sofc","name":"Kochi-Lakshadweep Islands (KLI-SOFC)","color":"#d32c26","feature_id":"kochi-lakshadweep-islands-kli-sofc-0","coordinates":[73.83756587224451,10.68287784672179]},"geometry":{"type":"MultiLineString","coordinates":[[[72.72286795461697,11.124258631805647],[72.61877279152401,10.889916637992194],[72.33752299076401,10.779422194820338],[72.1954430914147,10.862867747435985]],[[73.05120248518666,8.27464880388296],[73.23752235319706,8.283326224170393],[75.65367042863204,9.650748624678508],[76.2695502058749,9.93838642489319]],[[73.64411206516397,10.069817641044942],[73.80002195471599,9.894039027618803],[73.57502211410794,8.783969455379136],[73.23752235319706,8.338985426020157],[73.05120248518666,8.27464880388296]],[[72.7106427264425,11.689816748289662],[72.39377295091597,11.496892979680824],[72.18593318270166,11.59843321448516],[72.28127303061187,11.33148066218366],[72.28722656010738,10.939880964178196],[72.39377295091597,10.889916637992194],[72.33752299076401,10.807049625860893],[72.1954430914147,10.862867747435985],[72.2250230704599,10.779422194820338],[72.45002291106793,10.55831195245637],[72.64071337472495,10.564728356964638],[72.67502275167598,10.337042550001563],[73.35002227350009,10.004846997649413],[73.64410775915098,10.069817641044942]],[[76.2695502058749,9.93838642489319],[75.60002068017582,10.07869800665097],[73.78659196423004,10.700352001209836],[73.67409366970386,10.810878179169102],[73.56159212362182,10.700352001209836],[72.72286795461697,11.124258631805647],[72.83034264164593,11.142200303720568],[72.77758267902168,11.22718249121781],[72.94284256195003,11.197384742384841],[73.12502243289187,11.33148066218366],[73.12502243289187,11.441766261214076],[73.00644623627844,11.485221714276152],[72.90002259228402,11.662208223864337],[72.7106427264425,11.689816748289662]]]}},{"type":"Feature","properties":{"id":"sagres","name":"Sagres","color":"#4ab970","feature_id":"sagres-0","coordinates":[-9.158888038057059,37.493654833898496]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.102749315587026,38.4430794831419],[-8.999919388432733,38.122730108392204],[-9.22491922904077,37.23235432155614],[-8.999919389028726,36.90321229501768],[-8.887419468724707,36.90321229501768],[-8.774539548689884,37.07338751531512]]]}},{"type":"Feature","properties":{"id":"continente-madeira","name":"Continente-Madeira","color":"#37b98e","feature_id":"continente-madeira-0","coordinates":[-13.43524752394084,36.04351783909424]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.33155915349599,38.690161972355526],[-10.799918113296759,38.29952060596925],[-13.949915881808826,35.602930322906126],[-16.199914288484827,34.063992930126034],[-16.818663850156792,32.8123187832876],[-16.90889378564106,32.64727814970992]]]}},{"type":"Feature","properties":{"id":"almera-melilla-alme","name":"Almería-Melilla (ALME)","color":"#2dbdbd","feature_id":"almera-melilla-alme-0","coordinates":[-2.5439694167200337,36.00572179222326]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.463794019281208,36.84186246473143],[-2.474924011396645,36.45208516840206],[-2.587423931700664,35.724797899806],[-2.938093683282961,35.292274112549194]]]}},{"type":"Feature","properties":{"id":"roquetas-melilla-cam","name":"Roquetas-Melilla (CAM)","color":"#2fa685","feature_id":"roquetas-melilla-cam-0","coordinates":[-2.6575606697573444,35.99866656586768]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.612503913933816,36.76384217382935],[-2.587423931700664,36.45208516840206],[-2.699923852004682,35.724797899806],[-2.938093683282961,35.292274112549194]]]}},{"type":"Feature","properties":{"id":"philippine-domestic-submarine-cable-network-pdscn","name":"Philippine Domestic Submarine Cable Network (PDSCN)","color":"#5cc09d","feature_id":"philippine-domestic-submarine-cable-network-pdscn-0","coordinates":[121.84808636692303,7.691515447263923]},"geometry":{"type":"MultiLineString","coordinates":[[[123.83892650668652,10.252013798268077],[123.86248648999636,10.07869800665097],[123.8062365298444,9.801670473167492],[123.87820913570422,9.675391878909156]],[[122.06327100000034,6.908093105542354],[121.9499878448285,6.889421762667733],[121.72498800422028,7.001096155427926],[121.72498800422028,7.447522319872199],[121.9499878448285,7.893494252945166],[122.41209034937056,8.21003992165092],[122.67847669449624,8.07385810571817]],[[123.98834884332426,10.406420283136939],[124.19998625150441,10.300149066026464],[124.6499859327203,10.189442766507625],[124.84217394836772,10.178582995816972]],[[123.33503132573671,8.564097021577123],[123.18748696817244,8.635699417327467],[122.73748728695635,8.413185359560185],[122.67847669449624,8.07385810571817]],[[123.33503132573671,8.564097021577123],[123.41248680878029,8.746907464137017],[123.6374866493885,8.858082310478219],[124.4812360522644,8.635699417327467],[124.63191594552143,8.454147535358473]],[[123.91358645439269,9.6225370957098],[124.19998625150441,9.302441529883154],[124.6499859327203,8.635699417327467],[124.63191594552143,8.454147535358473]],[[123.86154340165245,11.940899155789175],[123.93298644005357,11.53744186728821],[124.19998625090851,11.294709319565477],[124.39720203273188,11.054861343165987]],[[124.72892524992008,9.172531794727917],[124.76248585064045,9.08033076823294],[124.81649461015922,8.98280593341169]],[[126.05252036481781,9.855207400456655],[125.88748505546852,9.801670473167492],[125.83123509531637,9.690794260828273],[125.86972003454434,9.498333545906151]],[[123.90123074088766,12.105980429992167],[123.86248648880438,12.395734000022975],[123.89612042234297,12.683687101726003]],[[124.60027596793546,12.069904662870776],[124.42498609092046,12.065895273570327],[124.08748633060439,12.175887185507976],[123.90123074088766,12.105980429992167]],[[124.39720203273188,11.054861343165987],[124.30291617799185,10.93201162513164],[124.19998625090851,10.742581675476407],[124.0874863312003,10.521444685552128],[123.98834884332426,10.406420283136939]],[[125.48676677437311,9.782713534000724],[125.09998561393637,9.85709470870232],[124.87498577273243,9.967915186974132],[124.84217394836772,10.178582995816972]],[[123.16748732333238,9.146219690585646],[123.18748696876833,8.969223547813163],[123.2437369283244,8.734552646542594],[123.33503132573671,8.564097021577123]],[[122.74998727869705,11.583202180445051],[122.96248712816029,11.625479959569855],[123.29998688907226,11.625479959569855],[123.86154340165245,11.940899155789175]],[[123.41287743409951,10.483708779671767],[123.52498672908439,10.44769694727567],[123.63524055782547,10.376237129155873]],[[122.56210741119708,10.720150965231593],[122.73748728695635,10.656603009743664],[122.968957,10.640738999999655]],[[121.94481206784093,11.949266020482876],[121.95077784426886,11.930929802473868]],[[122.08171170471684,12.602955744095647],[122.17498768484045,12.72515592356304],[122.34373756589243,12.651987602736225],[122.34373756589243,12.487282342244972],[122.39998752664029,12.065895273570327],[122.74998727869705,11.583202180445051]],[[122.08171170471684,12.602955744095647],[122.11873772528439,12.72515592356304],[122.7937372471085,13.273238157547594],[122.95067073028109,13.546888070207846]],[[121.61229277215068,13.935275186648868],[121.78123796437242,13.492128176464083],[121.88473418104378,13.42908313305217],[121.94998784542422,13.054150695298627],[122.06248776572832,12.72515592356304],[122.08171170471684,12.602955744095647]],[[121.07814990718249,13.635709425447143],[121.33123828375226,13.492128176464083],[121.49998816420832,13.273238157547594],[121.46453818932153,13.045782550710932],[121.61248493301056,12.834868817846521],[121.70270802000381,12.63448617650253],[121.88855788834606,12.19371648797362],[121.94481099999972,11.94924477236392]]]}},{"type":"Feature","properties":{"id":"groix-4","name":"Groix 4","color":"#d41f77","feature_id":"groix-4-0","coordinates":[-3.4801890371333166,47.68245464793438]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.445566038986786,47.69743263943637],[-3.487423294132722,47.67932509111776],[-3.482272326026668,47.65023770959318]]]}},{"type":"Feature","properties":{"id":"thetis","name":"Thetis","color":"#69a0d5","feature_id":"thetis-0","coordinates":[26.938455885723943,35.69536322284784]},"geometry":{"type":"MultiLineString","coordinates":[[[25.16052574121449,37.538715782011],[25.031181503020274,37.530333013360654],[24.936036453932804,37.441582605440544]],[[25.32858123375337,37.43906885207819],[25.256431343450945,37.530333013360654],[25.20710136390685,37.538715782011]],[[25.238146034548574,37.122232929128316],[25.42505622399561,37.26220545235354],[25.41956622788482,37.43906885207819]],[[25.37597625876421,37.101840262262826],[25.36868126393224,37.127881937667],[25.289696105851924,37.125246849238955]],[[25.402346240083446,36.47742641187417],[25.537556144299536,36.632853424489355],[25.537556144299536,36.813198605777224],[25.40363623916962,36.97726017314542]],[[26.995074014609276,36.7715804931329],[26.81661458617853,36.86493814541961],[26.550055427035613,36.87321951208928],[26.10005574581954,36.602754740329765],[25.762555984907575,36.45208516840206],[25.650056064603465,36.361542640041705],[25.464805590265694,36.34542571389266]],[[28.12005578044264,36.41157986414525],[27.900054470683475,36.45208516840206],[27.337554869163473,36.632853424489355],[27.143445006672767,36.782900607708115]],[[26.10717013481262,35.20695416056713],[26.325055586427577,35.51140764168837],[26.88755518794758,35.63341465389536],[27.112555028555615,35.90725015614043],[27.562554709771508,35.99831894490682],[27.851088976705316,35.92785157537484]],[[20.112871838702866,39.3853679909665],[20.192934930479296,39.42299840247995],[20.27741130974863,39.44998887609635]],[[19.858511225015423,39.641540074190374],[19.956685097840904,39.64097793514622],[20.02100005227961,39.683031225295494]]]}},{"type":"Feature","properties":{"id":"juno","name":"JUNO","color":"#cd5628","feature_id":"juno-0","coordinates":[-149.7385266899431,42.4219179059235]},"geometry":{"type":"MultiLineString","coordinates":[[[-179.99981351108062,42.74035917563463],[-151.19983391146832,42.74035917563463],[-138.82500430186852,40.04369389177534],[-129.5998339543217,36.1498667868178],[-122.84983873608158,34.867831005273345],[-120.62152181466479,35.12094936772415]],[[143.09997286257644,33.93964008831966],[141.2999741377125,34.683017659857974],[139.9609750856761,34.97407819999975]],[[179.99992719256971,42.740357181754895],[172.79992073307184,42.74369770072915],[160.19996074878455,39.00237890905839],[149.39996839960057,35.419780517080355],[143.09997286257644,33.93964008831966],[140.39997477528055,33.189714664600466],[138.59997605041642,32.43331330641721],[137.69997668798445,33.001218522654476],[136.87399727311598,34.33682825203173]]]}},{"type":"Feature","properties":{"id":"vodafone-greece-domestic","name":"Vodafone Greece Domestic","color":"#aebf3c","feature_id":"vodafone-greece-domestic-0","coordinates":[24.542210608247157,37.79066938763414]},"geometry":{"type":"MultiLineString","coordinates":[[[24.011428,37.88817800000024],[24.300057020955606,37.88634204539163],[24.7500567021715,37.70855130533492],[24.936036453932804,37.441582605440544]]]}},{"type":"Feature","properties":{"id":"apocs-1","name":"APOCS 1","color":"#b81e4b","feature_id":"apocs-1-0","coordinates":[-59.642790827495816,46.86540582663917]},"geometry":{"type":"MultiLineString","coordinates":[[[-60.22412310132226,46.229284],[-59.84988336584115,46.5823550820958],[-59.399883684625166,47.19740739556967],[-59.284726,47.636672999999746]]]}},{"type":"Feature","properties":{"id":"apocs-2","name":"APOCS 2","color":"#b4287b","feature_id":"apocs-2-0","coordinates":[-59.9390278619882,47.40045395805622]},"geometry":{"type":"MultiLineString","coordinates":[[[-60.469312927627435,46.896659999999684],[-60.299883047653125,46.99317357497891],[-59.6248835258292,47.75501398838149],[-59.3919299999996,47.881568999999864]],[[-65.55582811045441,45.34801402608026],[-65.4433281901504,45.18376657583663],[-65.20759573903347,45.089458],[-64.94827799999959,45.089458]]]}},{"type":"Feature","properties":{"id":"unitel-north-submarine-cable-unsc","name":"Unitel North Submarine Cable (UNSC)","color":"#4bc2c8","feature_id":"unitel-north-submarine-cable-unsc-0","coordinates":[11.486300240357835,-6.713444862776547]},"geometry":{"type":"MultiLineString","coordinates":[[[12.189865599928956,-5.556576787346708],[11.925065787515376,-5.628582347656142],[11.812565867211447,-5.796494123130956],[11.812565867211447,-6.132166432128699],[12.150065628123413,-6.188091595867881],[12.352065485024923,-6.141015427762568]],[[12.140879999999665,-5.23096999999984],[11.700065946907337,-5.572600905016464],[11.475066106299483,-5.796494123130956],[11.475066106299483,-6.691145450676395],[11.812565867211447,-7.361072141347045],[12.37506546873145,-7.361072141347045],[12.866666670000518,-7.233333333000319]]]}},{"type":"Feature","properties":{"id":"romulo","name":"Romulo","color":"#e1b524","feature_id":"romulo-0","coordinates":[1.111940162118184,39.43815663804716]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.21038561561685,39.662556],[0.450073917103194,39.43815663804716],[2.25007264196731,39.43815663804716],[2.462767999999868,39.49995262687443]]]}},{"type":"Feature","properties":{"id":"penbal-4","name":"Penbal-4","color":"#11b690","feature_id":"penbal-4-0","coordinates":[1.3218712573543778,38.92956479573844]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.376975497007027,39.459646713436726],[0.450073917103194,39.264170198047665],[0.900073597723368,39.03151487972872],[1.41889,38.906115],[1.800072960155335,38.94407095870691],[2.475072482575348,39.264170198047665],[2.911560000000498,39.613535]]]}},{"type":"Feature","properties":{"id":"trans-adriatic-express-tae","name":"Trans Adriatic Express (TAE)","color":"#c072af","feature_id":"trans-adriatic-express-tae-0","coordinates":[18.84586566794027,40.62759182313714]},"geometry":{"type":"MultiLineString","coordinates":[[[18.405157,40.30200700000034],[18.575061076596455,40.501475542202705],[19.125060686971477,40.757615606267784],[19.376194000000407,40.78671299999985]]]}},{"type":"Feature","properties":{"id":"olisipo","name":"Olisipo","color":"#939597","feature_id":"olisipo-0","coordinates":[-9.289230839482649,38.27199840161146]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.337909149593617,38.68884285232517],[-9.48588404476688,38.61206568189252],[-9.465249059384854,38.442695701551486],[-9.202699244781627,38.18808260253582],[-9.112419308736753,37.99143181402265],[-8.869597215129223,37.95721527519206]]]}},{"type":"Feature","properties":{"id":"carnival-submarine-network-1-csn-1","name":"Carnival Submarine Network-1 (CSN-1)","color":"#939597","feature_id":"carnival-submarine-network-1-csn-1-0","coordinates":[-84.65743758345529,17.93171527085171]},"geometry":{"type":"MultiLineString","coordinates":[[[-86.76758665233304,21.09572879236739],[-86.51756617710222,20.882904908328154],[-85.98811040620365,20.804669658960037]],[[-79.53670942010494,8.964826000000414],[-79.43108296461367,8.233600823655475],[-79.07242834275593,7.259764560250654],[-79.28130421652729,5.101279317788816],[-81.56669126636031,2.380576362405495],[-82.2434797060103,0.553867752345412],[-82.12486758662938,-1.981015190984684],[-81.44986806420927,-2.468145972656139],[-80.85595099012787,-2.329805834324001]],[[-79.87486917935739,11.955858207114732],[-79.64986933934534,12.175887185507976],[-78.74986997750936,12.322472159549646],[-75.37487236838926,11.441766261214076],[-74.77978300000017,10.940435797483545]],[[-81.795793,26.13909399999979],[-83.2498667890733,24.94136317175375],[-84.82486567332928,23.7112581424843],[-86.0623647972694,21.635297384859552],[-85.94986487636929,20.375041253465433],[-85.27486535454535,19.104405475930452],[-84.37486599151723,17.395022634700517],[-83.02486694786917,16.10232559580297],[-81.67486790422123,13.92930384327183],[-79.87486917935739,11.955858207114732],[-79.76236925964936,9.967915186974132],[-79.90025916196684,9.350855245144121]]]}},{"type":"Feature","properties":{"id":"sea-h2x","name":"SEA-H2X","color":"#939597","feature_id":"sea-h2x-0","coordinates":[111.3682205674424,10.244365025006168]},"geometry":{"type":"MultiLineString","coordinates":[[[113.84999358294024,17.10851996079568],[116.99999135204831,16.749771315644697],[119.92498927995224,16.642014062854003],[120.320938998862,16.61589414713403]],[[107.99999772772827,5.845915088460266],[109.12499693017237,4.164912849976942],[109.79999645259221,2.817450442654169],[110.36249605411221,1.918228780215599],[110.35370606033919,1.520169126642144]],[[114.07499342414418,18.251816319028222],[111.14999549564435,18.287425986594243],[110.0493762753333,18.389897000000236]],[[105.74999932164808,4.501447394015217],[104.8359699685594,5.398081130463647],[103.04883123518101,7.005165564456285],[101.70000219070414,7.075530930004602],[100.5951029728293,7.198818071264419]],[[103.64609081207688,1.338585852071497],[103.83750067588413,1.168506749040978],[104.14002046217226,1.15796892865923],[104.26002537715979,1.468426767331968],[104.62500011860807,2.817450442654169],[105.74999932164808,4.501447394015217],[107.09999836529612,5.174038327226071],[107.99999772772827,5.845915088460266],[110.02499629320025,7.744889052551447],[111.26249541654417,9.967915186974132],[112.27499469928026,12.615395567393394],[113.84999358294024,17.10851996079568],[114.07499342414418,18.251816319028222],[113.96249350384026,20.796306105108872],[114.2586832940168,22.31829267897149]]]}},{"type":"Feature","properties":{"id":"hronn","name":"Hronn","color":"#009f94","feature_id":"hronn-0","coordinates":[6.459455513741928,55.37596795937436]},"geometry":{"type":"MultiLineString","coordinates":[[[5.400070409883385,55.355904228375444],[5.287570489579458,55.323914500129355],[5.1805,55.32215]],[[8.40694600000052,55.44848],[7.650068816559295,55.39851702575676],[5.400070409883385,55.355904228375444],[4.513130000000371,55.41867]]]}},{"type":"Feature","properties":{"id":"cook-strait","name":"Cook Strait","color":"#951f63","feature_id":"cook-strait-0","coordinates":[174.43018359914944,-41.3702928803429]},"geometry":{"type":"MultiLineString","coordinates":[[[174.23597080494744,-41.33902762345182],[174.43120066664477,-41.37045661248348],[174.613370537594,-41.30162636085003]]]}},{"type":"Feature","properties":{"id":"minoas-east-and-west","name":"Minoas East and West","color":"#60489d","feature_id":"minoas-east-and-west-0","coordinates":[23.663634631214506,35.66560465416876]},"geometry":{"type":"MultiLineString","coordinates":[[[23.03574722000064,36.523222220000235],[23.28755773881543,36.24065523321488],[23.512557578231664,36.05897312258681],[23.722500000000338,35.51233333000031],[23.400057657331654,36.05897312258681],[23.175057819107582,36.24065523321488],[23.03574722000064,36.523222220000235]]]}},{"type":"Feature","properties":{"id":"apollo-east-and-west","name":"Apollo East and West","color":"#eb8d22","feature_id":"apollo-east-and-west-0","coordinates":[24.847191332389695,35.48642068436539]},"geometry":{"type":"MultiLineString","coordinates":[[[23.36323941535897,37.973952114992564],[23.34443269554493,37.76786242517874],[23.400552658172874,37.67887792909206],[23.512557579423465,37.589786573603064],[23.962557260043457,36.51238821239364],[24.412556941259535,35.90725015614043],[24.931606573560078,35.40468665209264],[24.52505686156346,35.90725015614043],[24.075057180943467,36.51238821239364],[23.625057499727394,37.589786573603064],[23.456672620800997,37.67887792909206],[23.400557656381388,37.76786242517874],[23.36323941535897,37.973952114992564]]]}},{"type":"Feature","properties":{"id":"seamewe-6","name":"SeaMeWe-6","color":"#939597","feature_id":"seamewe-6-0","coordinates":[67.71027967765008,15.063283874132395]},"geometry":{"type":"MultiLineString","coordinates":[[[58.61253271367574,23.81422051502533],[58.40778285872253,23.58412999999983]],[[60.30003151883183,15.669513225155248],[60.30003151883183,19.104405475930452],[60.30003151883183,22.469443964829516],[59.85003183761575,23.09178547692239],[58.95003247518379,23.65974644119216],[58.61253271367574,23.81422051502533],[57.661372759507515,24.420846844473278],[57.15003374972377,25.348717422116714],[56.812533989407704,26.1593079707739],[56.58753414879967,26.512189502051797],[56.362534308191634,26.512189502051797],[55.80003470667163,26.1593079707739],[55.35003502545574,25.855985466072205],[54.34014573908288,24.872582666687173],[52.87503677817179,25.450342946923914],[52.20003725694376,26.05828756029904],[51.637537655423756,26.36108632539156],[51.187537974207686,26.461843796188983],[50.57595273852649,26.229438]],[[54.419075684956134,24.443964572625426],[54.34014573908288,24.872582666687173]],[[51.5193877385264,25.294536999999895],[52.20003725694376,26.05828756029904]],[[85.500013666928,1.018588540518982],[83.70001494146798,5.510071711803246],[83.02501541964405,7.744876956882131],[82.57501573842798,9.52441134501949],[81.45001653598388,11.515266158038768],[80.24298739105474,13.06385310188338]],[[65.75491565746178,16.45525448044254],[65.47502785162398,20.375041253465433],[66.15002737344808,23.298598065875897],[67.02854675228855,24.889731701235817]],[[70.2549124696218,13.25182881322956],[71.1000238680158,16.965102599435927],[72.87590260996693,19.07607425728523]],[[74.70002131714794,5.659359572411489],[74.25002163652778,4.837826391986557],[73.54027200000027,4.211916943627916]],[[90.00001047908802,1.91828308225627],[90.90000984092408,5.061986954416114],[91.35000952273606,9.52441134501949],[92.70000856638391,14.801154224791581],[92.70000856578802,17.82393441253792],[92.02500904336819,19.95262290516439],[91.99482906593992,21.42927456664916]],[[101.25000250948806,2.03066189047467],[101.4750023495002,2.592701464601932],[101.44360237174425,2.751228763607222]],[[79.65001781052403,2.967259208499635],[79.87501765113208,3.191933974144809],[80.550017172956,5.435413643888211],[80.53985718074962,5.940820740520149]],[[44.55004267627159,11.018774999640526],[43.65004331383962,11.399928123027385],[43.14799366949638,11.594869371447825]],[[33.08276564295245,28.365936333863583],[33.35680060388853,28.161052262220792],[33.80630028723958,27.364667993860262],[34.42504984950763,26.562513149236715],[34.87504953131979,25.75470426341523],[35.88754881405568,24.12261698700344],[37.12504793739979,22.05298561667754],[37.91254737952765,20.375041253465433],[39.26254642257961,18.251816319028222],[40.27504570531769,16.534196198259725],[41.68129470911569,14.801154224791581],[42.18754435048373,13.92930384327183],[42.83441889223159,13.054150695298627],[43.14379367306766,12.834868817846521],[43.2281686132957,12.615395567393394],[43.50941841345962,12.395734000022975],[44.55004267627159,11.018774999640526],[45.450042037511935,10.963556857789316],[48.60003980661981,11.735650161405832],[52.65003693696785,12.72515592356304],[54.00003598299986,13.054150695298627],[55.35003502307177,13.273238157547594],[58.9500324733959,15.018578573757472],[60.30003151883183,15.669513225155248],[65.75491565746178,16.45525448044254],[70.2549124696218,13.25182881322956],[71.71468744134651,9.199470523025733],[73.90979788338855,6.525105259563287],[74.70002131714794,5.659359572411489],[78.3000187674719,3.491423322320592],[79.65001781052403,2.967259208499635],[81.00001685476798,2.592701464601932],[85.500013666928,1.018588540518982],[90.00001047908802,1.91828308225627],[92.70000856638391,4.389285926050993],[94.27500745064,5.385636447723476],[95.42107397406397,6.138771009008069],[97.42500521915215,5.510071711803246],[97.87500490036805,5.286069860821008],[98.66250434249609,4.613591578862773],[99.90000346584002,3.266814816815666],[101.25000250948806,2.03066189047467],[102.15000187192003,1.524657538529121],[102.68279723997186,1.41768673166663],[103.34065102845322,1.074949758433191],[103.50000091556807,1.144999057563372],[103.64609081207688,1.338585852071497]],[[32.28445136473581,31.25927814644905],[32.006301561779566,30.837020582397155],[31.9500516016276,30.07738596207985],[32.17500143988696,29.63833609362628],[32.28755136253957,29.082725788288755],[33.08276564295245,28.365936333863583]],[[32.28445136473581,31.25927814644905],[32.06255152193171,30.837020582397155],[32.06255152193171,30.07738596207985],[32.23124640063861,29.63833609362628],[32.40005128284368,29.082725788288755],[33.08276564295245,28.365936333863583]],[[5.372530429989069,43.29362778902908],[5.287570490175359,41.74435878948223],[5.850070091695361,38.651811712711336],[6.750069455319493,37.94551049545967],[9.000067860207336,37.411283634923244],[10.34861723036536,37.411283634923244],[11.137566345387336,37.23235432155614],[11.812565868412525,35.419780517080355],[14.400064035395404,33.565491482352044],[16.650062441475413,32.62301664000789],[19.350060528771497,33.001218522654476],[22.050058614875596,33.174022096718055],[25.200056384579554,32.43331330641721],[27.900054471875638,31.766210259727007],[31.050052239195633,31.798087367585257],[32.06255152193171,31.510798430049064],[32.28445136473581,31.25927814644905]],[[35.88754881405568,24.12261698700344],[36.90004809500369,24.361968609765935],[37.80004745803156,24.32780311165181],[38.10697724059967,24.070648010417838]]]}},{"type":"Feature","properties":{"id":"biznet-nusantara-cable-system-1-bncs-1","name":"Biznet Nusantara Cable System-1 (BNCS-1)","color":"#c46628","feature_id":"biznet-nusantara-cable-system-1-bncs-1-0","coordinates":[105.70661248093886,-5.950901469087846]},"geometry":{"type":"MultiLineString","coordinates":[[[105.88390920948316,-6.073698909871739],[105.72187434097629,-5.973680124487365],[105.58496037606339,-5.769333077764846]],[[105.16425973659172,-2.065142653434427],[105.05175762819319,-2.22578779676552],[104.87451166060187,-2.295346349312876]]]}},{"type":"Feature","properties":{"id":"hokkaido-akita-cable","name":"Hokkaido-Akita Cable","color":"#c38c2b","feature_id":"hokkaido-akita-cable-0","coordinates":[138.82497589102445,42.52538601559627]},"geometry":{"type":"MultiLineString","coordinates":[[[140.11667497537667,39.716671527453656],[139.4999754116566,40.04369219283004],[139.27497557104874,40.38732029077508],[138.82497589102445,42.07923561816413],[138.82497589102445,42.743713464436695],[139.04997573163232,43.073310783003215],[140.39997477528055,43.645862805594916],[140.84997445649643,43.645862805594916],[141.3543759999998,43.06209599999981]]]}},{"type":"Feature","properties":{"id":"topaz","name":"Topaz","color":"#939597","feature_id":"topaz-0","coordinates":[131.07306334941376,26.92800217112836]},"geometry":{"type":"MultiLineString","coordinates":[[[138.59997605041642,33.189714664600466],[138.3939703363819,31.721659545401526],[135.05290856319252,28.932934895626012],[128.07498350582398,25.417654892229358],[127.2086755257747,24.98888889999996],[125.82638654830522,23.911975884765656],[125.10249946499951,23.921926709295846],[123.62010384920251,24.25635955827758],[122.83558991464656,24.751502030000356],[122.166144575792,24.85696748385125],[121.80144795065142,24.863504112487785]]]}},{"type":"Feature","properties":{"id":"topaz","name":"Topaz","color":"#33499e","feature_id":"topaz-1","coordinates":[-152.30356639946402,49.58728674004685]},"geometry":{"type":"MultiLineString","coordinates":[[[-124.8075373498257,49.23399525062965],[-123.97483793971784,49.355787080150606],[-123.114034,49.260440000000195]],[[142.19997350014447,36.87321951208928],[142.4249733401566,36.1498667868178],[142.19997350014447,35.05222991093673],[140.84997445649643,33.93964008831966],[138.59997605041642,33.189714664600466],[137.69997668798445,33.565491482352044],[136.87399727311598,34.33682825203173]],[[179.99994672169302,49.58728674004685],[172.7999518228328,49.58728674004685],[160.19996074878455,46.5823550820958],[149.39996839960057,40.04369219283004],[142.19997350014447,36.87321951208928],[141.07497429650857,36.632853424489355],[140.71827454919813,36.71305911738493]],[[-124.8075373498257,49.23399525062965],[-124.81858873599236,49.098645310092806],[-125.09983714275776,48.951106020783016],[-125.54983682397375,48.803129141654416],[-138.59982757864174,49.000334389463426],[-151.1998186526899,49.58728674004685],[-179.99979825051412,49.58728674004685]]]}},{"type":"Feature","properties":{"id":"medusa-submarine-cable-system","name":"Medusa Submarine Cable System","color":"#939597","feature_id":"medusa-submarine-cable-system-0","coordinates":[10.856379406776762,37.62522787291101]},"geometry":{"type":"MultiLineString","coordinates":[[[32.047198751652715,34.36126232841875],[34.200050008303506,34.36126232841875],[35.89779880560243,34.89170328553848]],[[14.350100000000367,35.95239999999964],[13.589266586762104,35.50152744443852]],[[20.060997550718024,32.114846773024304],[19.54833292295356,32.37254680331547],[19.270752161685323,32.80214707225284],[19.24898112158607,34.860996398864586]],[[14.47077136061674,34.99040862562433],[15.28032546762509,33.68969836184677],[15.088930733703902,32.37254680331547]],[[31.050052239791533,32.90681902852468],[31.610642393614338,33.937310785298685],[32.46668800000052,34.76662920076821]],[[22.50654831394805,34.53907554907902],[22.713297877407687,35.39334285607203],[23.903670583009415,36.290409440352754],[23.903670583009415,37.09588010976437],[23.73052617441654,37.97446102487642]],[[9.000067859611436,37.94551049545967],[9.562567461131438,37.589786573603064],[9.867357245811593,37.276816253475154]],[[11.812565866615547,37.23235432155614],[12.060515691561484,37.546826221282146],[12.591375316091606,37.65058617278613]],[[8.10006849777537,38.21117903702318],[6.975069294139464,37.44106375352233],[6.557241714000397,37.00295935602444]],[[2.25007264196731,37.411283634923244],[2.812572243487313,37.23235432155614],[3.035712085413061,36.76212778211003]],[[4.950070728667312,41.1823303464796],[2.700072322587302,41.1823303464796],[2.168725042748786,41.38560270176812]],[[6.075069932303216,38.651811712711336],[5.400070410479286,41.74435878948223],[5.372530429989069,43.29362778902908],[5.062570649567322,41.74435878948223],[4.950070728667312,41.1823303464796],[4.837570808959284,40.04369219283004],[4.725070888059456,38.651811712711336]],[[-2.249924170192707,35.876870570092834],[-2.474924011396645,35.450334489671505],[-2.933034999999599,35.170020000000214]],[[-4.499922576272716,35.78566189952622],[-4.724922416880753,35.602930322906126],[-5.391811944449903,35.565918934421326]],[[-9.33155915349599,38.690161972355526],[-9.449919069648717,38.122730108392204],[-9.674918909064772,37.23235432155614],[-9.562418989356745,36.69301553274438],[-8.999919388432733,36.33133835588799],[-5.843848196000099,36.13475690999979],[-5.565736128994312,36.28964443924729],[-5.250523729785807,36.37610614625084],[-4.499922576272716,35.78566189952622],[-2.249924170192707,35.876870570092834],[2.25007264196731,37.411283634923244],[4.725070888059456,38.651811712711336],[6.075069932303216,38.651811712711336],[8.10006849777537,38.21117903702318],[9.000067859611436,37.94551049545967],[10.348617229769278,37.94551049545967],[10.91256650537538,37.589786573603064],[11.812565866615547,37.23235432155614],[12.946265012802193,35.87231864098554],[14.47077136061674,34.99040862562433],[16.5602576693071,34.484997549332334],[19.24898112158607,34.860996398864586],[22.050058614875596,34.63291490532071],[23.64128846164546,34.305351542954675],[25.252400096306765,33.894592669629816],[27.000055108251505,33.87739543625145],[31.050052239791533,32.90681902852468],[31.9500516016276,31.798087367585257],[32.28755136253957,31.510798430049064],[32.28445136473581,31.25927814644905]]]}},{"type":"Feature","properties":{"id":"saudi-vision","name":"Saudi Vision","color":"#c76a28","feature_id":"saudi-vision-0","coordinates":[36.699929995878726,25.543088498954923]},"geometry":{"type":"MultiLineString","coordinates":[[[37.80004745743566,23.848523186487938],[37.96879733789173,23.91710129093513],[38.10701723997532,24.070616999999686]],[[35.60629901210351,26.562513149236715],[35.606299011507616,27.097918575215974],[35.69652894758787,27.354018999999465]],[[39.18286300000012,21.481542780852628],[38.81254674076764,22.05298561667754],[37.80004745743566,23.848523186487938],[36.56254833468763,25.75470426341523],[35.60629901210351,26.562513149236715],[34.46137982377105,27.916953178205596],[34.46137982377105,27.991483447904724],[34.48950480265532,28.115586087218034],[34.57387974288317,28.313851747133643],[34.76762960622493,29.08904402302273],[34.95220947487088,29.283851999999897]]]}},{"type":"Feature","properties":{"id":"scotland-northern-ireland-4","name":"Scotland-Northern Ireland 4","color":"#a4ab37","feature_id":"scotland-northern-ireland-4-0","coordinates":[-5.373545682142867,55.153340823728385]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.809831648320849,54.85780200253145],[-5.624921779312721,55.04558670490423],[-5.174922098096737,55.23848220955442],[-4.854172325318898,55.24040360744587]]]}},{"type":"Feature","properties":{"id":"scotland-northern-ireland-3","name":"Scotland-Northern Ireland 3","color":"#44b649","feature_id":"scotland-northern-ireland-3-0","coordinates":[-5.295928196395849,54.68794520830256]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.538691840398792,54.643037742698276],[-5.287422018400756,54.68951871778461],[-5.174922098096737,54.754492368816926],[-5.115502140190354,54.84402536873057]]]}},{"type":"Feature","properties":{"id":"hawaiki-nui-1","name":"Hawaiki Nui 1","color":"#939597","feature_id":"hawaiki-nui-1-0","coordinates":[115.5138499091612,-7.8829131023718695]},"geometry":{"type":"MultiLineString","coordinates":[[[129.59998242550049,-9.586362493293953],[128.6999870359665,-8.920150538056042],[128.3038833436693,-7.801903059182855],[127.34998401942048,-7.385865390978736],[125.99998497577243,-7.385865390978736],[125.54998529396046,-7.992854458460687],[125.57937980498313,-8.559447499464328]],[[152.99996584932845,-16.30669306561827],[155.24996425540846,-15.441023659568087],[157.49996266089255,-11.943944931746815],[159.41246130606078,-10.17745743036107],[159.52496122636472,-9.73423534230066],[159.46876126617727,-9.29042430103552],[159.5249612269606,-9.123848597823338],[159.74996106756865,-9.123848597823338],[159.94976092602863,-9.42905364643845]],[[147.2624699138245,-11.062032109909483],[147.14996999352056,-10.17745743036107],[147.1885196909836,-9.479589292697288]],[[104.14960045538582,1.18452336036332],[104.0166370000003,1.066798000000349]],[[109.34999676839627,-3.92832730414264],[108.22499756833612,-4.60145376483711],[107.77499788712005,-5.273944363641298],[106.82786855747969,-6.171587999999717]],[[131.39998115036443,-9.142360877005329],[129.59998242550049,-9.586362493293953],[129.14998274428442,-10.620064860363238],[129.0374828245764,-11.833858275879866],[129.8751578176926,-12.194543031162238],[130.50000678851072,-12.329005823921618],[130.84315500000028,-12.46750362874273]],[[154.3499648929765,-27.553513996438145],[153.56246544906074,-27.353852936231306],[153.02282700000043,-27.46888410816531]],[[152.99996584932845,-16.30669306561827],[153.44996553054452,-18.880139975101173],[153.8999652117606,-25.540896076259312],[154.3499648929765,-27.553513996438145],[154.3499648929765,-28.743810281149894],[153.76076054297755,-31.85146566557725],[152.09996648689665,-33.17952345666914],[151.2070371188603,-33.869695999999635]],[[152.99996584932845,-16.30669306561827],[151.6499668050847,-14.571726491332546],[148.49996903716843,-12.383840433185572],[147.2624699138245,-11.062032109909483],[144.89997158684466,-10.47259892498978],[142.19997349954858,-9.586362493293953],[138.59997605041642,-9.955921616229002],[134.5499789188764,-9.586362493293953],[131.39998115036443,-9.142360877005329]],[[129.0374828245764,-11.833858275879866],[127.34998401942048,-11.772679839911943],[126.44998465698852,-11.772679839911943],[120.99998851781679,-11.55232519729577],[118.68749015601242,-10.804297138907085],[116.54999167023632,-9.586362493293953],[115.8749921484124,-9.142360877005329],[115.81874218826026,-8.86457667788879],[115.8749921490083,-8.401139048122838],[115.76249222810829,-8.178490278944933],[115.19999262658828,-7.509810688339549],[114.46970572643436,-6.616650693475355],[112.0499948586722,-5.497950688314882],[109.34999676839627,-3.92832730414264],[108.89999708777627,-3.029995968008661],[106.08749908256004,-0.331409329660265],[104.8499999592161,0.624825760007394],[104.40000027800004,0.906050180869095],[104.2875003576961,1.018534216615524],[104.1778504347774,1.18452336036332],[103.85310700000069,1.293877684611663]]]}},{"type":"Feature","properties":{"id":"blue","name":"Blue","color":"#7c287d","feature_id":"blue-0","coordinates":[27.542339101747963,34.028954564657425]},"geometry":{"type":"MultiLineString","coordinates":[[[14.850063715419495,38.681091555174525],[13.950064352987528,38.417142223456445],[13.358654772543574,38.11612161658339]],[[9.000067859611436,44.05151922873524],[8.938867903561944,44.41035752885385]],[[14.850063715419495,38.681091555174525],[13.500064671771455,38.856519049872716],[12.150065628123413,39.6983233549332],[11.137566345387336,41.0693404382162],[10.687566663575542,41.52013202089327],[10.125067060863374,42.41235450073586],[9.90006722085142,43.073310783003215],[9.618817421283403,43.401144973153954],[9.000067859611436,44.05151922873524]],[[32.466651236259686,34.76657169708598],[31.500051920411707,33.97074536407291],[31.050052239791533,33.189714664600466],[25.386344346315404,34.54478831498562],[23.35021203932669,35.051225709478544],[22.050058614875596,35.679119358342746]],[[24.012167225495322,35.512042558637575],[23.737557420031504,35.876870570092834],[22.950057977903466,36.05897312258681],[22.050058614875596,35.679119358342746]],[[10.687566663575542,41.52013202089327],[9.900067222043404,41.1823303464796],[9.613157425293073,41.004773687597634]],[[11.137566345387336,41.0693404382162],[11.700065946907337,41.26694507168783],[12.262565548427522,41.52013202089327],[12.495760000000327,41.90311]],[[8.775068019003399,43.51003100840901],[9.337567620523402,43.401144973153954],[9.450067542019495,43.073310783003215],[9.562567461131438,42.908732427720366],[9.45088100000022,42.688338873384374]],[[8.775068019003399,43.51003100840901],[9.000067859611436,44.05151922873524]],[[35.005095000000225,29.602772333573608],[34.65004968892368,31.03001726298632],[34.65004968892368,31.510798430049064],[34.76967960477271,32.04501185826483]],[[34.76967960477271,32.04501185826483],[33.750050327087614,32.43331330641721],[31.050052239791533,33.189714664600466]],[[22.050058614875596,35.679119358342746],[21.600058933659522,35.86167640626605],[18.00006148452737,37.05299936423364],[15.750063078447363,37.67887792909206],[15.525063237243426,38.06370455144154],[15.637563157547534,38.240638159471985],[15.30006339663557,38.50523297944307],[14.850063715419495,38.681091555174525]],[[8.775068019003399,43.51003100840901],[7.200069135343221,43.15543467648206],[6.412569692619463,42.82627801037571],[5.962570011403388,42.82627801037571],[5.372530429989069,43.29362778902908]]]}},{"type":"Feature","properties":{"id":"raman","name":"Raman","color":"#939597","feature_id":"raman-0","coordinates":[50.51187004053453,14.013272070190846]},"geometry":{"type":"MultiLineString","coordinates":[[[62.775029765519875,20.375041253465433],[62.775029765519875,22.469443964829516],[59.85003183761575,24.225251377403733],[58.50003279396771,23.89138876125301],[57.88605322832058,23.67872342575357]],[[55.35003502545574,15.886035719079029],[54.78753542333983,16.534196198259725],[54.14808587692784,17.09582718672565]],[[44.55004267627159,12.285833556268383],[43.63637028333588,11.94650543254203],[43.14799366949638,11.594869371447825]],[[35.696548947573824,27.354010300438862],[35.80902892030377,28.11423835582824],[35.386279636121465,29.113614162980063],[35.005095000000225,29.581033231032787],[35.522363857840276,29.189902084804793],[35.993890400705276,28.15020742874113],[35.696548947573824,27.354010300438862]],[[72.87590260996693,19.07607425728523],[70.20002450558383,19.635064099942493],[66.60002705585578,20.163975031975873],[62.775029765519875,20.375041253465433],[58.95003247518379,17.609605913224996],[55.35003502545574,15.886035719079029],[48.60003980721571,13.273238157547594],[45.450042038703735,12.505588131780646],[44.55004267627159,12.285833556268383],[43.881959133154325,12.458770746871922],[43.42504347323158,12.615395567393394],[43.340668533003544,12.834868817846521],[43.256293592775506,13.054150695298627],[43.03129375216765,13.92930384327183],[42.52504411079961,14.801154224791581],[41.8500445889755,16.534196198259725],[39.487546262591565,20.375041253465433],[39.1500465010837,20.936468000149056],[38.70004682046353,22.05298561667754],[37.46254769711778,24.12261698700344],[36.45004841438352,25.75470426341523],[35.696548947573824,27.354010300438862]]]}},{"type":"Feature","properties":{"id":"kingisepp-kaliningrad-system-baltika","name":"Kingisepp-Kaliningrad System (Baltika)","color":"#12b5d6","feature_id":"kingisepp-kaliningrad-system-baltika-0","coordinates":[22.519340764201484,59.17716404654191]},"geometry":{"type":"MultiLineString","coordinates":[[[28.661263795515822,59.437858236904816],[27.37860937499232,59.765799560815175],[26.107282352704132,59.945326886122366],[23.847322966676572,59.53406190277903],[22.3808201432679,59.139936354360735],[21.30842106981249,58.59223846792796],[20.523738820942917,57.62501221189865],[19.311956893430537,56.41736400880456],[20.118319659027506,55.25597656488328],[20.60220704583015,54.970360488431474]]]}},{"type":"Feature","properties":{"id":"deep-blue-one","name":"Deep Blue One","color":"#ba742d","feature_id":"deep-blue-one-0","coordinates":[-56.18860702302827,7.655289169167652]},"geometry":{"type":"MultiLineString","coordinates":[[[-57.374885119153106,8.635699417327467],[-57.487385038861134,8.190543417795496],[-57.824884800369176,7.29876275445952],[-58.154864566608346,6.804293299288684]],[[-55.4556016603845,7.425872215398943],[-55.34988655427713,6.554242425496979],[-55.17385100000029,5.82403]],[[-61.65081209004632,10.686261032786325],[-61.42488225009723,10.963556857789316],[-60.974882568881156,11.070057237753451],[-60.7498827288692,11.055581341549555]],[[-60.73534273916942,11.182456999999468],[-60.7498827288692,11.055581341549555]],[[-60.7498827288692,11.055581341549555],[-60.29988304705723,10.85308969074528],[-57.374885119153106,8.635699417327467],[-56.474885756721136,7.744889052551447],[-55.4556016603845,7.425872215398943],[-53.99988751062917,7.559058926010829],[-53.09458552894352,7.357410349749805],[-52.4248886263731,5.957818681088533],[-52.320928699423284,4.941547448310236]]]}},{"type":"Feature","properties":{"id":"apricot","name":"Apricot","color":"#b63894","feature_id":"apricot-0","coordinates":[129.23798072152712,20.059088092174036]},"geometry":{"type":"MultiLineString","coordinates":[[[127.34998401942048,19.24608308700458],[125.99998497636834,21.32123529551186],[124.14876628719325,23.757798070792454],[122.84998720785636,24.63495976683041],[121.80144795065142,24.863504112487785]],[[144.65753175859138,13.385305518498077],[143.9999722250084,13.601498202276586],[143.09997286257644,13.92930384327183],[138.59997605041642,15.669513225155248],[131.39998115096031,17.395022634700517],[126.44998465639262,18.251816319028222],[127.34998401942048,19.24608308700458],[130.94998146974444,20.796306105108872],[138.59997605041642,23.7112581424843],[139.72497525286053,24.94136317175375],[140.84997445649643,30.901396088515508],[141.07497429710446,32.43331330641721],[140.96247437680054,33.93964008831966],[140.56872465573645,34.405022750715936],[140.37184979460858,34.69072647741027],[140.1046624838865,34.852445708846155],[139.9609790000003,34.9740779999996]]]}},{"type":"Feature","properties":{"id":"apricot","name":"Apricot","color":"#939597","feature_id":"apricot-1","coordinates":[119.96497042769207,1.1841040607806506]},"geometry":{"type":"MultiLineString","coordinates":[[[104.17500043679628,1.018409236452146],[104.11887547655554,1.018409236452146],[104.0166370000003,1.066798000000349]],[[109.12499692898021,-3.029995968008661],[107.88749780742415,-4.60145376483711],[107.43749812620827,-5.273944363641298],[107.12099835041957,-5.981154260263285]],[[126.57346403647036,5.404676658378629],[126.3374847366844,5.659359572411489],[126.11248489607637,5.957818681088533],[125.61287587559997,7.079988883160643]],[[125.54998529455636,16.24638821747719],[123.52498672908439,15.597287859114385],[121.94998784542422,15.669513225155248],[121.56018812156209,15.761539465842137]],[[103.64609081207688,1.338585852071497],[103.83750067588413,1.182753739294242],[104.02421554420971,1.202092036773615],[104.14960045538582,1.18452336036332],[104.17500043679628,1.018409236452146],[104.2875003576961,0.962292662396848],[104.40000027800004,0.849806826211382],[104.8499999592161,0.68107206531244],[106.19999900286416,-0.331409329660265],[109.12499692898021,-3.029995968008661],[109.79999645080431,-3.479268678970064],[112.0499948586722,-4.60145376483711],[114.60984933620142,-5.273944363641298],[116.80810148738884,-4.179995582158629],[117.7124908479029,-2.730375485267853],[117.96440181128685,-1.51533365197483],[118.76628430204579,-0.810555324740758],[119.47498959873617,0.568578852526193],[119.69998943934421,1.018534216615524],[120.59998880177636,1.580886840914131],[124.19998625090851,3.41655961832325],[126.57346403647036,5.404676658378629],[128.24998338185245,7.447522319872199],[127.34998401942048,11.882475268284509],[125.54998529455636,16.24638821747719],[126.44998465639262,18.251816319028222]]]}},{"type":"Feature","properties":{"id":"scylla","name":"Scylla","color":"#b82a3f","feature_id":"scylla-0","coordinates":[3.1697065756605403,52.62326141852725]},"geometry":{"type":"MultiLineString","coordinates":[[[1.72927301090669,52.46882263773048],[2.25007264196731,52.62326141852725],[3.825071526223208,52.62326141852725],[4.275071207439282,52.55491468334153],[4.61367096757211,52.458501705101135]]]}},{"type":"Feature","properties":{"id":"polar-express","name":"Polar Express","color":"#cf3a26","feature_id":"polar-express-0","coordinates":[48.423333272790664,69.78245285336129]},"geometry":{"type":"MultiLineString","coordinates":[[[61.663700000000304,69.7511999999999],[60.75003119945182,70.40189838789871],[59.40003215580378,70.55228024514132],[57.600033430939845,70.40189838789871],[53.100036618779825,69.94402310253807],[44.10004299445961,69.63309228121113],[35.55004905135565,69.47590081058141],[35.10004937013957,69.31754886651788],[35.114219360101536,69.18399665130558]]]}},{"type":"Feature","properties":{"id":"polar-express","name":"Polar Express","color":"#939597","feature_id":"polar-express-1","coordinates":[100.75766056091868,77.59274941227683]},"geometry":{"type":"MultiLineString","coordinates":[[[133.19997987522854,41.85617959436374],[133.19997987463265,42.329239699665536],[132.89127009392124,42.83453574149161]],[[131.9107473900959,43.154615407914534],[132.2999805127964,42.35695685335537],[133.19997987522854,41.85617959436374],[134.5499789188764,41.74435878948223],[137.9249765279966,43.073310783003215],[140.84997445590054,45.59408578894718],[141.97497365894054,45.75130568537152],[143.09997286198055,45.75130568537152],[144.67497174444856,46.11643477220242],[145.12497142745252,47.04430546733287]],[[142.72624265858042,46.94899298742814],[143.43747262348842,47.120911503379745],[145.12497142745252,47.04430546733287],[147.5999696729486,46.8394840627337],[153.44996552994863,48.35656994073399],[158.8499617045408,50.83511113795267],[159.74996106697276,52.50929095964713]],[[158.65001067431297,53.01666789688405],[159.74996106697276,52.50929095964713]],[[159.74996106697276,52.50929095964713],[161.99995947305277,52.78232285776401],[168.29995501007673,53.857473440304716],[174.02495095443587,55.90629872677893],[179.97797408100845,60.528451203358905]],[[-179.9997982511102,60.528451203358905],[-179.52782592920985,60.8695351663294],[-172.7998033516541,63.99042806051585]],[[177.5021457567835,64.72719091772642],[178.64994767804478,64.4794309101756],[179.99994672169302,64.18706730674532]],[[-179.9997982511102,64.18706730674532],[-172.7998033516541,63.99042806051585],[-170.0998052643581,64.76870273314248],[-169.19980590192614,66.0785049157679],[-170.54980494557392,67.66857826204087],[-175.94980112016617,69.47590081058141],[-179.9997967228899,70.1742290900765]],[[179.99994824991296,70.1742290900765],[177.7499483156128,70.55228024514132],[171.89995245980478,70.70155250919251],[169.64995405372477,70.25039973315269]],[[170.30700000000036,69.7029],[169.64995405372477,70.25039973315269]],[[169.64995405372477,70.25039973315269],[159.74996106697276,72.13481545023681],[148.9499687177886,72.8123099710512],[141.7499738183325,73.07627580961623],[134.99089662947918,72.81107196658]],[[128.8645,71.6375],[131.39998115036443,71.9962481654091],[134.99997860009248,72.8123099710512],[135.00070515758972,72.81107196658],[130.94998146914853,74.09330000483304],[123.74998656969242,76.27568108311124],[112.94999422050827,77.49983814503032],[104.84999995862022,77.88351717807191],[99.45000378402823,77.49983814503032],[94.50000729065214,77.20425577257384],[86.85001270998013,75.9517011642262],[81.00001685417209,74.45913348599115],[78.75001844809208,73.96950097861448],[71.55002354863598,73.96950097861448],[65.70002769282792,72.8123099710512],[63.00002960553183,70.99679695986222],[60.75003119945182,70.40189838789871]],[[78.75001844809208,73.96950097861448],[80.10001749174012,73.59244957584484],[80.531,73.5077]]]}},{"type":"Feature","properties":{"id":"darwin-jakarta-singapore-cable-djsc","name":"Darwin-Jakarta-Singapore Cable (DJSC)","color":"#752222","feature_id":"darwin-jakarta-singapore-cable-djsc-0","coordinates":[114.16800775684534,-19.800107039490765]},"geometry":{"type":"MultiLineString","coordinates":[[[118.57724023471046,-20.31344226536242],[117.97499050962779,-20.048661670363725],[115.19999262658828,-19.800107039490765],[111.59999517686023,-19.800107039490765],[109.79999645199631,-20.433922197637408]]]}},{"type":"Feature","properties":{"id":"zeus","name":"Zeus","color":"#2181bf","feature_id":"zeus-0","coordinates":[3.1322239085293395,52.48646132010029]},"geometry":{"type":"MultiLineString","coordinates":[[[1.72927301090669,52.46882263773048],[2.25007264196731,52.48646132010029],[3.825071526223208,52.48646132010029],[4.524191030960483,52.36366638180829]]]}},{"type":"Feature","properties":{"id":"india-asia-xpress-iax","name":"India Asia Xpress (IAX)","color":"#939597","feature_id":"india-asia-xpress-iax-0","coordinates":[88.07615025767723,12.08036113105525]},"geometry":{"type":"MultiLineString","coordinates":[[[87.50654093847432,21.613825026350842],[88.64575957688014,2.546897235759658]],[[81.13951857354486,16.175049115204825],[82.01872118892727,15.044700164166894],[81.82223885811331,11.127589656424089]]]}},{"type":"Feature","properties":{"id":"india-asia-xpress-iax","name":"India Asia Xpress (IAX)","color":"#ced528","feature_id":"india-asia-xpress-iax-1","coordinates":[82.91557519892766,2.4346698251038394]},"geometry":{"type":"MultiLineString","coordinates":[[[85.500013666928,1.918228780215599],[83.92501477969205,5.510071711803246],[83.2500152596562,7.744876956882131],[82.80001557844011,9.52441134501949],[81.45001653598388,11.735650161405832],[80.24298739105474,13.06385310188338]],[[75.37502083897188,5.659359572411489],[74.25002163652778,4.613591578862773],[73.54035213926461,4.212345781871782]],[[101.25000250948806,2.143087178471855],[101.41875238934823,2.592701464601932],[101.44360237174425,2.751228763607222]],[[98.10000474097609,5.286069860821008],[99.00000410340806,5.957818681088533],[100.06611334816643,6.613518860854109]],[[79.65001781052403,3.191933974144809],[80.43751725265209,5.435413643888211],[80.53985718074962,5.940820740520149]],[[72.87590151562159,19.066189490208128],[71.32502370862383,16.965102599435927],[71.04513590397801,13.492128176464083],[72.50491087570272,9.361978911833972],[74.70002131774494,6.688675551202349],[75.37502083897188,5.659359572411489],[78.3000187674719,3.715978119298069],[79.65001781052403,3.191933974144809],[81.00001685476798,2.817450442654169],[85.500013666928,1.918228780215599],[90.00001047908802,2.817450442654169],[92.70000856638391,4.613591578862773],[94.27500745064,5.609601184516913],[95.40635270497349,6.218295306499518],[97.42500521915215,5.622041180883233],[98.10000474097609,5.286069860821008],[98.88750418310413,4.613591578862773],[100.01250338614413,3.266814816815666],[101.25000250948806,2.143087178471855],[102.15000187192003,1.805788280129153],[102.68279723997186,1.558264177552469],[103.34065102845322,1.383978004154865],[103.50000091556807,1.327518855965853],[103.64609081207688,1.338585852071497]]]}},{"type":"Feature","properties":{"id":"india-europe-xpress-iex","name":"India Europe Xpress (IEX)","color":"#939597","feature_id":"india-europe-xpress-iex-0","coordinates":[48.479840860047226,12.256429919428616]},"geometry":{"type":"MultiLineString","coordinates":[[[8.662568098699472,44.21300917863173],[8.325068338383225,43.8084564391072],[7.875068657167333,43.564400497117596],[7.200069135343221,43.237448352440914],[6.412569692619463,42.908732427720366],[5.962570011403388,42.908732427720366],[5.363546998256861,43.286507748630704]],[[39.03754658077959,20.936468000149056],[39.18275647850768,21.481533475502996]],[[24.9202225972494,34.242187316462925],[24.90279096897315,34.76016729562049],[24.7684,35.07162999999965]],[[35.521924071875475,26.562513149236715],[35.21254929044368,27.497802509202188],[35.223149282934465,28.050969101148137]],[[37.34051417738748,24.138084599448355],[37.80004745803156,24.12261698700344],[38.10697724059967,24.070648010417838]],[[44.55004267627159,11.570378484364811],[43.65004331383962,11.620598816364184],[43.14799366949638,11.594869371447825]],[[54.00003598419185,13.601498202276586],[54.11253590151572,14.5835116451186],[54.173383948448546,16.54803642952232],[54.14808587692784,17.09582718672565]],[[32.65318110412008,29.113614162980063],[33.0750508052635,28.95155473219332],[33.53928797639455,28.161052262220792],[34.537549769215474,27.364667993860262],[35.521924071875475,26.562513149236715],[36.33754849407959,25.75470426341523],[37.35004777681367,24.12261698700344],[38.5875469001596,22.05298561667754],[39.03754658077959,20.936468000149056],[39.37504634228764,20.375041253465433],[41.737544668671575,16.534196198259725],[42.46879415064765,14.801154224791581],[42.975043792015505,13.92930384327183],[43.22816861269962,13.054150695298627],[43.3266060429656,12.834868817846521],[43.41098098319364,12.615395567393394],[43.87504315444765,12.395734000022975],[44.55004267627159,11.570378484364811],[45.450042038703735,11.515266158038768],[48.60003980781179,12.285833556268383],[52.65003693815965,13.273238157547594],[54.00003598419185,13.601498202276586],[55.35003502426394,13.710817738179635],[58.950032474587886,15.452760959322058],[60.97503103946396,16.534196198259725],[66.60002705585578,18.678647022154717],[70.20002450558383,18.891661584303154],[72.87590151562159,19.066189490208128]],[[29.67235321517045,31.047641997876443],[29.98130299690349,30.853118511880677],[30.375052717967602,30.780656567294763],[31.050052239791533,30.41752891425909],[31.72505176161546,30.174689758498985],[32.17505144283154,29.58908594077863],[32.65318110412008,29.113614162980063]],[[29.67235321517045,31.047641997876443],[29.98130299690349,30.80481662242606],[30.375052717967602,30.683955675438124],[31.050052239791533,30.320465424761444],[31.72505176161546,30.07738596207985],[32.17505144283154,29.540203242583157],[32.65318110412008,29.113614162980063]],[[8.48375822596588,44.30574823054251],[8.662568098699472,44.21300917863173],[9.225067700219473,44.05151922873524],[9.562567461131438,43.401144973153954],[9.675067381435365,43.073310783003215],[9.900067221447502,42.41235450073586],[10.462566823563405,41.52013202089327],[11.475066106299483,39.6983233549332],[11.700065947503239,37.85673997565852],[12.26256554783162,37.23235432155614],[13.082092624606803,36.025097835273904],[14.492544437439456,35.24657290391401],[16.516715589108777,34.74883374222028],[19.24898112158607,35.09735393311572],[22.050058614875596,34.89090355336368],[23.518709918219088,34.56509456203117],[25.289696105851924,34.1568536124284],[27.900054471279375,32.52821504536491],[29.67235321517045,31.047641997876443]]]}},{"type":"Feature","properties":{"id":"firmina","name":"Firmina","color":"#c52159","feature_id":"firmina-0","coordinates":[-34.347349102592155,1.407257351190094]},"geometry":{"type":"MultiLineString","coordinates":[[[-41.849896117201084,-27.95174728521976],[-45.22489372632109,-25.134186547061336],[-46.4124928850147,-24.00886839636483]],[[-50.84988974152112,-35.95811819864919],[-53.99988751003309,-35.40985639492525],[-54.949996837562736,-34.96666536873363]],[[-78.88266988343256,33.69355790837514],[-78.3790402402086,33.189714664600466],[-77.39987093386132,32.36998992114339],[-74.69987284596934,30.901396088515508],[-73.3498738023213,30.320465424761444],[-69.29987667137726,28.359233526108557],[-63.4498808155692,25.75470426341523],[-48.59989133544111,16.534196198259725],[-39.152117353648734,8.152046688785141],[-33.74990185531301,0.568578852526193],[-30.48740414473091,-3.816084200032395],[-27.89990599950586,-9.29042430103552],[-28.349731034615626,-13.697820288632505],[-30.14972975947965,-18.025284192896695],[-36.33740002230498,-24.41918455361521],[-39.59989771171697,-25.94623071841455],[-41.849896117201084,-27.95174728521976],[-44.09989452328109,-32.61276000573574],[-50.84988974152112,-35.95811819864919],[-53.99988751003309,-36.68325067019043],[-56.695445600474535,-36.47095527632105]]]}},{"type":"Feature","properties":{"id":"ionian","name":"Ionian","color":"#be432b","feature_id":"ionian-0","coordinates":[18.938710756916407,38.98126593490422]},"geometry":{"type":"MultiLineString","coordinates":[[[17.127152102308617,39.08066915816424],[17.775061643323433,39.03151487972872],[19.80006020879559,38.94407095870691],[20.751719534631118,38.95926674743761]]]}},{"type":"Feature","properties":{"id":"sape-labuan-bajo-ende-kupang","name":"Sape-Labuan Bajo-Ende-Kupang","color":"#2982bd","feature_id":"sape-labuan-bajo-ende-kupang-0","coordinates":[122.54750304427115,-9.609222459948315]},"geometry":{"type":"MultiLineString","coordinates":[[[118.97619995148753,-8.505601593938989],[119.24998975753242,-8.197049140471197],[119.58748951844439,-8.141369965795338],[119.86873931920438,-8.197049140471197],[119.90755929170408,-8.475554575636568]],[[121.6427380624869,-8.845694469062058],[121.72498800422028,-9.068306003874412],[122.84998720726047,-9.808147286237839],[123.29998688907226,-9.900514027809685],[123.58338668830928,-10.182939736570859]]]}},{"type":"Feature","properties":{"id":"kupang-alor-cable-systems","name":"Kupang-Alor Cable Systems","color":"#8fc73e","feature_id":"kupang-alor-cable-systems-0","coordinates":[123.6297513722392,-9.100974559926314]},"geometry":{"type":"MultiLineString","coordinates":[[[123.58333668774885,-10.183333435365899],[123.46873676893243,-9.697273227790047],[123.52498672908439,-9.142360877005329],[124.08748633060439,-8.920150538056042],[124.19998625090851,-8.697804852256501],[124.40375610655605,-8.320653715925028]]]}},{"type":"Feature","properties":{"id":"denpasar-waingapu-cable-systems","name":"Denpasar-Waingapu Cable Systems","color":"#73469b","feature_id":"denpasar-waingapu-cable-systems-0","coordinates":[116.69216573688443,-9.36443261124896]},"geometry":{"type":"MultiLineString","coordinates":[[[118.0822205847911,-8.84114915636186],[118.0124906341883,-9.142360877005329],[117.67499087327633,-9.36443261124896],[117.22499119206026,-9.36443261124896],[116.54999167023632,-9.36443261124896],[116.09999198902025,-9.253414272929316],[115.64999230780437,-9.142360877005329],[115.42499246719633,-8.920150538056042],[115.26057258367304,-8.657096255417823]],[[115.64999230780437,-9.142360877005329],[115.70624226795633,-8.86457667788879],[115.8749921490083,-8.679270038068276],[116.07252200848033,-8.561426607445732]],[[118.0822205847911,-8.84114915636186],[118.23749047479633,-9.142360877005329],[118.68749015601242,-9.253414272929316],[119.24998975812831,-9.179382545871277],[120.03748919966027,-9.179382545871277],[120.26248904026849,-9.36443261124896],[120.25301904757286,-9.645765890160455]]]}},{"type":"Feature","properties":{"id":"bifrost","name":"Bifrost","color":"#939597","feature_id":"bifrost-0","coordinates":[-120.10638899403298,33.373252119733046]},"geometry":{"type":"MultiLineString","coordinates":[[[-122.84983873608158,35.05222991093673],[-121.9498393748416,34.31215165223547],[-120.59984033000157,33.565491482352044],[-117.44984256148977,32.33831157801293],[-117.06378442547147,32.3575986746028]]]}},{"type":"Feature","properties":{"id":"bifrost","name":"Bifrost","color":"#f5ae1a","feature_id":"bifrost-1","coordinates":[-152.38305336538838,37.36629963591011]},"geometry":{"type":"MultiLineString","coordinates":[[[-123.97340935607642,45.14659036063931],[-125.09983714216159,44.53466416326733],[-129.5998339543217,43.073310783003215],[-138.5998275786419,40.38732029077508],[-151.1998186532859,37.70855130533492],[-163.79980972733406,34.063992930126034],[-172.79980979028863,30.255702942039875],[-179.99980039712295,27.097918575215974]],[[109.34999677018433,-3.029995968008661],[107.99999772772827,-4.60145376483711],[107.5499980465122,-5.273944363641298],[106.82782855810404,-6.171876390816321]],[[126.44998465698852,5.659359572411489],[126.2249848157844,5.957818681088533],[125.61287587559997,7.079988883160643]],[[124.19998625090851,3.865649782482034],[124.64998593331639,1.805788280129153],[124.8396357983706,1.490779296094715]],[[179.99994672169302,27.097918575215974],[173.6999511846689,25.484199086872454],[160.19996074818866,22.191942630775465],[151.1999671244645,18.678647022154717],[145.79997094927663,16.24638821747719],[144.67497174623662,14.365653759228442],[144.5624718259325,13.92930384327183],[144.77675167413477,13.490037504527912]],[[144.5624718259325,13.92930384327183],[143.9999722250084,13.273238157547594],[137.24997700676838,11.735650161405832],[133.19997987582445,9.967915186974132],[129.59998242550049,7.893494252945166],[126.44998465698852,5.659359572411489],[124.19998625090851,3.865649782482034],[120.59998880177636,2.367912558705407],[119.24998975693651,1.018534216615524],[119.02498991513632,0.568578852526193],[118.31629235168833,-0.810555324740758],[117.85190631946367,-1.290401396141605],[117.73941082764067,-1.51533365197483],[117.48749100610306,-2.730375485267853],[116.58310164737706,-4.179995582158629],[114.67992114108486,-5.049857167366764],[112.0499948586722,-4.37714437553184],[110.02499629200844,-3.479268678970064],[109.34999677018433,-3.029995968008661],[106.31249892316808,-0.331409329660265],[105.63749940134416,0.118588418888312],[104.8499999592161,0.568578852526193],[104.17500043739219,0.685071778220519],[103.89375063663218,0.793562652607196],[103.89375063663218,1.018534216615524],[103.64609081207688,1.338585852071497]],[[-120.62152181466479,35.12094936772415],[-122.84983873608158,35.05222991093673],[-129.5998339543217,38.29952060596925],[-138.5998275786419,40.38732029077508]]]}},{"type":"Feature","properties":{"id":"echo","name":"Echo","color":"#cd5628","feature_id":"echo-0","coordinates":[160.8618879884488,21.51860043560473]},"geometry":{"type":"MultiLineString","coordinates":[[[179.99994672169302,26.29386583975231],[173.6999511846689,24.669041914124236],[160.19996074818866,21.356164482330126],[151.1999671244645,17.82393441253792],[145.79997094927663,15.813887260619625],[143.88747230410857,13.965698203819535],[144.22497206442463,13.710817738179635],[144.69470173285575,13.464772962370143]]]}},{"type":"Feature","properties":{"id":"echo","name":"Echo","color":"#939597","feature_id":"echo-1","coordinates":[127.3711135694469,-4.619987344659122]},"geometry":{"type":"MultiLineString","coordinates":[[[144.65753175859138,13.385305518498077],[143.9999722250084,13.3827080361257],[143.54997254319662,13.419186961310027]],[[133.64997955704033,7.744889052551447],[134.09997923706462,7.521883237406507],[134.5609408257699,7.531746239289517]],[[109.57499661138827,-3.029995968008661],[108.1124976480322,-4.60145376483711],[107.66249796681612,-5.273944363641298],[107.12099835041957,-5.981154260263285]],[[143.88747230410857,13.965698203819535],[143.54997254319662,13.419186961310027],[137.24997700676838,9.52441134501949],[133.64997955704033,7.744889052551447],[133.19997987582445,7.29876275445952],[130.49998178793246,3.865649782482034],[129.59998242550049,1.618372199773176],[128.69998306306852,-1.981015190984684],[128.0249835412444,-2.880195580251407],[127.34998401942048,-4.676208028751072],[123.74998656969242,-6.467627592690688],[120.14998911996437,-6.467627592690688],[116.58310164737706,-4.852974874840906],[114.7499929459683,-4.825692499217419],[112.0499948586722,-4.152767748013638],[110.24999613321238,-3.479268678970064],[109.57499661138827,-3.029995968008661],[106.53749876377611,-0.331409329660265],[105.29999964043219,0.906050180869095],[104.8499999592161,1.187252773694101],[104.62500011860807,1.250557147797234],[104.28790035741287,1.299826156329162],[104.18975042694323,1.31015097035863],[103.98701057056589,1.389451396800233]]]}},{"type":"Feature","properties":{"id":"echo","name":"Echo","color":"#ce5728","feature_id":"echo-2","coordinates":[-152.8644210143957,36.507218716598956]},"geometry":{"type":"MultiLineString","coordinates":[[[-124.15955921950356,40.803253108521126],[-139.05018102509484,39.00237890905839],[-151.1998186532859,36.993119919861876],[-163.79980972733406,33.31515395812905],[-172.79980979028863,29.47523619496653],[-179.99980039712295,26.29386583975231]]]}},{"type":"Feature","properties":{"id":"jamaica-submarine-cable-festoon-system-jscfs","name":"Jamaica Submarine Cable Festoon System (JSCFS)","color":"#3e60ac","feature_id":"jamaica-submarine-cable-festoon-system-jscfs-0","coordinates":[-77.84875084100726,17.982107130467057]},"geometry":{"type":"MultiLineString","coordinates":[[[-77.92138056441902,18.469357593227326],[-78.18737037598936,18.554264565049102],[-78.35612025644534,18.447578822532115],[-78.34826026201347,18.278671433780136],[-78.29987029629338,18.073658723981474],[-78.07487045568534,17.966677204124696],[-77.84837061613986,18.023694555394638],[-77.84987061507731,17.859630869537803],[-77.39987093326533,17.716802179008642],[-76.94987125204935,17.770376320836018],[-76.66665145328092,17.949944181323392]]]}},{"type":"Feature","properties":{"id":"confluence-1","name":"Confluence-1","color":"#939597","feature_id":"confluence-1-0","coordinates":[-76.76886657310834,33.088263944439525]},"geometry":{"type":"MultiLineString","coordinates":[[[-74.69987284596934,36.90321229501768],[-76.05919805488554,36.755008440642534]],[[-79.19986965812936,29.93125070442692],[-80.5498687017773,30.223305674181642],[-81.65572729397277,30.33203181846753]],[[-77.39987093386132,32.55982671166815],[-78.26653698657397,33.189714664600466],[-78.88266988343256,33.69355790837514]],[[-74.0628732978218,40.152905263922335],[-73.93747338606022,40.02845597599392],[-74.02487332354933,39.00237890905839],[-74.69987284596934,36.90321229501768],[-74.92487268717328,35.54192681258013],[-76.04987189021328,33.69038903934858],[-77.39987093386132,32.55982671166815],[-79.19986965812936,29.93125070442692],[-79.64986933934534,26.562513149236715],[-80.08893152830949,26.350585697437857]]]}},{"type":"Feature","properties":{"id":"kafos","name":"KAFOS","color":"#bc74b0","feature_id":"kafos-0","coordinates":[28.059768458575558,41.878465750291376]},"geometry":{"type":"MultiLineString","coordinates":[[[28.988233700403125,41.04061756347715],[29.025053673723477,41.435845950249096],[28.35005415189955,41.85617959436374],[27.985354410256257,41.88417875345408],[28.23755423159562,42.19047067556428],[28.23755423159562,42.85377505385472],[28.35005415189955,43.182784815861005]],[[27.912854461615982,43.20837344983071],[28.35005415189955,43.182784815861005],[28.800053833115623,43.42838486264783],[28.800053833115623,43.67299239292199],[28.5827539870529,43.81718785722384]]]}},{"type":"Feature","properties":{"id":"jakarta-bangka-batam-singapore-b2js","name":"Jakarta-Bangka-Batam-Singapore (B2JS)","color":"#31b34a","feature_id":"jakarta-bangka-batam-singapore-b2js-0","coordinates":[105.8468008350727,-1.8862984076575924]},"geometry":{"type":"MultiLineString","coordinates":[[[106.82782855810404,-6.171876390816321],[106.4249988434722,-5.273944363641298],[106.64999868408005,-4.60145376483711],[106.76249860378826,-3.479268678970064],[106.54745875672049,-3.079924874677993],[106.31249892257236,-2.580536704984131],[105.86249924135629,-1.906058394384765],[105.5827094401579,-1.553879793691628],[105.52499948104004,-1.231315750217412],[105.18749972012807,0.118588418888312],[104.8499999592161,0.345586247302374],[104.17500043739219,0.45608344784057],[103.72500075617612,0.793562652607196],[103.72500075617612,1.018534216615524],[103.87813064769749,1.134723598626614],[104.0166370000003,1.066798000000349],[103.92187561670808,1.185378176915766],[103.94648059927786,1.327258925921003]]]}},{"type":"Feature","properties":{"id":"maroc-telecom-west-africa","name":"Maroc Telecom West Africa","color":"#b27032","feature_id":"maroc-telecom-west-africa-0","coordinates":[-16.68894148387257,8.72531679447526]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.199914288484827,23.848523186487938],[-16.08741436818081,23.745587983103654],[-15.934424476560302,23.72108197755363]],[[-3.712423134144677,3.266814816815666],[-4.026242911831877,5.323508791824841]],[[1.350073278939443,4.164912849976942],[1.350073279535343,5.061986954416114],[1.227803366152544,6.126307297218732]],[[2.25007264196731,4.0527020972683],[2.25007264196731,5.061986954416114],[2.440112507341202,6.356673335458259]],[[-7.631920358132023,33.60539511325584],[-8.999919389028726,33.31515395812905],[-12.1499171569448,30.126049846722832],[-13.022832188573513,28.161052262220792],[-14.399915563024809,26.964304734562898],[-16.199914288484827,23.848523186487938],[-16.64991396910482,22.884654113882444],[-17.99991301275286,19.95262290516439],[-17.999913013348852,16.534196198259725],[-17.99991301275286,11.735650161405832],[-16.64991396910482,8.635699417327467],[-15.299914926648759,7.744889052551447],[-14.399915564216792,6.852191098754328],[-12.1499171569448,5.061986954416114],[-10.799918113296759,3.715978119298069],[-6.299921301732732,3.715978119298069],[-3.712423134144677,3.266814816815666],[-0.899925126544665,3.279837005484997],[1.350073278939443,4.164912849976942],[2.25007264196731,4.0527020972683],[5.400070410479286,1.918228780215599],[7.200069135343221,0.793562652607196],[8.550068178991262,0.568578852526193],[9.454267538448212,0.394465191855477]]]}},{"type":"Feature","properties":{"id":"africa-1","name":"Africa-1","color":"#939597","feature_id":"africa-1-0","coordinates":[48.51132784674715,11.824040700245183]},"geometry":{"type":"MultiLineString","coordinates":[[[42.95452380595619,14.797809010241023],[42.75004395140765,14.637942589496117],[41.79379462882354,14.801154224791581]],[[7.425068975355357,37.94551049545967],[5.625070250491423,37.35168786972502],[5.055680653852241,36.75152814511764]],[[33.08276564295245,28.365936333863583],[32.7320868096055,28.91576488954453],[32.27205088751434,29.03186417191496],[31.69565233922443,28.932934895626012],[31.027923586734694,29.1588987021242],[30.25379870692613,29.588964619793366],[29.80260641382583,30.14927191491723],[29.67235321517045,31.047641997876443]],[[35.696548947573824,27.354010300438862],[35.10004937013957,27.097918575215974],[34.59379972936762,26.562513149236715]],[[56.33993432360578,25.0514826710929],[56.92503390911573,24.711631506331194],[58.50003279396771,24.045587109255923],[59.850031837019856,23.40188413185254],[60.97503104005986,22.469443964829516],[60.97503104005986,16.749771315644697]],[[32.28445136473581,31.25927814644905],[32.118801482083676,31.510798430049064],[31.275052079803668,31.798087367585257],[27.900054470683475,31.957307911004964],[25.200056383387572,32.7177179367584],[22.050058614875596,33.45605770170512],[19.35006052757951,33.37780603565933],[16.65006244028343,33.001218522654476],[14.400064034203421,33.846256070003854],[12.150065628130324,35.419780517080355],[11.925065787515376,35.78566189952622],[11.700065946907337,36.24065523321488],[11.36256618480339,37.23235432155614],[10.348617229173378,37.589786573603064],[9.000067859015536,37.589786573603064],[7.425068975355357,37.94551049545967],[6.750069453531427,38.651811712711336],[5.737570170795351,41.74435878948223],[5.372530429392986,43.29362778902908]],[[39.6728961306921,-4.052924364763054],[42.30004427019158,-3.254657364797681],[45.225042198095515,-1.006358951224796],[47.70004044418784,1.468426767331968],[50.85003821329572,5.510071711803246],[53.55003630059162,9.52441134501949],[54.67503550363163,12.615395567393394],[54.00003598419185,13.163718917913586],[52.650036937563755,12.834868817846521],[48.60003980721571,11.84577637362577],[45.45004203810783,11.073982781226615],[44.550042675675684,11.12918015324408],[43.50941841286372,12.395734000022975],[43.25629359217961,12.615395567393394],[43.17191865195175,12.834868817846521],[42.89066885178765,13.054150695298627],[42.30004427019158,13.92930384327183],[41.79379462882354,14.801154224791581],[40.500045545329826,16.534196198259725],[39.487546262591565,18.251816319028222],[38.137547218943524,20.375041253465433],[37.35004777681549,22.05298561667754],[36.11254865347155,24.12261698700344],[35.100049370735476,25.75470426341523],[34.59379972877172,26.562513149236715],[33.91880020694761,27.364667993860262],[33.38487558519097,28.161052262220792],[33.08276564295245,28.365936333863583],[32.76239392030568,28.935360665915493],[32.26376314640125,29.08168448369012],[31.693903039329573,29.01833169208537],[31.051558993277148,29.238654773352504],[30.305753552092842,29.6569927221975],[29.894152676194512,30.192289804044524],[29.67235321517045,31.047641997876443]],[[44.550042675675684,11.12918015324408],[43.65004331324372,11.489461709300535],[43.1479936689003,11.594869371447825]],[[45.45004203810783,11.073982781226615],[45.235802189877134,10.705441883254426],[45.01088234921274,10.43511874899288]],[[54.00003598359576,13.163718917913586],[55.350035024859835,13.92930384327183],[58.95003247518379,15.669513225155248],[60.97503104005986,16.749771315644697],[65.70002769282792,20.375041253465433],[66.26252729434792,23.298598065875897],[67.02854675169264,24.889731701235817]]]}},{"type":"Feature","properties":{"id":"natitua-sud","name":"Natitua Sud","color":"#56c5cd","feature_id":"natitua-sud-0","coordinates":[-148.949820247206,-20.460174471434488]},"geometry":{"type":"MultiLineString","coordinates":[[[-149.17482008781394,-22.42353053825288],[-150.74981897207002,-22.42353053825288],[-151.34291855191262,-22.451259432002136]],[[-149.4859198674279,-23.34692100073201],[-149.17482008781394,-22.42353053825288],[-148.949820247206,-20.85502445095989],[-148.949820247206,-18.097730413625836],[-149.0623201675099,-17.776635424587234],[-149.3081207740364,-17.723342219804366]]]}},{"type":"Feature","properties":{"id":"cogim","name":"COGIM","color":"#2da348","feature_id":"cogim-0","coordinates":[-63.098710670710354,47.999570815181464]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.30898020757121,48.47179524319343],[-63.899880497381176,48.35656994073399],[-62.54988145373323,47.75501398838149],[-61.95568187466976,47.382579621269414]],[[-64.30898020757121,48.47179524319343],[-63.899880497381176,48.20683973227639],[-62.54988145373323,47.60352623014696],[-61.95568187466976,47.382579621269414]]]}},{"type":"Feature","properties":{"id":"au-aleutian","name":"AU-Aleutian","color":"#939597","feature_id":"au-aleutian-0","coordinates":[-163.1289861938159,54.7882234991309]},"geometry":{"type":"MultiLineString","coordinates":[[[-152.887317457846,57.93214153471666],[-152.88193814671197,57.869443262101676]],[[-162.899810364902,54.62453363273441],[-163.01231028520604,54.75458482702214],[-163.23731012581416,54.819454224251736],[-163.41500999992982,54.85095757670635]],[[-158.8498132339581,55.58979765418965],[-158.962313154262,55.7800604287217],[-159.14481302497742,55.917485764080254]],[[-158.77211328900137,56.254983508649424],[-158.62481339335005,56.28291483663352],[-158.50721347665893,56.32136337173197],[-158.4088135463664,56.29451450143274]],[[-162.30441078668872,55.04920181729871],[-162.44981068368602,55.013438622906556]],[[-162.44981068368602,55.013438622906556],[-162.56231060399006,55.07789244004115],[-162.70401050360857,55.20414950086254]]]}},{"type":"Feature","properties":{"id":"au-aleutian","name":"AU-Aleutian","color":"#2d56a6","feature_id":"au-aleutian-1","coordinates":[-159.80395885589576,55.39091486944688]},"geometry":{"type":"MultiLineString","coordinates":[[[-152.54981769693393,57.9022645808777],[-152.5017384256537,57.925201701620985]],[[-165.93730821311007,54.36317932422044],[-165.82480829280604,54.29757945174354],[-165.77305051697178,54.135639094836016]],[[-166.53325505656073,53.884514690832766],[-166.49980781463006,54.034132352888065],[-166.2748079740221,54.29757945174354],[-165.93730821311007,54.36317932422044],[-165.5998084521981,54.42867459701121],[-165.14980877098202,54.29757945174354],[-164.24980940855005,54.29757945174354],[-163.34981004611808,54.42867459701121],[-162.899810364902,54.62453363273441],[-162.56231060399006,54.819454224251736],[-162.44981068368602,54.981172806674145],[-162.30441078668872,55.04920181729871]],[[-153.98601667951715,57.537318647427895],[-153.96856734948312,57.66903988014617],[-154.34981642179795,57.75250737948315],[-154.79981610301394,57.69243021067551],[-155.47481562483796,57.32986760241196],[-156.82481466848603,56.46979987684146],[-157.49981419031005,56.40760669952748],[-157.949813871526,56.41452207827388],[-158.4088135463664,56.29451450143274]],[[-158.4088135463664,56.29451450143274],[-158.17481371213407,56.345311717086744],[-158.04981380068514,56.27944535366361],[-157.95606442397002,56.0672110054515],[-158.399813552742,55.71674234179641],[-158.8498132339581,55.58979765418965],[-159.29981291517407,55.462441022744024],[-159.74981259639003,55.39860800738421],[-160.19981227760601,55.33467174196283],[-160.4963120675628,55.34155340050567],[-160.649811958822,55.43053741585332],[-160.87481179943003,55.39860800738421],[-161.0998116400381,55.33467174196283],[-161.32481148064602,55.3026648631947],[-161.54981132125405,55.3026648631947],[-161.774811161862,55.23857355917981],[-161.99981100247004,55.07789244004115],[-162.11231092277407,55.013438622906556],[-162.30441078668872,55.04920181729871]],[[-152.3951178065248,57.79442233367651],[-152.38106851418576,57.872362884096376],[-152.54981769693393,57.9022645808777],[-152.887317457846,57.93214153471666],[-152.99981737815003,57.961993642608505],[-153.1685679364199,57.99182080194843],[-153.449817059366,58.021623140679736],[-153.899816740582,57.99182080194843],[-154.12481658119003,57.81248509700269],[-153.91231673172686,57.66903988014617],[-153.98601667951715,57.537318647427895]]]}},{"type":"Feature","properties":{"id":"sealink","name":"SEALink","color":"#b08c34","feature_id":"sealink-0","coordinates":[-133.5728855655221,57.16786004279634]},"geometry":{"type":"MultiLineString","coordinates":[[[-132.82953166696961,56.01522795549929],[-132.9112827986132,56.12703903462036],[-132.89728280888457,56.19050811225174],[-132.7297129312297,56.26414244600623],[-132.68226177043357,56.29090165693316],[-132.64808299171534,56.35047071868664],[-132.64808299171534,56.381643336006654],[-132.64808299171534,56.47504144368907],[-132.6481329902577,56.537179473172735],[-132.70453414081942,56.5991056130363],[-132.78895907958972,56.661040335003094],[-132.83120037858563,56.722763716398205],[-132.969852755046,56.807791226083026],[-132.84488284732893,56.91336556277725],[-132.95198276875277,57.02097743143672],[-133.23294256202445,57.081745867261986],[-133.51633117983843,57.12497316683114],[-133.573282312923,57.16816090817339],[-133.60188111983013,57.22966820564022],[-133.57424231079764,57.31396150003885],[-133.60852228564744,57.37303699157905],[-133.63518109624007,57.558771470979615],[-133.74631218455488,57.707894171078024],[-133.7684821697104,57.82371236991844],[-133.93518088371746,57.98640326883048],[-134.06858194953577,58.101249458975765],[-134.19278185841375,58.165130914395746],[-134.29583062763373,58.2074722872719],[-134.5799004335419,58.24259543893794],[-134.65548037809106,58.291672685647676],[-134.78693028165,58.41219086765235],[-134.782919144335,58.4981259553756],[-134.7472914509898,58.551049268231914]]]}},{"type":"Feature","properties":{"id":"colombian-festoon","name":"Colombian Festoon","color":"#34b44a","feature_id":"colombian-festoon-0","coordinates":[-75.57206688193693,10.345771350329175]},"geometry":{"type":"MultiLineString","coordinates":[[[-74.20529311880517,11.241938042153873],[-74.36237308565327,11.33148066218366],[-74.47487300595729,11.221152507138276],[-74.61193345573741,11.012160871628799]],[[-74.95280235488768,11.00516315415223],[-75.14987252778131,11.073982781226615],[-75.26237244808533,10.963556857789316],[-75.50573165009133,10.386791448721706],[-75.82487204960533,10.189442766507625],[-75.82487205020132,9.894039027618803],[-75.55866223759485,9.49638197998378]]]}},{"type":"Feature","properties":{"id":"iris","name":"IRIS","color":"#94479b","feature_id":"iris-0","coordinates":[-14.888230240416295,59.70271872991365]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.048319354741794,53.273886331643226],[-9.899918751460783,53.05365242709034],[-10.799918113892751,53.25603519350496],[-11.249917795108734,53.52439675040044],[-12.599916838160784,54.94878902385559],[-12.599916838756776,55.67438282806264],[-12.374916998148738,56.4282604688234],[-12.599916838756776,58.83627867169679],[-13.949915882404726,59.52787100202234],[-21.14991078186083,60.8695351663294],[-21.82491030368485,62.15710017959811],[-22.724909666116908,62.986189024595745],[-22.27490998490083,63.492719682582305],[-21.37812062019483,63.856257493182085]]]}},{"type":"Feature","properties":{"id":"amitie","name":"Amitie","color":"#4bb748","feature_id":"amitie-0","coordinates":[-35.6110060180745,47.22990849577579]},"geometry":{"type":"MultiLineString","coordinates":[[[-10.799918113296759,49.44120372312804],[-7.199920663568708,50.88245364291024],[-5.399921938704683,51.02419288763878],[-4.544402544762735,50.82820142743812]],[[-70.95027550281526,42.46364601310954],[-69.29987667137726,42.41235450073586],[-61.19988240948919,41.74435878948223],[-50.39989006030513,43.564400497117596],[-39.99999508453427,46.17414676370763],[-23.399909187344846,50.167261162927154],[-16.199914287888834,50.167261162927154],[-10.799918113296759,49.44120372312804],[-5.849921620516659,46.99317357497891],[-3.149923533220666,45.1197757996118],[-1.211824906187882,44.89381187034425]]]}},{"type":"Feature","properties":{"id":"gulf-of-mexico-fiber-optic-network","name":"Gulf of Mexico Fiber Optic Network","color":"#b09330","feature_id":"gulf-of-mexico-fiber-optic-network-0","coordinates":[-91.16801373144628,28.055198789470996]},"geometry":{"type":"MultiLineString","coordinates":[[[-95.34435822181815,28.94954214664031],[-94.04985913885344,28.094910059657696],[-91.79986073277352,27.896238989528694],[-88.64986296426146,28.68871408880043],[-88.19986328304547,29.47523619496653],[-88.55616303063934,30.365773710175556]]]}},{"type":"Feature","properties":{"id":"havsil","name":"Havsil","color":"#2b2f83","feature_id":"havsil-0","coordinates":[8.401890178570817,57.66162794333638]},"geometry":{"type":"MultiLineString","coordinates":[[[8.616168131569658,57.1116502612406],[8.662568098699472,57.28927362171987],[8.212568416291413,57.932056586951404],[7.996258571315225,58.15106571642484]]]}},{"type":"Feature","properties":{"id":"grace-hopper","name":"Grace Hopper","color":"#28b08c","feature_id":"grace-hopper-0","coordinates":[-38.34293272068773,42.07147147019439]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.199914287888834,46.272182853813646],[-9.899918750864702,46.890762878622326],[-5.849921619920758,45.96024524125342],[-4.27492273626067,44.694829089578164],[-2.949193674823563,43.274220252000646]],[[-72.93786409419282,40.75584308487114],[-71.09987539624129,39.78482855593699],[-68.39987730894529,39.524987333511675],[-61.19988240948919,38.651811712711336],[-50.39989006030513,39.00237890905839],[-39.59989771112098,41.74435878948223],[-23.399909187344846,45.96024524125342],[-16.199914287888834,46.272182853813646],[-10.799918113296759,49.29468421942562],[-8.099920026000767,49.73293362369082],[-4.544402544762735,50.82820142743812]]]}},{"type":"Feature","properties":{"id":"asia-direct-cable-adc","name":"Asia Direct Cable (ADC)","color":"#ed1b2c","feature_id":"asia-direct-cable-adc-0","coordinates":[120.88988111749366,20.05833455139623]},"geometry":{"type":"MultiLineString","coordinates":[[[114.29999326356042,14.801154224791581],[116.99999135204831,13.710817738179635],[118.79999007691224,13.492128176464083],[120.14998912056028,13.492128176464083],[121.06600847164388,13.762418337904428]],[[116.99999135204831,19.316876111628712],[117.22499119206026,19.95262290516439],[117.22499119206026,20.796306105108872],[116.99999135204831,22.469443964829516],[116.67753158048176,23.355006811273547]],[[115.19999262718419,18.251816319028222],[114.52499310536027,20.796306105108872],[114.20292333351767,22.22205041973683]],[[113.17499406171221,12.615395567393394],[112.94999422110418,12.834868817846521],[111.59999517745614,13.492128176464083],[110.02499629320025,13.820086409698062],[109.21959686375268,13.782910441432074]],[[107.99999772772827,5.398081130463647],[105.29999964043219,6.405200795356032],[103.27500107496003,7.744889052551447],[100.80000282767627,9.52441134501949],[100.12500330585216,11.294709319565477],[100.23750322675217,12.175887185507976],[100.57500298647233,12.834868817846521],[100.93057273577533,13.174371211662239]],[[139.97546699999984,35.005433000000174],[140.1749749340766,34.89859296336222],[140.3437248145325,34.69072647741027],[140.51247469558447,34.405022750715936],[140.84997445649643,33.93964008831966],[140.84997445649643,32.43331330641721],[140.39997477528055,30.901396088515508],[138.82497589102445,28.161052262220792],[137.24997700676838,26.562513149236715],[132.74998019460836,23.50508968095737],[130.94998146974444,22.677206196582915],[125.99998497636834,21.111485983488812],[122.84998720785636,20.269544035929588],[121.04998848299225,20.05833455139623],[120.14998912056028,20.05833455139623],[116.99999135204831,19.316876111628712],[115.19999262718419,18.251816319028222],[114.29999326356042,14.801154224791581],[113.17499406171221,12.615395567393394],[112.16249477897614,9.967915186974132],[110.92499565563222,7.744889052551447],[107.99999772772827,5.398081130463647],[105.74999932164808,4.389285926050993],[104.68125007876004,2.817450442654169],[104.3161753373827,1.468426767331968],[104.20615041532531,1.341894944206377],[103.91973061822782,1.228443589211858],[103.64609081207688,1.338585852071497]]]}},{"type":"Feature","properties":{"id":"eaufon-3","name":"EAUFON 3","color":"#939597","feature_id":"eaufon-3-0","coordinates":[-68.97503762005128,60.34035186226439]},"geometry":{"type":"MultiLineString","coordinates":[[[-69.29987667197325,61.304658531911585],[-69.6373764328853,61.14218811914619],[-69.65026704875343,61.03999773543458]],[[-69.07487683136522,60.093570225923045],[-69.52487651258129,60.009326600079234],[-69.86237627349325,60.009326600079234],[-70.02623500000018,60.023415]],[[-69.03737685793054,59.51719275174019],[-69.48737653914662,59.40286331928215],[-69.59748899999985,59.30574]],[[-68.39987730954128,59.29889402722166],[-69.07487683136522,58.95251729542412],[-69.41237659227727,58.89444683796138],[-69.52487651258129,58.80715791514554],[-69.6373764328853,58.77801269228043],[-69.93739622034846,58.697407]],[[-67.94987762832521,58.95251729542412],[-68.17487746893325,58.543968564154575],[-68.17487746893325,58.42635692511553],[-68.28737738923726,58.24920018303555],[-68.41883729610984,58.102996]],[[-71.95388901309511,61.59626],[-71.99987475926925,61.62709041825654],[-71.99987475926925,61.73382762714022],[-71.7748749186613,61.78705797378999],[-71.32487523744531,61.73382762714022],[-70.64987571562129,61.51998376783514],[-69.29987667197325,61.304658531911585],[-68.84987699075727,61.08784471959974],[-68.84987699075727,60.64972274466829],[-69.07487683136522,60.093570225923045],[-69.03737685793054,59.51719275174019],[-68.39987730954128,59.29889402722166],[-67.94987762832521,58.95251729542412],[-66.59987858467726,59.06836550247494],[-66.14987890346119,58.95251729542412],[-65.99511901309455,58.710155]]]}},{"type":"Feature","properties":{"id":"eaufon-2","name":"EAUFON 2","color":"#c11a7d","feature_id":"eaufon-2-0","coordinates":[-78.5378171210829,62.76322167039172]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.74986997750936,62.47071999993706],[-78.29987029629338,62.47071999993706],[-77.94346054877738,62.41502369498159]],[[-78.97486981811731,61.08784471959974],[-78.52487013690133,60.97887735694231],[-78.14424040654293,60.81768303986588]],[[-75.6468521757162,62.2012833728858],[-75.48733080434768,62.39551416272755],[-74.81233128252366,62.34334021969972],[-74.6308190654326,62.11332960460878]],[[-78.52487013690133,59.755303236949786],[-78.97486981811731,60.64972274466829],[-78.97486981811731,61.08784471959974],[-78.74986997750936,61.51998376783514],[-78.74986997750936,62.47071999993706],[-78.52487013690133,62.78108049372607],[-77.39987093386132,62.986189024595745],[-76.04987189021328,62.78108049372607],[-75.6468521757162,62.2012833728858]]]}},{"type":"Feature","properties":{"id":"eaufon-1","name":"EAUFON 1","color":"#5b6cb3","feature_id":"eaufon-1-0","coordinates":[-77.22173960190058,56.73124145046774]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.29987029629338,55.67438282806264],[-78.07487045568534,55.41980621446019],[-77.76378669168498,55.27457419138992]],[[-78.74986997750936,58.13060164022799],[-78.29987029629338,58.36740335134618],[-78.10507043429136,58.455132585224064]],[[-77.17487109325337,56.55247760361361],[-76.7248714120373,56.55247760361325],[-76.54713716294596,56.55156255991272]],[[-77.26920696392492,60.03711467356478],[-78.52487013690133,59.755303236949786],[-79.19986965872535,59.06836550247494],[-79.19986965872535,58.6026268350673],[-78.74986997750936,58.13060164022799],[-77.39987093386132,57.41066230395049],[-77.17487109325337,56.55247760361361],[-77.39987093386132,56.178604166899405],[-77.84987061507731,55.927313564321764],[-78.29987029629338,55.67438282806264],[-79.19986965872535,55.41980621446019],[-80.09986902115732,54.90569284432047],[-80.09986902115732,54.3849293997443],[-79.64986933994133,53.857473440304716],[-78.89347339140434,53.77361440535734]]]}},{"type":"Feature","properties":{"id":"2africa","name":"2Africa","color":"#939597","feature_id":"2africa-0","coordinates":[60.525031359439865,18.27768420760363]},"geometry":{"type":"MultiLineString","coordinates":[[[55.35003502545574,26.260240971577822],[54.90003534423966,25.75470426341523],[54.45003566183197,24.83931282559271],[54.419075684956134,24.443964572625426]],[[60.525031359439865,16.10232559580297],[60.975031038867876,16.318380026359527],[66.60002705585578,18.251816319028222],[70.20002450558383,18.785187974742005],[72.87590260996693,19.07607425728523]],[[60.525031359439865,22.469443964829516],[65.25002801161183,24.259444485784776],[67.02854675228855,24.889731701235817]],[[58.50003279396771,23.89138876125301],[58.162533033055745,23.865671119262494],[57.88605322832058,23.67872342575357]],[[57.03753383001575,25.348717422116714],[57.38011358673322,24.420846844473278],[57.712533351839674,24.12261698700344],[58.50003279396771,23.89138876125301],[59.85003183761575,23.19523175611711],[60.525031359439865,22.469443964829516],[60.525031359439865,19.104405475930452],[60.525031359439865,16.10232559580297],[58.95003247399199,15.23578178303578],[55.35003502366785,13.492128176464083],[54.90003534423966,12.615395567393394]],[[51.30003789451161,26.964304734562898],[50.962538133599644,26.562513149236715],[50.57601840741415,26.229494838391265]],[[52.20003725694376,26.562513149236715],[51.862537496031614,26.05828756029904],[51.519277739200085,25.294608758024626]],[[50.62503837268768,27.364667993860262],[50.287538611775716,26.964304734562898],[50.214198663730556,26.28537535931817]],[[49.16253940873571,28.75448641587171],[47.974840250113054,29.37410420420039]],[[48.5317798555716,29.92363278689715],[49.16253940873571,28.75448641587171],[50.175038691471606,28.06182365971013],[50.62503837268768,27.364667993860262],[51.30003789451161,26.964304734562898],[52.20003725694376,26.562513149236715],[53.55003630059162,26.260240971577822],[55.35003502545574,26.260240971577822],[55.80003470667163,26.36108632539156],[56.2500343878877,26.713351447732887],[56.86878394955967,26.562513149236715],[57.03753383001575,26.1593079707739],[57.03753383001575,25.348717422116714],[56.33993432360578,25.0514826710929]],[[38.250047139247634,20.375041253465433],[37.58923757400337,19.919043448151303],[37.21967786917097,19.61556659454616]],[[44.55004267627159,11.23954347159687],[43.65004331383962,11.455111997387936],[43.14799366949638,11.594869371447825]],[[54.00003598419185,13.273238157547594],[54.11253590389969,13.601498202276586],[54.288615989811035,14.589548002447021],[54.288615989811035,16.582020902615277],[54.14808587692784,17.09582718672565]],[[44.55004267627159,11.23954347159687],[43.31254355292765,12.615395567393394],[43.21410612266167,12.834868817846521],[42.975043792015505,13.054150695298627],[42.35629423034354,13.92930384327183],[41.8500445889755,14.801154224791581],[40.61254546563375,16.534196198259725],[39.60004618289549,18.251816319028222],[38.250047139247634,20.375041253465433]]]}},{"type":"Feature","properties":{"id":"2africa","name":"2Africa","color":"#b5258f","feature_id":"2africa-1","coordinates":[-21.144285882711586,16.45536331058273]},"geometry":{"type":"MultiLineString","coordinates":[[[25.198689196856183,34.014861549780676],[24.99488074748585,34.89090355336368],[24.7684,35.07162999999965]],[[45.450042038703735,11.184367066436712],[45.17955222972517,10.705441883254426],[45.01088234980864,10.43511874899288]],[[34.67817466959547,26.562513149236715],[35.21254929044368,27.097918575215974],[35.696548947573824,27.354010300438862]],[[37.4625476971196,22.05298561667754],[39.18275647850768,21.481533475502996]],[[41.8500445889755,-11.943944931746815],[42.07504442958354,-12.053986862571566],[42.75004395140765,-12.053986862571566],[43.24330360197787,-11.700589282272533]],[[-18.67491253517278,31.286738814391754],[-16.64991396970081,30.255702942039875],[-15.862414526976778,28.95155473219332],[-15.596564715903398,27.957733682885266]],[[55.45302495190069,-4.565748350533772],[55.350035024859835,-3.92832730414264],[54.900035343643765,-1.081346446098796],[54.000035981211795,1.168506749040978],[51.75003757632377,5.510071711803246]],[[5.400070410479286,2.367912558705407],[7.200069135343221,3.154491498099848],[7.650068816559295,3.491423322320592],[7.999287318573677,4.541590692825097]],[[1.800072960155335,-11.356308769000893],[11.700065947503239,-8.846050186819125],[12.600065309935387,-8.830631937053012],[13.235024860124117,-8.812561807472813]],[[27.000055108251505,-34.73466151270862],[25.875055905211504,-34.36402589452668],[25.6232560835889,-33.9624706667599]],[[5.372530429989069,43.29362778902908],[5.175070569275348,42.85377505385472],[4.050071366235344,41.85617959436374],[2.700072322587302,41.35145028689676],[2.168725042748786,41.38560270176812]],[[8.938867903561944,44.41035752885385],[8.775068019003399,44.05151922873524],[8.325068338383225,43.72721479104982],[7.200069135343221,43.073310783003215],[6.412569692619463,42.743713464436695],[5.962570011403388,42.743713464436695],[5.175070569275348,42.85377505385472]],[[32.28445136473581,31.25927814644905],[32.175051442235635,31.510798430049064],[31.72505176101956,31.798087367585257],[30.60005255857546,32.243210016262736],[28.68266219511189,32.58881770832659],[25.198689196856183,34.014861549780676],[24.04673688790992,34.33537907402818],[22.050058614875596,34.76657169708598],[19.24898112158607,34.96588061426259],[16.538486629207664,34.62626157775406],[14.485430000000347,35.114981288071654],[13.014410566350236,35.96055382761562],[12.369303754063077,36.753951849626404],[11.587566027795393,37.85673997565852],[11.250066265691444,39.6983233549332],[10.350066903259478,41.52013202089327],[9.787567301739475,42.41235450073586],[9.562567461727339,43.073310783003215],[9.450067540827328,43.401144973153954],[9.112567779915365,44.05151922873524],[8.938867903561944,44.41035752885385]],[[33.412950565897326,28.161052262220792],[33.30005064527564,28.29321405801615],[33.08276564295245,28.365936333863583]],[[36.22504857377548,24.12261698700344],[36.90004809500369,24.259444485784776],[37.80004745803156,24.225251377401914],[38.10697724059967,24.070648010417838]],[[48.60003980721571,1.468426767331968],[46.80004108235159,1.918228780215599],[45.344182113695986,2.041205223228781]],[[41.17504506655567,-4.900422453147402],[40.7250453853396,-4.676208028751072],[39.7450660795661,-3.946125186873873]],[[40.95004522654354,-5.273944363641298],[40.50004554473174,-4.676208028751072],[39.67289769319088,-4.053024114605376]],[[39.269676416932725,-6.823132108349236],[39.82504602290763,-6.467627592690688],[40.387545625023535,-6.169450529574503]],[[42.30004426959567,-14.861883917661954],[45.00004235689176,-15.29638776062193],[46.315441425050686,-15.713729798684179]],[[42.30004427019158,-15.224032284647373],[41.40004490716371,-14.64430197712377],[40.68539697592696,-14.565582936090415]],[[35.32504921134351,-26.551620801657084],[33.750050327087614,-26.350174904573713],[32.58062115552212,-25.968268155407962]],[[30.88039235938437,-30.05771707645661],[32.40005128343957,-29.8231438437626],[32.850050964655466,-29.431979622206125],[33.750050327087614,-28.348517239947288],[35.32504921134351,-26.551620801657084],[41.17504506715157,-23.287413403488653],[42.30004427019158,-20.574419057276128],[42.30004427019158,-15.224032284647373],[42.30004426959567,-14.861883917661954],[41.8500445889755,-11.943944931746815],[41.40004490775961,-9.29042430103552],[40.387545625023535,-6.169450529574503],[40.95004522654354,-5.273944363641298],[41.17504506655567,-4.900422453147402]],[[41.17504506655567,-4.900422453147402],[42.30004427019158,-3.479268678970064],[45.450042038703735,-1.231315750217412],[48.60003980721571,1.468426767331968],[51.75003757632377,5.510071711803246],[54.00003598180769,9.52441134501949],[54.90003534423966,12.615395567393394],[54.00003598419185,13.273238157547594],[52.65003693815965,12.944533868662969],[48.60003980781179,11.955858207114732],[45.450042038703735,11.184367066436712],[44.55004267627159,11.23954347159687]],[[38.252175044777196,20.36041343679164],[37.4625476971196,22.05298561667754]],[[37.4625476971196,22.05298561667754],[36.22504857377548,24.12261698700344],[35.212549291039586,25.75470426341523],[34.67817466959547,26.562513149236715],[33.918800207543505,27.364667993860262],[33.412950565897326,28.161052262220792],[32.906450924701375,28.95155473219332],[32.65318110412008,29.113614162980063],[32.56895616318991,29.344566989489813],[32.399981282893194,29.63833609362628],[32.52993119143143,29.972545436050364],[32.73755104375564,30.255702942039875],[32.62505112345171,30.837020582397155],[32.28445136473581,31.25927814644905]],[[32.65318110412008,29.113614162980063],[32.62520112394137,29.344566989489813],[32.45622624364466,29.63833609362628],[32.52993119143143,29.972545436050364],[32.85005096405957,30.255702942039875],[32.73755104375564,30.837020582397155],[32.28445136473581,31.25927814644905]],[[18.44992116524676,-33.69332014378617],[17.775061643323433,-34.11602012163193],[17.32506196210754,-34.85783936223576],[18.00006148393147,-36.3215277599179],[19.80006020939149,-36.68325067019043],[23.40005765911936,-36.68325067019043],[26.10005574581954,-35.83660803749216],[27.000055108251505,-34.73466151270862]],[[27.000055108251505,-34.73466151270862],[31.500051920411707,-31.340410556277746],[32.40005128343957,-29.8231438437626]],[[10.80006658447537,-5.124561675456293],[11.250066265691444,-5.572600905016464],[12.349965487108514,-5.933373731471328]],[[7.423529131e-05,-6.467627592690688],[10.80006658447537,-5.124561675456293],[11.863635831629022,-4.77878776891936]],[[-3.599923213840749,-2.580536704984131],[7.423529131e-05,-6.467627592690688],[1.800072960155335,-11.356308769000893],[6.750069454127329,-18.026426383713453],[8.10006849777537,-23.49392244589784],[13.05006499115128,-30.30995334464681],[15.30006339723147,-32.61276000573574],[16.65006244087933,-33.74264465652956],[17.55006180331148,-33.929536992458964],[18.15553137439108,-33.348058456467676]],[[3.423511810692114,6.439066911484626],[3.825071526223208,4.164912849976942],[2.25007264196731,1.131014326431719],[1.575073120143199,0.34358628488916],[0.450073917103194,-0.631398185258107],[-3.599923213840749,-2.580536704984131],[-10.799918113296759,-2.580536704984131],[-15.299914925456777,1.918228780215599],[-19.799911737616885,8.635699417327467],[-21.149910781264836,11.735650161405832],[-21.140924849904593,14.365653759228442],[-21.149910781264836,19.95262290516439],[-20.299911384604414,22.884654113882444],[-18.67491253517278,31.286738814391754],[-17.0999136503208,35.05222991093673],[-16.246065123519113,39.467127190190496],[-16.199914287888834,39.6983233549332],[-16.199914288484827,44.694829089578164],[-11.249917795108734,48.70423463096067],[-7.199920663568708,50.740281893948165],[-5.399921938704683,50.95337730033451],[-4.544402544762735,50.82820142743812]],[[-0.204315619320974,5.558285889905858],[0.450073917103194,3.279837005484997],[0.450073917103194,-0.631398185258107]],[[-3.599923213840749,-2.580536704984131],[-4.374922664823806,1.468426767331968],[-4.499922576272716,2.367912558705407],[-4.274922735664679,3.266814816815666],[-4.026242911831877,5.323508791824841]],[[-21.140924849904593,14.365653759228442],[-18.449912693968844,14.365653759228442],[-17.445713405352947,14.686594841994992]],[[-16.199914287888834,39.6983233549332],[-13.949915882404726,38.76885922455357],[-10.799918113296759,38.475881348138756],[-9.337919149586595,38.68882888776792]],[[3.825071526223208,4.164912849976942],[5.400070410479286,2.367912558705407],[7.200069135343221,1.243490076978041],[8.550068178991262,1.018534216615524],[9.454267538448212,0.394465191855477]]]}},{"type":"Feature","properties":{"id":"sir-abu-nuayr-cable","name":"Sir Abu Nu’ayr Cable","color":"#9f54a0","feature_id":"sir-abu-nuayr-cable-0","coordinates":[54.79394747078389,25.50678054735888]},"geometry":{"type":"MultiLineString","coordinates":[[[55.39223499496503,25.352332240929165],[55.06878522469574,25.55188275942587],[54.45003566183197,25.450342946923914],[54.221135824582554,25.240855834799852]]]}},{"type":"Feature","properties":{"id":"senegal-horn-of-africa-regional-express-share-cable","name":"Senegal Horn of Africa Regional Express (SHARE) Cable","color":"#c43292","feature_id":"senegal-horn-of-africa-regional-express-share-cable-0","coordinates":[-20.508343703945016,14.5835116451186]},"geometry":{"type":"MultiLineString","coordinates":[[[-17.445713405352947,14.686594841994992],[-18.449912693968844,14.5835116451186],[-22.499909824912876,14.5835116451186],[-23.521209101414858,14.923035560171673]]]}},{"type":"Feature","properties":{"id":"gondwana-2picot-2","name":"Gondwana-2/Picot-2","color":"#d41f26","feature_id":"gondwana-2picot-2-0","coordinates":[172.09451180875496,-20.012932052485873]},"geometry":{"type":"MultiLineString","coordinates":[[[167.17495580703672,-22.319497901243935],[167.11970584617637,-22.215387660513336],[166.94507315738784,-22.15896231236258]],[[167.39995564764476,-21.484467259778356],[167.6249554882528,-21.589112646479006],[167.87954515164915,-21.548062859078772]],[[167.83395603859978,-20.96971618702363],[167.60895480118282,-20.86464932352463],[167.26050262143457,-20.937043135848924]],[[166.94995596642866,-22.527485286666927],[167.17495580703672,-22.73515998441261],[167.49425558084164,-22.671917357180646]],[[166.61245620492082,-22.45819078937813],[166.61245620492082,-22.394640384279256],[166.56362811510715,-22.26537024294595]],[[178.43744782917764,-18.123810943537187],[178.0874480765248,-18.66711083815884],[167.83395603859978,-20.96971618702363],[167.39995564764476,-21.484467259778356],[167.17495580703672,-22.319497901243935],[166.94995596642866,-22.527485286666927],[166.61245620492082,-22.45819078937813],[166.4392563288091,-22.303308064620133]]]}},{"type":"Feature","properties":{"id":"java-kalimantan-sulawesi-jakasusi","name":"Java-Kalimantan-Sulawesi (JAKASUSI)","color":"#30a7df","feature_id":"java-kalimantan-sulawesi-jakasusi-0","coordinates":[114.81725815914595,-4.37814319767695]},"geometry":{"type":"MultiLineString","coordinates":[[[112.71972094673198,-7.271863121195997],[112.78124434005238,-6.616650693475355],[112.83749430020436,-6.393099497823911],[113.96249350384026,-4.825692499217419],[114.1874933444483,-4.37714437553184],[114.66674769244001,-3.882827780552574],[114.52499310476436,-4.252498775658176],[114.7499929459683,-4.37714437553184],[116.58310164737706,-4.404364233745155],[118.79999007691224,-5.049857167366764],[119.38468966210971,-5.343245784035753]]]}},{"type":"Feature","properties":{"id":"ixchel","name":"Ixchel","color":"#6ac5ae","feature_id":"ixchel-0","coordinates":[-87.00221007388254,20.505433864493895]},"geometry":{"type":"MultiLineString","coordinates":[[[-87.07026408326409,20.62971801801737],[-87.01848911994192,20.515592009193874],[-86.87916421864098,20.42865309996276]]]}},{"type":"Feature","properties":{"id":"dos-continentes-l-ll","name":"DOS CONTINENTES l \u0026 ll","color":"#31b2ac","feature_id":"dos-continentes-l-ll-0","coordinates":[-5.317170136013667,35.89240754440477]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.604462809431057,36.014276783199975],[-5.399921938704683,35.96797434759339],[-5.334736438007709,35.89388140994366],[-5.323321992968752,35.88983711718341],[-5.313642702950791,35.89388140994366],[-5.287422018400756,36.05897312258681],[-5.325166132287443,36.210325320952975]]]}},{"type":"Feature","properties":{"id":"crosschannel-fibre","name":"CrossChannel Fibre","color":"#547cbe","feature_id":"crosschannel-fibre-0","coordinates":[0.258988428209393,50.266982125134184]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.134425668831707,50.828479351442525],[7.4235887302e-05,50.59767719905356],[0.450073917103194,50.022920456254944],[0.797773670193642,49.877306991163124]]]}},{"type":"Feature","properties":{"id":"x-link-submarine-cable","name":"X-Link Submarine Cable","color":"#bb3726","feature_id":"x-link-submarine-cable-0","coordinates":[-58.42683684776049,10.006678144787097]},"geometry":{"type":"MultiLineString","coordinates":[[[-58.154864566608346,6.804293299288684],[-57.9373847206732,7.29876275445952],[-58.4998843221932,10.41081650540272],[-59.174883844017224,12.615395567393394],[-59.53638358792734,13.062625710060136]]]}},{"type":"Feature","properties":{"id":"maldives-sri-lanka-cable-msc","name":"Maldives Sri Lanka Cable (MSC)","color":"#4bb648","feature_id":"maldives-sri-lanka-cable-msc-0","coordinates":[76.75325063896734,5.408740500220179]},"geometry":{"type":"MultiLineString","coordinates":[[[73.54035213926461,4.212345781871782],[74.25002163652778,4.389285926050993],[79.20001812990387,6.405200795356032],[79.86681765753703,6.833088156653168]]]}},{"type":"Feature","properties":{"id":"eviny-digital","name":"Eviny Digital","color":"#ca3693","feature_id":"eviny-digital-0","coordinates":[5.510618083927828,59.58239554653866]},"geometry":{"type":"MultiLineString","coordinates":[[[5.332770458155255,60.39072370580963],[5.400120410443995,60.35426474321958],[5.468820361776232,60.29859553499128],[5.512570330783214,60.18692233975928],[5.45632037063125,60.07486799642317],[5.456325370031929,59.948350184903155],[5.568820290339459,59.8966669924279],[5.568820290339459,59.78362399299559],[5.540705310256183,59.684391141142534],[5.512575330183894,59.64177978429336],[5.498517840142164,59.61333874687536],[5.512575330183894,59.58487361294478],[5.484445350111423,59.54925828942217],[5.45632037003535,59.52787100202234],[5.484445350111423,59.470771844605345],[5.568825290335857,59.41356840141763],[5.59694527041535,59.37061568324753],[5.59694527041535,59.327600860309545],[5.568820290339459,59.29889402722166],[5.524480322346307,59.27926758037185],[5.850070091695361,59.106894957190725],[5.850070091695361,59.0490845446616],[5.730770176208511,58.9708214866686]]]}},{"type":"Feature","properties":{"id":"tokelau-submarine-cable","name":"Tokelau Submarine Cable","color":"#7f6fb2","feature_id":"tokelau-submarine-cable-0","coordinates":[-172.04578978025606,-9.178183024905389]},"geometry":{"type":"MultiLineString","coordinates":[[[-172.5109035557175,-8.559092899828055],[-172.46230359014606,-8.846050186819125],[-172.34980366984206,-9.068306003874412],[-172.1248038292341,-9.179382545871277],[-171.8115040511786,-9.174626307490298],[-171.674804148018,-9.34593200663971],[-171.44980430741026,-9.34593200663971],[-171.26150444080346,-9.383770856814218]]]}},{"type":"Feature","properties":{"id":"mist","name":"MIST","color":"#a84c9c","feature_id":"mist-0","coordinates":[83.14307882739791,2.9351430719707547]},"geometry":{"type":"MultiLineString","coordinates":[[[101.25000250948806,2.19929675402769],[101.36250242919627,2.592701464601932],[101.44360237174425,2.751228763607222]],[[97.42500521915215,5.845915088460266],[99.00000410340806,6.405200795356032],[100.06611334816643,6.613518860854109]],[[72.87590260996693,19.07607425728523],[71.55002354923187,16.965102599435927],[71.49513558519409,13.492128176464083],[72.900022592881,9.443204702286902],[75.09513303492322,6.770440250104527],[78.69513048465001,3.940475772228814],[79.65001781052403,3.41655961832325],[81.00001685476798,3.042156042425856],[85.500013666928,2.817450442654169],[90.00001047908802,3.715978119298069],[92.70000856638391,4.837826391986557],[94.27500745064,5.833479966632704],[95.40635270497349,6.311016478693225],[97.42500521915215,5.845915088460266],[98.32500458158412,5.286069860821008],[99.11250402371216,4.613591578862773],[100.12500330644806,3.266814816815666],[101.25000250948806,2.19929675402769],[102.15000187192003,1.918228780215599],[102.68279723997186,1.614492576237963],[103.34065102845322,1.412069619499378],[103.50000091556807,1.38372807724675],[103.64609081207688,1.338585852071497]],[[81.00001685476798,3.042156042425856],[82.57501573902388,5.510047410567148],[82.80001557963192,7.744876956882131],[82.35001589841602,9.52441134501949],[81.45001653598388,11.294709319565477],[80.24298739105474,13.06385310188338]]]}},{"type":"Feature","properties":{"id":"la-gomera-el-hierro","name":"La Gomera-El Hierro","color":"#82489c","feature_id":"la-gomera-el-hierro-0","coordinates":[-17.406432376030878,27.77980822711221]},"geometry":{"type":"MultiLineString","coordinates":[[[-17.108213644440983,28.087940705571693],[-17.088513658396682,27.94625026257154],[-17.437413411232768,27.76358852605777],[-17.77491317214482,27.76358852605777],[-17.890913089969356,27.820205885436238]]]}},{"type":"Feature","properties":{"id":"tegopa","name":"TEGOPA","color":"#397cbf","feature_id":"tegopa-0","coordinates":[-17.104673858647466,28.17764371571822]},"geometry":{"type":"MultiLineString","coordinates":[[[-17.765193179030568,28.66327103532559],[-17.58982330326418,28.66327103532559],[-17.36480346267046,28.564511099301093],[-17.212413570624822,28.359233526108557],[-17.093756322531753,28.159242763304327],[-17.108213644440983,28.087940705571693],[-16.976044634742816,28.045558044929223],[-16.762413889408837,27.912808890463392],[-16.537414048800798,27.912808890463392],[-16.481164088648836,27.962503359972466],[-16.518014062543934,28.059088061264806]]]}},{"type":"Feature","properties":{"id":"tenerife-la-palma","name":"Tenerife-La Palma","color":"#cd1875","feature_id":"tenerife-la-palma-0","coordinates":[-17.153280432843193,28.689992052050073]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.586414014088735,28.39759398562128],[-16.762413889408837,28.55704546571133],[-17.36480346267046,28.761938001939967],[-17.58982330326418,28.761938001939967],[-17.765193179030568,28.66327103532559]]]}},{"type":"Feature","properties":{"id":"tenerife-gran-canaria","name":"Tenerife-Gran Canaria","color":"#368ccb","feature_id":"tenerife-gran-canaria-0","coordinates":[-16.1149665335125,28.154948775403614]},"geometry":{"type":"MultiLineString","coordinates":[[[-15.694014646272848,28.149943225326865],[-15.862414526976778,28.210588049735243],[-16.312414208192763,28.111449436442268],[-16.538584047971963,28.046741704209165]]]}},{"type":"Feature","properties":{"id":"candalta","name":"CANDALTA","color":"#f0a51f","feature_id":"candalta-0","coordinates":[-16.008811791029554,28.225523187644907]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.371744166162888,28.355537519986957],[-16.199914287888834,28.26014491451124],[-15.974914447280797,28.111449436442268],[-15.74991460667276,28.012130816282585],[-15.699964642057815,27.99976141196043]],[[-16.371744166162888,28.355537519986957],[-16.199914287888834,28.309722768786948],[-15.974914447280797,28.210588049735243],[-15.74991460667276,28.061779537707014],[-15.699964642057815,27.99976141196043]]]}},{"type":"Feature","properties":{"id":"transcan-2","name":"TRANSCAN-2","color":"#7fae40","feature_id":"transcan-2-0","coordinates":[-14.851191350219695,27.85463851681449]},"geometry":{"type":"MultiLineString","coordinates":[[[-14.358415593019709,28.048718628683098],[-14.512415483924729,27.896238989528694],[-15.187415005748841,27.813351446514346],[-15.390735173618879,27.895462213161103]],[[-13.547572416832688,28.959501465241424],[-13.61241612089677,28.65581241773305],[-13.862220631432923,28.496470563064396]]]}},{"type":"Feature","properties":{"id":"converge-domestic-submarine-cable-network-cdscn","name":"Converge Domestic Submarine Cable Network (CDSCN)","color":"#a24a9c","feature_id":"converge-domestic-submarine-cable-network-cdscn-0","coordinates":[120.91814381110434,11.955858207114732]},"geometry":{"type":"MultiLineString","coordinates":[[[123.29490876766967,9.246348603115566],[123.46873676952833,9.08033076823294],[123.74998657028833,8.913657155780559],[124.53748601241637,8.635699417327467],[124.63191594552143,8.454147535358473]],[[123.91358645439269,9.6225370957098],[124.19998625150441,9.52441134501949],[124.6499859327203,9.52441134501949],[125.09998561393637,9.413444258507564],[125.32498545454442,9.246926926415409],[125.42068851174743,8.968934161508152]],[[123.69139286179656,10.238265933645913],[123.74998657028833,10.07869800665097],[123.74998657028833,9.801670473167492],[123.87820913570422,9.675391878909156]],[[123.41287743409951,10.483708779671767],[123.5249867296803,10.41081650540272],[123.63524055782547,10.376237129155873]],[[122.58944051743003,10.78661708283731],[122.84998720785636,10.742581675476407],[122.96776056192463,10.739415483408349]],[[124.00760357528993,11.04590095392508],[124.13413629815311,10.93201162513164],[124.42498609211226,10.85308969074528],[124.61277595908027,11.006888020676206]],[[123.61668588346967,12.366641586121998],[123.52503672964518,12.505588131780646],[123.35623684922422,12.615395567393394],[123.01873708831225,12.834868817846521],[122.84998720785636,13.054150695298627],[122.84998720785636,13.273238157547594],[122.95067073028109,13.546888070207846]],[[121.52772251956107,12.586423162176041],[121.61248808451225,12.395734000022975],[121.7864179618947,12.158056685859203],[121.94481206784093,11.949266020482876],[122.06248776572832,11.955858207114732],[122.39998752664029,11.84577637362577],[122.74998727869705,11.583202180445051],[122.96248712816029,11.735650161405832],[123.29998688907226,11.735650161405832],[123.46873676952833,11.955858207114732],[123.50906877220675,12.218076875737703],[123.5249867296803,11.955858207114732],[123.82048402610735,11.53744186728821],[123.93631456329179,11.083374737000288]],[[121.44881632545895,13.809939475818108],[121.61248808451225,13.492128176464083],[121.72498800481618,13.054150695298627],[121.72498800481618,12.72515592356304],[121.52772251956107,12.586423162176041],[121.49998816420832,12.395734000022975],[121.3874882439044,12.175838310301005],[120.93748856268832,11.955858207114732],[120.37498896116831,11.955858207114732],[120.2007690845874,12.005434247136186],[120.37498896116831,11.735650161405832],[119.92498927995224,11.073982781226615],[119.50037958074992,10.820000490489418]]]}},{"type":"Feature","properties":{"id":"guadeloupe-cable-des-iles-du-sud-gcis","name":"Guadeloupe Cable des Iles du Sud (GCIS)","color":"#31ac49","feature_id":"guadeloupe-cable-des-iles-du-sud-gcis-0","coordinates":[-61.350442672762156,16.113973083936536]},"geometry":{"type":"MultiLineString","coordinates":[[[-61.498262198114126,15.988768942769152],[-61.56467707294022,16.042456277649617]],[[-61.19988240948919,16.21038241802069],[-61.27444290354486,16.251075987819267]],[[-61.368632289945175,16.10232559580297],[-61.31912060626973,15.953463637141443]],[[-61.57883721915904,15.87297951222124],[-61.498262198114126,15.988768942769152],[-61.368632289945175,16.10232559580297],[-61.19988240948919,16.21038241802069],[-61.073857108141695,16.303571371032675]]]}},{"type":"Feature","properties":{"id":"rockabill","name":"Rockabill","color":"#35b44a","feature_id":"rockabill-0","coordinates":[-4.571461647951477,53.76256062499529]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.114621432404921,53.49317504982973],[-5.624921779312721,53.669053535347864],[-4.499922576272716,53.76891056666807],[-3.599923213840749,53.76891056666807],[-3.006373634316763,53.647933398832954]]]}},{"type":"Feature","properties":{"id":"oman-australia-cable-oac","name":"Oman Australia Cable (OAC)","color":"#939597","feature_id":"oman-australia-cable-oac-0","coordinates":[57.39295929250654,16.597281615381004]},"geometry":{"type":"MultiLineString","coordinates":[[[60.75003120004772,16.534196198259725],[55.01253526394787,16.642014062854003],[54.14808587692784,17.09582718672565]]]}},{"type":"Feature","properties":{"id":"oman-australia-cable-oac","name":"Oman Australia Cable (OAC)","color":"#41b878","feature_id":"oman-australia-cable-oac-1","coordinates":[77.83897821383535,-11.776885531285858]},"geometry":{"type":"MultiLineString","coordinates":[[[72.11252315015598,-7.732812885336029],[72.33752299076401,-7.509800774121521],[72.41667293469345,-7.333331811022597]],[[89.10001111784821,-19.729525450021],[95.4000066530841,-13.99027116703797],[96.83231563842303,-12.19311300919909]],[[115.85731216153303,-31.953441330324313],[113.84999358353615,-31.468437004267024],[111.59999517745614,-30.30995334464681],[89.10001111784821,-19.729525450021],[72.11252315015598,-7.732812885336029],[65.25002801220774,4.164912849976942],[61.20003088126379,15.669513225155248],[60.75003120004772,16.534196198259725],[60.75003120004772,19.104405475930452],[60.75003120004772,22.469443964829516],[59.85003183761575,23.298598065875897],[58.95003247518379,23.7112581424843],[58.162533033055745,23.91710129093513],[57.88605322832058,23.67872342575357]]]}},{"type":"Feature","properties":{"id":"tanjung-pandan-sungai-kakap","name":"Tanjung Pandan-Sungai Kakap","color":"#939597","feature_id":"tanjung-pandan-sungai-kakap-1","coordinates":[108.11568048125844,-1.226769228473004]},"geometry":{"type":"MultiLineString","coordinates":[[[107.66288796654008,-2.767442755874634],[107.60664800638092,-2.517708985005663],[107.64799797708825,-2.237970538313992],[108.1124976480322,-1.231315750217412],[108.89999709016024,-0.106411275875408],[109.18222689022609,-0.061391357195038]]]}},{"type":"Feature","properties":{"id":"hainan-to-hong-kong-express-h2he","name":"Hainan to Hong Kong Express (H2HE)","color":"#64c3c7","feature_id":"hainan-to-hong-kong-express-h2he-0","coordinates":[112.54647871523952,20.71152982690533]},"geometry":{"type":"MultiLineString","coordinates":[[[110.76181217748294,20.045307961909145],[111.14999549564435,20.304717766641158],[112.83749430080026,20.796306105108872],[113.56874378277615,21.635297384859552],[113.68124370308026,21.84429407917369],[113.73749366323221,22.105110548108275]],[[113.57675158960345,22.270716559591268],[113.73749366323221,22.105110548108275],[114.07499342414418,22.105110548108275],[114.20292333351767,22.22205041973683]]]}},{"type":"Feature","properties":{"id":"ketchcan1-submarine-fiber-cable-system","name":"KetchCan1 Submarine Fiber Cable System","color":"#bf1e5a","feature_id":"ketchcan1-submarine-fiber-cable-system-0","coordinates":[-130.9696404829953,54.78868595868135]},"geometry":{"type":"MultiLineString","coordinates":[[[-130.32633343966273,54.31306449550539],[-130.443584608497,54.29748595281839],[-130.55608452595894,54.33029904361132],[-130.61233323705767,54.55925876578231],[-130.7248331573617,54.68951871778461],[-130.94983299796965,54.754492368816926],[-131.0623841545014,54.94878902385559],[-131.11868411319568,55.07780072164767],[-131.23108403073104,55.14215100378178],[-131.6478325035003,55.342087835087305]]]}},{"type":"Feature","properties":{"id":"equiano","name":"Equiano","color":"#7e2c18","feature_id":"equiano-0","coordinates":[-20.69991110004885,12.483262075762921]},"geometry":{"type":"MultiLineString","coordinates":[[[1.575073120143199,0.793562652607196],[1.687573039851407,3.82823430332105],[1.575073120143199,5.061986954416114],[1.227803366152544,6.126307297218732]],[[7.650068815963395,-13.99027116703797],[-3.599923214436649,-15.29638776062193],[-5.711521717964474,-15.918564131427317]],[[1.575073120143199,0.793562652607196],[2.25007264196731,1.580886840914131],[3.600071685615352,4.164912849976942],[3.423511810692114,6.439066911484626]],[[9.000067860207336,-23.49392244589784],[13.05006499115128,-22.665969967794794],[14.533463940297649,-22.68542973223072]],[[18.445861168718828,-33.72721819637743],[17.55006180331148,-33.74264465652956],[16.65006244087933,-33.55534420877606],[15.525063237839326,-32.61276000573574],[13.500064672367355,-30.30995334464681],[9.000067860207336,-23.49392244589784],[7.650068816559295,-18.026426383713453],[7.650068815963395,-13.99027116703797],[8.325068338383225,-10.620064860363238],[7.650068816559295,-6.616650693475355],[7.200069135343221,-4.825692499217419],[4.050071366831244,-1.231315750217412],[2.25007264196731,1.580886840914131]],[[1.575073120143199,0.793562652607196],[0.225074076495339,-0.093411304877754],[-3.599923213840749,-1.681168935904995],[-10.799918113296759,-1.681168935904995],[-14.849915244240792,2.367912558705407],[-19.34991205640081,8.635699417327467],[-20.69991110004885,11.735650161405832],[-20.69991110004885,19.95262290516439],[-19.849911702196447,22.884654113882444],[-19.124912215792865,27.76358852605777],[-17.999913013348852,30.255702942039875],[-17.0999136503208,31.670513047087127],[-16.312414208788844,32.43331330641721],[-13.949915881808826,33.93964008831966],[-11.699917475728817,36.51238821239364],[-10.349918432080775,38.03417390064187],[-9.562418989952736,38.29952060596925],[-9.102749315587026,38.4430794831419]]]}},{"type":"Feature","properties":{"id":"south-pacific-cable-system-spcsmistral","name":"South Pacific Cable System (SPCS)/Mistral","color":"#d18e29","feature_id":"south-pacific-cable-system-spcsmistral-0","coordinates":[-83.51924740133119,-9.940940045674754]},"geometry":{"type":"MultiLineString","coordinates":[[[-86.39986455818145,-2.430680261964474],[-84.14986615150535,-2.580536704984131],[-81.00906837647595,-2.228447783119022]],[[-76.49987157083336,-18.45381377577717],[-72.89987412110531,-19.305384072361306],[-70.30675595809456,-18.473543073651214]],[[-82.79986710785731,-11.503333845984299],[-79.19986965812936,-12.60351210497128],[-76.87428130559793,-12.278420041799619]],[[-90.8222236775613,13.934797333208856],[-91.57486089156932,13.054150695298627],[-92.24986041339342,9.52441134501949],[-90.89986137034147,3.715978119298069],[-87.74986360123404,0.568578852526193],[-86.39986455818145,-2.430680261964474],[-85.04986551393732,-6.616650693475355],[-82.79986710785731,-11.503333845984299],[-79.19986965812936,-15.441023659568087],[-76.49987157083336,-18.45381377577717],[-74.02487332414532,-27.15383128539156],[-72.22487459928129,-31.85146566557725],[-71.62043502747198,-33.04554123247811]]]}},{"type":"Feature","properties":{"id":"n0r5ke-viking","name":"N0r5ke Viking","color":"#dabb26","feature_id":"n0r5ke-viking-0","coordinates":[5.65190035143196,62.38446699850115]},"geometry":{"type":"MultiLineString","coordinates":[[[9.637665064777563,63.61946636684095],[9.815742282376158,63.57628059164396],[9.900067222639304,63.48851288982234],[10.293816943703233,63.46341549544048],[10.39205906160764,63.431002047425466]],[[7.16071369447304,62.73722946432863],[7.425068975951258,62.66077045886663],[7.68161176296393,62.5639562408968]],[[9.663153327971374,63.68839703736199],[9.618817421879303,63.676230956459754],[9.637665064777563,63.61946636684095],[9.112567779915365,63.54288560128821],[8.97524787719417,63.50462478492522],[8.69395807646262,63.40817512674497],[8.380908298229913,63.36151643295419],[8.09337850191876,63.301036488500856],[7.875068656571432,63.172946959532915],[7.729668760170019,63.11078338854437],[7.762568738651288,63.020234537564136],[7.650068815963395,62.917978785251854],[7.425068974759457,62.81536487879325],[7.16071369447304,62.73722946432863],[6.862569374431255,62.76392332890585],[6.637569533823219,62.73816885430014],[6.465792311761914,62.613002975496656],[6.300069772911254,62.66077045886663],[6.187569852607326,62.6090589082033],[6.174386268196741,62.47148731681593],[5.962570011999289,62.50536500000049],[5.850070091695361,62.45338241250811],[5.400070410479286,62.29689073879045],[5.287570488983557,62.24454516169996],[5.343820449731422,62.13958079203442],[5.522335948269336,62.03599154304595],[5.45632037003535,61.981449485650025],[5.498507840149368,61.935540246038215],[5.06257064837552,61.981449485650025],[4.837570808959284,61.92855599360773],[4.725070888655357,61.8224937418921],[4.725070888655357,61.71606370959994],[4.975851960403757,61.59630726299676],[4.725070888655357,61.555727089493594],[4.725070888655357,61.448373642843436],[4.950070729263212,61.23255301306618],[5.293429861024427,61.17224436826955],[4.837570808959284,61.01524141470424],[4.725070888655357,60.796431695350094],[4.855539546230003,60.62197249344922],[5.062570649567322,60.57611674038769],[5.287570490175359,60.46539258705817],[5.332770458155255,60.39072370580963]]]}},{"type":"Feature","properties":{"id":"okinawa-cellular-cable","name":"Okinawa Cellular Cable","color":"#504a9f","feature_id":"okinawa-cellular-cable-0","coordinates":[128.68334289984085,29.271695336749033]},"geometry":{"type":"MultiLineString","coordinates":[[[127.97728357563153,26.591578968461],[127.79998370123228,26.562513149236715],[127.57498386062441,26.763586569619914],[127.68748378092835,27.164665812813517],[128.4749832230562,28.359233526108557],[128.69998306366443,29.344566989489813],[129.1499827448803,30.5144959597591],[129.5999824260964,31.286738814391754],[130.04998210731227,31.574717129337174],[130.5570817480782,31.596524688905284]]]}},{"type":"Feature","properties":{"id":"cabo-verde-telecom-domestic-submarine-cable-phase-2","name":"Cabo Verde Telecom Domestic Submarine Cable Phase 2","color":"#364da0","feature_id":"cabo-verde-telecom-domestic-submarine-cable-phase-2-0","coordinates":[-24.567590671386295,16.084567433773092]},"geometry":{"type":"MultiLineString","coordinates":[[[-25.05940801174037,17.019177136056],[-25.031158031752888,16.911292789233343],[-25.060796682631576,16.823445181003198],[-25.07740799898894,16.724585511421417],[-25.07740799898894,16.61681385037869],[-23.962408788864845,15.452760959322058],[-23.751080813571605,15.276859352491847]]]}},{"type":"Feature","properties":{"id":"cabo-verde-telecom-domestic-submarine-cable-phase-3","name":"Cabo Verde Telecom Domestic Submarine Cable Phase 3","color":"#21b595","feature_id":"cabo-verde-telecom-domestic-submarine-cable-phase-3-0","coordinates":[-24.55289713811713,15.100182190335259]},"geometry":{"type":"MultiLineString","coordinates":[[[-22.91905015298992,16.174753793884737],[-23.06240942643288,15.994209911785974],[-23.231109306924335,15.669513225155248],[-23.287409267040825,15.23578178303578],[-23.209772603289398,15.129919208617387],[-23.287409267040825,15.018578573757472],[-23.521209101414858,14.923035560171673],[-23.512409107648864,14.801154224791581],[-23.62490902795288,14.692360031374392],[-23.849908868560828,14.5835116451186],[-24.2999085497769,14.692360031374392],[-24.41240847008083,14.746763925028056],[-24.500933797993653,14.897153768217688],[-24.581158350536903,14.855530885060197],[-24.695416082095644,14.872992709661734],[-24.63740831068887,15.018578573757472],[-24.524908390384848,15.127208002058548],[-24.2999085497769,15.23578178303578],[-24.074908709168866,15.344299555517528],[-23.751080813571605,15.276859352491847],[-24.074908709168866,15.452760959322058],[-25.189907919292956,16.61681385037869],[-25.189907919292956,16.724585511421417],[-25.060796682631576,16.823445181003198],[-25.08740799190485,16.911292789233343],[-25.05940801174037,17.019177136056]]]}},{"type":"Feature","properties":{"id":"cabo-verde-telecom-domestic-submarine-cable-phase-1","name":"Cabo Verde Telecom Domestic Submarine Cable Phase 1","color":"#b32c57","feature_id":"cabo-verde-telecom-domestic-submarine-cable-phase-1-0","coordinates":[-23.099947086292776,16.626458747530958]},"geometry":{"type":"MultiLineString","coordinates":[[[-25.060796682631576,16.823445181003198],[-24.974908071600833,16.642014062854003],[-24.63740831068887,16.534196198259725],[-24.357135071737105,16.56583652167652],[-24.187408629472884,16.426318069774343],[-23.399909187344846,16.534196198259725],[-22.935309907096357,16.67709796429937],[-22.94990950612886,16.426318069774343],[-22.91905015298992,16.174753793884737],[-23.1749093467369,15.994209911785974],[-23.34365922719288,15.669513225155248],[-23.399909187344846,15.23578178303578],[-23.399909187344846,15.018578573757472],[-23.521209101414858,14.923035560171673]]]}},{"type":"Feature","properties":{"id":"miyazaki-okinawa-cable-moc","name":"Miyazaki-Okinawa Cable (MOC)","color":"#b0d135","feature_id":"miyazaki-okinawa-cable-moc-0","coordinates":[130.61608243107943,28.675897447067076]},"geometry":{"type":"MultiLineString","coordinates":[[[131.29461013185616,32.09764082018105],[131.7374809118723,31.670513047087127],[131.8499808321764,31.286738814391754],[131.39998115096031,29.540507745394493],[128.69998306366443,26.562513149236715],[128.0249835418403,26.1593079707739],[127.68084378563216,26.212414126750428]]]}},{"type":"Feature","properties":{"id":"japan-information-highway-jih","name":"Japan Information Highway (JIH)","color":"#6ebe44","feature_id":"japan-information-highway-jih-0","coordinates":[138.9944928525868,34.302577135868496]},"geometry":{"type":"MultiLineString","coordinates":[[[139.4999754122525,34.52869067055088],[139.55622537240447,34.71384862261538],[139.44372545210052,35.08292270029031],[139.25540558550816,35.29948913088429]],[[132.74998019460836,31.09426282763951],[132.07498067278445,31.670513047087127],[131.29461013185616,32.09764082018105]],[[127.68084378563216,26.212414126750428],[128.0249835418403,26.1106045816533],[128.69998306366443,26.36108632539156],[131.39998115096031,29.344566989489813],[132.74998019460836,31.09426282763951],[134.99997860068837,31.478822672736147],[136.57497748494447,32.243210016262736],[136.7999773255523,32.8123187832876],[136.87399727311598,34.33682825203173],[137.69997668798445,34.032921789964035],[138.59997605041642,34.12610104005753],[139.4999754122525,34.52869067055088],[139.9218501133925,34.736964305118654],[139.99216256358258,34.852445708846155],[139.95485509060742,34.97657002902234],[140.06247501377248,34.99080971857576],[140.3437248151284,35.0061690919714],[140.73747453559662,35.17493178747529],[140.84997445649643,35.419780517080355],[140.96247437680054,35.78566189952622],[140.84997445649643,36.05897312258681],[140.26989674242887,36.34219436916461],[140.84997445649643,36.1498667868178],[141.2999741377125,36.42191605012598],[141.7499738189284,36.87321951208928],[141.7499738189284,37.589786573603064],[141.2999741377125,38.03417390064187],[140.86667444407013,38.26667008785156],[141.2999741377125,38.122730108392204],[141.7499738189284,38.21117903702318],[142.19997350014447,38.651811712711336],[142.42497334075233,40.04369219283004],[142.19997350014447,41.0693404382162],[141.7499738189284,41.40772623743595],[141.2999741377125,41.576261830098154],[140.84997445649643,41.576261830098154],[140.39997477528055,41.40772623743595],[139.94997509406446,41.2387523289666],[139.83747517376037,41.15395052136787],[139.6124753331525,40.89949091487166],[139.49997541284839,40.38732029077508],[139.72497525345642,40.04369219283004],[140.11667497537667,39.716671527453656]],[[139.83747517376037,41.15395052136787],[139.38746049255508,41.576261830098154],[139.04997573163232,42.07923561816413],[139.04997573163232,42.743713464436695],[139.27497557224055,43.073310783003215],[140.39997477528055,43.564400497117596],[140.84997445649643,43.564400497117596],[141.31540412678189,43.17117526599852]],[[139.94997509406446,41.2387523289666],[139.6124753331525,41.576261830098154],[139.27497557224055,42.07923561816413],[139.27497557224055,42.743713464436695],[139.49997541284839,43.073310783003215],[140.39997477528055,43.48282788090373],[140.84997445649643,43.48282788090373],[141.31540412678189,43.17117526599852]]]}},{"type":"Feature","properties":{"id":"lazaro-cardenas-manzanillo-santiago-submarine-cable-system-lcmsscs","name":"Lazaro Cardenas-Manzanillo Santiago Submarine Cable System (LCMSSCS)","color":"#4cb748","feature_id":"lazaro-cardenas-manzanillo-santiago-submarine-cable-system-lcmsscs-0","coordinates":[-103.53391735089953,18.05407066325259]},"geometry":{"type":"MultiLineString","coordinates":[[[-102.19435336862122,17.956784079019002],[-102.14985340014543,17.716802179008642],[-101.81235363923346,17.609605913224996],[-101.61055378219034,17.664117239853347]],[[-104.30815187118658,19.085789444146922],[-104.28735188592151,18.678647022154717],[-103.94985212500946,18.251816319028222],[-103.04985276257749,17.82393441253792],[-102.5998530813615,17.82393441253792],[-102.19435336862122,17.956784079019002]]]}},{"type":"Feature","properties":{"id":"fibra-optica-al-pacfico","name":"Fibra Optica al Pacífico","color":"#7e3a96","feature_id":"fibra-optica-al-pacfico-0","coordinates":[-75.43774084545812,-15.911012613247081]},"geometry":{"type":"MultiLineString","coordinates":[[[-76.87428130559793,-12.278420041799619],[-77.39987093329535,-12.82299562562977],[-77.39987093326533,-13.698987269610743],[-76.0498718896173,-15.441023659568087],[-73.79987348353728,-17.168553094226155],[-72.44987443988924,-17.597998996155503],[-71.3236752376994,-17.641173816666658]]]}},{"type":"Feature","properties":{"id":"batam-sarawak-internet-cable-system-basics","name":"Batam Sarawak Internet Cable System (BaSICS)","color":"#3660ac","feature_id":"batam-sarawak-internet-cable-system-basics-0","coordinates":[107.2351874760423,2.21204623238842]},"geometry":{"type":"MultiLineString","coordinates":[[[110.29359610292168,1.675048741325009],[110.02499629320025,1.918228780215599],[109.57499661198416,2.367912558705407],[106.19999900286416,2.143087178471855],[104.73750003891219,1.468426767331968],[104.62500011860807,1.36999455336686],[104.28790035741287,1.173518198634015],[104.1331004670747,1.173205764381829]]]}},{"type":"Feature","properties":{"id":"eastern-light-sweden-finland-i","name":"Eastern Light Sweden-Finland I","color":"#944098","feature_id":"eastern-light-sweden-finland-i-0","coordinates":[22.618551659190324,59.73193250520986]},"geometry":{"type":"MultiLineString","coordinates":[[[18.062756752613492,59.3323082610704],[18.900060846959338,59.45171731890513],[20.250059890607382,59.56588346342965],[21.375059093647387,59.679663707208995],[22.725058137295427,59.7364093840784],[22.96675718482349,59.823409426815196],[23.1750578185115,59.7364093840784],[23.850057340335432,59.7364093840784],[24.412556941855435,59.84961238502145],[24.93247844853827,60.171163460961736],[25.200056383983473,60.07486799642317],[26.10005574641544,60.07486799642317],[26.77505526823937,60.29859553499128],[26.883648941310707,60.50114056075507]]]}},{"type":"Feature","properties":{"id":"sorsogon-samar-submarine-fiber-optical-interconnection-project-sssfoip","name":"Sorsogon-Samar Submarine Fiber Optical Interconnection Project (SSSFOIP)","color":"#bf3b28","feature_id":"sorsogon-samar-submarine-fiber-optical-interconnection-project-sssfoip-0","coordinates":[124.22831176599175,12.61497434156621]},"geometry":{"type":"MultiLineString","coordinates":[[[124.10708631731555,12.645255061583402],[124.2281112315803,12.615395567393394],[124.28238619313154,12.501390118608773]]]}},{"type":"Feature","properties":{"id":"manatua","name":"Manatua","color":"#de1f29","feature_id":"manatua-0","coordinates":[-162.23100063654397,-20.995131543025785]},"geometry":{"type":"MultiLineString","coordinates":[[[-151.87481817451393,-17.383402005942457],[-151.8748181745141,-16.953454989809906],[-151.7495182632776,-16.506319370588315]],[[-160.19981227700995,-20.995131543025785],[-160.19981227700995,-20.152543786018732],[-160.08731235670592,-19.305384072361306],[-159.77491257801287,-18.825724826039032]],[[-159.86231251669406,-20.995131543025785],[-159.86231251669406,-21.100125697241445],[-159.76971258169664,-21.224342830512246]],[[-169.64980558254607,-18.026426383713453],[-169.874805423154,-18.45381377577717],[-169.91670539347166,-19.016714981418577]],[[-171.76669408292247,-13.83348925575777],[-171.4498043074101,-13.698987269610743],[-170.77480478558607,-13.698987269610743],[-170.09980526376205,-14.135775375064666],[-169.64980558254607,-15.006817032918805],[-169.64980558254607,-18.026426383713453],[-166.49980781522615,-18.880139975101173],[-163.79980972733406,-20.995131543025785],[-160.19981227700995,-20.995131543025785],[-159.86231251669406,-20.995131543025785],[-156.5998148272819,-20.574419057276128],[-151.87481817451393,-17.383402005942457],[-151.08219385628468,-17.44049478966],[-150.07481944965008,-17.919416202114704],[-149.5123198481299,-17.919416202114704],[-149.3233199820192,-17.750446541031426]]]}},{"type":"Feature","properties":{"id":"malta-italy-interconnector","name":"Malta-Italy Interconnector","color":"#bf3b28","feature_id":"malta-italy-interconnector-0","coordinates":[14.565709909689183,36.36381505046774]},"geometry":{"type":"MultiLineString","coordinates":[[[14.550263928396484,36.78477228631661],[14.625063875407358,36.602754740329765],[14.512563955103431,36.1498667868178],[14.458763993215827,35.934055517066064]]]}},{"type":"Feature","properties":{"id":"caribbean-regional-communications-infrastructure-program-carcip","name":"Caribbean Regional Communications Infrastructure Program (CARCIP)","color":"#a69b33","feature_id":"caribbean-regional-communications-infrastructure-program-carcip-0","coordinates":[-61.55578124830755,12.669103176552872]},"geometry":{"type":"MultiLineString","coordinates":[[[-61.32304895989583,13.054150695298627],[-61.266857362043524,13.026751030444132],[-61.24468237775242,12.997540410506817]],[[-61.39063227436026,12.956082453284033],[-61.27833235391453,12.928720698349425],[-61.187182418485925,12.877712443605427]],[[-61.44885723311303,12.842620056913413],[-61.39265727292568,12.787673734344635],[-61.33898231094949,12.699625618648897]],[[-61.53533217185347,12.728911329121086],[-61.47898221177227,12.67413543381157],[-61.44319278400084,12.61139452071088]],[[-61.593582130588594,12.55854557069944],[-61.53733217043663,12.531043226499392],[-61.4785931495479,12.473742852030648]],[[-61.593083479793904,12.17091083195906],[-61.47777843801405,12.27722282982045],[-61.53338217323483,12.342743321766598],[-61.58963213338679,12.395734000022975],[-61.593582130588594,12.55854557069944],[-61.53533217185347,12.728911329121086],[-61.44885723311303,12.842620056913413],[-61.39063227436026,12.956082453284033],[-61.32304895989583,13.054150695298627],[-61.20828240353852,13.145460938850311]],[[-61.14278674681129,13.373112400304855],[-61.19988240948919,13.437424347113865],[-61.25613236964116,13.410019112156675],[-61.24088238044438,13.290916333074358]]]}},{"type":"Feature","properties":{"id":"energinet-laeso-varberg","name":"Energinet Laeso-Varberg","color":"#373996","feature_id":"energinet-laeso-varberg-0","coordinates":[11.55720309355262,57.10544915061779]},"geometry":{"type":"MultiLineString","coordinates":[[[10.88716652336902,57.25699774827183],[11.025066425679308,57.177647750456146],[11.700065947503239,57.086065975868046],[12.251265557028358,57.10529657756181]]]}},{"type":"Feature","properties":{"id":"energinet-lyngsa-laeso","name":"Energinet Lyngsa-Laeso","color":"#a74234","feature_id":"energinet-lyngsa-laeso-0","coordinates":[10.701035387650101,57.22562397392146]},"geometry":{"type":"MultiLineString","coordinates":[[[10.514616787286652,57.24491811100573],[10.687566664767344,57.22335372144124],[10.88716652336902,57.25699774827183]]]}},{"type":"Feature","properties":{"id":"skagenfiber-west","name":"Skagenfiber West","color":"#463d98","feature_id":"skagenfiber-west-0","coordinates":[9.900067222639304,58.33642328784846]},"geometry":{"type":"MultiLineString","coordinates":[[[10.016367140251454,59.081110697513395],[10.012567142943231,58.93317132635278],[9.900067222639304,58.347730245248535],[9.900067222639304,57.8123997505166],[9.959267180701625,57.58818834277179]]]}},{"type":"Feature","properties":{"id":"pasuli","name":"PASULI","color":"#c82026","feature_id":"pasuli-0","coordinates":[105.00346543425965,-2.162360358870599]},"geometry":{"type":"MultiLineString","coordinates":[[[104.87451166060187,-2.295346349312876],[104.96249987952004,-2.187128507840693],[105.16425973659172,-2.065142653434427]]]}},{"type":"Feature","properties":{"id":"sjjk","name":"SJJK","color":"#32499f","feature_id":"sjjk-0","coordinates":[113.71861943422607,-4.956509167211942]},"geometry":{"type":"MultiLineString","coordinates":[[[112.59819447032245,-6.953337827181953],[112.49999453988829,-6.641483533889484],[112.49999453988829,-6.393099497823911],[112.89374426095222,-5.833801119425265],[112.83749430080026,-5.777839699209677],[112.5855944792486,-5.793509456683532]],[[114.66674769244001,-3.882827780552574],[114.07499342414418,-4.37714437553184],[113.84999358353615,-4.825692499217419],[112.94999422110418,-5.721872747834119],[112.83749430080026,-5.721872747834119],[112.5855944792486,-5.793509456683532]],[[105.58496037606339,-5.769333077764846],[105.69374936149612,-6.001651664913787],[105.88389922679222,-6.07371060106276]]]}},{"type":"Feature","properties":{"id":"link-5-phase-2","name":"Link 5 Phase-2","color":"#c82026","feature_id":"link-5-phase-2-0","coordinates":[105.08998569596574,-0.9538590250877906]},"geometry":{"type":"MultiLineString","coordinates":[[[103.48820092392755,-0.823472321509497],[103.95000059678415,-0.781386636225587],[104.40000027800004,-0.781386636225587],[105.74999932164808,-1.118839506905277],[106.08749908256004,-1.343787247896323],[106.19999900286416,-1.681168935904995],[106.1325185819179,-1.85149793733644]]]}},{"type":"Feature","properties":{"id":"link-4-phase-2","name":"Link 4 Phase-2","color":"#32499f","feature_id":"link-4-phase-2-0","coordinates":[106.90314473056048,-2.5758925784700093]},"geometry":{"type":"MultiLineString","coordinates":[[[106.1325185819179,-1.85149793733644],[106.31249892316808,-1.793617120354896],[106.71024864020762,-2.130918480960333],[107.09999836529612,-3.029995968008661],[107.32499820590417,-3.254657364797681],[107.5499980465122,-3.254657364797681],[107.69638466156057,-3.19596146783133]]]}},{"type":"Feature","properties":{"id":"link-3-phase-2","name":"Link 3 Phase-2","color":"#32499f","feature_id":"link-3-phase-2-0","coordinates":[107.36856158675505,-4.704474226031846]},"geometry":{"type":"MultiLineString","coordinates":[[[106.9874984449922,-5.273944363641298],[107.12099835041957,-5.981154260263285]],[[107.69638466156057,-3.19596146783133],[107.66249796681612,-3.479268678970064],[107.43749812620827,-4.60145376483711],[106.9874984449922,-5.273944363641298],[106.83339855415794,-6.1289648492105]]]}},{"type":"Feature","properties":{"id":"link-2-phase-2","name":"Link 2 Phase-2","color":"#4a499e","feature_id":"link-2-phase-2-0","coordinates":[114.2440928296999,-8.929573210379264]},"geometry":{"type":"MultiLineString","coordinates":[[[113.45679386208275,-8.374087789277754],[113.6249937429283,-8.623660111129297],[114.29999326475222,-8.957195081743112],[114.97499278657615,-8.957195081743112],[115.15985265561976,-8.783705413994815]]]}},{"type":"Feature","properties":{"id":"link-1-phase-2","name":"Link 1 Phase-2","color":"#5a9f43","feature_id":"link-1-phase-2-0","coordinates":[115.6726818504907,-8.623660111129297]},"geometry":{"type":"MultiLineString","coordinates":[[[115.25956289748402,-8.695101915602985],[115.53749238809615,-8.623660111129297],[115.8749921490083,-8.623660111129297],[116.04726202697084,-8.485465010786871]]]}},{"type":"Feature","properties":{"id":"link-3-phase-1","name":"Link 3 Phase-1","color":"#5a9f43","feature_id":"link-3-phase-1-0","coordinates":[116.81114646890252,-7.955717094334652]},"geometry":{"type":"MultiLineString","coordinates":[[[116.04726202697084,-8.485465010786871],[116.0437420294642,-8.401139048122838],[116.09999198961616,-8.178490278944933],[116.54999167083223,-7.955717094334652],[117.4499910332642,-7.955717094334652],[117.86151417923745,-8.10811342968634]]]}},{"type":"Feature","properties":{"id":"link-2-phase-1","name":"Link 2 Phase-1","color":"#5a9f43","feature_id":"link-2-phase-1-0","coordinates":[118.62829725367511,-0.13306273837288116]},"geometry":{"type":"MultiLineString","coordinates":[[[117.53549097269546,0.324543653400007],[117.89999071448027,0.231087797340656],[119.24998975812831,-0.443906656918545],[119.66610274459994,-0.711958991791553]]]}},{"type":"Feature","properties":{"id":"link-1-phase-1","name":"Link 1 Phase-1","color":"#37b19b","feature_id":"link-1-phase-1-0","coordinates":[119.05234026140174,-7.035983789471109]},"geometry":{"type":"MultiLineString","coordinates":[[[117.86151417923745,-8.10811342968634],[118.34999039569617,-7.732822794391767],[119.47498959873617,-6.616650693475355],[119.58748951904028,-6.169450529574503],[119.80928936191533,-5.669034918116874]]]}},{"type":"Feature","properties":{"id":"prat","name":"Prat","color":"#18b199","feature_id":"prat-0","coordinates":[-71.99642151806115,-30.333612085632726]},"geometry":{"type":"MultiLineString","coordinates":[[[-72.95341123369901,-41.46037424479032],[-73.3498738023213,-41.60922308603503],[-73.79987348353728,-41.64192625954094],[-74.24987316475335,-41.398592454124454],[-74.24987316475335,-40.549228298069146],[-73.79336348874507,-39.15216193718986],[-73.39677376969291,-38.78712693980819],[-73.57487364352532,-38.700856737399654],[-73.79987348413327,-38.348806011171334],[-73.79987348353728,-37.04328040742407],[-73.57487364352532,-36.86347758137082],[-73.10897397357299,-36.83168432227461],[-73.12487396171335,-35.95811819864919],[-72.8998741217013,-35.47096027456558],[-72.41606446443656,-35.3183747616349],[-72.44987444048532,-34.73466151270862],[-72.22487459987728,-33.991743556435],[-71.60009504247698,-33.54688527485856],[-71.77487491806531,-33.3676367639474],[-71.62043502747198,-33.04554123247811],[-71.77487491806531,-31.85146566557725],[-71.99987475867334,-30.30995334464681],[-71.54987507745727,-29.920697111268968],[-71.25021708661278,-29.90630723159051],[-71.54987507745727,-29.52991296614913],[-71.7748749186613,-28.743810281149894],[-71.54987507805326,-27.42044677643357],[-70.81235560051893,-27.06199460208447],[-71.09987539683728,-26.21568228509315],[-71.09987539624129,-24.316706749469176],[-70.76237563532924,-23.905969261790265],[-70.39997354830837,-23.65002363065001],[-70.76237563532924,-23.49392244589784],[-70.76237563592531,-22.942519740316364],[-70.64987571562129,-22.527485286666927],[-70.1976560359779,-22.08837968438005],[-70.64987571562129,-21.27495094110979],[-70.64987571562129,-20.85502445095989],[-70.14221005903543,-20.21670486485299],[-70.64987571562129,-19.588268775768473],[-70.6498757150253,-19.305384072361306],[-70.30675595809456,-18.473543073651214]]]}},{"type":"Feature","properties":{"id":"ultramar-ge","name":"Ultramar GE","color":"#41b87b","feature_id":"ultramar-ge-0","coordinates":[6.4013500837250605,-0.6166957139393918]},"geometry":{"type":"MultiLineString","coordinates":[[[6.733269466028674,0.333286471885964],[6.875069365576238,0.118588418888312],[6.750069454127329,-0.331409329660265],[5.650070233377106,-1.231315750217412],[5.636870242728203,-1.435160298356025]]]}},{"type":"Feature","properties":{"id":"umo","name":"UMO","color":"#34a496","feature_id":"umo-0","coordinates":[97.38392862392826,7.594235564906584]},"geometry":{"type":"MultiLineString","coordinates":[[[96.24820605280762,16.758772278045903],[96.44170591573067,14.833379080264882],[96.75000569732805,11.294709319565477],[97.42500521915215,7.354454266299978],[99.67500362523216,5.286069860821008],[100.46250306736002,4.613591578862773],[100.80000282827217,3.266814816815666],[101.25000250948806,2.817450442654169],[102.15000187192003,2.19929675402769],[102.68279723997186,1.783118248527948],[103.34065102845322,1.383978004153773],[103.50000091556807,1.285317359462976],[103.6471008113613,1.338165966949597]]]}},{"type":"Feature","properties":{"id":"polar-circle-cable","name":"Polar Circle Cable","color":"#51b847","feature_id":"polar-circle-cable-0","coordinates":[13.003013674051955,66.31205420184413]},"geometry":{"type":"MultiLineString","coordinates":[[[10.39205906160764,63.431002047425466],[10.293816943703233,63.475978110242565],[9.900067222639304,63.501086792509675],[9.84381726248734,63.57628059164396],[9.675067382031267,63.67620878431391],[9.506323501571089,63.676230956459754],[9.450067541423229,63.72607438667935],[9.450067541423229,63.82549832634276],[9.618817421879303,63.9245724837926],[9.900067222639304,64.12167519439019],[10.237566983551268,64.31739001144432],[10.462566824159307,64.46326983353534],[10.80006658507127,64.53591955943627],[11.025066425679308,64.70468599661157],[11.237370962780789,64.86207950442952],[11.475066106895383,64.96778031868575],[11.700065947503239,65.01533984410804],[11.925065788111276,65.13386892664593],[12.207765587844191,65.4735570531501],[12.178190608795386,65.55616358500053],[12.262565549023423,65.62596082080819],[12.543815349783424,65.83404693088374],[12.631465287691332,66.02153874887068],[12.76881519039128,66.15441959094389],[13.018265013678757,66.19806628775785],[12.993815030999317,66.38080449917227],[13.05006499115128,66.44832399589347],[12.937565070847352,66.56045213116762],[13.05006499115128,66.71658546201289],[13.500064672367355,66.9599547424863],[13.950064353583429,67.13543790495432],[14.400064034799321,67.28600553539499],[14.512563955103431,67.4394931950777],[14.90631367616736,67.61151472096566],[15.131313516775398,67.65432532704786],[15.356313357383435,67.78229156045444],[15.581313197991472,67.90956187665087],[15.887562981041073,67.97293705344723],[16.143812799511473,68.0571685658069],[16.17188777962302,68.1411682869287],[16.127072811370326,68.22074777678259],[16.06516285522785,68.28972225489511],[16.152422793411976,68.36187412811805],[16.312562679967364,68.38642806305175],[16.668812427596713,68.41735740826869],[17.073261876822006,68.4078545509302],[17.560022733754895,68.42054850557746]]]}},{"type":"Feature","properties":{"id":"tverrlinken","name":"Tverrlinken","color":"#1bbaae","feature_id":"tverrlinken-0","coordinates":[13.563638846080835,66.26218454683203]},"geometry":{"type":"MultiLineString","coordinates":[[[13.018229076204191,66.19806628775785],[13.05006499115128,66.24521776261776],[13.218814871607353,66.2904946262551],[13.387564752063426,66.31310255415397],[13.563638846080835,66.29296835834754],[13.563638846080835,66.24773433541888],[13.624478646731358,66.22416306028732],[13.781314473127356,66.256524477016],[13.950064353583429,66.256524477016],[14.141958748893504,66.31371064643902]]]}},{"type":"Feature","properties":{"id":"national-digital-transmission-network-ndtn","name":"National Digital Transmission Network (NDTN)","color":"#a3492e","feature_id":"national-digital-transmission-network-ndtn-0","coordinates":[122.2201301190194,10.321516903939438]},"geometry":{"type":"MultiLineString","coordinates":[[[122.43363382518383,10.425900114515422],[122.56210741119708,10.720150965231593]],[[121.05018848285071,12.363012914770698],[121.04998848299225,11.735650161405832],[121.27498832360028,11.294709319565477],[121.49998816420832,10.41081650540272],[121.94998784542422,10.189442766507625],[122.43363382518383,10.425900114515422],[122.28748760633636,9.967915186974132],[122.28748760633636,9.52441134501949],[122.84998720785636,8.858082310478219],[123.18748696876833,8.858082310478219],[123.29998688907226,9.08033076823294],[123.28143690221334,9.295503918747997]],[[121.61229277215068,13.935275186648868],[121.72498800481618,13.492128176464083],[121.83748792512029,13.054150695298627],[121.83748792512029,12.72515592356304],[121.72498800481618,12.395734000022975],[121.3874882439044,12.230866087669199],[121.05018848285071,12.363012914770698]]]}},{"type":"Feature","properties":{"id":"rnne-rdvig","name":"Rønne-Rødvig","color":"#2aaf8a","feature_id":"rnne-rdvig-0","coordinates":[13.533267873522265,55.11321571659684]},"geometry":{"type":"MultiLineString","coordinates":[[[12.37186547159436,55.256124793285025],[12.825065150543425,55.14215100378178],[14.400064034799321,55.07780072164767],[14.708363816396886,55.10103597610051]]]}},{"type":"Feature","properties":{"id":"chennai-andaman-nicobar-islands-cable-cani","name":"Chennai-Andaman \u0026 Nicobar Islands Cable (CANI)","color":"#b0c435","feature_id":"chennai-andaman-nicobar-islands-cable-cani-0","coordinates":[86.72745832143364,12.314949113858496]},"geometry":{"type":"MultiLineString","coordinates":[[[92.72647339138615,11.623375589234106],[92.81250848668803,11.294709319565477],[92.25000888516803,11.073982781226615],[89.10001111665605,11.735650161405832],[83.70001494206389,13.054150695298627],[81.45001653598388,12.834868817846521],[80.24298739105474,13.06385310188338]],[[92.91387560237854,12.506922878216733],[92.9236029863318,12.45624046231183],[92.93506699361643,12.39649703607185],[92.9875083627165,12.175887185507976],[92.98760601889738,11.97601592593175],[92.87075844542325,11.735650161405832],[92.72647339138615,11.623375589234106],[92.86875844683999,11.294709319565477],[92.75625852653606,10.85308969074528],[92.59717660798114,10.709095116736076],[92.70000856638391,10.41081650540272],[92.92500840699213,9.52441134501949],[92.81641473392081,9.177521361414106],[93.03750832729607,9.08033076823294],[93.31875812805606,8.301880168760913],[93.48145332530132,8.172274246767333],[93.4063830659818,8.07917551824101],[93.45958302829436,7.967776882259704],[93.54375796866411,7.856347922592446],[93.93750768972804,7.29876275445952],[93.92744910310356,7.031336722040295]]]}},{"type":"Feature","properties":{"id":"dunant","name":"Dunant","color":"#ab7a2b","feature_id":"dunant-0","coordinates":[-38.8058960245367,39.91168430026707]},"geometry":{"type":"MultiLineString","coordinates":[[[-1.968324369680654,46.69399663348963],[-2.699923851408691,46.5823550820958],[-5.399921938704683,46.5823550820958],[-9.899918750864702,46.272182853813646],[-16.199914287888834,45.331071073324864],[-23.399909187344846,44.05151922873524],[-39.59989771112098,39.6983233549332],[-50.39989006030513,37.411283634923244],[-61.19988240948919,37.589786573603064],[-72.44987443988924,37.23235432155614],[-74.69987284596934,36.723078949445465],[-76.05919805488554,36.755008440642534]]]}},{"type":"Feature","properties":{"id":"gulf-of-california-cable","name":"Gulf of California Cable","color":"#863f98","feature_id":"gulf-of-california-cable-0","coordinates":[-109.82192082171105,24.990270773742214]},"geometry":{"type":"MultiLineString","coordinates":[[[-110.30544762264607,24.10253662184481],[-110.13734774172947,24.53265756616073],[-109.57484814020947,25.348717422116714],[-109.05034851177005,25.60068153474025]]]}},{"type":"Feature","properties":{"id":"coral-sea-cable-system-cs","name":"Coral Sea Cable System (CS²)","color":"#3c4b9f","feature_id":"coral-sea-cable-system-cs-0","coordinates":[155.4046202241159,-21.16930979043273]},"geometry":{"type":"MultiLineString","coordinates":[[[157.19068553683346,-8.24208943896252],[157.2749628208806,-7.955717094334652],[157.38746274118455,-7.732822794391767]],[[156.3958618811439,-6.708991470564002],[156.59996329905667,-7.28668409428739],[157.38746274118455,-7.732822794391767],[158.3999620239206,-8.067119032529211],[159.74996106756865,-8.901626855396449],[159.94976092602863,-9.42905364643845]],[[160.70132758111177,-8.7746372976857],[160.64996043000062,-9.179382545871277],[160.5374605096967,-9.29042430103552],[160.19996074878455,-9.29042430103552],[159.94976092602863,-9.42905364643845]],[[154.79996457419256,-15.441023659568087],[152.09996648689665,-14.135775375064666],[148.49996903716843,-11.503333845984299],[147.2624699138245,-10.17745743036107],[147.1885196909836,-9.479589292697288]],[[151.20699836948359,-33.86955536437545],[152.09996648689665,-33.3676367639474],[154.2803625585856,-31.85146566557725],[155.69996393662453,-28.743810281149894],[155.69996393662453,-25.540896076259312],[155.24996425540846,-18.880139975101173],[154.79996457419256,-15.441023659568087],[157.04996298027257,-11.943944931746815],[159.18746146604866,-10.17745743036107],[159.29996138635258,-9.73423534230066],[159.24376142616532,-9.29042430103552],[159.5249612269606,-9.012754814881783],[159.74996106756865,-9.012754814881783],[159.94976092602863,-9.42905364643845]]]}},{"type":"Feature","properties":{"id":"malbec","name":"Malbec","color":"#939597","feature_id":"malbec-0","coordinates":[-50.43830221621102,-31.718498826133224]},"geometry":{"type":"MultiLineString","coordinates":[[[-48.59989133544111,-32.61276000573574],[-50.97802017710233,-31.45596294505899],[-51.22802000000015,-30.034259]]]}},{"type":"Feature","properties":{"id":"malbec","name":"Malbec","color":"#b13885","feature_id":"malbec-1","coordinates":[-49.047903581810445,-32.875181128087604]},"geometry":{"type":"MultiLineString","coordinates":[[[-43.20956515399876,-22.903486555497956],[-43.64989484206502,-23.905969261790265],[-44.99989388571306,-24.52157920760467],[-46.12489308875306,-25.134186547061336]],[[-46.412490541266344,-24.008866255391673],[-46.12489308875306,-25.134186547061336]],[[-46.12489308875306,-25.134186547061336],[-46.3498929293611,-27.95174728521976],[-48.59989133544111,-32.61276000573574],[-53.99988751003309,-35.77578304431546],[-56.695442241101844,-36.47097855291435]]]}},{"type":"Feature","properties":{"id":"st-pierre-and-miquelon-cable","name":"St. Pierre and Miquelon Cable","color":"#63ae45","feature_id":"st-pierre-and-miquelon-cable-0","coordinates":[-56.18893456436545,47.06659226124524]},"geometry":{"type":"MultiLineString","coordinates":[[[-55.835899770663836,47.07196443816744],[-56.137385995809176,47.120911503379745],[-56.193635955961135,47.120877480719855],[-56.349885845272226,47.08368621678281],[-56.193635955961135,47.08262225469689],[-56.13733599584455,46.89066036987498],[-56.180585965205815,46.77583029845104],[-55.9686361153531,46.81382628533593],[-55.80328623248849,46.86895827528439]]]}},{"type":"Feature","properties":{"id":"sea2shore","name":"sea2shore","color":"#50c2bc","feature_id":"sea2shore-0","coordinates":[-71.50328331663805,41.308290790740486]},"geometry":{"type":"MultiLineString","coordinates":[[[-71.59367504642896,41.191963141608895],[-71.49162511872214,41.32329405220932],[-71.44277515332787,41.44139346840826]]]}},{"type":"Feature","properties":{"id":"nordbalt","name":"NordBalt","color":"#7b439a","feature_id":"nordbalt-0","coordinates":[18.28746856397312,55.716652093821786]},"geometry":{"type":"MultiLineString","coordinates":[[[15.908662966093944,56.74380010331269],[16.08756283935933,56.593792978418996],[16.20006275966344,56.34522292681988],[16.312562679967364,56.03221697111693],[17.325061962703444,55.716652093821786],[20.475059731215417,55.716652093821786],[21.149959253110477,55.695748609598844]]]}},{"type":"Feature","properties":{"id":"southeast-asia-japan-cable-2-sjc2","name":"Southeast Asia-Japan Cable 2 (SJC2)","color":"#cfc12a","feature_id":"southeast-asia-japan-cable-2-sjc2-0","coordinates":[120.24622973092585,20.280825284596364]},"geometry":{"type":"MultiLineString","coordinates":[[[126.22498481697637,25.55188275942587],[123.74998657028833,25.653336613276053],[122.84998720785636,25.75470426341523],[121.94998784542422,25.653336613276053],[121.4876881729218,25.18162628187736]],[[128.24998338244836,28.359233526108557],[127.12498417940834,29.540507745394493],[125.7749851357603,30.320465424761444],[124.6499859327203,30.901396088515508],[122.84998720785636,31.286738814391754],[122.17498768603225,31.142418511463656],[121.89608788360773,30.935661747314708]],[[129.5999824260964,28.75448641587171],[129.37498258548837,30.901396088515508],[129.1499827448803,31.670513047087127],[129.26248266518442,32.8123187832876],[129.37498258548837,34.31215165223547],[128.999482851496,35.17030187110516]],[[138.59997605041642,32.052708023486204],[137.69997668798445,33.09551711711581],[136.87399727311598,34.33682825203173]],[[100.5951029728293,7.198818071264419],[101.70000219070414,7.410337121715135],[103.04883123518101,7.563123274145237],[105.29999964043219,6.18155703253704],[107.09999836529612,4.837826391986557]],[[112.94999422110418,12.615395567393394],[111.59999517745614,13.273238157547594],[110.02499629320025,13.710817738179635],[109.21959686375268,13.782910441432074]],[[120.14998912056028,20.269544035929588],[120.48748888147225,21.635297384859552],[120.66208875778415,22.249168196123776]],[[114.7499929459683,18.251816319028222],[114.29999326475222,20.796306105108872],[114.20309333339704,22.22214038855274]],[[103.9870122893147,1.389451396800233],[104.19209042528557,1.276482074072847],[104.28790035741287,1.327893755020881],[104.45655023793971,1.468426767331968],[104.8499999592161,2.817450442654169],[105.74999932164808,4.0527020972683],[107.09999836529612,4.837826391986557],[107.99999772772827,5.510071711803246],[110.69999581502417,7.744889052551447],[111.93749493836829,9.967915186974132],[112.94999422110418,12.615395567393394],[114.52499310476436,17.10851996079568],[114.7499929459683,18.251816319028222],[116.99999135204831,19.529070924350908],[120.14998912056028,20.269544035929588],[121.04998848299225,20.375041253465433],[122.84998720785636,20.90143978523765],[124.87498577332833,22.05298561667754],[125.7749851357603,24.12261698700344],[126.22498481697637,25.55188275942587],[126.67498449819227,26.1593079707739],[128.24998338244836,28.359233526108557],[129.5999824260964,28.75448641587171],[131.39998115096031,29.049948644465697],[134.99997860068837,30.126049846722832],[136.7999773255523,30.901396088515508],[138.59997605041642,32.052708023486204],[139.04997573163232,32.43331330641721],[139.72497525345642,33.93964008831966],[140.23122489482446,34.405022750715936],[140.2030999141525,34.69072647741027],[140.0343500336966,34.852445708846155],[139.9546750907351,34.97672776066548]]]}},{"type":"Feature","properties":{"id":"no-uk","name":"NO-UK","color":"#ac84bb","feature_id":"no-uk-0","coordinates":[2.4897036299592137,56.52964381322203]},"geometry":{"type":"MultiLineString","coordinates":[[[-1.617778330734679,54.97824921450541],[-0.899925126544665,55.33458061322904],[0.900073598319269,55.84318584148108],[2.534972440141771,56.54919247234551],[3.375071845007315,58.05131589106027],[4.050071366831244,58.641677771385005],[5.17507056987125,58.90413203005045],[5.512570330783214,59.020142808923744],[5.730770176208511,58.9708214866686]]]}},{"type":"Feature","properties":{"id":"sakhalin-kuril-islands-cable","name":"Sakhalin-Kuril Islands Cable","color":"#c1b230","feature_id":"sakhalin-kuril-islands-cable-0","coordinates":[147.16528656863258,45.47093386616253]},"geometry":{"type":"MultiLineString","coordinates":[[[143.14553369999982,46.859505191720295],[143.454021634475,46.93117918037432],[145.57497110926448,46.272182853813646],[147.59996967473646,45.251927381214465],[147.88151244403892,45.08668996809888],[147.59996967473646,45.172673246984274],[147.05997005727735,45.037723080177784],[146.75634527236804,44.694829089578164],[146.6999703123045,44.37405751055857],[146.24997063108842,44.05151922873524],[145.85856465836412,44.034531551008044],[146.24997063108842,43.88958773629964],[146.7472359038211,43.7936197418982]]]}},{"type":"Feature","properties":{"id":"meltingpot-indianoceanic-submarine-system-metiss","name":"Meltingpot Indianoceanic Submarine System (METISS)","color":"#69bd45","feature_id":"meltingpot-indianoceanic-submarine-system-metiss-0","coordinates":[44.94191055148978,-26.361278448096385]},"geometry":{"type":"MultiLineString","coordinates":[[[54.00003598180769,-20.574419057276128],[54.45003566302377,-20.679706953509093],[54.90003534423966,-20.890063499753193],[55.303235058609346,-20.944427907259005]],[[46.98534095108351,-25.022510261484957],[47.25004076356767,-25.33771218660113],[47.700040444783745,-25.540896076259312]],[[30.901552344990282,-30.021618287456878],[32.40005128343957,-29.920697111268968],[38.70004682046353,-27.553513996438145],[45.00004235748766,-26.350174904573713],[47.700040444783745,-25.540896076259312],[49.0500394884316,-24.72611802920699],[51.75003757572769,-23.08058350574764],[53.55003630059162,-20.995131543025785],[54.00003598180769,-20.574419057276128],[54.90003534423966,-20.152543786018732],[55.80003470667163,-20.152543786018732],[56.70003406910378,-20.046895587328667],[57.495133505847896,-20.122124416034133]]]}},{"type":"Feature","properties":{"id":"java-bali-cable-system-jbcs","name":"Java Bali Cable System (JBCS)","color":"#9b3794","feature_id":"java-bali-cable-system-jbcs-0","coordinates":[114.42270747463041,-8.376206040827705]},"geometry":{"type":"MultiLineString","coordinates":[[[114.3103932573849,-8.44802754685532],[114.47074314379155,-8.34548869989964],[114.52729310373104,-8.294580235999058]]]}},{"type":"Feature","properties":{"id":"jakarta-surabaya-cable-system-jayabaya","name":"Jakarta Surabaya Cable System (JAYABAYA)","color":"#4b3c97","feature_id":"jakarta-surabaya-cable-system-jayabaya-0","coordinates":[110.10010340348813,-6.867191961808391]},"geometry":{"type":"MultiLineString","coordinates":[[[107.12099835041957,-5.981154260263285],[107.32499820590417,-5.833801119425265],[107.5499980465122,-5.833801119425265],[108.44999740894416,-6.169450529574503],[108.6749972495522,-6.393099497823911],[108.6749972495522,-6.560772244563566],[108.55734425507973,-6.716653419880512],[108.78749716985612,-6.616650693475355],[109.79999645259221,-6.616650693475355],[110.02499629320025,-6.730871350313617],[110.18788680280707,-7.026520241492837],[110.24999613380828,-6.730871350313617],[110.69999581502417,-6.281287025048582],[111.37499533684829,-6.169450529574503],[112.16249477897614,-6.393099497823911],[112.61249446019221,-6.616650693475355],[112.71972094673198,-7.271863121195997]]]}},{"type":"Feature","properties":{"id":"southern-cross-next","name":"Southern Cross NEXT","color":"#b61e51","feature_id":"southern-cross-next-0","coordinates":[-152.82053849664103,11.385632586825267]},"geometry":{"type":"MultiLineString","coordinates":[[[179.34974953238174,-16.80801177359569],[179.09994735985677,-17.168553094226155],[179.09994735985677,-17.70520217268605],[179.3249472004648,-18.880139975101173],[179.54994704107284,-19.305384072361306]],[[178.4382278286252,-18.123069640992355],[178.6499476786407,-18.880139975101173],[179.09994735985677,-19.729525450021]],[[-171.44980430741026,-9.29042430103552],[-171.674804148018,-9.29042430103552],[-171.8115040511786,-9.174626307490298]],[[-157.42781424071939,1.872154031030243],[-157.724814030322,2.817450442654169],[-158.849813233362,4.164912849976942],[-160.19981227700995,5.061986954416114]],[[-179.99979825051412,-18.880139975101173],[-177.29980016321815,-16.738110438702464],[-175.49980143835413,-14.571726491332546],[-173.92480255409802,-11.943944931746815],[-172.79980335105822,-11.062032109909483],[-171.674804148018,-10.620064860363238],[-171.44980430741026,-9.29042430103552],[-169.19980590133008,-4.825692499217419],[-162.89981036430612,2.367912558705407],[-160.19981227700995,5.061986954416114],[-159.29981291457798,5.957818681088533],[-138.59982757864174,23.298598065875897],[-127.79983522945767,28.55704546571133],[-120.59984033000157,33.09551711711581],[-118.79984160513764,33.799525734581415],[-118.39955344545581,33.86223405937197]],[[173.69995118526478,-24.72611802920699],[175.04995022891282,-30.30995334464681],[175.5057116247971,-33.34801975644684],[174.9374503086087,-36.140033391295425],[174.99370026876068,-36.59297842795038],[174.77324144056075,-36.78413802465393]],[[151.19625712709274,-33.913571605570375],[152.0920653907799,-34.2066327368011],[154.8286447337135,-33.129107644117234],[160.64996043000062,-31.468437004267024],[166.49995628580868,-27.95174728521976],[173.69995118526478,-24.72611802920699],[178.1999479974248,-20.574419057276128],[179.09994735985677,-19.729525450021],[179.54994704107284,-19.305384072361306],[179.9999467222889,-18.880139975101173]]]}},{"type":"Feature","properties":{"id":"havfrueaec-2","name":"Havfrue/AEC-2","color":"#30aa9f","feature_id":"havfrueaec-2-0","coordinates":[-32.13340756110129,50.01928620984207]},"geometry":{"type":"MultiLineString","coordinates":[[[7.996258571315225,58.15106571642484],[7.987568576875359,57.932056586951404],[6.300069772911254,57.57189027900508],[4.500071048047319,57.57189027900508]],[[-74.06286329723282,40.15283384719588],[-71.09987539624129,40.55848045058698],[-68.39987730894529,41.2387523289666],[-61.19988240948919,42.41235450073586],[-50.39989006030513,44.694829089578164],[-39.59989771112098,47.50228998113266],[-23.399909187344846,52.96339810559356],[-16.199914287888834,55.07780072164767],[-8.999919388432733,58.99117670269853],[-5.399921938704683,59.679663707208995],[-1.799924488976633,59.45171731890513],[1.800072960751236,58.52439396084473],[4.500071048047319,57.57189027900508],[5.400070410479286,56.717468482041156],[6.300069772911254,56.22032688484507],[7.200069135343221,55.84318584148108],[7.650068816559295,55.77997032709834],[8.329168335478972,55.75165023178103]],[[-16.199914287888834,55.07780072164767],[-12.599916838160784,54.81936191424915],[-10.799918113296759,54.16597178715178],[-10.349918432080775,53.90168472607427],[-9.696518894955075,53.77080186175808]]]}},{"type":"Feature","properties":{"id":"damai-cable-system","name":"DAMAI Cable System","color":"#813e97","feature_id":"damai-cable-system-0","coordinates":[100.32496780231568,2.472045411688132]},"geometry":{"type":"MultiLineString","coordinates":[[[98.67598433294692,3.752031394331533],[98.88750418310413,3.82823430332105],[99.45000378402823,3.641132700076536],[99.7875035455361,3.266814816815666],[100.3500031470561,2.817450442654169],[100.31333654252124,2.452337743745469],[100.46250306736002,2.705081160335761],[100.57500298766413,2.705081160335761],[101.25000250948806,2.425986659073406],[101.75825214943936,2.143087178471855],[101.87075206974329,1.976445096071173],[101.72812717078021,1.805588379583273],[101.44766236946417,1.665522797277061]]]}},{"type":"Feature","properties":{"id":"japan-guam-australia-south-jga-s","name":"Japan-Guam-Australia South (JGA-S)","color":"#944b9d","feature_id":"japan-guam-australia-south-jga-s-0","coordinates":[162.3847454355713,-8.271835486920656]},"geometry":{"type":"MultiLineString","coordinates":[[[157.94996234270454,-25.540896076259312],[153.8999652117606,-26.551620801657084],[153.08946578592602,-26.651853879370247]],[[144.69469829535797,13.464777824933044],[144.81564664717723,13.273238157547594],[145.34997126865645,12.834868817846521],[146.24997063108842,12.175887185507976],[147.14996999352056,11.735650161405832],[149.39996839960057,10.85308969074528],[151.1999671244645,9.52441134501949],[152.99996584932845,8.190543417795496],[155.24996425540846,4.164912849976942],[156.59996329905667,-0.331409329660265],[157.72496250209667,-3.029995968008661],[159.29996138635258,-4.825692499217419],[161.5499597924326,-6.616650693475355],[162.44995915486456,-8.401139048122838],[162.89995883608063,-10.17745743036107],[161.99995947364866,-13.698987269610743],[159.29996138635258,-18.880139975101173],[157.94996234270454,-25.540896076259312],[156.59996329905667,-28.743810281149894],[154.60976590078016,-31.85146566557725],[152.09996648689665,-33.46154129054857],[151.273987072028,-33.76116106060912]]]}},{"type":"Feature","properties":{"id":"japan-guam-australia-north-jga-n","name":"Japan-Guam-Australia North (JGA-N)","color":"#5bba4d","feature_id":"japan-guam-australia-north-jga-n-0","coordinates":[139.81213538696954,23.813815905960602]},"geometry":{"type":"MultiLineString","coordinates":[[[144.69469829535797,13.489135592728266],[144.34997197706537,14.042738209008009],[143.77497238440057,15.23578178303578],[143.09997286257644,16.965102599435927],[140.84997445649643,21.635297384859552],[139.27497557224055,24.94136317175375],[139.04997573163232,27.76358852605777],[139.27497557224055,30.901396088515508],[139.6124753331525,32.43331330641721],[139.6124753331525,33.93964008831966],[139.7812252136084,34.405022750715936],[139.94997509346857,34.69072647741027],[140.00622505362054,34.852445708846155],[139.96102617184783,34.97406980589044]]]}},{"type":"Feature","properties":{"id":"tonga-domestic-cable-extension-tdce","name":"Tonga Domestic Cable Extension (TDCE)","color":"#e11e25","feature_id":"tonga-domestic-cable-extension-tdce-0","coordinates":[-174.933639039813,-19.72491637033035]},"geometry":{"type":"MultiLineString","coordinates":[[[-174.93730183683402,-19.729525450021],[-174.59980207592204,-19.729525450021],[-174.35214225136664,-19.81379624685291]],[[-173.98368251298305,-18.647678684858587],[-174.2623023150101,-18.880139975101173],[-174.93730183683402,-19.729525450021],[-175.16230167744206,-20.574419057276128],[-175.20000165073512,-21.133465659292966]]]}},{"type":"Feature","properties":{"id":"paniolo-cable-network","name":"Paniolo Cable Network","color":"#eb2d24","feature_id":"paniolo-cable-network-0","coordinates":[-159.02444356405402,21.43722512798135]},"geometry":{"type":"MultiLineString","coordinates":[[[-156.44000048737092,20.66359808291422],[-156.26231506636992,20.480466375975812],[-155.98106587237422,20.269544035929588],[-155.83140598217537,20.03998810568653]],[[-157.66890586680282,21.272011061319994],[-157.49981418971396,21.111485983488812],[-157.1623144288019,21.006499845176737],[-157.02388510728736,21.09335900500387],[-156.82481466788994,21.006499845176737],[-156.6844827360524,20.900892404445475]],[[-159.72421261392932,21.97028767315785],[-159.63731267548994,21.84429407917369],[-158.849813233362,21.32123529551186],[-158.3998135521461,21.32123529551186],[-158.22066328843266,21.4634468234482]]]}},{"type":"Feature","properties":{"id":"bodo-rost-cable","name":"Bodo-Rost Cable","color":"#395eab","feature_id":"bodo-rost-cable-0","coordinates":[13.22363413547445,67.33614800460244]},"geometry":{"type":"MultiLineString","coordinates":[[[12.070165685321246,67.50255969476507],[12.150065628719313,67.4394931950777],[13.950064353583429,67.26621947299489],[14.400064034799321,67.28599754127343]]]}},{"type":"Feature","properties":{"id":"malta-gozo-cable","name":"Malta-Gozo Cable","color":"#af2724","feature_id":"malta-gozo-cable-0","coordinates":[14.307914119340358,35.9795875702152]},"geometry":{"type":"MultiLineString","coordinates":[[[14.27136412597179,36.02048335169237],[14.307914100079453,35.979587591777396],[14.344464074186934,35.938670628992085]]]}},{"type":"Feature","properties":{"id":"mauritius-and-rodrigues-submarine-cable-system-mars","name":"Mauritius and Rodrigues Submarine Cable System (MARS)","color":"#2fb34a","feature_id":"mauritius-and-rodrigues-submarine-cable-system-mars-0","coordinates":[60.4985560459923,-20.368445549627328]},"geometry":{"type":"MultiLineString","coordinates":[[[57.485483512684034,-20.473995660946287],[57.712533351839674,-20.679706953509093],[58.050033112751635,-20.679706953509093],[59.40003215639986,-20.574419057276128],[61.65003056247987,-20.152543786018732],[62.775029765519875,-19.683016915799705],[63.33752936703988,-19.570614456630153],[63.44822928861902,-19.674355986985844]]]}},{"type":"Feature","properties":{"id":"palapa-ring-east","name":"Palapa Ring East","color":"#cfc12a","feature_id":"palapa-ring-east-0","coordinates":[135.66860583860853,-1.155981803828361]},"geometry":{"type":"MultiLineString","coordinates":[[[134.32497907886446,-1.681168935904995],[133.87497939764836,-2.018492325403296],[133.48208167334195,-2.202398136007225]],[[135.50163840155787,-3.372233814094874],[135.56247820220838,-3.029995968008661],[135.89997796312053,-2.580536704984131],[136.12497780372837,-2.130918480960333],[136.15700903103723,-1.756135138662891],[136.3499776443364,-2.018492325403296],[136.7999773255523,-2.018492325403296],[136.96882720593763,-1.906058394384765],[137.02502716612523,-1.681168935904995],[136.7999773255523,-1.456253566768442],[136.3499776443364,-1.456253566768442],[135.89997796312053,-1.343787247896323],[135.6749781225123,-1.175078194688512],[135.61872816236036,-1.006508927977932],[135.63855236706684,-0.729535713493556],[135.44997828190446,-0.837630979982873],[134.99997860068837,-0.837630979982873],[134.32497907886446,-0.781386636225587],[134.06198926516882,-0.861458343462594],[134.21247915856034,-1.006358951224796],[134.32497907886446,-1.231315750217412],[134.32497907886446,-1.681168935904995],[134.6624788397764,-2.130918480960333],[135.1124785209923,-3.029995968008661],[135.50163840155787,-3.372233814094874]],[[139.39645986117984,-7.102404536072552],[139.04997573163232,-7.175078903541251],[138.59997605041642,-7.063446338991064],[138.26247628950446,-6.616650693475355],[138.14997636920054,-5.945707155070644],[138.12136310822024,-5.535665777980563],[137.8124766082884,-5.497950688314882],[137.24997700676838,-5.273944363641298],[137.02497716616034,-5.049857167366764],[136.88962726204366,-4.55024753995573],[136.74372736540036,-4.37714437553184],[135.78747804281642,-3.591554479962115],[135.50163840155787,-3.372233814094874]],[[124.45350169691167,-8.160824687115921],[124.6499859327203,-8.067119032529211],[125.32498545454442,-8.067119032529211],[125.66248521486048,-8.085683049445153],[126.44998465758441,-8.122808517987155],[126.89998433880031,-7.955717094334652],[127.34998402001638,-7.955717094334652],[127.691487684342,-8.15809386700378],[127.78788370920816,-8.150378145203275],[127.91248362153638,-8.0114218741176],[128.92498290427227,-8.0114218741176],[129.5999824260964,-8.178490278944933],[130.04998210731227,-8.178490278944933],[130.83748154944033,-8.067119032529211],[131.21306722087195,-8.052228527722814],[130.83748154944033,-7.844284877164334],[130.7249816291364,-7.621331259953079],[130.83748154944033,-7.175078903541251],[131.62498099156835,-6.281287025048582],[132.29998051339228,-5.777839699209677],[132.7521286305864,-5.626541451914346],[132.6937302344564,-5.385957847173066],[132.86453011346026,-5.128744870833412],[133.20212987430145,-5.128744870833412],[134.0999792382564,-5.945707155070644],[134.2687291187123,-6.05759043242458],[134.55017423183406,-6.19469348259935],[134.77497876008033,-6.169450529574503],[135.2249784412964,-5.833801119425265],[136.01247788342445,-5.609922463067976],[136.46247756464035,-5.385957847173066],[136.6874774052484,-5.049857167366764],[136.88962726204366,-4.55024753995573]],[[120.25301904757286,-9.645765890160455],[120.59998880177636,-9.62333678834261],[121.61248808451225,-10.28816791219512],[121.87987070759588,-10.457810041841308],[122.06248776572832,-10.398839577127402],[122.84998720785636,-10.620064860363238],[123.03524098287089,-10.733304228874694],[123.07498704846441,-10.509472025995617],[123.29998688907226,-10.343606996551372],[123.58338668830928,-10.182939736570859]]]}},{"type":"Feature","properties":{"id":"palapa-ring-west","name":"Palapa Ring West","color":"#34ae9c","feature_id":"palapa-ring-west-0","coordinates":[106.61227488662865,3.243198841572958]},"geometry":{"type":"MultiLineString","coordinates":[[[102.08008004585756,1.489220605654429],[101.72812717078021,1.637214579479584],[101.44766236946417,1.665522797277061]],[[102.66702150506266,0.932556749588586],[102.57030157358,1.22086532601435],[102.08008004585756,1.489220605654429]],[[103.40488379485406,0.769834409364204],[103.27500107436413,0.962392648220919],[103.05000123375628,1.168506749040978],[102.73892645412447,1.22086532601435],[102.66702150506266,0.932556749588586]],[[104.0166370000003,1.066798000000349],[103.87813064769749,1.106743972267005],[103.50000091556807,0.962392648220919],[103.40488379485406,0.769834409364204]],[[104.63544932995589,-0.162758734486483],[104.40000027800004,-0.218910724747347],[104.11875047724004,-0.331409329660265],[103.46670093915829,-0.816543192375546]],[[108.98720405963194,0.906050180869095],[108.78749716985612,1.243490076978041],[108.44999740834827,2.967259208499635],[108.44999740834827,3.41655961832325],[108.3774974597078,3.940874826243066],[108.14286872026702,3.945639298144141],[107.99999772772827,3.840706312160841],[107.32499820590417,3.491423322320592],[106.87499852468808,3.266814816815666],[106.21112899497969,3.207140223034204],[105.97499916225611,2.592701464601932],[105.74999932164808,2.143087178471855],[104.86707219123916,1.476960063746916],[104.62500011860807,1.299726182129338],[104.28790035741287,1.117266982599433],[104.0166370000003,1.066798000000349],[104.0347505367464,0.906050180869095],[104.06010051878842,0.793562652607196],[104.17500043739219,0.341586322057578],[104.40000027800004,0.006088583243203],[104.63544932995589,-0.162758734486483]]]}},{"type":"Feature","properties":{"id":"palapa-ring-middle","name":"Palapa Ring Middle","color":"#9d402f","feature_id":"palapa-ring-middle-0","coordinates":[126.30923830411119,4.037101645710124]},"geometry":{"type":"MultiLineString","coordinates":[[[122.55994835082258,-5.389069040125302],[122.57073740567944,-5.439965887100162],[122.59686238717225,-5.507088069175421]],[[122.51297744659723,-3.998469097245179],[122.79378724766912,-3.984542968792977],[122.90623716800833,-4.040605164746417],[122.96248712816029,-4.096713358263508],[123.12391279505485,-4.136112209115025],[122.96248712816029,-4.37714437553184],[122.84998720785636,-4.489307688629284],[122.7937372477044,-4.657520205679877],[122.72108104917469,-4.8324068568668],[122.79173724912133,-4.825692499217419],[122.85611022178392,-4.792242310211541]],[[122.79275724839854,-0.938788738945164],[123.07498704846441,-1.118839506905277],[123.29998688907226,-1.146958988943708],[123.3402212355698,-1.301025233929911],[123.41248680937636,-1.203172122899323],[123.63748664998441,-1.231315750217412],[123.69373661013618,-1.400021081752668],[123.52752579038167,-1.600245159061262],[123.69378661010107,-1.62499236735134],[124.03128637101304,-1.849888622119433],[124.31248617180833,-2.130918480960333],[124.53748601241637,-2.130918480960333],[124.6499859327203,-2.018492325403296],[124.77400928236096,-1.826803651259445],[124.98748569363227,-2.018492325403296],[125.66248521545637,-2.35574573664619],[125.8874850560655,-2.580536704984131],[126.11248489667227,-2.580536704984131],[126.16873485682441,-2.468145972656139],[126.11248489667227,-2.299542189691302],[125.93699502099096,-2.201477967855649]],[[127.36131213699137,0.79580852872504],[127.37810900009228,0.739317546778545],[127.4040855441903,0.674041311933418],[127.46248394032031,0.68107206531244],[127.56141387023752,0.734977909038259]],[[124.8396357983706,1.490779296094715],[124.76248585302442,1.805788280129153],[125.2124855342403,2.592701464601932],[125.37293463932662,2.754634201538373],[125.2124855342403,2.817450442654169],[125.2124855342403,3.266814816815666],[125.48553221581143,3.600934571622902],[125.32498545454442,3.715978119298069],[125.43748537484834,3.940475772228814],[126.44998465758441,4.0527020972683],[126.71726962448717,4.042960839837272],[126.89998433880031,3.940475772228814],[127.12498417940834,3.715978119298069],[127.34998402001638,3.266814816815666],[127.91248362153638,2.367912558705407],[128.13748346214442,2.255504211923801],[128.40076452563352,2.365668382611338],[128.1937334222964,2.143087178471855],[128.13748346214442,1.918228780215599],[127.967854676061,1.714620455999489]]]}},{"type":"Feature","properties":{"id":"ulysses-2","name":"Ulysses 2","color":"#b96528","feature_id":"ulysses-2-0","coordinates":[3.171539084277287,52.55491468334153]},"geometry":{"type":"MultiLineString","coordinates":[[[1.72927301090669,52.46882263773048],[2.25007264196731,52.55491468334153],[3.825071526223208,52.55491468334153],[4.275071207439282,52.52070133452007],[4.61367096757211,52.458501705101135]]]}},{"type":"Feature","properties":{"id":"natitua","name":"Natitua","color":"#b75c28","feature_id":"natitua-0","coordinates":[-144.18136825994162,-13.277979584961974]},"geometry":{"type":"MultiLineString","coordinates":[[[-143.9998237532338,-16.953454989809906],[-143.4373241517138,-17.061035019881565],[-142.42482486897782,-17.49073216111125],[-141.18732574563379,-18.026426383713453],[-140.90812594342157,-18.215746090119286]],[[-145.79982247809784,-15.657788279357506],[-145.79982247809784,-15.874323281689833],[-145.74357338333084,-16.090625820394795],[-145.62457846161735,-16.31034841245573]],[[-146.92482168113784,-15.549434493126443],[-146.86857255795098,-15.657788279357506],[-146.67384529643186,-15.741365822737356]],[[-146.58732192022578,-15.549434493126443],[-146.643572723027,-15.441023659568087],[-146.7861499043742,-15.28988809315997]],[[-147.14982152174588,-15.549434493126443],[-146.92482168113784,-15.549434493126443],[-146.58732192022578,-15.549434493126443],[-145.79982247809784,-15.657788279357506],[-145.34982279688202,-15.982503786245708],[-145.12482295627382,-16.30669306561827],[-144.5623233547538,-16.738110438702464],[-143.9998237532338,-16.953454989809906],[-143.77482391262578,-16.84581334779892],[-143.77482391262578,-16.738110438702464],[-143.86720665968102,-16.539560977104614]],[[-147.14982152174588,-15.224032284647373],[-147.37482136235383,-15.115452462868513],[-147.6512860102537,-15.116206681570365]],[[-139.38732702076976,-9.845097085826806],[-139.04982725985772,-9.845097085826806],[-139.0211163426968,-9.754639758300325]],[[-145.34982279688185,-14.135775375064666],[-145.124822956274,-14.244842547315455],[-144.97218634565303,-14.449768610910688]],[[-145.91232239840184,-14.78938079853903],[-145.91232239840184,-14.571726491332546],[-145.9581231472061,-14.402858435885177]],[[-140.14211164232327,-8.860524087732477],[-139.72482678168183,-9.29042430103552],[-139.38732702076976,-9.845097085826806],[-139.4998269410738,-10.17745743036107],[-140.39982630350576,-11.062032109909483],[-144.89982311566578,-13.698987269610743],[-145.34982279688185,-14.135775375064666],[-145.46232271718586,-14.571726491332546],[-145.91232239840184,-14.78938079853903],[-146.6998218405299,-14.78938079853903],[-147.14982152174588,-15.224032284647373],[-147.14982152174588,-15.549434493126443],[-147.37482136235383,-15.874323281689833],[-148.72482040600187,-17.383402005942457],[-149.3081207740364,-17.723342219804366]]]}},{"type":"Feature","properties":{"id":"curie","name":"Curie","color":"#b2692e","feature_id":"curie-0","coordinates":[-88.45134022131478,6.516022999881251]},"geometry":{"type":"MultiLineString","coordinates":[[[-85.94986487636929,0.568578852526193],[-82.34986742664142,2.367912558705407],[-80.09986902056123,5.061986954416114],[-79.4248694987373,7.29876275445952],[-79.64986933934534,8.190543417795496],[-79.56661939832034,8.950317108800572]],[[-71.62043502747198,-33.04554123247811],[-72.67487428049728,-31.85146566557725],[-79.64986933934534,-18.45381377577717],[-84.14986615150535,-11.503333845984299],[-85.4998651951533,-6.616650693475355],[-85.94986487636929,0.568578852526193],[-87.06475643430802,5.534179292238662],[-92.69986009460932,9.52441134501949],[-98.09985626920157,12.615395567393394],[-104.39985180622544,16.10232559580297],[-108.44984893716946,18.678647022154717],[-114.29984479297735,22.469443964829516],[-118.79984160513736,27.76358852605777],[-119.6998409675696,31.286738814391754],[-119.24984128635361,32.8123187832876],[-118.79984160513764,33.75276987113061],[-118.41596126184768,33.91992001851462]]]}},{"type":"Feature","properties":{"id":"venezuelan-festoon","name":"Venezuelan Festoon","color":"#3cac48","feature_id":"venezuelan-festoon-0","coordinates":[-67.69388910487412,10.642183589613301]},"geometry":{"type":"MultiLineString","coordinates":[[[-71.45109585055839,10.395928632135224],[-71.54987507745727,10.46810224505713],[-71.59841019932456,10.688176132322466],[-71.54987507745727,11.073982781226615],[-71.09987539624129,11.405009147532946],[-70.42487587441727,11.625479959569855],[-70.20431603066386,11.708782466419155],[-69.86237627289727,11.625479959569855],[-69.67780609114853,11.402807398422437],[-69.5248765119853,11.515266158038768],[-69.29987667137726,11.625479959569855],[-68.73737706985726,11.570378484364811],[-68.39987730894529,11.294709319565477],[-68.28449653130708,10.928560854771279],[-68.06237754803324,10.742581675476407],[-68.00959438230036,10.478139223021115],[-67.72487778712127,10.632033208117836],[-67.38737802620922,10.742581675476407],[-67.16237818560127,10.742581675476407],[-66.87829838684601,10.606498174462322],[-66.59987858408127,10.742581675476407],[-66.26237882316921,10.742581675476407],[-66.14987890286528,10.632033208117836],[-66.09812112703091,10.480347852296964],[-65.69987922164921,10.41081650540272],[-65.24987954043323,10.41081650540272],[-64.64489950025676,10.20251427017952],[-64.40813013673639,10.41081650540272],[-64.18210685935342,10.454323438205055],[-64.40613013815323,10.632033208117836],[-64.34988017800117,10.797840764398114],[-64.0123804170892,10.742581675476407],[-63.84763444004678,10.955215720095854],[-63.4498808155692,10.85308969074528],[-63.25051572242629,10.666775863121776]]]}},{"type":"Feature","properties":{"id":"fibra-optica-austral","name":"Fibra Optica Austral","color":"#23a94c","feature_id":"fibra-optica-austral-0","coordinates":[-75.75521397094204,-50.417207326968]},"geometry":{"type":"MultiLineString","coordinates":[[[-71.54987507745727,-53.36079173838141],[-71.2123753165453,-53.29360179765786],[-70.93333257525876,-53.16665547850187]],[[-76.0498718896173,-47.94815800395535],[-75.14987252718532,-47.872750313091395],[-74.69987284596934,-47.797232730668014],[-74.24987316475335,-47.797232730668014],[-73.53688749863097,-47.80121466459952]],[[-72.95341123369901,-41.46037424479032],[-73.3498738023213,-41.651266976593426],[-73.79987348353728,-41.73527248346828],[-74.24987316475335,-41.9029542709986],[-75.14987252718532,-43.5555762736133],[-76.0498718896173,-46.728433187427136],[-76.0498718896173,-47.94815800395535],[-75.59987220840131,-51.71887427473293],[-75.14987252718532,-52.273010201565995],[-74.13737324444934,-52.82030430480513],[-72.89987412110531,-53.158904291412945],[-71.54987507745727,-53.36079173838141],[-71.09987539624129,-53.89450965719368],[-70.19987603380923,-54.421497115405664],[-68.84987699016128,-54.94179496686143],[-68.17487746833726,-55.00636393692013],[-67.6058614267886,-54.935200597435504]]]}},{"type":"Feature","properties":{"id":"djibouti-africa-regional-express-1-dare-1","name":"Djibouti Africa Regional Express 1 (DARE 1)","color":"#939597","feature_id":"djibouti-africa-regional-express-1-dare-1-0","coordinates":[42.07504442898764,-19.10292196513146]},"geometry":{"type":"MultiLineString","coordinates":[[[34.833447996502606,-19.82010899999981],[42.025949814008925,-19.82010899999981]],[[39.269676416932725,-6.823132108349236],[39.63257107969674,-6.306132261225844],[40.12927201041025,-5.927942387053361]],[[40.174850462603004,-10.25488665702017],[41.28961680273296,-10.030240541416509]],[[40.68539697592696,-14.565582936090415],[41.5379072360397,-14.45669497006816],[42.07504442898764,-14.80743804437604]],[[46.315441425050686,-15.713729798684179],[45.04301107645226,-15.039497695402932],[42.025949814008925,-14.511535911566813]],[[43.66314330455965,-23.354724804059778],[42.72697695458166,-23.42087339119824],[40.971261031231286,-23.12506902069823]],[[32.58062115552212,-25.968268155407962],[33.79140784557965,-26.192699081406893],[35.223462368650665,-26.361156827463727]],[[39.700143767639595,-4.050296575426323],[39.999997070845666,-5.506103863356715],[41.17504506655567,-9.326623361059807],[42.07504442898764,-14.80743804437604],[42.07504442898764,-20.51958710633204],[40.971261031231286,-23.12506902069823],[35.223462368650665,-26.361156827463727],[33.30005064527564,-28.51533365786017],[31.757961738301827,-28.950559666538012]]]}},{"type":"Feature","properties":{"id":"djibouti-africa-regional-express-1-dare-1","name":"Djibouti Africa Regional Express 1 (DARE 1)","color":"#a8b737","feature_id":"djibouti-africa-regional-express-1-dare-1-1","coordinates":[53.05571545731233,6.4148119949100915]},"geometry":{"type":"MultiLineString","coordinates":[[[45.344182113695986,2.041205223228781],[46.80004108235159,2.03066189047467],[49.50003916964768,1.468426767331968]],[[49.187929390749275,11.275556936623216],[48.82503964782375,11.735650161405832],[48.60003980781179,12.065895273570327]],[[44.55004267627159,11.349864561231485],[45.450042038703735,11.294709319565477],[48.60003980781179,12.065895273570327],[52.65003693815965,13.054150695298627],[54.00003598419185,13.3827080361257],[55.1250351848477,12.615395567393394],[54.45003566302377,9.52441134501949],[52.65003693875573,5.510071711803246],[49.50003916964768,1.468426767331968],[45.67504187931159,-1.456253566768442],[42.30004427019158,-3.70382647066824],[39.672896131288006,-4.052924364763054]],[[44.55004267627159,11.349864561231485],[43.65004331383962,11.510285103755812],[43.14799366949638,11.594869371447825]]]}},{"type":"Feature","properties":{"id":"peace-cable","name":"PEACE Cable","color":"#0090c5","feature_id":"peace-cable-0","coordinates":[81.18159047227279,2.025087667012478]},"geometry":{"type":"MultiLineString","coordinates":[[[65.25002801220774,22.884654113882444],[63.22180684167684,23.91710129093513],[60.00000731671387,24.85391243144087],[58.71855992030421,25.0514826710929],[56.33993432360578,25.0514826710929]],[[45.450042038703735,11.625479959569855],[45.33754211780372,11.073982781226615],[45.01088234980864,10.43511874899288]],[[32.65318110412008,29.113614162980063],[31.72505176161546,29.197363639715668],[31.050052239791533,29.442584645837396],[30.375052717967602,29.809307127152845],[29.98130299690349,30.32033594247502],[29.70093319552029,31.072270031660306]],[[37.237547857107636,22.05298561667754],[39.18275647850768,21.481533475502996]],[[57.00003385598526,13.248904801212989],[58.000033147576175,12.273619553801206],[63.00002960553183,11.735650161405832],[67.00002677189639,10.85308969074528],[71.3195757241684,9.11818824277241],[73.22502236205099,7.013502779332166],[73.59708669534523,6.355510376771536],[74.25002163593187,5.659359572411489],[78.3000187674719,3.042156042425856],[79.65001781052403,2.51777609524721],[81.00001685476798,2.143087178471855],[85.500013666928,-0.781332308789108],[90.00001047908802,0.118642751260435],[92.70000856638391,3.940475772228814],[94.27500745064,4.937462677928599],[95.45328225426326,5.909674833582863],[97.42500521915215,5.286069860821008],[97.65000505976,5.286069860821008],[98.21250466128001,4.613591578862773],[99.7875035455361,3.266814816815666],[101.25000250948806,1.974446286104158],[102.15000187192003,1.74956539407541],[102.68279723997186,1.502034277710852],[103.34065102845322,1.159233669139442],[103.6462108113958,1.338645835654649]],[[73.07152247079179,6.622458884185137],[73.11252244174707,6.790133539110704],[73.22502236205099,7.013502779332166]],[[11.981315748271243,35.419780517080355],[13.668814552823427,35.69434844652369],[14.350104069595588,35.95240101739213]],[[27.900054471279375,31.86180860227073],[31.500051920411707,34.25018044028598],[32.466651236259686,34.76657169708598]],[[50.40003853207964,1.468426767331968],[52.20003725694376,-2.130918480960333],[54.00003598180769,-3.92832730414264],[55.44505495814286,-4.617611322442136]],[[44.55004267627159,11.680570534838436],[43.24223110273756,12.615395567393394],[43.15785616250971,12.834868817846521],[42.86254387230766,13.054150695298627],[42.24379431063569,13.92930384327183],[41.737544669267656,14.801154224791581],[40.38754562562161,16.534196198259725],[39.37504634288372,18.251816319028222],[38.02504729923568,20.375041253465433],[37.237547857107636,22.05298561667754],[36.00004873376353,24.12261698700344],[34.98754945102763,25.75470426341523],[34.50942478913958,26.562513149236715],[33.862550247391546,27.364667993860262],[33.37083809573128,28.161052262220792],[32.65318110412008,29.113614162980063],[31.72505176161546,29.09911045097482],[31.050052239791533,29.344566989489813],[30.375052717967602,29.711645057947855],[29.98130299690349,30.223089656566962],[29.70093319552029,31.072270031660306]],[[29.70093319552029,31.072270031660306],[27.900054471279375,31.86180860227073],[25.200056383983473,32.575628370353215],[22.050058614875596,33.31515395812905],[19.350060528175415,33.189714664600466],[16.65006244087933,32.8123187832876],[14.400064034799321,33.70598849685854],[11.981315748271243,35.419780517080355],[11.812565867807347,35.78566189952622],[11.250066265095544,37.23235432155614],[10.348617229769278,37.50058844605323],[9.450067540827328,37.50058844605323],[9.000067859611436,37.50058844605323],[7.200069135343221,37.94551049545967],[6.525069613519291,38.651811712711336],[5.625070251087323,41.74435878948223],[5.372530429989069,43.29362778902908]],[[58.000033147576175,12.273619553801206],[57.00003385598526,11.294709319565477],[54.90003534423966,9.52441134501949],[53.55003630118789,5.510071711803246],[50.40003853207964,1.468426767331968],[45.90004171991963,-1.681168935904995],[42.30004427019158,-3.92832730414264],[39.672896131288006,-4.052924364763054]],[[67.02854675228855,24.889731701235817],[65.25002801220774,22.884654113882444],[64.35002864977577,20.375041253465433],[60.97503104065576,16.965102599435927],[58.95003247279982,14.801154224791581],[57.00003385598526,13.248904801212989],[55.35003502545574,14.147583506948735]],[[55.35003502545574,14.147583506948735],[48.60003980781179,12.395734000022975],[45.450042038703735,11.625479959569855],[44.55004267627159,11.680570534838436]],[[9.450067540827328,37.50058844605323],[9.675067381435365,37.35168786972502],[9.867357245811593,37.276816253475154]]]}},{"type":"Feature","properties":{"id":"jupiter","name":"JUPITER","color":"#63c5b9","feature_id":"jupiter-0","coordinates":[-148.28713581206685,43.443614889598344]},"geometry":{"type":"MultiLineString","coordinates":[[[-123.95633795222729,45.231085444465165],[-125.09983714216159,44.694829089578164],[-129.5998339543217,43.401144973153954],[-138.4872392170287,41.40772623743595]],[[141.97497365953643,34.405022750715936],[141.07497429710446,32.052708023486204],[140.6249746158884,30.901396088515508],[138.82497589102445,27.76358852605777],[137.24997700676838,26.1593079707739],[133.19997987582445,22.469443964829516],[127.79998370123228,17.395022634700517],[124.6499859327203,15.23578178303578],[123.5249867296803,14.256644994553485],[122.95008713694455,14.11652289884896]],[[140.84997445649643,34.405022750715936],[138.59997605041642,33.75276987113061],[137.69997668798445,33.846256070003854],[136.87399727311598,34.33682825203173]],[[179.99992719256971,44.051501534601925],[172.79992073307184,44.051501534601925],[160.19996074878455,40.72920412488655],[149.39996839960057,35.78566189952622],[143.09997286257644,34.59045588265237],[141.97497365953643,34.405022750715936],[140.84997445649643,34.405022750715936],[140.39997477468464,34.69072647741027],[140.18903742411456,34.89859296336222],[139.97546699999984,35.005433000000174]],[[-118.39955344545581,33.86223405937197],[-120.59984033000157,33.70598849685854],[-122.3998390548656,33.93964008831966],[-129.5998339543217,37.589786573603064],[-138.4872392170287,41.40772623743595],[-151.19983391146832,44.048716071048425],[-179.99981350929238,44.048716071048425]]]}},{"type":"Feature","properties":{"id":"crosslake-fibre","name":"Crosslake Fibre","color":"#bfa82f","feature_id":"crosslake-fibre-0","coordinates":[-78.9963389306078,43.35045980757371]},"geometry":{"type":"MultiLineString","coordinates":[[[-79.3853197287618,43.64462540417898],[-79.08736973782534,43.48282788090373],[-78.91861985736935,43.237448352440914],[-78.86236989721739,43.073310783003215],[-78.87846124652506,42.88543648440376]]]}},{"type":"Feature","properties":{"id":"gtmo-pr","name":"GTMO-PR","color":"#28a557","feature_id":"gtmo-pr-0","coordinates":[-71.51216307611269,17.219005195339932]},"geometry":{"type":"MultiLineString","coordinates":[[[-66.18575110065406,18.47299398772983],[-66.48737866377725,18.73192589597656],[-67.04987826529725,18.891661584303154],[-67.72487778712127,18.465364393137126],[-68.06237754922522,18.251816319028222],[-68.51237722924922,17.82393441253792],[-69.29987667137726,17.716802179008642],[-70.6498757150253,17.287636299591117],[-71.99987475867334,17.180187287481317],[-74.69987284596934,17.395022634700517],[-75.14987252718532,18.251816319028222],[-75.26237244808533,19.670379638527955],[-75.15816600409605,19.939616197540328]]]}},{"type":"Feature","properties":{"id":"gtmo-1","name":"GTMO-1","color":"#8bc63f","feature_id":"gtmo-1-0","coordinates":[-74.9568908684134,24.46418028699889]},"geometry":{"type":"MultiLineString","coordinates":[[[-80.14394128072,26.052316286427192],[-79.64986933934534,25.957179978764344],[-78.41237021600132,26.1593079707739],[-77.51237085356935,25.653336613276053],[-76.83117133613746,25.81335888205563],[-76.24064175447413,25.599112345903762],[-75.59987220840131,25.14511970405223],[-74.92487268657729,24.430271928048704],[-74.69987284596934,24.01990020343248],[-74.58737292566532,23.7112581424843],[-74.58737292566532,23.298598065875897],[-74.69987284596934,22.884654113882444],[-74.4748730053613,22.05298561667754],[-74.02487332414532,21.216397899942],[-73.9123734038413,20.796306105108872],[-74.0248233241807,20.375041253465433],[-74.09132327707148,20.183174721867772],[-74.30612312490531,19.95262290516439],[-74.69987284596934,19.740987365524937],[-74.92487268657729,19.793828591740887],[-75.15816600409605,19.939616197540328]]]}},{"type":"Feature","properties":{"id":"havhingstennorth-sea-connect-nsc","name":"Havhingsten/North Sea Connect (NSC)","color":"#3075bb","feature_id":"havhingstennorth-sea-connect-nsc-0","coordinates":[3.300835253210443,55.468042370708176]},"geometry":{"type":"MultiLineString","coordinates":[[[8.19316843122662,55.76461454471694],[7.650068816559295,55.526080187888724],[7.200069135343221,55.526080187888724],[5.400070409883385,55.5473006113407],[3.150072004399278,55.462350188098306],[-0.899925126544665,55.07780072164767],[-1.617778330734679,54.97824921450541]]]}},{"type":"Feature","properties":{"id":"havhingstenceltixconnect-2-cc-2","name":"Havhingsten/CeltixConnect-2 (CC-2)","color":"#3567b1","feature_id":"havhingstenceltixconnect-2-cc-2-0","coordinates":[-4.583345454615775,53.829194264925974]},"geometry":{"type":"MultiLineString","coordinates":[[[-4.499922576272716,53.83535026397589],[-4.499722576414336,53.967914030873956],[-4.566622529021879,54.10028616652028]],[[-4.9499222574887,53.802143574575446],[-4.9499222574887,53.967914030873956],[-4.760422391732262,54.087213966599236]],[[-6.085471453650949,53.54969026481899],[-5.624921779312721,53.605364702574946],[-4.9499222574887,53.802143574575446],[-4.499922576272716,53.83535026397589],[-3.599923213840749,53.83535026397589],[-3.050753602877637,53.80897597127547]]]}},{"type":"Feature","properties":{"id":"cobracable","name":"COBRAcable","color":"#59af46","feature_id":"cobracable-0","coordinates":[7.423990331415976,54.89909630966168]},"geometry":{"type":"MultiLineString","coordinates":[[[8.718388991504327,55.523118197393856],[8.383735292984237,55.37363200351445],[7.644797667750507,55.32458575844352],[6.975069294735365,54.03403825672422],[6.816022175096963,53.4428046914825]]]}},{"type":"Feature","properties":{"id":"kanawa","name":"Kanawa","color":"#6fc6b1","feature_id":"kanawa-0","coordinates":[-56.10276500157915,10.704754187067367]},"geometry":{"type":"MultiLineString","coordinates":[[[-61.112138356061955,14.629000145423495],[-61.199832409524575,14.474609432068906],[-61.087382489185174,14.365653759228442],[-60.974882568881156,14.365653759228442],[-59.84988336584115,13.92930384327183],[-58.04988464097722,12.615395567393394],[-54.89988687246515,9.52441134501949],[-52.874888306993086,5.957818681088533],[-52.645554998399945,5.16829853939239]]]}},{"type":"Feature","properties":{"id":"fly-lion3","name":"FLY-LION3","color":"#c7b22e","feature_id":"fly-lion3-0","coordinates":[44.02971817153865,-12.264700887720027]},"geometry":{"type":"MultiLineString","coordinates":[[[43.24330360197787,-11.700589282272533],[43.14379367247158,-11.943944931746815],[43.31254355292765,-12.163983680780412],[43.53754339353551,-12.163983680780412],[43.87504315444765,-12.163983680780412],[44.55004267627159,-12.60351210497128],[45.00004235748766,-12.82299562562977],[45.16576224009028,-12.817096445533013]]]}},{"type":"Feature","properties":{"id":"nelson-levin","name":"Nelson-Levin","color":"#403c97","feature_id":"nelson-levin-0","coordinates":[174.11213952095224,-40.549228298069146]},"geometry":{"type":"MultiLineString","coordinates":[[[173.283950056072,-41.27226426152262],[173.47495134465674,-40.89028605009858],[173.92495102587282,-40.549228298069146],[174.82495038830479,-40.549228298069146],[175.28531582578577,-40.62527463191151]]]}},{"type":"Feature","properties":{"id":"png-lng","name":"PNG LNG","color":"#cf297b","feature_id":"png-lng-0","coordinates":[145.57756247984867,-8.667132033694022]},"geometry":{"type":"MultiLineString","coordinates":[[[144.2402063499095,-7.413515958216514],[144.6038691823073,-7.965739195577203],[145.80511425847098,-8.831047291434265],[146.6233536581765,-9.428179774498066],[147.1885196909836,-9.479589292697288]]]}},{"type":"Feature","properties":{"id":"kumul-domestic-submarine-cable-system","name":"Kumul Domestic Submarine Cable System","color":"#a76c35","feature_id":"kumul-domestic-submarine-cable-system-0","coordinates":[150.11278431665937,-9.549626145302685]},"geometry":{"type":"MultiLineString","coordinates":[[[145.34997126865645,-3.479268678970064],[145.79997094987252,-2.130918480960333],[146.6999703123045,-1.681168935904995],[147.14996999352056,-1.793617120354896],[147.27907146456383,-2.034985895581449]],[[152.2124664072006,-3.92832730414264],[152.2124664072006,-4.040555289062099],[152.2745757382018,-4.342382000415339]],[[151.1999671244645,-3.92832730414264],[152.2124664072006,-3.92832730414264],[152.43746624780846,-4.152767748013638],[152.54996616811255,-4.37714437553184],[152.6624660884165,-4.825692499217419],[152.99996584932845,-5.049857167366764],[153.8999652117606,-4.825692499217419],[154.79996457419256,-4.825692499217419],[155.24996425540846,-5.273944363641298],[155.47496409601666,-5.721872747834119],[155.56783512397587,-6.225662994684213]],[[150.52496760264057,-4.825692499217419],[150.41246768233648,-5.273944363641298],[150.13873740749958,-5.551120494376105]],[[146.24997063108842,-4.825692499217419],[146.6999703123045,-4.60145376483711],[149.39996839960057,-4.60145376483711],[150.52496760264057,-4.825692499217419],[151.1999671244645,-3.92832730414264],[149.84996808081647,-2.580536704984131],[149.84996808081647,-2.130918480960333],[150.52496760264057,-2.130918480960333],[150.8085611517402,-2.578139138209948]],[[143.6583709045021,-3.580053610579215],[143.9999722250084,-3.479268678970064],[144.44997190622448,-3.029995968008661],[144.44997190622448,-2.580536704984131]],[[141.2999741377125,-2.130918480960333],[141.29987648153164,-2.689698402599833]],[[145.7847409606618,-5.23368424614946],[146.02497079048055,-5.049857167366764],[146.24997063108842,-4.825692499217419],[146.24997063108842,-4.37714437553184],[145.34997126865645,-3.479268678970064],[144.44997190622448,-2.580536704984131],[142.19997350014447,-2.130918480960333],[141.2999741377125,-2.130918480960333],[140.84997445649643,-2.35574573664619],[140.66911458461954,-2.591565453841556]],[[146.99293885476283,-6.739375698979019],[147.37496983412842,-7.063446338991064],[148.04996935595253,-7.062898168976873]],[[148.2935238709162,-8.604445748342727],[148.9499687183845,-8.401139048122838],[149.39996839960057,-8.401139048122838]],[[150.45875671204502,-10.315743405478468],[150.74996744324844,-10.398839577127402],[151.1999671244645,-10.398839577127402]],[[147.1885196909836,-9.479589292697288],[147.37496983412842,-10.17745743036107],[149.39996839960057,-11.062032109909483],[150.74996744324844,-11.062032109909483],[151.1999671244645,-10.841130095525688],[151.1999671244645,-10.398839577127402],[150.97496728385667,-10.17745743036107],[150.29996776203254,-9.73423534230066],[149.84996808081647,-9.29042430103552],[149.39996839960057,-8.846050186819125],[149.39996839960057,-8.401139048122838],[148.04996935595253,-7.063446338991064],[148.04996935595253,-6.393099497823911],[147.59996967473646,-5.945707155070644],[146.90630490718817,-5.585376278266893],[146.02497079048055,-5.273944363641298],[145.7847409606618,-5.23368424614946]],[[145.77174829265064,-7.96374446783501],[145.57497110926448,-8.401139048122838]],[[143.20993372217916,-9.07814229926296],[143.9999722250084,-8.846050186819125],[144.72573462481674,-8.332313959673433],[145.57497110926448,-8.401139048122838],[146.6999703123045,-9.29042430103552],[147.1885196909836,-9.479589292697288]]]}},{"type":"Feature","properties":{"id":"strategic-evolution-underwater-link-seul","name":"Strategic Evolution Underwater Link (SEUL)","color":"#bd254b","feature_id":"strategic-evolution-underwater-link-seul-0","coordinates":[-88.13645167977192,17.91429586339428]},"geometry":{"type":"MultiLineString","coordinates":[[[-88.29445457772991,17.92560748967649],[-88.09086335966589,17.91103213819346],[-87.97834227065086,17.91103213819346]]]}},{"type":"Feature","properties":{"id":"labuan-brunei-submarine-cable","name":"Labuan-Brunei Submarine Cable","color":"#ce3894","feature_id":"labuan-brunei-submarine-cable-0","coordinates":[114.98447468523977,5.126623341957663]},"geometry":{"type":"MultiLineString","coordinates":[[[114.88563284987971,4.926762452886689],[114.97499278657615,5.120007115780449],[115.1689426491803,5.255340365327962]]]}},{"type":"Feature","properties":{"id":"marea","name":"MAREA","color":"#288da3","feature_id":"marea-0","coordinates":[-38.88408857801272,40.57765092802222]},"geometry":{"type":"MultiLineString","coordinates":[[[-76.05920188300784,36.75500543613895],[-74.69987284596934,36.813198605777224],[-72.44987443988924,37.411283634923244],[-61.19988240948919,37.94551049545967],[-50.39989006030513,37.94551049545967],[-39.59989771112098,40.38732029077508],[-23.399909187344846,44.694829089578164],[-16.199914287888834,45.646541495187385],[-9.899918750864702,46.5823550820958],[-5.849921619920758,45.646541495187385],[-4.499922576272716,44.694829089578164],[-2.949193674823563,43.274220252000646]]]}},{"type":"Feature","properties":{"id":"brazilian-festoon","name":"Brazilian Festoon","color":"#a36929","feature_id":"brazilian-festoon-0","coordinates":[-39.02320379163805,-14.833362589631536]},"geometry":{"type":"MultiLineString","coordinates":[[[-35.2111808201292,-5.794842609646916],[-34.87490105835302,-6.169450529574503],[-34.762401138049,-6.616650693475355],[-34.86103106817858,-7.115296841294636],[-34.64990121774498,-7.398261494591065],[-34.64990121774498,-7.732822794391767],[-34.87197106042861,-8.055326726100345],[-34.762401138049,-8.401139048122838],[-35.09990089896096,-9.29042430103552],[-35.73496044907884,-9.652223223190266],[-35.887400341089005,-10.17745743036107],[-36.44989994260901,-10.730617682527702],[-37.074799499924225,-10.909607685768835],[-37.01239954412901,-11.17242092112813],[-37.18114942458499,-11.558448514962395],[-37.57050914875899,-11.84666975659916],[-37.68739906595303,-12.273934999624556],[-38.02489882686499,-12.82299562562977],[-38.50448848711925,-12.96997203534297],[-38.474898508080976,-13.480286782092163],[-38.69989834868901,-14.244842547315455],[-39.047698102304416,-14.787969163702355],[-38.812398268993036,-15.224032284647373],[-38.69989834868901,-15.874323281689833],[-38.812398268993036,-16.30669306561827],[-39.06468809026847,-16.451075727726543],[-38.92489818929696,-16.953454989809906],[-38.92489818929696,-17.597998996155503],[-39.37489787051303,-18.45381377577717],[-39.85912752748022,-18.71669015877287],[-39.59989771112098,-18.98655325687288],[-39.59989771112098,-19.729525450021],[-39.824897551729016,-20.152543786018732],[-40.30165721398802,-20.294028446525463],[-40.499897073553036,-20.995131543025785],[-41.0272366999807,-21.631144867598383],[-40.94989675476902,-21.832990805202066],[-41.17489659537697,-22.250099679090077],[-41.399896435985006,-22.35418408364256],[-41.78563616272339,-22.37179211083922],[-41.849896117201084,-22.665969967794794],[-42.29989579841706,-23.08058350574764],[-42.74989547963305,-23.08058350574764],[-43.20956515399876,-22.903486555497956]]]}},{"type":"Feature","properties":{"id":"nationwide-submarine-cable-ooredoo-maldives-nascom","name":"Nationwide Submarine Cable Ooredoo Maldives (NaSCOM)","color":"#ef7422","feature_id":"nationwide-submarine-cable-ooredoo-maldives-nascom-0","coordinates":[73.49377676750908,3.077143914807335]},"geometry":{"type":"MultiLineString","coordinates":[[[73.08918245887737,-0.605519711481727],[72.9976825236969,0.281087260908386],[72.9976825236969,0.531080606428773],[72.9976825236969,0.781063841597784],[73.42463222124155,2.776778986293406],[73.53957213981704,3.276079687360005],[73.54035213926461,3.962982118955539],[73.54035213926461,4.212345781871782],[73.49035217468504,4.461629537081651],[73.27082233020184,4.854566321205027],[73.07082247188359,5.10362255380632],[73.18127239304401,5.211384397097438],[73.18127239304401,5.435413643888211],[73.17082240104271,5.601440402765338],[73.17150240056122,6.125830038600339],[73.0715024714021,6.622826415013278]]]}},{"type":"Feature","properties":{"id":"saba-statia-cable-system-sscs","name":"Saba, Statia Cable System (SSCS)","color":"#c01f38","feature_id":"saba-statia-cable-system-sscs-0","coordinates":[-63.31664742849068,17.616040674676444]},"geometry":{"type":"MultiLineString","coordinates":[[[-62.729761325708566,17.298635546518675],[-62.82976125486769,17.298635546518675],[-62.98704114344916,17.386453128638113],[-62.98552567577273,17.47589364460112],[-63.08709107257282,17.481859236798428],[-63.25164095600418,17.52116155688655],[-63.244216898763455,17.615097550173317],[-63.35169088512793,17.6164969787067],[-63.35169088512793,17.71178205639041],[-63.15506102442229,17.929327757796422],[-63.055056876516154,18.024447867032936],[-62.943631174201165,17.984511967477506],[-62.85054881207158,17.897915647022234]]]}},{"type":"Feature","properties":{"id":"east-west-submarine-cable-system","name":"East-West Submarine Cable System","color":"#ed164f","feature_id":"east-west-submarine-cable-system-0","coordinates":[107.46181632127374,3.3123415341325986]},"geometry":{"type":"MultiLineString","coordinates":[[[103.85068066714335,2.29570245694968],[104.40000027800004,2.480311786858737],[105.74999932164808,2.592701464601932],[105.97499916225611,2.817450442654169],[106.21112899497969,3.207140223034204],[106.87499852468808,3.154491498099848],[107.32499820590417,3.266814816815666],[107.99999772772827,3.491423322320592],[108.29022752212678,3.666760478526919],[108.89999709016024,3.266814816815666],[109.79999645259221,2.592701464601932],[110.24999613380828,1.918228780215599],[110.35370606033919,1.520169126642144]]]}},{"type":"Feature","properties":{"id":"smpcs-packet-1","name":"SMPCS Packet-1","color":"#a43a95","feature_id":"smpcs-packet-1-0","coordinates":[127.32155160528426,-3.169471179209577]},"geometry":{"type":"MultiLineString","coordinates":[[[126.89998433880031,1.018534216615524],[127.34998402001638,1.018534216615524],[127.46248394032031,0.906050180869095],[127.56141387023752,0.734977909038259]],[[127.34998402001638,1.018534216615524],[127.34998402001638,0.906050180869095],[127.37537400202994,0.789853009413946]],[[128.19070342444294,-3.645746178185322],[128.0249835418403,-4.040555289062099],[127.79998370123228,-4.152767748013638],[126.44998465758441,-4.152767748013638],[125.09998561393637,-3.816084221750208],[123.07498704846441,-3.816084221750208],[122.51297744659723,-3.998469097245179]],[[127.4804539275903,-0.626808465190233],[127.34998402001638,-0.781386636225587],[127.34998402001638,-1.006358951224796]],[[126.67498449819227,-1.231315750217412],[127.34998402001638,-1.006358951224796],[127.79998370123228,-1.006358951224796],[128.24998338244836,-1.231315750217412],[129.1499827448803,-1.231315750217412],[129.5999824260964,-0.781386636225587],[130.39002186642506,-0.590190556941542],[130.89012151214973,-0.590190556941542],[131.29539122505298,-0.882055944384682]],[[126.68699448968442,-2.201477967855649],[125.93699502099096,-2.201477967855649]],[[127.34998402001638,-3.254657364797681],[127.08582420714977,-3.233401495651599]],[[129.1499827448803,-3.92832730414264],[129.1499827448803,-3.70382647066824],[128.9552528828288,-3.297846628598047]],[[129.87205223335977,-4.520172025984261],[129.82498226670444,-4.152767748013638]],[[124.8396357983706,1.490779296094715],[125.09998561393637,1.243490076978041],[125.99998497636834,1.018534216615524],[126.89998433880031,1.018534216615524],[126.89998433880031,0.568578852526193],[126.89998433880031,0.118588418888312],[126.67498449819227,-1.231315750217412],[126.68699448968442,-2.201477967855649],[127.12498417940834,-2.580536704984131],[127.34998402001638,-3.254657364797681],[127.57498386062441,-3.70382647066824],[127.79998370123228,-3.92832730414264],[128.0249835418403,-3.92832730414264],[128.19070342444294,-3.645746178185322],[128.4749832230562,-3.816084221750208],[129.1499827448803,-3.92832730414264],[129.82498226670444,-4.152767748013638],[130.49998178852834,-4.152767748013638],[131.39998115096031,-3.92832730414264],[132.29998051339228,-3.479268678970064],[132.74998019460836,-3.36696949729516],[133.00857001142109,-3.111418827305981]]]}},{"type":"Feature","properties":{"id":"smpcs-packet-2","name":"SMPCS Packet-2","color":"#33b44a","feature_id":"smpcs-packet-2-0","coordinates":[131.74814831666004,-2.928285746232012]},"geometry":{"type":"MultiLineString","coordinates":[[[136.57497748494447,-5.049857167366764],[136.88962726204366,-4.55024753995573]],[[134.0999792382564,-4.152767748013638],[133.79147945680054,-3.679367344669026]],[[132.75203019315614,-5.635389324566357],[132.63753027426915,-5.385957847173066],[132.63963027278146,-5.128744870833412],[132.85535011996345,-4.427385673631093]],[[134.06198926516882,-0.861458343462594],[134.32497907886446,-0.725141539440154],[134.5499789194723,-0.556402272850583]],[[136.0532978545072,-1.187185613026736],[135.89997796312053,-1.400021081752668]],[[139.49997541284839,-1.681168935904995],[139.35329551675807,-2.175227145407149]],[[140.66911458461954,-2.591565453841556],[140.39997477528055,-2.130918480960333],[139.49997541284839,-1.681168935904995],[137.69997668798445,-1.231315750217412],[136.7999773255523,-1.231315750217412],[136.3499776443364,-1.400021081752668],[135.89997796312053,-1.400021081752668],[135.44997828190446,-1.175078194688512],[134.99997860068837,-0.781386636225587],[134.5499789194723,-0.556402272850583],[133.64997955704033,-0.331409329660265],[132.29998051339228,-0.106411275875408],[131.62498099156835,-0.331409329660265],[131.29539122505298,-0.882055944384682],[131.04539140215516,-0.757068845388253],[130.89012151214973,-0.690184231258295],[130.39002186642506,-0.690184231258295],[130.2749819479203,-1.231315750217412],[130.7249816291364,-1.681168935904995],[131.39998115096031,-2.580536704984131],[131.8499808321764,-3.029995968008661],[132.29998051339228,-3.254657364797681],[132.74998019460836,-3.254657364797681],[133.00857001142109,-3.111418827305981],[132.74998019460836,-3.479268678970064],[132.60535029706563,-3.679267550854838],[132.60535029706563,-4.178090661818759],[132.85535011996345,-4.427385673631093],[133.64997955704033,-4.37714437553184],[134.0999792382564,-4.152767748013638],[134.99997860068837,-4.713582177229249],[135.89997796312053,-4.825692499217419],[136.57497748494447,-5.049857167366764],[136.7999773255523,-6.169450529574503],[136.7999773255523,-8.401139048122838],[137.24997700676838,-8.846050186819125],[138.59997605041642,-9.068306003874412],[139.94997509406446,-8.846050186819125],[140.4050547716818,-8.499084023854886]],[[130.85760153518734,-0.383358280481206],[130.89012151214973,-0.490195084933698],[131.29539122505298,-0.882055944384682]]]}},{"type":"Feature","properties":{"id":"luwuk-tutuyan-cable-system-ltcs","name":"Luwuk Tutuyan Cable System (LTCS)","color":"#554b9f","feature_id":"luwuk-tutuyan-cable-system-ltcs-0","coordinates":[124.09471861195692,-0.5754637530094492]},"geometry":{"type":"MultiLineString","coordinates":[[[124.57498598585096,0.761435633994905],[124.6499859327203,0.568578852526193],[124.6499859327203,0.118588418888312],[123.74998657028833,-1.006358951224796],[123.29998688907226,-1.090719755343313],[123.07498704846441,-1.062599741028637],[122.79275724839854,-0.938788738945164]]]}},{"type":"Feature","properties":{"id":"tarakan-selor-cable-system-tscs","name":"Tarakan Selor Cable System (TSCS)","color":"#3db557","feature_id":"tarakan-selor-cable-system-tscs-0","coordinates":[117.89999071448027,3.0414281890356527]},"geometry":{"type":"MultiLineString","coordinates":[[[117.57851094221976,3.327354396392341],[117.61874091372027,3.154491498099848],[117.89999071448027,3.042156042425856],[117.89999071448027,2.817450442654169],[117.81942077155685,2.572022500481419]]]}},{"type":"Feature","properties":{"id":"sumatera-bangka-cable-system-sbcs","name":"Sumatera Bangka Cable System (SBCS)","color":"#bab034","feature_id":"sumatera-bangka-cable-system-sbcs-0","coordinates":[104.74267069755895,-2.4578134016738415]},"geometry":{"type":"MultiLineString","coordinates":[[[105.16425973659172,-2.065142653434427],[104.96249987952004,-2.130918480960333],[104.8499999592161,-2.243336428755425],[104.73750003891219,-2.468145972656139],[104.62500011860807,-2.636728372378821],[104.62500011860807,-2.805287932307917],[104.75732002487149,-2.990989901799851]]]}},{"type":"Feature","properties":{"id":"s-u-b-cable-system","name":"S-U-B Cable System","color":"#cd5628","feature_id":"s-u-b-cable-system-0","coordinates":[116.59214014239069,-6.350116358827736]},"geometry":{"type":"MultiLineString","coordinates":[[[114.60399304939611,-3.327586828573115],[114.1874933444483,-3.70382647066824],[113.96249350384026,-4.37714437553184],[113.73749366323221,-4.825692499217419],[113.17499406171221,-5.721872747834119],[112.72499438049614,-6.393099497823911],[112.72499438049614,-6.616650693475355],[112.7466743651381,-7.258591948594758],[112.8937442615483,-6.616650693475355],[113.06249413962023,-6.393099497823911],[114.46970572643436,-6.169450529574503],[116.07081354037958,-6.321671514079873],[117.37991922838094,-6.393099497823911],[118.79999007691224,-5.385957847173066],[119.41238964308275,-5.152180217334703],[118.79999007691224,-5.161910662113067],[116.58310164737706,-4.628705101793735],[114.7499929459683,-4.60145376483711],[114.41249318505615,-4.37714437553184],[114.29999326475222,-3.70382647066824],[114.60399304939611,-3.327586828573115]]]}},{"type":"Feature","properties":{"id":"indigo-west","name":"INDIGO-West","color":"#a47c2c","feature_id":"indigo-west-0","coordinates":[108.38521825497028,-19.08116413897757]},"geometry":{"type":"MultiLineString","coordinates":[[[103.64609081207688,1.338585852071497],[103.83750067648003,1.018534216615524],[103.83750067648003,0.793562652607196],[104.17500043739219,0.627825578639147],[104.8499999592161,0.512331397069603],[105.52499948104004,0.118588418888312],[106.19999900286416,-0.781386636225587],[106.98549844640912,-2.130918480960333],[107.09999836529612,-3.029995968008661],[107.09999836529612,-4.60145376483711],[106.64999868408005,-5.174359836387044],[106.82782855810404,-6.171876390816321]],[[106.64999868408005,-5.174359836387044],[106.4039414503484,-5.525635172789983],[105.74999932164808,-6.001651664913787],[105.29999964043219,-6.05759043242458],[104.8499999592161,-6.616650693475355],[104.8499999592161,-7.509810688339549],[105.29999964043219,-11.943944931746815],[106.99999843554109,-15.441023659568087],[108.89999708956415,-20.433922197637408],[111.14999549624025,-27.15383128539156],[112.94999422110418,-30.30995334464681],[113.84999358353615,-31.083834718767243],[115.85731216153303,-31.953441330324313]]]}},{"type":"Feature","properties":{"id":"junior","name":"Junior","color":"#902c8c","feature_id":"junior-0","coordinates":[-44.597985661368206,-23.927642902465102]},"geometry":{"type":"MultiLineString","coordinates":[[[-46.328062944825646,-23.961842897597087],[-44.99989388571306,-24.111502734257467],[-43.64989484206502,-23.49392244589784],[-43.20956515399876,-22.903486555497956]]]}},{"type":"Feature","properties":{"id":"skagerrak-4","name":"Skagerrak 4","color":"#60bb46","feature_id":"skagerrak-4-0","coordinates":[8.933237151289148,57.3728338797843]},"geometry":{"type":"MultiLineString","coordinates":[[[7.996258571315225,58.15106571642484],[8.437568258687335,57.932056586951404],[8.7750680195993,57.57189027900508],[9.112567780511265,57.14714566273729],[9.112567780511265,56.840738642145496],[9.225067700815375,56.717468482041156],[9.281317660967337,56.593792978418996],[9.337567621119302,56.56281067903171],[9.611687426930285,56.51079153038908]]]}},{"type":"Feature","properties":{"id":"atisa","name":"Atisa","color":"#56be8d","feature_id":"atisa-0","coordinates":[144.8895850351337,14.530318141710831]},"geometry":{"type":"MultiLineString","coordinates":[[[145.6292710707981,14.958774985807883],[145.46247118896056,14.909893860289706],[145.1249714280484,14.909893860289706]],[[144.78747166713646,14.365653759228442],[145.0124715077445,14.365653759228442],[145.1343514214037,14.144936296053853]],[[144.69470173285575,13.464772962370143],[144.6749717468325,13.92930384327183],[144.78747166713646,14.365653759228442],[145.1249714280484,14.909893860289706],[145.34997126865645,15.127208002058548],[145.69958102098963,15.151813296858078]]]}},{"type":"Feature","properties":{"id":"tui-samoa","name":"Tui-Samoa","color":"#ba8c34","feature_id":"tui-samoa-0","coordinates":[-176.2024591526966,-14.475800138388372]},"geometry":{"type":"MultiLineString","coordinates":[[[-176.1750003498167,-13.282000575147258],[-175.72480127896205,-13.698987269610743],[-175.49980143835413,-14.135775375064666]],[[-178.15810822841175,-14.29683787673267],[-177.74979984443414,-14.571726491332546],[-177.29980016321815,-15.006817032918805]],[[179.34974953238174,-16.80801177359569],[179.54994704107284,-17.168553094226155],[179.9999326211189,-17.597998996155503]],[[-171.76669408292247,-13.83348925575777],[-171.89980398862608,-13.480286782092163],[-172.2373037495382,-13.261386000117003],[-172.79980335105813,-13.261386000117003],[-175.49980143835413,-14.135775375064666],[-177.29980016321815,-15.006817032918805],[-179.54979856929816,-17.168553094226155],[-179.99979825051412,-17.597998996155503]],[[-171.89980398862608,-13.480286782092163],[-172.01230390893008,-13.589662250512088],[-172.1781610251332,-13.670594022635894]],[[178.43744782917764,-18.123810943537187],[178.8749611145193,-18.134559477606608],[179.9999326211189,-17.597998996155503]]]}},{"type":"Feature","properties":{"id":"bugio","name":"BUGIO","color":"#d33894","feature_id":"bugio-0","coordinates":[-9.356394683523343,38.45053529435123]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.33155915349599,38.690161972355526],[-9.4315090826905,38.61206568189252],[-9.352749138484844,38.442695701551486],[-9.202699244781627,38.36471443161005],[-9.102749315587026,38.4430794831419]]]}},{"type":"Feature","properties":{"id":"quintillion-subsea-cable-network","name":"Quintillion Subsea Cable Network","color":"#baab31","feature_id":"quintillion-subsea-cable-network-0","coordinates":[-161.52224884780216,71.14473871313697]},"geometry":{"type":"MultiLineString","coordinates":[[[-161.11856210313948,71.24562930009421],[-160.64981195822594,70.80045445855767],[-160.03834289566558,70.63694726997778]],[[-168.29980653889803,68.12014116880253],[-166.94980749525007,67.4394931950777],[-165.59980845160203,67.09168603590066],[-163.799809726738,66.91588535690667],[-162.59668101868567,66.89834123906643]],[[-167.84980685768204,68.61776755908163],[-167.39980717646606,68.45310188361516],[-166.80805792891846,68.34777271452049]],[[-156.78863527988352,71.29055679250226],[-156.5998148272819,71.38369549089968],[-156.5998148272819,71.6688723488942]],[[-148.45676558455187,70.29404593604013],[-148.38732064687807,70.50227660282815],[-148.49982056539383,70.80045445855767],[-155.24981578363395,71.6688723488942],[-158.39981355214593,71.6688723488942],[-161.11856210313948,71.24562930009421],[-162.89981036430603,70.80045445855767],[-166.94980749525007,69.10459505606217],[-167.84980685768204,68.61776755908163],[-168.29980653889803,68.12014116880253],[-168.52480637950606,66.01760945207982],[-168.07480669829008,64.8962822062034],[-166.94980749525007,64.31739001144432],[-166.04980813281801,64.31739001144432],[-165.40639895727566,64.50111053726953]]]}},{"type":"Feature","properties":{"id":"arsat-submarine-fiber-optic-cable","name":"ARSAT Submarine Fiber Optic Cable","color":"#e12825","feature_id":"arsat-submarine-fiber-optic-cable-0","coordinates":[-68.46704320378183,-52.554235898639284]},"geometry":{"type":"MultiLineString","coordinates":[[[-68.41974729486913,-52.390217164282035],[-68.45812726768042,-52.54751033211774],[-68.6057871630767,-52.65889476082415]]]}},{"type":"Feature","properties":{"id":"balok","name":"BALOK","color":"#35bba4","feature_id":"balok-0","coordinates":[115.91094573738215,-8.399360919774615]},"geometry":{"type":"MultiLineString","coordinates":[[[115.74667223991158,-8.386260161311364],[115.93324210774352,-8.401139048122838],[116.04726202697084,-8.485465010786871]]]}},{"type":"Feature","properties":{"id":"pencan-9","name":"Pencan-9","color":"#86c440","feature_id":"pencan-9-0","coordinates":[-11.5406090461846,33.07476541382141]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.42888120978034,36.73129423644183],[-7.199920663568708,36.42191605012598],[-8.774919547824696,35.419780517080355],[-10.799918113296759,33.93964008831966],[-14.399915563024809,29.73606949729215],[-14.849915244240792,28.95155473219332],[-15.450744818607559,28.096374448680937]]]}},{"type":"Feature","properties":{"id":"taba-aqaba","name":"Taba-Aqaba","color":"#98a439","feature_id":"taba-aqaba-0","coordinates":[34.95962525751561,29.523248443865263]},"geometry":{"type":"MultiLineString","coordinates":[[[34.89486951608693,29.492576422604227],[34.95097447634171,29.512254681383798],[35.005095000000225,29.581033231032787]]]}},{"type":"Feature","properties":{"id":"tannat","name":"Tannat","color":"#34a8a7","feature_id":"tannat-0","coordinates":[-47.401374671328654,-31.994362705245855]},"geometry":{"type":"MultiLineString","coordinates":[[[-46.328062944825646,-23.961842897597087],[-45.89989324814503,-25.134186547061336],[-45.44989356692904,-27.95174728521976],[-47.69989197300905,-32.61276000573574],[-50.84988974152112,-34.48775447869505],[-53.549887828817106,-35.22626671976625],[-54.950186836832145,-34.90041602705144]],[[-53.549887828817106,-35.22626671976625],[-53.99988751003309,-35.59302880961419],[-56.695442241101844,-36.47097855291435]]]}},{"type":"Feature","properties":{"id":"south-atlantic-inter-link-sail","name":"South Atlantic Inter Link (SAIL)","color":"#c62a26","feature_id":"south-atlantic-inter-link-sail-0","coordinates":[-13.859932011165128,-2.614200652258127]},"geometry":{"type":"MultiLineString","coordinates":[[[-38.542968459859594,-3.718735129291092],[-35.99990026139302,-2.580536704984131],[-34.199901536529,-2.130918480960333],[-25.19990791220887,-1.906058394384765],[-10.799918113296759,-2.805287932307917],[-3.599923213840749,-2.805287932307917],[0.450073917103194,-1.081346446098796],[6.300069772911254,1.918228780215599],[8.10006849777537,2.480311786858737],[9.000067860207336,2.592701464601932],[9.91022721544214,2.933124533518602]]]}},{"type":"Feature","properties":{"id":"brusa","name":"BRUSA","color":"#c86d28","feature_id":"brusa-0","coordinates":[-42.08907980888387,8.420314618733522]},"geometry":{"type":"MultiLineString","coordinates":[[[-63.4498808155692,24.94136317175375],[-65.69987922164921,20.375041253465433],[-66.14987890286528,19.104405475930452],[-66.1066660428526,18.46610541858561]],[[-35.549900580176946,0.568578852526193],[-36.899899623824986,-0.781386636225587],[-38.542964866112136,-3.718736532579084]],[[-43.209563122750176,-22.903495209373933],[-42.29989579841706,-23.905969261790265],[-40.94989675476902,-24.316706749469176],[-37.34989930504097,-23.49392244589784],[-32.84990249288096,-18.026426383713453],[-31.04990376801693,-13.698987269610743],[-29.924904564976924,-9.29042430103552],[-31.49990343679494,-4.825692486823558],[-35.549900580176946,0.568578852526193],[-41.399896435985006,7.744889052551447],[-48.59989133544111,14.801154224791581],[-57.59988495976114,21.216397899942],[-63.4498808155692,24.94136317175375],[-69.29987667137726,29.73606949729215],[-73.3498738023213,33.565491482352044],[-75.59987220840131,35.78566189952622],[-75.82487204900934,36.1498667868178],[-76.05919805488554,36.755008440642534]]]}},{"type":"Feature","properties":{"id":"ellalink","name":"EllaLink","color":"#939597","feature_id":"ellalink-0","coordinates":[-43.610379345466555,3.254808699454053]},"geometry":{"type":"MultiLineString","coordinates":[[[-35.09990089896096,0.568578852526193],[-37.34989930504097,1.468426767331968],[-46.79989261057708,4.164912849976942],[-51.2998894227371,5.061986954416114],[-52.320928699423284,4.941547448310236]]]}},{"type":"Feature","properties":{"id":"ellalink","name":"EllaLink","color":"#c22c75","feature_id":"ellalink-1","coordinates":[-22.96085384459116,17.041489374928894]},"geometry":{"type":"MultiLineString","coordinates":[[[-20.430336961483764,21.674407102148695],[-17.035703999999548,20.947172000000176]],[[-13.72491604179678,33.93964008831966],[-12.374916998148738,33.93964008831966],[-9.899918750864702,33.93964008831966],[-7.631920358132023,33.60539511325584]],[[-38.542964866112136,-3.718736532579084],[-36.44989994260901,-0.781386636225587],[-35.09990089896096,0.568578852526193],[-31.04990376801693,3.715978119298069],[-27.85950075469042,7.716632622882817],[-25.649907593424945,11.294709319565477],[-24.2999085497769,14.365653759228442],[-24.074908709168866,14.801154224791581],[-23.399909187344846,16.10232559580297],[-21.59991046248082,19.95262290516439],[-19.59991187929863,22.884654113882444],[-18.449912693968844,24.94136317175375],[-17.662413251840803,27.76358852605777],[-17.47038457928175,28.275606244082983],[-17.0999136503208,28.95155473219332],[-17.19854858529393,29.690264251007914],[-16.64991396970081,31.670513047087127],[-16.08741436818081,32.43331330641721],[-13.72491604179678,33.93964008831966],[-11.47491763512078,36.51238821239364],[-9.449919069648717,37.67887792909206],[-9.112419308736753,37.85358171958824],[-8.869597215129223,37.95721527519206]],[[-23.521209101414858,14.923035560171673],[-23.849908868560828,14.801154224791581],[-24.074908709168866,14.801154224791581]],[[-16.08741436818081,32.43331330641721],[-16.64991396910482,32.52821504536491],[-16.908898160637996,32.647276965637694]]]}},{"type":"Feature","properties":{"id":"gulf2africa-g2a","name":"Gulf2Africa (G2A)","color":"#d1b32a","feature_id":"gulf2africa-g2a-0","coordinates":[49.05989894450997,13.82400971178645]},"geometry":{"type":"MultiLineString","coordinates":[[[49.187929390749275,11.275556936623216],[48.60003980721571,13.601498202276586]],[[54.14808587692784,17.09582718672565],[53.923864160172634,16.534196198259725],[52.65003693815965,15.56116563526334],[48.60003980721571,13.601498202276586],[45.450042038703735,12.834868817846521],[45.12334227014084,10.815963534652534],[45.01088234980864,10.43511874899288]]]}},{"type":"Feature","properties":{"id":"nigeria-cameroon-submarine-cable-system-ncscs","name":"Nigeria Cameroon Submarine Cable System (NCSCS)","color":"#36b449","feature_id":"nigeria-cameroon-submarine-cable-system-ncscs-0","coordinates":[5.613815221846451,2.9887897201358737]},"geometry":{"type":"MultiLineString","coordinates":[[[3.423511810692114,6.439066911484626],[4.050071366831244,4.164912849976942],[5.400070410479286,3.042156042425856],[6.300069772911254,2.817450442654169],[8.10006849777537,2.705081160335761],[9.000067860207336,2.817450442654169],[9.91022721544214,2.933124533518602]]]}},{"type":"Feature","properties":{"id":"san-andres-isla-tolu-submarine-cable-sait","name":"San Andres Isla Tolu Submarine Cable (SAIT)","color":"#c28c2b","feature_id":"san-andres-isla-tolu-submarine-cable-sait-0","coordinates":[-78.7757374397324,10.715014824972707]},"geometry":{"type":"MultiLineString","coordinates":[[[-81.70055036987328,12.584703013279052],[-78.29987029569729,10.41081650540272],[-76.49987157083336,9.967915186974132],[-75.55866223759485,9.49638197998378]]]}},{"type":"Feature","properties":{"id":"lynn-canal-fiber","name":"Lynn Canal Fiber","color":"#45bfb2","feature_id":"lynn-canal-fiber-0","coordinates":[-135.23193605581747,58.90140007130889]},"geometry":{"type":"MultiLineString","coordinates":[[[-135.31389103529182,59.458344430799],[-135.3850809830618,59.30041545947947],[-135.44500093910025,59.23583778263841],[-135.34998100881364,59.082616168069485],[-135.2515410810363,58.961407643090816],[-135.20169111760976,58.80882557674542],[-135.07029121401408,58.68451584667102],[-135.02390124804913,58.59201827449459],[-134.7472914509898,58.551049268231914]]]}},{"type":"Feature","properties":{"id":"hawaii-island-fibre-network-hifn","name":"Hawaii Island Fibre Network (HIFN)","color":"#d2da26","feature_id":"hawaii-island-fibre-network-hifn-0","coordinates":[-156.82008100946626,20.60383337709774]},"geometry":{"type":"MultiLineString","coordinates":[[[-157.55220471967434,20.732751122479872],[-157.1623144288019,20.90143978523765],[-157.02388510728736,21.09335900500387]],[[-156.75972530109388,20.636456177868624],[-156.89688520046363,20.746451785321774]],[[-157.69600461417235,21.277557463680488],[-157.7460045774889,21.173966491361547],[-157.7460045774889,20.89386327374593],[-157.55220471967434,20.732751122479872],[-157.34732486998877,20.562320024196303],[-156.89688520046363,20.562320024196303],[-156.75972530109388,20.636456177868624],[-156.46309551872272,20.782151843998083],[-156.48731490697796,20.58581909604039],[-156.37481498667395,20.480466375975812],[-156.09356518591377,20.269544035929588],[-155.83140598217537,20.03998810568653]],[[-159.36856338706372,21.974943031077807],[-159.1796035256981,21.924671936671945],[-158.84981323336208,21.635297384859552],[-158.45606405653842,21.460269198877302],[-158.22066328843266,21.4634468234482]]]}},{"type":"Feature","properties":{"id":"hawaii-inter-island-cable-system-hics","name":"Hawaii Inter-Island Cable System (HICS)","color":"#c92c40","feature_id":"hawaii-inter-island-cable-system-hics-0","coordinates":[-156.70771642607983,20.782151843998083]},"geometry":{"type":"MultiLineString","coordinates":[[[-157.69600461417235,21.277557463680488],[-157.69600461417235,21.173966491361547],[-157.49981418971396,21.053169495094362],[-157.1623144288019,20.953979036599044],[-157.00733511942963,21.01151286594859],[-156.82481466788994,20.953979036599044],[-156.75357530560598,20.88018534755951],[-156.713095335305,20.782151843998083],[-156.46309551872272,20.782151843998083],[-156.43106554222223,20.58581909604039],[-156.3185656247602,20.480466375975812],[-156.0373152257619,20.269544035929588],[-155.83140598217537,20.03998810568653]],[[-159.36856338706372,21.974943031077807],[-159.2684634605042,21.882085293697696],[-158.84981323336208,21.53068533396254],[-158.3998135521461,21.32123529551186],[-158.1194943034701,21.339697571516076]]]}},{"type":"Feature","properties":{"id":"unisur","name":"Unisur","color":"#af5b39","feature_id":"unisur-0","coordinates":[-55.66534984935991,-35.8489674395507]},"geometry":{"type":"MultiLineString","coordinates":[[[-54.950186836832145,-34.90041602705144],[-55.34988655368113,-35.59302880961419],[-55.79988623489721,-35.95811819864919],[-56.695445600474535,-36.47095527632105]]]}},{"type":"Feature","properties":{"id":"transcan-3","name":"TRANSCAN-3","color":"#d82729","feature_id":"transcan-3-0","coordinates":[-14.846845214219398,28.531593363654576]},"geometry":{"type":"MultiLineString","coordinates":[[[-15.699964642057815,27.99976141196043],[-15.637414686964824,28.194108049098066],[-15.524914766660805,28.29321405801615],[-14.399915563620802,28.68871408880043],[-13.82731596925565,28.863419398977502]]]}},{"type":"Feature","properties":{"id":"northern-lights","name":"Northern Lights","color":"#b3c134","feature_id":"northern-lights-0","coordinates":[-3.5999232138407486,58.881066344862234]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.354957518022662,59.05145739475544],[-3.599923213840749,58.99117670269853],[-3.599923213840749,58.758568944882946],[-3.376583372056712,58.67032899288871]]]}},{"type":"Feature","properties":{"id":"jambi-batam-cable-system-jiba","name":"Jambi-Batam Cable System (JIBA)","color":"#574099","feature_id":"jambi-batam-cable-system-jiba-0","coordinates":[104.00625055693611,0.0067668853559623]},"geometry":{"type":"MultiLineString","coordinates":[[[104.01373700205465,1.065588210350364],[104.00657555670598,0.906050180869095],[104.034625536835,0.793562652607196],[104.03437553701218,0.627825578639147],[104.00625055693611,0.118588418888312],[104.00625055693611,-0.331409329660265],[103.46670093915829,-0.816543192375546]]]}},{"type":"Feature","properties":{"id":"segunda-fos-canal-de-chacao","name":"Segunda FOS Canal de Chacao","color":"#9fa237","feature_id":"segunda-fos-canal-de-chacao-0","coordinates":[-73.32529820833416,-41.906663419836335]},"geometry":{"type":"MultiLineString","coordinates":[[[-73.15529394016345,-41.80693750006321],[-73.2526538711928,-41.87241674679864],[-73.50446369280839,-41.99112728870596]]]}},{"type":"Feature","properties":{"id":"sistem-kabel-rakyat-1malaysia-skr1m","name":"Sistem Kabel Rakyat 1Malaysia (SKR1M)","color":"#b64d26","feature_id":"sistem-kabel-rakyat-1malaysia-skr1m-0","coordinates":[114.34252735258569,5.2141555581242445]},"geometry":{"type":"MultiLineString","coordinates":[[[103.85068066714335,2.29570245694968],[104.40000027800004,2.536507846510839],[105.74999932164808,3.210654701478254],[106.32358289909516,3.381150770036383],[108.17773197622363,4.302952044869047],[108.55236915756022,4.421744870603452],[108.9686493846804,4.24500432398029],[109.79999645259221,2.367912558705407],[110.13749621350416,1.918228780215599],[110.35370606033919,1.520169126642144],[110.47499597441613,1.918228780215599],[110.69999581502417,2.367912558705407],[111.59999517745614,3.042156042425856],[112.49999453988829,3.266814816815666],[113.0683541372569,3.197006076977989],[113.17499406171221,3.715978119298069],[113.39999390232026,4.164912849976942],[114.00741347201858,4.425309062538615],[114.07499342414418,5.061986954416114],[115.64999230840026,5.957818681088533],[116.07431200780823,5.981320525191568],[115.64999230840026,6.069699469736006],[110.69999581502417,5.510071711803246],[107.99999772772827,5.398081130463647],[105.29999964043219,4.613591578862773],[103.72500075617612,4.389285926050993],[103.39521098980225,4.116310078259609]]]}},{"type":"Feature","properties":{"id":"aqualink","name":"Aqualink","color":"#25b35d","feature_id":"aqualink-0","coordinates":[174.71131198496258,-37.8808058594003]},"geometry":{"type":"MultiLineString","coordinates":[[[173.68300119667646,-42.402698756238465],[174.14995086588476,-42.29250328834085],[174.71245046740478,-41.623240762949166],[174.7671204286762,-41.280512963558316]],[[173.50613132197253,-42.51606222990869],[173.6999511846689,-42.789833156754874],[173.24995150345282,-43.44677235710084],[172.63622193822457,-43.53205498106837]],[[174.99747026549426,-40.9191122320591],[174.8249503877089,-40.946959050836256],[174.83800037846402,-41.10579929869014]],[[175.04999905640736,-39.93333487547841],[174.8249503877089,-40.09176946134487],[174.8249503877089,-40.60619258328438],[175.051960226893,-40.862785929902145]],[[174.08333091307907,-39.06666625662341],[174.14995086648068,-38.81782397325074],[174.2624507867848,-38.46634757786361],[174.59995054769675,-37.93590700435146],[174.87183035509463,-37.8013820822191],[174.59995054769675,-37.669239697851395],[174.48745062739283,-37.401610748143824],[174.59995054769675,-37.04328040742407],[174.77046042690606,-36.88418050095063]]]}},{"type":"Feature","properties":{"id":"bt-highlands-and-islands-submarine-cable-system","name":"BT Highlands and Islands Submarine Cable System","color":"#48c1c4","feature_id":"bt-highlands-and-islands-submarine-cable-system-0","coordinates":[-5.759517843572668,58.04737095177362]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.939523681673928,59.279768213277244],[-3.093673573068702,59.241407618692065],[-3.149923533220666,59.18382413213874],[-3.095073572076908,59.1180398759642]],[[-5.028092202112465,55.751841576756895],[-4.985982231943436,55.74730813687772],[-4.943872261774498,55.74277417016672]],[[-4.867302316017409,55.79334124050899],[-4.88388230427209,55.78675194417497],[-4.900462292526589,55.780161533136045]],[[-5.141422121828393,55.643559473635335],[-5.000747221483866,55.65942265518204],[-4.889372300382791,55.69304893491437]],[[-5.019992207850481,55.86941398754465],[-5.041792192407182,55.86400198851978],[-5.063592176963883,55.85858923536828]],[[-5.533421844132155,55.47654965962819],[-5.420921923828137,55.47654965962819],[-5.332101986748973,55.50194290033225]],[[-6.125411424761195,55.63612077746136],[-5.962421540224685,55.58970711313177],[-5.697581727839737,55.56550143569579]],[[-6.089911449909595,55.84675094531904],[-6.098116444097212,55.847244981157914],[-6.106321438284648,55.84773901071764]],[[-5.614571786644756,55.891682498449455],[-5.85822161404094,55.833673555352036],[-5.953831546309956,55.833673555352036]],[[-5.365791962882719,56.01942001909654],[-5.343501978673182,56.01385285953845],[-5.321211994463555,56.00828489747791]],[[-5.669351747838122,56.45584417362218],[-5.556821827555351,56.45584417362218],[-5.475801884950647,56.43776501147151]],[[-6.093961447040632,56.688570261687744],[-6.070281463815686,56.652798872259105],[-6.070281463815686,56.62185065462556]],[[-6.808510940847017,56.50378880151487],[-6.715941006424432,56.46609865687899],[-6.356171261288705,56.58212458237215],[-6.272381320646342,56.58212458237215]],[[-5.24538204818221,56.7225332657585],[-5.2395220523335,56.72205041221932],[-5.233662056484701,56.721567552480295]],[[-5.906461579867268,57.059207937300336],[-5.850171619743573,57.02861361880749],[-5.82043164081172,57.00848292332873]],[[-7.328140572736474,57.10553553922759],[-7.320160578389681,57.09353395774454],[-7.312180584042707,57.08152849001067],[-7.307195587574218,57.07757471896536],[-7.302210591105547,57.073620526498054],[-7.316690580847828,57.049459549954655],[-7.331170570590109,57.02528284471743],[-7.390325528684119,57.02528284471743],[-7.449480486778219,57.02528284471743]],[[-7.274140610990581,57.36669044941733],[-7.038200778132691,57.36669044941733],[-6.79299095184156,57.54483225323761],[-6.692891022753288,57.54483225323761],[-6.581661101549578,57.436323634745634]],[[-7.008370799264489,57.769407150859685],[-6.914620865677761,57.67895376060992],[-7.02233078937509,57.58568513448433],[-7.16335068947518,57.599372952628904]],[[-6.310761293457632,58.20906859046718],[-6.119061429259559,58.136377321810116],[-5.4750718854677,57.97695528254647],[-5.196212083014646,57.934079351013466]]]}},{"type":"Feature","properties":{"id":"c-lion1","name":"C-Lion1","color":"#7dc042","feature_id":"c-lion1-0","coordinates":[18.85106239888476,56.37434079541672]},"geometry":{"type":"MultiLineString","coordinates":[[[24.932476573539617,60.171163188940554],[24.412556941855435,59.7364093840784],[23.850057340335432,59.62282176941042],[23.1750578185115,59.45171731890513],[22.275058456079353,59.222223914844314],[21.15005925303935,58.641677771385005],[20.250059890607382,57.57189027900508],[19.125060687567377,56.469711376547025],[17.325061962703444,55.84318584148108],[15.30006339723147,55.58970711313177],[14.400064034799321,55.33458061322904],[13.500064672367355,54.94878902385559],[12.600065309935387,54.68951871778461],[12.150065628719313,54.29748595281839],[12.037565708415386,54.16597178715178],[12.132485641173277,54.0791774165702]],[[23.1750578185115,59.45171731890513],[22.950057977903466,59.7364093840784],[22.966757966073065,59.82340864139905]]]}},{"type":"Feature","properties":{"id":"far-east-submarine-cable-system","name":"Far East Submarine Cable System","color":"#a8346b","feature_id":"far-east-submarine-cable-system-0","coordinates":[144.4188789214346,53.58378795809737]},"geometry":{"type":"MultiLineString","coordinates":[[[151.2833670653833,59.58333960684468],[151.1999671244645,59.33716441962142],[150.86246736355255,58.99117670269853],[147.59996967473646,56.09502251152735],[143.5499725437925,53.76891056666807],[142.94245297416512,53.57753961709902],[143.5499725437925,53.635715156995076],[154.79996457419256,52.96339810559356],[156.28707352071072,52.8124095088162]]]}},{"type":"Feature","properties":{"id":"isles-of-scilly-cable","name":"Isles of Scilly Cable","color":"#804399","feature_id":"isles-of-scilly-cable-0","coordinates":[-5.992594434900541,50.0268815119827]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.308171295292306,49.919910522553906],[-6.074921460528704,50.022920456254944],[-5.654511758350902,50.043147911894295]]]}},{"type":"Feature","properties":{"id":"new-cross-pacific-ncp-cable-system","name":"New Cross Pacific (NCP) Cable System","color":"#22ad97","feature_id":"new-cross-pacific-ncp-cable-system-0","coordinates":[150.1828860661257,39.04324962041344]},"geometry":{"type":"MultiLineString","coordinates":[[[121.89607788361477,30.935660541111577],[121.61248808391635,30.933567621605523],[121.27498832300438,31.12636933176112],[121.27498832300438,31.510798430049064],[121.39529823837174,31.619800328867754]],[[131.39998115096031,29.1482487910328],[128.69998306366443,26.1593079707739],[127.34998402001638,25.55188275942587],[125.99998497636834,25.348717422116714],[124.19998625150441,24.94136317175375],[122.84998720785636,25.043329056612176],[122.17498768603225,24.99235668767365],[121.80144795065142,24.863504112487785]],[[140.39997477528055,33.565491482352044],[140.17497493467252,33.93964008831966],[140.11872497452055,34.405022750715936],[140.14684995400054,34.69072647741027],[140.14684995400054,34.89859296336222],[139.97546699999984,35.005433000000174]],[[128.24998338244836,30.5144959597591],[128.24998338244836,31.670513047087127],[128.4749832230562,32.8123187832876],[128.92498290427227,34.31215165223547],[128.99949285148878,35.17037876180022]],[[125.99998497636834,30.901396088515508],[124.19998625150441,31.670513047087127],[122.84998720785636,31.86180860227073],[121.94998784542422,31.718374001887323],[121.39529823837174,31.619800328867754]],[[179.99995828233068,47.19740739556967],[172.7999518228328,47.19740739556967],[160.19996074878455,44.05151922873524],[149.39996839960057,38.651811712711336],[143.09997286257644,34.683017659857974],[140.39997477528055,33.565491482352044],[138.59997605041642,32.8123187832876],[136.7999773255523,31.670513047087127],[134.99997860068837,30.901396088515508],[132.74998019460836,30.5144959597591],[131.39998115096031,29.1482487910328],[130.49998178852834,29.344566989489813],[128.24998338244836,30.5144959597591],[125.99998497636834,30.901396088515508],[122.17498768603225,30.853118511880677],[121.92508786246776,30.86475026744717],[121.89393788393856,30.89950835597767],[121.89607788361477,30.935660541111577]],[[-123.96253794783507,45.202232100184204],[-125.09983714216159,45.646541495187385],[-129.5998339543217,45.96024524125342],[-138.5998275786419,46.5823550820958],[-151.1998186526899,47.19740739556967],[-179.99979825051412,47.19740739556967]]]}},{"type":"Feature","properties":{"id":"monet","name":"Monet","color":"#5bba46","feature_id":"monet-0","coordinates":[-40.0931941836019,7.245978255095368]},"geometry":{"type":"MultiLineString","coordinates":[[[-34.64990121774498,0.568578852526193],[-35.99990026139302,-0.781386636225587],[-38.542968459859594,-3.718735129291092]],[[-46.328062944825646,-23.961842897597087],[-44.54989420449707,-25.179443898921058],[-41.399896435985006,-25.33771218660113],[-37.01239954412901,-23.803079640835886],[-31.949728484343677,-18.025284192896695],[-30.14972975947965,-13.697820288632505],[-29.249905043153905,-9.29042430103552],[-31.162403672774964,-4.489307673128955],[-34.64990121774498,0.568578852526193],[-40.499897073553036,7.744889052551447],[-48.59989133544111,15.669513225155248],[-57.59988495976114,20.796306105108872],[-69.29987667137726,25.75470426341523],[-73.3498738023213,27.76358852605777],[-76.94987125204935,27.962503359972466],[-77.84987061448132,27.76358852605777],[-78.74986997691337,27.264711877833996],[-79.64986933934534,26.763586569619914],[-80.08893155227202,26.350584577319996]]]}},{"type":"Feature","properties":{"id":"sea-us","name":"SEA-US","color":"#4eb748","feature_id":"sea-us-0","coordinates":[-150.242675675476,27.388951488009898]},"geometry":{"type":"MultiLineString","coordinates":[[[144.69470173285575,13.464772962370143],[144.89997158744055,13.273238157547594],[145.34997126865645,13.492128176464083],[146.24997063108842,14.038469666260218],[147.14996999352056,14.147583506948735],[151.1999671244645,14.365653759228442],[160.19996074878455,15.669513225155248],[179.99992672230314,18.251816319028222]],[[125.06561063828791,1.378623021535939],[125.99998497636834,1.918228780215599],[126.44998465758441,3.266814816815666],[126.44998465758441,5.061986954416114],[133.19997987582445,9.08033076823294],[137.24997700676838,10.85308969074528],[143.9999722250084,13.054150695298627],[144.69469829535797,13.464777824933044]],[[125.61287587559997,7.079988883160643],[125.99998497636834,5.957818681088533],[126.44998465758441,5.061986954416114]],[[133.19997987582445,9.08033076823294],[133.64997955704033,8.190543417795496],[134.5609408257699,7.531746239289517]],[[137.24997700676838,10.85308969074528],[137.69997668798445,9.967915186974132],[138.06149986937797,9.443922836169385]],[[-118.39945344493313,33.862474868985494],[-120.59984033000157,33.189714664600466],[-122.3998390548656,33.189714664600466],[-127.79983522945767,32.8123187832876],[-138.60310458621126,30.516425505901374],[-147.6030982105313,28.953514579902283],[-152.99981737755394,25.75470426341523],[-157.94981387092994,22.677206196582915],[-158.39981355214593,22.05298561667754],[-158.45606295953138,21.73983373091106],[-158.456063506614,21.635297384859552],[-158.22066328843266,21.4634468234482],[-158.3998135521461,21.268825931479064],[-158.849813233362,21.006499845176737],[-163.799809726738,19.95262290516439],[-172.79980335105813,19.95262290516439],[-179.99979825051412,18.251816319028222]]]}},{"type":"Feature","properties":{"id":"faster","name":"FASTER","color":"#4bb748","feature_id":"faster-0","coordinates":[-152.11059071043016,45.96024524125342]},"geometry":{"type":"MultiLineString","coordinates":[[[138.59997605041642,32.243210016262736],[136.7999773255523,31.09426282763951],[134.99997860068837,30.320465424761444],[131.39998115096031,29.246454972180413],[129.5999824260964,28.95155473219332],[128.24998338244836,28.55704546571133],[122.84998720785636,26.461843796188983],[121.94998784542422,25.75470426341523],[121.46258819070279,25.181712818924378]],[[-124.40833763202653,43.118664098550106],[-125.99983650459365,43.073310783003215],[-129.5998339543217,43.72721479104982],[-138.59982757864174,45.0138336439531],[-151.19981865269,45.96024524125342],[-179.99979825051412,45.96024524125342]],[[140.39997477528055,33.001218522654476],[140.0624750143684,33.93964008831966],[140.39997477528055,34.405022750715936],[140.28747485438052,34.69072647741027],[140.0765375038106,34.852445708846155],[139.95485509060742,34.97657002902234]],[[138.59997605041642,32.243210016262736],[140.39997477528055,33.001218522654476],[143.09997286257644,34.31215165223547],[149.39996839960057,37.589786573603064],[160.19996074878455,42.743713464436695],[172.7999518228328,45.96024524125342],[179.99995828233068,45.96024524125342]],[[136.87399727311598,34.33682825203173],[137.69997668798445,33.189714664600466],[138.59997605041642,32.243210016262736]]]}},{"type":"Feature","properties":{"id":"kerch-strait-cable","name":"Kerch Strait Cable","color":"#36ada8","feature_id":"kerch-strait-cable-0","coordinates":[36.630544281826964,45.36862437776394]},"geometry":{"type":"MultiLineString","coordinates":[[[36.47738839501581,45.356985070824315],[36.67504825499155,45.37200652267839],[36.77084818712606,45.423609710410595]]]}},{"type":"Feature","properties":{"id":"north-west-cable-system","name":"North-West Cable System","color":"#4f479c","feature_id":"north-west-cable-system-0","coordinates":[122.92762263112891,-13.957634157608846]},"geometry":{"type":"MultiLineString","coordinates":[[[130.50000678851072,-12.109122931112692],[130.5001317884223,-11.999142688339566],[130.63208169494754,-11.762596324883583]],[[118.57724023471046,-20.31344226536242],[118.5749902363042,-18.880139975101173],[118.12499055508832,-18.240251410711533],[118.23749047539224,-17.597998996155503],[120.59998880177636,-15.224032284647373],[121.61248808451225,-14.898126357061642],[122.28748760633636,-14.026655889819525],[123.29998688907226,-13.91748446246452],[124.42498609211226,-13.589662250512088],[126.44998465698852,-11.55232519729577],[127.34998401942048,-11.55232519729577],[129.0374828245764,-11.723727283361146],[129.20623270503228,-11.77884724450649],[129.9375821869376,-11.998971512032105],[130.50000678851072,-12.109122931112692],[130.84314154543083,-12.467474336203543]]]}},{"type":"Feature","properties":{"id":"terra-sw","name":"TERRA SW","color":"#63bb45","feature_id":"terra-sw-0","coordinates":[-155.87811075842004,59.33341963679675]},"geometry":{"type":"MultiLineString","coordinates":[[[-154.8997666656926,59.718120043251695],[-154.8763766828532,59.695436046444215],[-154.9435666335578,59.633090759199945],[-155.0451265590462,59.59752775931568],[-155.79356600993748,59.400852717370704],[-155.89473593571194,59.327774303483444],[-155.7591860351611,59.373802346117806],[-155.26495639776326,59.46236377142176],[-154.79356674360832,59.46997939044741],[-154.75274677355685,59.44218602760369]],[[-154.84668670463583,59.70804857154889],[-154.79200674475294,59.52787100202234],[-154.75274677355685,59.44218602760369]],[[-154.85884669571442,59.949183973331124],[-154.85256574446106,59.96241174485079],[-154.84771606848523,59.972621618602275],[-154.70811616737902,60.06032279981195],[-154.55811627364042,60.12887602174943],[-154.51763694605032,60.14198209826014],[-154.4295070107087,60.17915062699834],[-154.39043703937318,60.19468724270353],[-154.3369270786319,60.20036807902232]],[[-153.88047741351608,59.776104342979096],[-153.95606735805794,59.76396060900041],[-154.03575729959164,59.73404564131673],[-154.12325723539544,59.711987750401136],[-154.24512714598293,59.70174290294215],[-154.39200703822138,59.69780251824729],[-154.64737685086385,59.65359910967581],[-154.69512681583097,59.6180780639796],[-154.7545067722656,59.521531420879995],[-154.75274677355685,59.44218602760369]],[[-154.84668670463583,59.70804857154889],[-154.9061160271141,59.75471391016683]],[[-153.88047741351608,59.776104342979096],[-153.95294736034697,59.779688216156124],[-154.04356729386163,59.75687472421307],[-154.0935672571782,59.76710773022677],[-154.10611659384108,59.787212090872806],[-154.1201272376918,59.766317201269565],[-154.16866720207946,59.74738423416073],[-154.3154370943986,59.760813191165234],[-154.47325697861058,59.755303236949786],[-154.64644685154616,59.70689346193012],[-154.8216867229776,59.716718187238634],[-154.9061160271141,59.75471391016683]],[[-151.54424912754024,59.646565622018684],[-152.09981801512188,59.62282176941042],[-152.99981737755394,59.56588346342965],[-153.5451276595526,59.6180780639796],[-153.59107762584054,59.63553746032112],[-153.63213759571596,59.68237455442974]]]}},{"type":"Feature","properties":{"id":"alaska-united-turnagain-arm-auta","name":"Alaska United Turnagain Arm (AUTA)","color":"#3e4b9f","feature_id":"alaska-united-turnagain-arm-auta-0","coordinates":[-149.35712107079758,60.921895945669604]},"geometry":{"type":"MultiLineString","coordinates":[[[-149.7321904569961,61.01569206774275],[-149.63141053093545,60.9696391075957],[-149.48371063929864,60.95361622164202],[-149.35138073638538,60.92045755707341],[-149.1951308510214,60.92197391282362],[-149.0873201492036,60.889302842643474],[-148.98981100165872,60.82829123683605]]]}},{"type":"Feature","properties":{"id":"acs-alaska-oregon-network-akorn","name":"ACS Alaska-Oregon Network (AKORN)","color":"#4c4fa1","feature_id":"acs-alaska-oregon-network-akorn-0","coordinates":[-137.94389964435555,54.73163712377136]},"geometry":{"type":"MultiLineString","coordinates":[[[-151.2916693128509,60.68992891270401],[-151.0416187647601,60.567312045135864],[-150.91661885331126,60.44422832764756],[-151.0416187647601,60.258724767959094],[-151.41919921928584,60.02342960326287],[-151.54424912754024,59.835530750006015],[-151.54424912754024,59.646565622018684],[-152.09981801512188,59.50884868221247],[-152.09981801512188,59.106894957190725],[-151.1998186526899,58.87506831089772],[-146.24982215931382,58.52439396084473],[-139.94982662228978,56.840738642145496],[-139.04982725985772,55.84318584148108],[-137.24982853499378,54.03403825672422],[-134.09983076648172,50.740281893948165],[-127.79983522945767,45.331071073324864],[-125.09983714216159,44.05151922873524],[-124.09993785049973,43.98220183349397]],[[-151.2916693128509,60.68992891270401],[-151.2916693128509,60.84842055964986],[-150.23341008926553,61.157291052768],[-149.8584103643921,61.217558335568484]]]}},{"type":"Feature","properties":{"id":"adria-1","name":"Adria-1","color":"#65b545","feature_id":"adria-1-0","coordinates":[19.252270468971375,41.166242985291646]},"geometry":{"type":"MultiLineString","coordinates":[[[19.91959012471538,39.61953623629301],[19.57506036878345,39.78482855593699],[19.012560767263448,40.04369219283004],[18.900060846959338,40.38732029077508],[19.125060687567377,41.0693404382162],[19.45006045733454,41.31691028026608],[19.125060687567377,41.40772623743595],[18.11256140483148,42.41235450073586],[18.10651140911737,42.64207795542642]]]}},{"type":"Feature","properties":{"id":"africa-coast-to-europe-ace","name":"Africa Coast to Europe (ACE)","color":"#8cc63f","feature_id":"africa-coast-to-europe-ace-0","coordinates":[-15.412392583191341,7.410105237917242]},"geometry":{"type":"MultiLineString","coordinates":[[[-17.445713405352947,14.686594841994992],[-17.54991333213278,13.92930384327183],[-17.099913650916793,12.175887185507976],[-16.64991396910482,11.735650161405832],[-16.199914287888834,11.680570534838436],[-15.791145687384237,11.774131923775238]],[[18.449961165814393,-33.69332014378617],[17.55006180331148,-33.55534420877606],[16.20006275966344,-32.61276000573574],[14.850063716015397,-30.30995334464681],[11.700065947503239,-23.49392244589784],[10.350066903855378,-18.026426383713453],[10.350066903855378,-10.620064860363238],[9.000067860207336,-6.616650693475355],[8.550068178991262,-4.825692499217419],[6.987569285284264,0.118588418888312],[6.733269466028674,0.333286471885964]],[[7.200069135343221,1.018534216615524],[8.550068178991262,0.793562652607196],[9.454267538448212,0.394465191855477]],[[7.200069135343221,1.468426767331968],[9.000067860207336,1.468426767331968],[9.768227316036105,1.860150409321811]],[[3.423511810692114,6.439066911484626],[2.475072482575348,4.164912849976942],[2.25007264196731,3.82823430332105]],[[2.440112507341202,6.356673335458259],[1.800072960751236,5.061986954416114],[1.800072960751236,3.82823430332105]],[[-0.204315619320974,5.558285889905858],[-0.674925285936628,3.279837005484997],[-0.674925285936628,2.830478071896748]],[[-10.797188115230739,6.300378530564464],[-12.599916838160784,4.613591578862773]],[[-13.238096386068461,8.485442435793914],[-14.849915244240792,6.852191098754328]],[[-15.74991460667276,7.744889052551447],[-13.703826056141079,9.51343460136282]],[[-17.99991301275286,13.492128176464083],[-17.0999136503208,13.492128176464083],[-16.58136401766616,13.456136894896968]],[[-15.978284444893506,18.08386849170685],[-17.0999136503208,18.251816319028222],[-18.449912693968844,18.251816319028222]],[[-4.338542690595681,47.81102015174913],[-5.849921619920758,47.65407102366078],[-7.649920344784692,46.890762878622326],[-10.799918113296759,43.401144973153954],[-10.799918113296759,39.6983233549332],[-10.349918432080775,39.00237890905839],[-9.899918750864702,38.29952060596925],[-11.249917794512742,36.51238821239364],[-11.699917475728817,35.419780517080355],[-13.274916359984806,32.052708023486204],[-14.174915722416772,29.73606949729215],[-14.737415323936775,28.161052262220792],[-15.299914925456777,26.964304734562898]],[[-9.33155915349599,38.690161972355526],[-9.899918750864702,38.29952060596925]],[[2.475072482575348,4.164912849976942],[5.400070410479286,2.592701464601932],[6.300069772911254,2.367912558705407],[7.200069135343221,1.468426767331968],[7.200069135343221,1.018534216615524],[6.733269466028674,0.333286471885964]],[[-16.518014062543934,28.059088061264806],[-16.199914287888834,27.564309487941923],[-15.299914925456777,26.964304734562898],[-17.0999136503208,22.884654113882444],[-18.449912693968844,19.95262290516439],[-18.449912693968844,16.534196198259725],[-17.99991301275286,15.23578178303578],[-17.445713405352947,14.686594841994992],[-17.99991301275286,13.92930384327183],[-17.99991301275286,13.492128176464083],[-18.449912693968844,11.735650161405832],[-17.0999136503208,8.635699417327467],[-15.74991460667276,7.744889052551447],[-14.849915244240792,6.852191098754328],[-12.599916838160784,4.613591578862773],[-10.799918113296759,2.817450442654169],[-5.399921938704683,2.817450442654169],[-4.387422655968697,3.266814816815666],[-4.026242911831877,5.323508791824841],[-3.824923054448695,3.266814816815666],[-3.149923532624674,2.817450442654169],[-0.674925285936628,2.830478071896748],[1.575073120143199,3.82823430332105],[2.25007264196731,3.82823430332105]]]}},{"type":"Feature","properties":{"id":"alaska-united-east-au-east","name":"Alaska United East (AU-East)","color":"#d88227","feature_id":"alaska-united-east-au-east-0","coordinates":[-135.49180070038943,55.29638226769841]},"geometry":{"type":"MultiLineString","coordinates":[[[-146.35343293589426,61.13035646305128],[-146.56554278027536,61.12116226806669],[-146.6739427007454,61.073511490289796],[-146.82907258693103,60.97605861690985],[-146.89923253545666,60.86794329208306],[-147.08317240050522,60.811007238095044],[-147.5216020788418,60.7882580984503],[-147.88996180858678,60.779652829598795],[-148.0316617046257,60.77038115412248],[-148.21178157247675,60.79373829860351],[-148.3284314868941,60.79373829860351],[-148.39855143544906,60.7967634749319],[-148.52155134520754,60.781322325046894],[-148.68473122548716,60.77302768780248]],[[-135.89982949134574,55.84318584148108],[-134.46653050670835,56.03358023911155],[-134.41545169445124,56.466474307352364],[-134.52473046547877,56.84950003985658],[-134.61379219497496,57.01007188259318],[-134.74495930054152,57.23773670488086],[-134.76370924947742,57.495568897564894],[-134.8090152646848,57.594609061615635],[-134.8591152291936,57.734649479402336],[-134.88098521370068,58.012978928938054],[-134.95979129568082,58.1072095322198],[-134.96702128978026,58.197824452869256],[-134.98333014060265,58.28982779937171],[-135.00109512861368,58.365509963814],[-135.00032126534904,58.428990502797014],[-134.92327132187842,58.45076363488806],[-134.84319138063083,58.41219086765235],[-134.76047144132005,58.3461664188903],[-134.7013914846653,58.339527257678945],[-134.60315155674115,58.35644022577092],[-134.54221160145104,58.348422924730585],[-134.4068617007534,58.299576750775365]],[[-122.31576057165005,47.82410083595476],[-122.44105402626471,47.87477916178281],[-122.46918400633709,47.9219300503356],[-122.56761643660668,47.959608461901695],[-122.62387139675504,48.034889597039694],[-122.65199137683463,48.11006090495571],[-122.84983873608158,48.23806972100289],[-123.74983809851364,48.29423569031507],[-124.6498374609456,48.5555277566182],[-125.09983714216186,48.5555277566182],[-131.39983267918572,50.740281893948165],[-134.5498304476977,54.03403825672422],[-135.89982949134574,55.84318584148108],[-138.14982789742575,57.086065975868046],[-144.89982311566578,58.52439396084473],[-147.59982120296186,59.45171731890513],[-147.98004174249772,59.84949183975676],[-147.8607118300467,59.95730042115305],[-147.76134190295159,60.01588909309458],[-147.72926192648777,60.10213978192451],[-147.61520201017026,60.23766915823624],[-147.53332125007117,60.3044763487988],[-147.45905212473298,60.47899019642459],[-147.47692129002536,60.59031613489887],[-147.63376199655332,60.62019746535941],[-147.86442101551697,60.620776363754125],[-148.0361017013681,60.665011707179026],[-148.0361017013681,60.69939513380331],[-148.08639166447182,60.75819549198801],[-148.1958207807503,60.78210822700621],[-148.32580148882363,60.780941570583],[-148.41354142445135,60.78620827245595],[-148.51818134767996,60.77224156315422],[-148.68473122548716,60.77302768780248]]]}},{"type":"Feature","properties":{"id":"alaska-united-west-au-west","name":"Alaska United West (AU-West)","color":"#30b995","feature_id":"alaska-united-west-au-west-0","coordinates":[-136.29325737407103,53.97488465252328]},"geometry":{"type":"MultiLineString","coordinates":[[[-131.64788372493697,55.34196841314809],[-131.62786373962516,55.18053443385063],[-131.74758365179002,54.99362892777975],[-131.62483251979376,54.81936191424915],[-131.8498323604017,54.55925876578231],[-133.19983140404966,54.55925876578231],[-134.99983012891377,54.428581396018195],[-136.34982917256173,54.03403825672422]],[[-149.4476706657402,60.110049313261904],[-149.37169494834598,59.906069924574304],[-148.04982088417785,59.45171731890513],[-145.79982247809784,58.52439396084473],[-139.4998269410738,56.840738642145496],[-138.59982757864174,55.84318584148108],[-136.34982917256173,54.03403825672422],[-133.19983140404966,50.740281893948165],[-127.79983522945767,47.50228998113266],[-125.09983714216159,46.42748958617894],[-123.92376939189971,46.16522099122738]]]}},{"type":"Feature","properties":{"id":"alba-1","name":"ALBA-1","color":"#e11e25","feature_id":"alba-1-0","coordinates":[-71.07810156992379,15.64840215387195]},"geometry":{"type":"MultiLineString","coordinates":[[[-75.82892204614029,20.029343742363547],[-76.0498718896173,19.529070924350908],[-76.72487141144131,18.678647022154717],[-77.10324114340065,18.398661383088054]],[[-75.71237212870533,19.96373301197173],[-75.59987220840131,19.104405475930452],[-75.14987252718532,18.251816319028222],[-71.09987539624129,15.669513225155248],[-67.94987762772922,12.615395567393394],[-67.04987826529725,11.294709319565477],[-66.88962837881974,10.603529760437182]]]}},{"type":"Feature","properties":{"id":"aletar","name":"Aletar","color":"#57b947","feature_id":"aletar-0","coordinates":[32.773344583317,33.17888888608089]},"geometry":{"type":"MultiLineString","coordinates":[[[29.8935130590948,31.191465077638455],[30.150052877359567,31.670513047087127],[35.55004905195155,34.775476075756664],[35.89779880560243,34.89170328553848]]]}},{"type":"Feature","properties":{"id":"alonso-de-ojeda","name":"Alonso de Ojeda","color":"#95ad3b","feature_id":"alonso-de-ojeda-0","coordinates":[-69.40457564357696,12.14518035609816]},"geometry":{"type":"MultiLineString","coordinates":[[[-69.87858626141403,12.414622452999883],[-69.74987635259325,12.285833556268383],[-69.07487683076923,12.010882360458767],[-68.89264695986267,12.09043961830498]]]}},{"type":"Feature","properties":{"id":"alpal-2","name":"Alpal-2","color":"#b55927","feature_id":"alpal-2-0","coordinates":[2.700072323183203,38.08046938787106]},"geometry":{"type":"MultiLineString","coordinates":[[[2.901442180531094,36.80021989664316],[2.700072323183203,37.23235432155614],[2.700072323183203,38.651811712711336],[2.970972131275422,39.35484412819336]]]}},{"type":"Feature","properties":{"id":"americas-i-north","name":"Americas-I North","color":"#9b4d9d","feature_id":"americas-i-north-0","coordinates":[-70.13277581463565,27.17302359454685]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.93708976201641,18.372992194090898],[-64.79987985921724,18.891661584303154],[-65.02487969982519,20.796306105108872],[-66.82487842468922,23.7112581424843],[-69.29987667137726,26.763586569619914],[-73.3498738023213,28.75448641587171],[-76.0498718896173,28.55704546571133],[-77.39987093326533,28.359233526108557],[-79.64986933934534,27.76358852605777],[-80.3942513282677,27.638731771078668]]]}},{"type":"Feature","properties":{"id":"amerigo-vespucci","name":"Amerigo Vespucci","color":"#b59a30","feature_id":"amerigo-vespucci-0","coordinates":[-68.57712870433576,12.070074629429218]},"geometry":{"type":"MultiLineString","coordinates":[[[-68.27663739624963,12.151067198563975],[-68.51237722924922,12.065895273570327],[-68.89264695986267,12.09043961830498]]]}},{"type":"Feature","properties":{"id":"antillas-1","name":"Antillas 1","color":"#3e60ac","feature_id":"antillas-1-0","coordinates":[-68.42888898863059,18.59865513032633]},"geometry":{"type":"MultiLineString","coordinates":[[[-70.16178606079258,18.6993638412382],[-69.69362639244127,18.144943564296213],[-69.29987667137726,17.931002277731235],[-68.51237722924922,17.931002277731235],[-68.28737738864127,18.251816319028222],[-68.43815728182744,18.621371316104735],[-68.17487746833726,18.785187974742005],[-67.49987794651324,19.104405475930452],[-67.04987826529725,18.998067525948983],[-66.48737866377725,18.785187974742005],[-66.01686899768664,18.44203883389064]]]}},{"type":"Feature","properties":{"id":"seax-1","name":"SEAX-1","color":"#61a042","feature_id":"seax-1-0","coordinates":[104.39998912954832,1.918183966993337]},"geometry":{"type":"MultiLineString","coordinates":[[[103.8506842608908,2.295706828435153],[104.32889093295785,2.140106066877365],[104.40000027800004,1.918228780215599],[104.28810035727116,1.468426767331968],[104.17793012281672,1.263407170707374],[104.13781784654564,1.263407170707374]],[[103.94648497427453,1.327257988673153],[104.13781784654564,1.263407170707374]],[[104.01663465625194,1.066798937337329],[104.0156255502948,1.223182297279849],[104.13781784654564,1.263407170707374]]]}},{"type":"Feature","properties":{"id":"apollo","name":"Apollo","color":"#d36f27","feature_id":"apollo-0","coordinates":[-38.468446590652974,41.36699126032328]},"geometry":{"type":"MultiLineString","coordinates":[[[-72.87218414072115,40.800580995045266],[-71.09987539624129,40.215724060833985],[-68.39987730894529,40.55848045058698],[-61.19988240948919,40.72920412488655],[-50.39989006030513,42.07923561816413],[-39.59989771112098,45.0138336439531],[-23.399909187344846,49.000334389463426],[-16.199914287888834,49.58728674004685],[-10.799918113296759,50.167261162927154],[-8.099920026000767,50.454639125893955],[-5.399921938704683,50.88245364291024],[-4.544402544762735,50.82820142743812]],[[-74.04709330840446,40.12349265823708],[-71.09987539624129,39.6983233549332],[-68.39987730894529,39.35121757117122],[-61.19988240948919,38.29952060596925],[-50.39989006030513,38.475881348138756],[-39.59989771112098,41.0693404382162],[-23.399909187344846,45.331071073324864],[-16.199914287888834,45.96024524125342],[-5.399921938704683,49.14772788577412],[-4.499922576272716,49.000334389463426],[-3.459883313046331,48.73055297916871]]]}},{"type":"Feature","properties":{"id":"arcos","name":"ARCOS","color":"#51489d","feature_id":"arcos-0","coordinates":[-75.07080241424389,11.272769612255498]},"geometry":{"type":"MultiLineString","coordinates":[[[-74.19504320359538,22.62989167911265],[-74.4748730053613,22.677206196582915],[-74.58737292566532,22.884654113882444],[-74.4748730053613,23.298598065875897],[-74.4748730053613,23.7112581424843],[-74.92487268657729,24.225251377401914],[-75.52590226080234,24.403328403350237],[-75.77889084339483,24.410331177006306],[-76.49987157083336,24.53265756616073],[-76.94987125204935,24.94136317175375],[-77.34020097553613,25.067217613601834],[-77.84987061448132,25.145210227401346],[-79.19986965812936,25.75470426341523],[-79.64986933934534,25.75470426341523],[-80.16222149850138,25.933206978469332]],[[-72.11940467399724,21.85108832553302],[-72.44987443988924,22.469443964829516],[-73.3498738023213,22.884654113882444],[-73.79987348353728,22.884654113882444],[-74.19504320359538,22.62989167911265]],[[-66.01686899709074,18.441839618642867],[-66.48737866377725,18.625351394064932],[-67.04987826529725,18.678647022154717],[-67.38737802620922,18.465364393137126],[-67.61237786681725,17.82393441253792],[-68.39987730894529,13.92930384327183],[-68.89264695986267,12.09043961830498],[-69.07487683076923,11.955858207114732],[-69.74987635259325,12.175887185507976],[-70.12819608458797,12.355002950040006],[-70.42487587441727,12.175887185507976],[-70.20431603066386,11.708782466419155],[-70.42487587441727,11.735650161405832],[-70.6498757150253,12.175887185507976],[-71.32487523684924,12.615395567393394],[-71.99987475867334,12.615395567393394],[-72.67487428049728,12.175887185507976],[-72.89987412110531,11.735650161405832],[-72.95270408368005,11.483114759293935],[-73.3498738023213,11.735650161405832],[-73.79987348353728,11.735650161405832],[-74.69987284596934,11.515266158038768],[-75.37487236779336,11.073982781226615],[-75.50573227509088,10.38680745163333],[-76.0498718896173,10.41081650540272],[-77.41987091969315,9.67231131777662],[-77.93346055586147,9.125435434149097],[-78.29987029629338,9.67231131777662],[-79.08736973782534,9.746236973759974],[-79.75352926591172,9.437623338483982],[-80.09986902056123,9.746236973759974],[-82.34986742664132,9.967915186974132],[-83.03765938887449,9.988597517410145],[-83.2498667890733,11.294709319565477],[-83.47486662968133,11.735650161405832],[-83.77154885044065,11.991681428073646],[-83.47486662968133,12.175887185507976],[-83.24986678907348,12.615395567393394],[-83.24986678907348,13.492128176464083],[-83.39644912564061,14.016107024140217],[-83.02486694846526,14.365653759228442],[-82.91236702816133,15.018578573757472],[-83.2498667890733,15.452760959322058],[-83.47486662968133,15.452760959322058],[-83.77681884657423,15.26131021390879]],[[-72.11940467399724,21.85108832553302],[-71.99987475867334,21.635297384859552],[-70.76237563532924,20.375041253465433],[-70.6911856857609,19.799436355797177],[-70.19987603380923,19.95262290516439],[-69.29987667137726,19.740987365524937],[-68.62487714955324,19.104405475930452],[-68.51237722924922,18.891661584303154],[-68.43815728182744,18.621371316104735],[-68.17487746833726,18.891661584303154],[-67.49987794651324,19.210675111642853],[-67.04987826529725,19.104405475930452],[-66.48737866377725,18.838433217733183],[-66.01686899709074,18.441839618642867]],[[-83.77681884657423,15.26131021390879],[-83.69986647028928,15.669513225155248],[-84.14986615150535,16.10232559580297],[-85.0498655139375,16.10232559580297],[-85.95469724872682,15.915243688695657],[-86.39986455758554,16.10232559580297],[-86.84986423880153,16.10232559580297],[-87.9461557876504,15.844981598742601],[-88.19986328244948,15.886035719079029],[-88.59713531004529,15.727236638721036],[-88.42486312305734,16.10232559580297],[-88.08736336214537,16.534196198259725],[-87.97486344184135,16.965102599435927],[-88.1821856144821,17.49638520483909],[-87.7498636012335,17.82393441253792],[-87.52486376062537,18.251816319028222],[-87.29986392001751,19.529070924350908],[-87.29986392001751,19.95262290516439],[-87.46353614173474,20.212733353176567],[-87.18736399971331,20.05833455139623],[-86.84986423880153,20.163975031975873],[-86.62486439819331,20.375041253465433],[-86.62486439819331,20.796306105108872],[-86.76758665233304,21.09572879236739],[-86.51236447788929,21.216397899942],[-86.17486471697732,21.425997872385402],[-85.83736495666136,21.635297384859552],[-84.82486567332928,23.298598065875897],[-83.2498667890733,24.32780311165181],[-80.99986838299347,24.32780311165181],[-80.5498687017773,24.73717827217609],[-79.9873691002574,25.348717422116714],[-80.16222149850138,25.933206978469332]]]}},{"type":"Feature","properties":{"id":"asia-america-gateway-aag-cable-system","name":"Asia-America Gateway (AAG) Cable System","color":"#69479c","feature_id":"asia-america-gateway-aag-cable-system-0","coordinates":[132.0158316130375,16.385960718226247]},"geometry":{"type":"MultiLineString","coordinates":[[[-179.99979825051412,19.104405475930452],[-172.79980335105813,20.796306105108872],[-163.799809726738,20.796306105108872],[-158.849813233362,21.111485983488812],[-158.3998135521461,21.478351011075993],[-158.24204999203212,21.54876173571662],[-158.34356194506245,21.73983373091106],[-158.2873136318419,22.05298561667754],[-157.94981387092994,22.469443964829516],[-152.99981737755394,24.94136317175375],[-147.6030982105313,28.1630268819071],[-138.60310458621126,29.738014316088],[-127.79983522945767,32.43331330641721],[-122.39983905486586,34.867831005273345],[-120.8472016490899,35.367078251717096]],[[100.93057273577533,13.174371211662239],[100.68750290737216,12.834868817846521],[100.46250306616822,12.175887185507976],[100.3500031464602,11.294709319565477],[101.02500266828413,9.52441134501949],[103.27500107496003,7.967776882259704],[105.29999964043219,6.628746603597807],[107.99999772772827,5.957818681088533]],[[179.99992672230314,19.104405475930452],[160.19996074878455,16.534196198259725],[151.1999671244645,15.23578178303578],[147.14996999352056,14.365653759228442],[146.24997063108842,14.147583506948735],[145.34997126865645,13.54681947716878],[144.89997158744055,13.327979290563553],[144.809541651502,13.549094363148988],[143.9999722250084,13.492128176464083],[143.09997286257644,13.710817738179635],[138.59997605041642,14.801154224791581],[131.39998115096031,16.534196198259725],[125.99998497636834,18.251816319028222],[122.39998752664029,18.891661584303154],[121.09574530038982,19.019148713619977],[120.42074577856589,18.593173653796047],[120.14998912056028,16.965102599435927],[120.38973895071938,16.582592330693284],[119.92498927995224,16.965102599435927],[116.99999135204831,18.251816319028222],[115.3124925474883,19.529070924350908],[114.52499310536027,20.375041253465433],[113.79374362338419,21.635297384859552],[113.94911351331866,22.271493895850078],[113.73749366323221,21.635297384859552],[113.51249382262418,20.796306105108872],[113.39999390232026,18.251816319028222],[111.14999549624025,12.615395567393394],[110.69999581502417,9.967915186974132],[109.34999677137613,7.29876275445952],[107.99999772772827,5.957818681088533],[106.64999868408005,5.061986954416114],[105.74999932164808,4.613591578862773],[103.85068066714335,2.29570245694968],[104.40000027800004,2.255504211923801],[104.77306230253555,1.961481175550864],[104.68115007883117,1.468426767331968],[104.28790035741287,1.215621515287768],[104.15439045199251,1.197800481146747],[103.98701057056589,1.389451396800233]],[[109.34999677137613,7.29876275445952],[112.94999422050827,5.659359572411489],[114.29999326475222,5.061986954416114],[114.88563284987971,4.926762452886689]],[[107.07919838003114,10.342138429683002],[107.77499788712005,9.746236973759974],[108.6749972495522,9.52441134501949],[110.24999613380828,9.746236973759974],[110.69999581502417,9.967915186974132]]]}},{"type":"Feature","properties":{"id":"atlantic-crossing-1-ac-1","name":"Atlantic Crossing-1 (AC-1)","color":"#50429a","feature_id":"atlantic-crossing-1-ac-1-0","coordinates":[-31.533730162850908,50.793170984366824]},"geometry":{"type":"MultiLineString","coordinates":[[[-72.91227411232106,40.77352073429003],[-71.09987539624129,40.64389687373837],[-68.39987730894529,41.40772623743595],[-61.19988240948919,42.743713464436695],[-50.39989006030513,45.172673246984274],[-39.59989771112098,48.10677570919628],[-23.399909187344846,53.50209788266426],[-16.199914287888834,55.58970711313177],[-8.999919388432733,59.222223914844314],[-5.399921938704683,59.79305890746809],[-1.799924488976633,59.56588346342965],[1.800072960751236,58.641677771385005],[5.400070410479286,56.469711376547025],[7.650068816559295,55.07780072164767],[8.10006849777537,54.94878902385559],[8.383368297083154,54.89841940447099]],[[-5.698461727216356,50.07870033214287],[-6.299921301136742,50.167261162927154],[-8.099920026000767,50.167261162927154],[-10.799918113296759,49.87814473780419],[-16.199914287888834,49.000334389463426],[-23.399909187344846,47.80541217589291],[-39.59989771112098,43.72721479104982],[-50.39989006030513,41.0693404382162],[-61.19988240948919,40.04369219283004],[-68.39987730894529,40.215724060833985],[-71.09987539624129,40.04369219283004],[-72.91227411232106,40.77352073429003]],[[8.383368297083154,54.89841940447099],[8.10006849777537,54.81936191424915],[7.200069135343221,54.55925876578231],[5.400070410479286,53.76891056666807],[4.500071048047319,53.23359531864929],[4.275071207439282,52.827662548128515],[4.38757112774321,52.62326141852725],[4.656810937011429,52.48640042521352],[4.275071207439282,52.48646132010029],[3.600071685615352,52.356869357572975],[3.150072004399278,52.14259270367212],[2.475072482575348,51.586833980054095],[1.46147320061859,50.9810239706491],[0.900073598319269,50.5262123614087],[7.4235887302e-05,50.167261162927154],[-2.249924170192707,50.022920456254944],[-3.599923213840749,49.87814473780419],[-4.499922576272716,49.805593628808026],[-5.399921938704683,49.87814473780419],[-5.698461727216356,50.07870033214287]]]}},{"type":"Feature","properties":{"id":"atlas-offshore","name":"Atlas Offshore","color":"#5ab946","feature_id":"atlas-offshore-0","coordinates":[1.2484415384738352,37.703808759606545]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.035761488270031,35.470615921385686],[-5.849921619920758,35.78566189952622],[-5.624921779312721,35.83127933955618],[-4.499922576272716,36.1498667868178],[-2.249924170192707,36.24065523321488],[2.25007264196731,38.122730108392204],[4.050071366831244,39.00237890905839],[5.062570648971421,40.04369219283004],[5.17507056987125,41.74435878948223],[5.372530429989069,43.29362778902908]]]}},{"type":"Feature","properties":{"id":"australia-japan-cable-ajc","name":"Australia-Japan Cable (AJC)","color":"#46bfb2","feature_id":"australia-japan-cable-ajc-0","coordinates":[157.2557199362583,0.48206827081266507]},"geometry":{"type":"MultiLineString","coordinates":[[[136.87399727311598,34.33682825203173],[137.69997668798445,34.12610104005753],[138.59997605041642,34.21917770495358],[139.4999754122525,34.57501887961886],[139.9218501133925,34.76007352296522],[140.06247501377248,34.89859296336222],[140.10823235209364,34.96779987634099],[140.06247501377248,35.01384769751837],[139.97546699999984,35.005433000000174]],[[151.22848710426095,-33.882038650285516],[151.2450870925013,-33.80891358201858],[151.2450870925013,-33.737123050977864],[151.94493746911763,-33.62464858335051],[154.8695669085838,-31.85146566557725]],[[148.49996903716843,13.710817738179635],[147.14996999352056,13.92930384327183],[146.24997063108842,13.92930384327183],[145.34997126865645,13.710817738179635],[144.8081264058416,13.543635828763595],[144.8081264058416,13.543635828763595],[144.8081264058416,13.543635828763595],[145.34997126865645,13.054150695298627],[146.24997063108842,12.615395567393394],[147.14996999352056,12.615395567393394],[148.49996903716843,13.273238157547594]],[[136.87399727311598,34.33682825203173],[137.69997668798445,33.28381101905092],[138.59997605041642,32.62301664000789],[140.84997445649643,31.670513047087127],[143.5499725437925,30.901396088515508]],[[139.97546699999984,35.005433000000174],[140.16091244403847,34.89859296336222],[140.1749749340766,34.69072647741027],[140.17497493467252,34.405022750715936],[140.28747485497644,33.93964008831966],[142.19997350014447,32.8123187832876],[143.5499725437925,30.901396088515508],[147.59996967473646,23.298598065875897],[148.9499687183845,16.534196198259725],[148.49996903716843,13.710817738179635],[148.49996903716843,13.273238157547594],[151.1999671244645,9.967915186974132],[153.44996553054452,8.190543417795496],[156.1499636178406,4.164912849976942],[157.49996266148847,-0.331409329660265],[158.3999620239206,-3.029995968008661],[159.97496090817668,-4.825692499217419],[161.99995947364866,-6.616650693475355],[162.89995883608063,-8.401139048122838],[163.3499585172967,-10.17745743036107],[162.89995883608063,-13.698987269610743],[160.19996074878455,-18.880139975101173],[158.3999620239206,-25.540896076259312],[157.04996298027257,-28.743810281149894],[154.8695669085838,-31.85146566557725],[151.97926731750607,-33.691323153004866],[151.22848710426095,-33.882038650285516]]]}},{"type":"Feature","properties":{"id":"apcn-2","name":"APCN-2","color":"#29b14a","feature_id":"apcn-2-0","coordinates":[124.31383246990738,23.34960115952398]},"geometry":{"type":"MultiLineString","coordinates":[[[140.75095452664317,36.79060054148884],[141.1874742174084,35.77425344590863],[141.07497429710446,35.408319788563304],[140.96247437620465,35.163436337416215],[140.3437248151284,34.97160644824122],[140.06247501377248,34.96776525378359],[139.95485509060742,34.965046603583694],[140.04841252373456,34.84090484813936],[140.23122489422857,34.679162981906806],[140.28747485497644,34.393419492403375],[139.83747517376037,33.927972678693564],[139.72497525345642,32.421443555350706],[139.04997573163232,30.889328974889438],[137.69997668798445,29.91906305661853],[134.99997860068837,29.135966407362506],[128.69998306366443,25.944535413791687],[127.34998402001638,25.33600821718872],[125.99998497636834,25.132479722461383],[125.09998561393637,25.132479722461383],[123.74998657028833,25.43764443864878],[122.84998720785636,25.640659590796915],[121.94998784542422,25.539194978687103],[121.46258819070279,25.168986122701572],[121.94998784542422,25.2342865621001],[122.28748760633636,24.928611492263457],[122.62498736724832,24.007054825363046],[122.17498768603225,22.45644844059945],[121.02775554672928,21.758259099599318],[120.12788799225589,21.758259099599318],[118.79999007691224,22.19628282803044],[118.34999039569617,22.40445416506672],[117.2812411528083,22.87169786996185],[116.67753158048176,23.342095886292725],[116.77499151144026,22.45644844059945],[116.54999167083223,20.783159233732995],[115.64999230840026,18.238460810952724],[114.7499929459683,14.787557926772921],[114.29999326475222,13.040451242220165],[113.39999390232026,9.954064678408844],[111.59999517745614,7.730954611330002],[109.12499693076828,5.943831970446426],[108.44999740894416,5.496074035021858],[107.99999772772827,5.160032981867319],[107.09999836529612,4.599574515521482],[105.74999932164808,3.814203076255083],[104.96249987952004,2.803404866588448],[104.48462521805108,1.454368851373345],[104.28790035741287,1.285767245880394],[104.15918044859939,1.197018152576039],[103.89502063573258,1.295434785911349]],[[103.89502063573258,1.309493642625741],[104.19697042182851,1.315741998126226],[104.28790035741287,1.36999455336686],[104.34425031749407,1.468426767331968],[104.62500011860807,2.367912558705407],[103.95000059678415,3.491423322320592],[103.38789161939158,4.128192842398844],[103.95000059678415,4.0527020972683],[107.99999772772827,7.075530930004602],[108.44999740894416,7.744889052551447],[109.79999645259221,9.967915186974132],[110.69999581502417,12.615395567393394],[113.17499406171221,18.251816319028222],[113.39999390232026,20.796306105108872],[113.68124370308026,21.635297384859552],[113.94911351331866,22.271493895850078],[114.24379330456497,21.84429407917369],[115.19999262718419,21.32123529551186],[116.54999167083223,21.111485983488812],[118.79999007691224,21.425997872385402],[121.02775554672928,21.24799675992802],[122.84998720785636,21.425997872385402],[123.74998657028833,22.05298561667754],[124.6499859327203,24.12261698700344],[124.81873581317637,25.55188275942587],[124.98748569363227,26.1593079707739],[124.6499859327203,30.5144959597591],[122.84998720785636,31.670513047087127],[121.94998784542422,31.622627415989587],[121.39529823837174,31.619800328867754],[121.94998784542422,31.81402180002269],[122.84998720785636,32.052708023486204],[124.19998625150441,32.052708023486204],[128.58279314668286,31.15762634730359],[129.1499827448803,30.901396088515508],[130.49998178852834,29.73606949729215],[132.74998019460836,29.540507745394493],[134.99997860068837,29.540507745394493],[137.69997668798445,30.320465424761444],[139.04997573163232,31.09426282763951],[140.39997477528055,32.43331330641721],[142.4249733401566,35.05222991093673],[142.42497334075233,35.78566189952622],[141.97497365894054,36.51238821239364],[140.75095452664317,36.801861372486805]],[[128.58279314668286,31.15762634730359],[128.4749832230562,31.670513047087127],[128.69998306366443,32.8123187832876],[129.0374828245764,34.31215165223547],[128.99949285148878,35.17037876180022],[129.26248266518442,34.31215165223547],[129.1499827448803,32.8123187832876],[128.92498290427227,31.670513047087127],[129.1499827448803,30.901396088515508]],[[114.7499929459683,14.801154224791581],[116.99999135204831,13.92930384327183],[118.79999007691224,13.710817738179635],[120.14998912056028,13.601498202276586],[121.06600847164388,13.762418337904428],[120.14998912056028,13.3827080361257],[118.79999007691224,13.273238157547594],[116.99999135204831,13.054150695298627],[115.64999230840026,12.944533868662969],[114.7499929459683,12.944533868662969],[114.29999326475222,13.054150695298627]]]}},{"type":"Feature","properties":{"id":"australia-singapore-cable-asc","name":"Australia-Singapore Cable (ASC)","color":"#c82026","feature_id":"australia-singapore-cable-asc-0","coordinates":[107.80274089446834,-15.057788569383632]},"geometry":{"type":"MultiLineString","coordinates":[[[105.97499916225611,-10.398839577127402],[105.8624992419522,-10.398839577127402],[105.697069844276,-10.437358645528692]],[[105.74999932164808,-5.945707155070644],[105.88390920948316,-6.073698909871739]],[[103.94648059927786,1.327258925921003],[103.78125071632807,1.018534216615524],[103.78125071632807,0.793562652607196],[104.17500043739219,0.51333135630492],[104.8499999592161,0.400835033925938],[105.29999964043219,0.118588418888312],[105.97499916225611,-0.781386636225587],[106.76449860296741,-2.130918480960333],[107.01562342447218,-3.029995968008661],[106.9874984449922,-4.60145376483711],[106.53749876377611,-5.161910662113067],[106.31249892316808,-5.497950688314882],[105.74999932164808,-5.945707155070644],[105.29999964043219,-6.169450529574503],[105.07499979982416,-6.616650693475355],[105.29999964043219,-7.509810688339549],[105.97499916225611,-10.398839577127402],[106.19999900286416,-11.943944931746815],[107.99999772713237,-15.441023659568087],[109.79999645199631,-20.433922197637408],[112.0499948586722,-27.15383128539156],[113.39999390232026,-30.30995334464681],[113.84999358353615,-30.890946871471986],[115.85731216153303,-31.953441330324313]]]}},{"type":"Feature","properties":{"id":"azores-fiber-optic-system-afos","name":"Azores Fiber Optic System (AFOS)","color":"#514da0","feature_id":"azores-fiber-optic-system-afos-0","coordinates":[-25.715648220560862,37.094110840016604]},"geometry":{"type":"MultiLineString","coordinates":[[[-27.96338595453508,39.01140845880094],[-28.1249058401129,38.827311095266374],[-28.349905680720937,38.827311095266374],[-28.349905680720937,38.739615313825674],[-28.213135777609992,38.68429209182289],[-28.462405601024955,38.651811712711336],[-28.647515469891374,38.52540431175965],[-28.574905521328883,38.475881348138756],[-28.46123560185379,38.43266966366395],[-28.349905680720937,38.29952060596925],[-25.29692784347907,36.90250859939618],[-25.141217953785343,36.95715362213741],[-25.0722680026302,36.87595534218079],[-24.918608111484343,36.95684197844165],[-24.974908071600833,37.23235432155614],[-25.537407673120835,37.589786573603064],[-25.668707580106854,37.739604626314694],[-25.87490743403289,37.67887792909206],[-26.77490679646495,38.03417390064187],[-27.112406557972907,38.475881348138756],[-27.21577648414866,38.65890243710884],[-27.44990631828888,38.651811712711336],[-27.674906158896917,38.651811712711336],[-27.96338595453508,39.01140845880094]]]}},{"type":"Feature","properties":{"id":"bahamas-2","name":"Bahamas 2","color":"#85459a","feature_id":"bahamas-2-0","coordinates":[-78.90737857187821,26.356018247442297]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.91536058293026,26.360123107509146],[-78.81193048042013,26.536259889701554]],[[-80.3942513282677,27.638731771078668],[-79.64986933934534,27.364667993860262],[-78.91536058293026,26.360123107509146],[-78.52487013630534,26.1593079707739],[-77.7373706941773,25.348717422116714],[-77.34020097553613,25.067217613601834]]]}},{"type":"Feature","properties":{"id":"bahamas-domestic-submarine-network-bdsni","name":"Bahamas Domestic Submarine Network (BDSNi)","color":"#2aae5d","feature_id":"bahamas-domestic-submarine-network-bdsni-0","coordinates":[-73.74030475770795,19.303948558193134]},"geometry":{"type":"MultiLineString","coordinates":[[[-75.78014208069642,23.516551982193732],[-75.59987220840131,23.7112581424843],[-75.14987252718532,23.81422051502533],[-74.84049274635285,23.652235483825752]],[[-73.79987348353728,22.780969584994615],[-74.02487332652929,22.884654113882444],[-74.36237308505729,23.298598065875897],[-74.36237308505729,23.7112581424843],[-74.52570296935295,24.05263241523427]],[[-77.39953093350617,26.02529561689914],[-77.96237053478534,26.1593079707739],[-78.73673998621477,26.516994685777217]],[[-77.34020097553613,25.067217613601834],[-77.39987093326533,25.348717422116714],[-78.18737037539337,26.1593079707739],[-78.73673998621477,26.516994685777217]],[[-77.34020097553613,25.067217613601834],[-77.39987093326533,24.94136317175375],[-77.84460061821467,24.6897138806255]],[[-76.24064175447413,25.196209451872253],[-76.24064175447413,25.29442793346618],[-76.83117133613746,25.712041257302072],[-77.28737101296132,25.75470426341523],[-77.39953093350617,26.02529561689914]],[[-76.24064175447413,25.196209451872253],[-76.94987125204935,25.043329056612176],[-77.34020097553613,25.067217613601834]],[[-75.78014208069642,23.516551982193732],[-75.71237212870533,23.7112581424843],[-76.04987189021328,24.259444485784776],[-76.57445151859616,24.424991122673976],[-76.04987189021328,24.53265756616073],[-75.93737196931336,24.94136317175375],[-76.24064175447413,25.196209451872253]],[[-75.52590226080234,24.403328403350237],[-75.82487204900934,24.53265756616073],[-75.82487204900934,24.94136317175375],[-76.24064175447413,25.196209451872253]],[[-75.73337211382878,22.183257204024997],[-75.59987220840131,22.469443964829516],[-75.59987220840131,23.298598065875897],[-75.14987252718532,23.7112581424843],[-74.84049274635285,23.652235483825752]],[[-73.68298356634324,20.950514348762308],[-73.79987348353728,21.216397899942],[-75.14987252718532,21.84429407917369],[-75.73337211382878,22.183257204024997]],[[-74.96618265731288,23.0983440404772],[-74.86662272784216,23.298598065875897],[-74.84049274635285,23.652235483825752]],[[-74.52570296935295,24.05263241523427],[-74.81237276627336,23.298598065875897],[-74.96618265731288,23.0983440404772]],[[-74.52570296935295,24.05263241523427],[-74.92487268657729,24.32780311165181],[-75.52590226080234,24.403328403350237]],[[-73.06413400474204,22.401747618851097],[-73.3498738023213,22.780969584994615],[-73.79987348353728,22.780969584994615]],[[-73.68298356634324,20.950514348762308],[-73.57487364292933,21.425997872385402],[-73.3498738023213,22.05298561667754],[-73.06413400474204,22.401747618851097]],[[-73.68298356634324,20.950514348762308],[-73.84592345091504,20.14477297921714],[-73.9123734038413,19.95262290516439],[-73.68737356323335,19.104405475930452],[-72.8343441675273,18.611932473123947],[-72.51027439710138,18.611932473123947],[-72.34313451550487,18.542878440695226]]]}},{"type":"Feature","properties":{"id":"bahamas-internet-cable-system-bics","name":"Bahamas Internet Cable System (BICS)","color":"#209fb8","feature_id":"bahamas-internet-cable-system-bics-0","coordinates":[-77.21820661216559,26.620578361420524]},"geometry":{"type":"MultiLineString","coordinates":[[[-78.73673998621477,26.516994685777217],[-79.19986965812936,26.36108632539156],[-79.64986933934534,26.36108632539156],[-80.08893155227202,26.350584577319996]],[[-76.7876613669604,25.40783324180655],[-77.1748710926573,25.55188275942587],[-77.39987093326533,25.75470426341523],[-77.39953093350617,26.02529561689914],[-77.39987093326533,26.1593079707739],[-77.1748710926573,26.260240971577822],[-77.1748710926573,26.562513149236715],[-77.39987093326533,26.86399017396059],[-77.82194063426722,26.912500052614206],[-77.96237053538132,26.847150890638396],[-78.07487045568534,26.797064317338755],[-78.15172040124409,26.703096291958364],[-78.29987029629338,26.6715791371628],[-78.52487013690133,26.596273524044868],[-78.73673998621477,26.516994685777217]],[[-78.73673998621477,26.516994685777217],[-78.29987029569729,26.1593079707739],[-77.51237085356935,25.348717422116714],[-77.4529908956347,25.068449509985566],[-77.39987093326533,25.348717422116714],[-77.1748710926573,25.450342946923914],[-76.7876613669604,25.40783324180655]]]}},{"type":"Feature","properties":{"id":"balalink","name":"Balalink","color":"#3a4ea1","feature_id":"balalink-0","coordinates":[1.1368861410635613,39.35121757117122]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.376975497007027,39.459646713436726],[0.450073917103194,39.35121757117122],[2.25007264196731,39.35121757117122],[2.605252390354729,39.55232618527277]]]}},{"type":"Feature","properties":{"id":"baltica","name":"Baltica","color":"#5f459b","feature_id":"baltica-0","coordinates":[13.460776938063091,54.872791322530695]},"geometry":{"type":"MultiLineString","coordinates":[[[11.94000577752764,54.577236267283396],[12.600065309935387,54.62444087776703],[13.500064672367355,54.884127437867534],[14.400064034799321,54.94878902385559],[14.850063716015397,54.94878902385559],[14.992153615357688,55.031146415148456]],[[13.828284439853466,55.431331650943825],[13.950064353583429,55.33458061322904],[14.400064034799321,55.0133467567921],[14.850063716015397,55.0133467567921],[14.992153615357688,55.031146415148456],[15.075063556623434,54.884127437867534],[15.412563317535398,54.55925876578231],[15.57506320241889,54.172633544902844]]]}},{"type":"Feature","properties":{"id":"bass-strait-1","name":"Bass Strait-1","color":"#66439a","feature_id":"bass-strait-1-0","coordinates":[145.906182578485,-39.89701571127955]},"geometry":{"type":"MultiLineString","coordinates":[[[146.11970072337314,-38.81988087960539],[146.02497079048055,-39.16757423638764],[145.79997094987252,-40.549228298069146],[145.62380107467308,-40.95050138814584]]]}},{"type":"Feature","properties":{"id":"bass-strait-2","name":"Bass Strait-2","color":"#5da344","feature_id":"bass-strait-2-0","coordinates":[145.48965518221675,-39.69147281699588]},"geometry":{"type":"MultiLineString","coordinates":[[[145.72966099968082,-38.63330288478132],[145.57497110926448,-39.16757423638764],[145.34997126865645,-40.549228298069146],[145.29411130822828,-40.76023099257806]]]}},{"type":"Feature","properties":{"id":"basslink","name":"Basslink","color":"#9dc93b","feature_id":"basslink-0","coordinates":[146.9775193196672,-39.740482351060734]},"geometry":{"type":"MultiLineString","coordinates":[[[147.07126004927943,-38.44340281744178],[147.03747007321647,-38.81782397325074],[146.92497015291252,-40.549228298069146],[146.85017020590166,-41.033054194589326]]]}},{"type":"Feature","properties":{"id":"batam-singapore-cable-system-bscs","name":"Batam Singapore Cable System (BSCS)","color":"#ac3781","feature_id":"batam-singapore-cable-system-bscs-0","coordinates":[103.95635868349486,1.2203224601666376]},"geometry":{"type":"MultiLineString","coordinates":[[[103.98701057056589,1.389451396800233],[103.9500255967665,1.185378176915766],[104.0166370000003,1.066798000000349]]]}},{"type":"Feature","properties":{"id":"sweden-latvia","name":"Sweden-Latvia","color":"#42b985","feature_id":"sweden-latvia-0","coordinates":[19.342613473857593,57.755093445120046]},"geometry":{"type":"MultiLineString","coordinates":[[[21.570078955493642,57.389720408424935],[21.15005925303935,57.39045872350101],[19.350060528175415,57.75242200704209],[19.041860746507265,57.86298070545193],[18.900060846959338,58.05131589106027],[18.562561086047374,58.641677771385005],[18.562561086047374,59.106894957190725],[18.337561245439336,59.27974267096037],[18.062761440110208,59.33230901818709]]]}},{"type":"Feature","properties":{"id":"bcs-east-west-interlink","name":"BCS East-West Interlink","color":"#348bcb","feature_id":"bcs-east-west-interlink-0","coordinates":[19.948215743265383,56.717219875603234]},"geometry":{"type":"MultiLineString","coordinates":[[[21.08267930077222,56.028506850473754],[20.700059571823456,56.15772578558828],[19.125060687567377,57.32978111682831],[18.829450896980287,57.43973589319185]]]}},{"type":"Feature","properties":{"id":"bcs-north---phase-1","name":"BCS North - Phase 1","color":"#38b77b","feature_id":"bcs-north---phase-1-0","coordinates":[21.80795969667985,59.99407662071264]},"geometry":{"type":"MultiLineString","coordinates":[[[24.932476573539617,60.171163188940554],[24.412556941855435,59.906069924574304],[23.850057340335432,59.79305890746809],[22.966757966073065,59.82340864139905],[22.6125582169915,59.906069924574304],[22.275058456079353,60.01869762196877],[22.298598439403605,60.30575443116903],[22.050058615471496,60.07486799642317],[21.375059093647387,59.84961238502145],[20.250059890607382,59.7364093840784],[19.912560129695414,59.9624316341522],[19.937760111843488,60.11403575461426],[19.68756028908738,59.9624316341522],[19.125060687567377,59.62282176941042],[18.688360996929806,59.292766765691574]]]}},{"type":"Feature","properties":{"id":"bcs-north---phase-2","name":"BCS North - Phase 2","color":"#b1d235","feature_id":"bcs-north---phase-2-0","coordinates":[25.96166923248304,60.13094286609847]},"geometry":{"type":"MultiLineString","coordinates":[[[26.88364519131359,60.50114125320089],[27.00005510884741,60.35428947498098],[27.16880498930348,60.13094286609847],[27.450054790063483,59.9624316341522],[28.12505431188741,59.84961238502145],[28.49995404630509,59.79998620949299]],[[26.88364519131359,60.50114125320089],[26.77505526823937,60.35428947498098],[26.10005574641544,60.13094286609847],[25.200056383983473,60.13094286609847],[24.932476573539617,60.171163188940554]]]}},{"type":"Feature","properties":{"id":"berytar","name":"BERYTAR","color":"#c02028","feature_id":"berytar-0","coordinates":[35.54357374187809,34.270320907751945]},"geometry":{"type":"MultiLineString","coordinates":[[[35.89779880560243,34.89170328553848],[35.77504889255959,34.683017659857974],[35.859228832925915,34.43974246013246],[35.55004905195155,34.31215165223547],[35.48510909795581,33.89263712836985],[35.32504921134351,33.565491482352044],[35.38637916789689,33.45019231608542]]]}},{"type":"Feature","properties":{"id":"bharat-lanka-cable-system","name":"Bharat Lanka Cable System","color":"#26ae4a","feature_id":"bharat-lanka-cable-system-0","coordinates":[78.76007118215172,7.506418248635959]},"geometry":{"type":"MultiLineString","coordinates":[[[78.14522887712651,8.8024990629144],[78.3000187674719,8.190543417795496],[79.20001812990387,6.852191098754328],[79.86681765753703,6.833088156653168]]]}},{"type":"Feature","properties":{"id":"bicentenario","name":"Bicentenario","color":"#52b847","feature_id":"bicentenario-0","coordinates":[-55.765452161876794,-35.74763678504997]},"geometry":{"type":"MultiLineString","coordinates":[[[-54.950186836832145,-34.90041602705144],[-55.57488639428917,-35.59302880961419],[-56.02488607550515,-35.95811819864919],[-56.695445600474535,-36.47095527632105]]]}},{"type":"Feature","properties":{"id":"botnia","name":"Botnia","color":"#dba926","feature_id":"botnia-0","coordinates":[20.810619391542982,63.2306735554952]},"geometry":{"type":"MultiLineString","coordinates":[[[21.616368922701422,63.095388681301685],[21.375059093647387,63.09669186983899],[21.15005925303935,63.09669186983899],[20.700059571823456,63.27431307074413],[20.475059731215417,63.526173423791214],[20.39430309845523,63.70251569426438],[20.26304988140538,63.82595266205344]]]}},{"type":"Feature","properties":{"id":"bt-mt-1","name":"BT-MT-1","color":"#d12c7d","feature_id":"bt-mt-1-0","coordinates":[-3.888293248358948,54.16597178715178]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.357053385891947,54.21091491340431],[-3.599923213840749,54.16597178715178],[-4.274922735664679,54.16597178715178],[-4.423852630161441,54.167289003599166]]]}},{"type":"Feature","properties":{"id":"cadmos","name":"CADMOS","color":"#5d4a9e","feature_id":"cadmos-0","coordinates":[34.571766536489555,34.40408323892183]},"geometry":{"type":"MultiLineString","coordinates":[[[35.48510909795581,33.89263712836985],[35.521924071279756,33.90074250722234],[35.56303904215347,33.891898350976184]],[[33.61060042587536,34.82728147271538],[33.97505016769547,34.683017659857974],[35.10004937013957,34.157137999942634],[35.48510909795581,33.89263712836985]]]}},{"type":"Feature","properties":{"id":"cam-ring","name":"CAM Ring","color":"#a85137","feature_id":"cam-ring-0","coordinates":[-21.401088824823148,34.375763066019836]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.347664183221365,33.047315908721245],[-16.42491412849678,32.8123187832876],[-16.64991396910482,32.62301664000789],[-16.90889378564106,32.64727814970992],[-17.125113632468874,32.55889959458764],[-18.449912693968844,32.8123187832876],[-24.749908230992887,36.1498667868178],[-25.424907754008892,36.78317048961605],[-25.7061575541729,37.589786573603064],[-25.668707580106854,37.739604626314694]]]}},{"type":"Feature","properties":{"id":"canalink","name":"Canalink","color":"#5a4a9e","feature_id":"canalink-0","coordinates":[-11.928272506517882,32.88482972146169]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.412574137834532,28.310603161410516],[-16.03116440743276,28.391963961389006],[-15.74991460667276,28.55704546571133],[-14.962415164544812,28.95155473219332],[-13.724916040604796,29.73606949729215],[-10.124918591472738,33.93964008831966],[-8.324919866608713,35.419780517080355],[-6.749920982352725,36.1498667868178],[-6.087131451879048,36.27672346192373]],[[-7.199920663568708,36.51238821239364],[-6.299921301136742,35.602930322906126],[-6.035761488270031,35.470615921385686]],[[-15.524914766064814,28.359233526108557],[-15.487704792424687,28.1343621820334]],[[-15.412414845760795,28.55704546571133],[-15.74991460667276,28.50762719638052],[-16.03116440743276,28.34246846660667],[-16.412564137245653,28.310585553629316]],[[-16.518014062543934,28.059088061264806],[-16.42491412849678,27.962503359972466],[-16.537414048800798,27.86309157699361],[-16.762413889408837,27.86309157699361],[-16.981213734409,28.159242763304327],[-17.0999136503208,28.359233526108557],[-17.36480346267046,28.66327103532559],[-17.58982330326418,28.712616152639622],[-17.765193179030568,28.66327103532559]],[[-15.412414845760795,28.55704546571133],[-15.299914925456777,28.458185766004554],[-15.243664965304813,28.161052262220792],[-15.299914925456777,28.06182365971013],[-15.39874485544474,27.959394261046018]],[[-6.363011256443268,36.626272849358266],[-7.199920663568708,36.51238821239364],[-8.999919388432733,35.419780517080355],[-11.024917953904795,33.93964008831966],[-14.624915403632755,29.73606949729215],[-15.074915084848831,28.95155473219332],[-15.412414845760795,28.55704546571133],[-15.524914766064814,28.359233526108557],[-16.03116440743276,28.292958703176758],[-16.518014062543934,28.059088061264806]]]}},{"type":"Feature","properties":{"id":"cantat-3","name":"CANTAT-3","color":"#a6469a","feature_id":"cantat-3-0","coordinates":[6.084804786293195,55.88334262356366]},"geometry":{"type":"MultiLineString","coordinates":[[[7.199969135414349,55.58982013593335],[7.650068816559295,55.58970711313177],[8.329168335478972,55.75165023178103]],[[4.500071048047319,55.969309073153674],[4.950070729263212,56.09502251152735]],[[4.228491240437136,56.07851317418121],[4.500071048047319,55.969309073153674],[4.5643310025251,55.80429094977468],[4.612570968351247,55.74726873782232],[4.748510872050192,55.715908549839966]],[[7.200069135343221,55.58970711313177],[6.300069772911254,55.84318584148108],[4.950070729263212,56.09502251152735]]]}},{"type":"Feature","properties":{"id":"caribbean-bermuda-u-s-cbus","name":"Caribbean-Bermuda U.S. (CBUS)","color":"#b2355e","feature_id":"caribbean-bermuda-u-s-cbus-0","coordinates":[-64.34988017800117,25.345999229975213]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.7674091796907,32.31223462116531],[-64.5748800186092,31.286738814391754],[-64.34988017800117,28.161052262220792],[-64.34988017800117,24.94136317175375],[-64.34988017800117,20.796306105108872],[-64.34988017800117,18.891661584303154],[-64.59715000283296,18.41441211576626]]]}},{"type":"Feature","properties":{"id":"caucasus-cable-system","name":"Caucasus Cable System","color":"#d02c91","feature_id":"caucasus-cable-system-0","coordinates":[34.888472643936545,42.49061443096962]},"geometry":{"type":"MultiLineString","coordinates":[[[41.66752471827441,42.14675635811542],[41.40004490775961,42.07923561816413],[35.55004905195155,42.41235450073586],[28.575053993103488,43.237448352440914],[28.167434281865123,43.41462116994649]]]}},{"type":"Feature","properties":{"id":"cayman-jamaica-fiber-system-cjfs","name":"Cayman-Jamaica Fiber System (CJFS)","color":"#85489c","feature_id":"cayman-jamaica-fiber-system-cjfs-0","coordinates":[-79.06738928977619,19.27827498069823]},"geometry":{"type":"MultiLineString","coordinates":[[[-76.66662145270618,17.949772942659727],[-76.38737165112533,17.966677204124696],[-76.1623718105173,18.180575095602762],[-76.20409564349075,18.462886138237728],[-76.49987157202534,18.572039052566783]],[[-76.44608160953463,18.17632819876962],[-76.49987157202534,18.572039052566783]],[[-76.49987157202534,18.572039052566783],[-77.06237117294936,18.607582468591097]],[[-77.10324114340065,18.398661383088054],[-77.06237117294936,18.607582468591097]],[[-77.06237117294936,18.607582468591097],[-77.73737069477338,18.607582468591097],[-77.92138056441902,18.469357593227326],[-78.18737037598936,18.660883672360413],[-79.4248694987373,19.529070924350908],[-79.87764917798393,19.690425985630736],[-80.09986902056141,19.529070924350908],[-80.54986870177748,19.316876111628712],[-81.16676076149955,19.28295591266266]]]}},{"type":"Feature","properties":{"id":"ceiba-2","name":"Ceiba-2","color":"#4fbe9c","feature_id":"ceiba-2-0","coordinates":[9.276676998154315,2.945927882878702]},"geometry":{"type":"MultiLineString","coordinates":[[[9.250947682481774,3.002760948286253],[9.91022721544214,2.933124533518602]],[[9.768227316036105,1.860150409321811],[9.250947682481774,3.002760948286253],[9.052797822853012,3.809525949617104],[8.832297979057298,3.809525949617104],[8.782298014477735,3.750863902152215]]]}},{"type":"Feature","properties":{"id":"ceiba-1","name":"Ceiba-1","color":"#3366b1","feature_id":"ceiba-1-0","coordinates":[9.38913799528723,3.0532848096506484]},"geometry":{"type":"MultiLineString","coordinates":[[[9.768227316036105,1.860150409321811],[9.42506755913363,2.96715934263804],[9.052797822853012,3.859513756649545],[8.782298014477735,3.859513756649545],[8.782298014477735,3.750863902152215]]]}},{"type":"Feature","properties":{"id":"celtixconnect-1-cc-1","name":"CeltixConnect-1 (CC-1)","color":"#aa4f9e","feature_id":"celtixconnect-1-cc-1-0","coordinates":[-5.440452195766118,53.30189162385005]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.248311337697704,53.34812463259513],[-5.624921779312721,53.300879648739986],[-4.630392483846553,53.30633550153628]]]}},{"type":"Feature","properties":{"id":"columbus-ii-b","name":"Columbus-II b","color":"#69c6b6","feature_id":"columbus-ii-b-0","coordinates":[-70.42061125399957,26.512102658953292]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.93708976201641,18.372992194090898],[-64.91237977952126,18.891661584303154],[-65.24987954043323,20.796306105108872],[-67.27487810590529,23.7112581424843],[-69.29987667137726,25.957179978764344],[-73.3498738023213,27.962503359972466],[-76.94987125204935,28.06182365971013],[-77.84987061448132,27.86309157699361],[-79.64986933934534,26.964304734562898],[-80.05334157838347,26.715271953494682]]]}},{"type":"Feature","properties":{"id":"columbus-iii-azores-portugal","name":"Columbus-III Azores-Portugal","color":"#c35437","feature_id":"columbus-iii-azores-portugal-0","coordinates":[-17.422228036962636,36.993119919861876]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.33155915349599,38.690161972355526],[-10.349918432080775,38.21117903702318],[-13.949915882404726,36.993119919861876],[-23.399909187940835,36.993119919861876],[-24.749908230992887,37.23235432155614],[-25.424907752816907,37.589786573603064],[-25.668707580106854,37.739604626314694]]]}},{"type":"Feature","properties":{"id":"comoros-domestic-cable-system","name":"Comoros Domestic Cable System","color":"#5cc4c1","feature_id":"comoros-domestic-cable-system-0","coordinates":[44.38348080171161,-12.159732244027781]},"geometry":{"type":"MultiLineString","coordinates":[[[43.489203427780126,-11.92311506302003],[44.02904304535267,-11.808811027678104],[44.40004278253289,-12.166271132902045],[44.02904304535267,-12.01979553436257],[43.73969325033078,-12.287868671415305],[43.547493386487076,-12.045379517998398],[43.489203427780126,-11.92311506302003]]]}},{"type":"Feature","properties":{"id":"corse-continent-4-cc4","name":"Corse-Continent 4 (CC4)","color":"#34bfc8","feature_id":"corse-continent-4-cc4-0","coordinates":[7.949098709147479,43.0363775719495]},"geometry":{"type":"MultiLineString","coordinates":[[[7.017449264712893,43.553008713117315],[7.200069135343221,43.401144973153954],[8.550068178991262,42.743713464436695],[8.93717790475919,42.63668577913145]]]}},{"type":"Feature","properties":{"id":"corse-continent-5-cc5","name":"Corse-Continent 5 (CC5)","color":"#32c0cf","feature_id":"corse-continent-5-cc5-0","coordinates":[7.18548843666949,42.251181098201755]},"geometry":{"type":"MultiLineString","coordinates":[[[5.878200071767832,43.103194733127566],[6.075069932303216,42.743713464436695],[6.300069772911254,42.578254086072846],[7.425068975355357,42.16268022756146],[8.414618274945335,41.835738425062964],[8.738738045335882,41.91950273465837]]]}},{"type":"Feature","properties":{"id":"danica-north","name":"Danica North","color":"#3c61ad","feature_id":"danica-north-0","coordinates":[12.745254304550503,55.77884269856118]},"geometry":{"type":"MultiLineString","coordinates":[[[12.955535058117352,55.77057758158515],[12.716565227405825,55.77997032709834],[12.545575348536659,55.720775126306044]]]}},{"type":"Feature","properties":{"id":"danice","name":"DANICE","color":"#5bba46","feature_id":"danice-0","coordinates":[-5.161393410267752,62.67977190838902]},"geometry":{"type":"MultiLineString","coordinates":[[[-20.141851495383488,63.642367197144765],[-20.699911101240836,63.32486213107881],[-20.699911100644844,62.986189024595745],[-19.799911737616885,62.50536500000049],[-14.399915563024809,62.29689073879045],[-10.799918113296759,62.712391894030624],[-7.424920504176746,62.81536487879325],[-2.249924170192707,62.50536500000049],[0.450073917103194,62.08696177092747],[2.025072801359273,61.23255301306618],[2.92507216379124,60.35428947498098],[3.825071526223208,58.05131589106027],[5.17507056987125,56.22032688484507],[6.300069772911254,55.969309073153674],[7.200069135343221,55.716652093821786],[7.650068816559295,55.65323105219792],[8.329168335478972,55.75165023178103]]]}},{"type":"Feature","properties":{"id":"denmark-sweden-17","name":"Denmark-Sweden 17","color":"#34a89e","feature_id":"denmark-sweden-17-0","coordinates":[12.562760303895889,56.105017254001815]},"geometry":{"type":"MultiLineString","coordinates":[[[12.536885354692695,56.07508097728979],[12.562760336362697,56.105017291564636],[12.588635318032516,56.13493034275471]]]}},{"type":"Feature","properties":{"id":"denmark-sweden-18","name":"Denmark-Sweden 18","color":"#373e98","feature_id":"denmark-sweden-18-0","coordinates":[12.643960278839915,56.03727869909543]},"geometry":{"type":"MultiLineString","coordinates":[[[12.592155315538987,56.03063574342069],[12.643960278839915,56.03727869909543],[12.695765242140661,56.043920511503316]]]}},{"type":"Feature","properties":{"id":"dhiraagu-cable-network","name":"Dhiraagu Cable Network","color":"#b91f32","feature_id":"dhiraagu-cable-network-0","coordinates":[73.0551725675944,3.0898789230643287]},"geometry":{"type":"MultiLineString","coordinates":[[[73.0715024714021,6.622826415013278],[72.97150254224297,6.125830038600339],[72.97082254272446,5.601440402765338],[73.07082247188359,5.10362255380632],[73.07082247188359,4.854566321205027],[73.29035231636679,4.461629537081651],[73.54035213926461,4.212345781871782],[73.12502243348777,3.82823430332105],[72.9556825534498,3.608488161798881],[72.97732253811986,3.276079687360005],[73.54475213614752,1.918908398538504],[73.57502211470384,1.018534216615524],[73.4555921993092,0.289287153514825],[73.46652219156643,0.060338533670424],[73.42688221964781,-0.297909859053726],[73.3500222740958,-0.443906656918545],[73.08918245887737,-0.605519711481727]]]}},{"type":"Feature","properties":{"id":"dhiraagu-slt-submarine-cable-network","name":"Dhiraagu-SLT Submarine Cable Network","color":"#a44399","feature_id":"dhiraagu-slt-submarine-cable-network-0","coordinates":[76.84260880413497,5.221141038488133]},"geometry":{"type":"MultiLineString","coordinates":[[[79.87208765380376,6.927036656836354],[79.20001812990387,6.18155703253704],[74.25002163652778,4.164912849976942],[73.5000221678345,4.16666819886197]]]}},{"type":"Feature","properties":{"id":"east-west-cable-ewc","name":"East-West Cable (EWC)","color":"#30ace2","feature_id":"east-west-cable-ewc-0","coordinates":[-70.67175258722071,17.388055736679384]},"geometry":{"type":"MultiLineString","coordinates":[[[-76.71676141718653,17.949953694577594],[-76.27487173022533,17.395022634700517],[-75.37487236779336,17.180187287481317],[-74.69987284596934,16.965102599435927],[-71.99987475867334,16.965102599435927],[-70.6498757150253,17.395022634700517],[-69.86237627289727,17.82393441253792],[-69.29987667137726,17.716802179008642],[-67.49987794651324,17.395022634700517],[-66.14987890286528,17.609605913224996],[-64.59715000283296,18.41441211576626]],[[-70.16178606079258,18.6993638412382],[-69.91862623304922,18.144943564296213],[-69.86237627289727,17.82393441253792]]]}},{"type":"Feature","properties":{"id":"eastern-caribbean-fiber-system-ecfs","name":"Eastern Caribbean Fiber System (ECFS)","color":"#b4d333","feature_id":"eastern-caribbean-fiber-system-ecfs-0","coordinates":[-61.19988240948919,14.328134935181945]},"geometry":{"type":"MultiLineString","coordinates":[[[-61.65081209004632,10.686261032786325],[-61.53738217040116,11.073982781226615],[-61.53738217040116,11.294709319565477],[-61.53738217040116,11.625479959569855],[-61.64988209070518,11.84577637362577],[-61.790581991032056,12.008779421336667],[-61.87307193259536,12.191526789551752],[-61.81853197123201,12.395734000022975],[-61.48103221032005,13.054150695298627],[-61.20828240353852,13.145460938850311],[-61.19988240948919,13.054150695298627],[-59.84988336584115,13.054150695298627],[-59.60740353761622,13.084493800663104],[-59.84988336584115,13.163718917913586],[-60.74988272827321,14.038469666260218],[-60.974882568881156,14.147583506948735],[-61.00681254626166,13.994508755694142],[-61.19988240948919,14.147583506948735],[-61.19988240948919,14.365653759228442],[-61.09417248437512,14.615455776713933],[-61.368632289945175,14.801154224791581],[-61.53738217040116,15.018578573757472],[-61.53738217040116,15.23578178303578],[-61.64988209070518,15.452760959322058],[-61.607792120522106,15.676204818171286],[-61.439157239984645,15.892797111330715],[-61.413872257896806,15.988768942769152],[-61.53303217348278,16.241328600285367],[-61.762382011009194,16.590029438056266],[-61.85794194331368,17.051481714044815],[-62.09988177192116,16.965102599435927],[-62.54988145313723,16.965102599435927],[-62.729761325708566,17.090876005712886],[-62.6687472252876,17.29043440784797],[-62.729761325708566,17.40237987467555],[-63.07366108208678,18.031045075146537],[-63.05813109308835,18.144943564296213],[-63.05716109377556,18.217681162500718],[-63.22488097496117,18.305228078976267],[-63.4498808155692,18.358623372153332],[-64.12488033739322,18.358623372153332],[-64.34988017800117,18.358623372153332],[-64.59715000283296,18.41441211576626]],[[-61.53738217040116,15.23578178303578],[-61.370682288492866,15.252077499919823]]]}},{"type":"Feature","properties":{"id":"ec-link","name":"EC Link","color":"#663c97","feature_id":"ec-link-0","coordinates":[-65.19034678537975,11.278035921849968]},"geometry":{"type":"MultiLineString","coordinates":[[[-61.64929209112319,10.687695708022828],[-62.09988177192116,11.294709319565477],[-63.89988049678528,11.515266158038768],[-65.69987922164921,11.184367066436712],[-68.39987730894529,11.735650161405832],[-68.89264695986267,12.09043961830498]]]}},{"type":"Feature","properties":{"id":"elektra-globalconnect-1-gc1","name":"Elektra-GlobalConnect 1 (GC1)","color":"#c88129","feature_id":"elektra-globalconnect-1-gc1-0","coordinates":[11.931558055236268,54.290652868559256]},"geometry":{"type":"MultiLineString","coordinates":[[[11.94000577752764,54.577236267283396],[11.925065788111276,54.49397229925472],[11.925065788111276,54.29748595281839],[12.132485641173277,54.0791774165702]]]}},{"type":"Feature","properties":{"id":"emerald-bridge-fibres","name":"Emerald Bridge Fibres","color":"#ec1c24","feature_id":"emerald-bridge-fibres-0","coordinates":[-5.393337381404399,53.54170333979512]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.197971373358976,53.41013850693277],[-5.624921779312721,53.54157968163075],[-5.090742157730591,53.54186491531681],[-4.630392483846553,53.30633550153628]]]}},{"type":"Feature","properties":{"id":"aec-1","name":"AEC-1","color":"#923c96","feature_id":"aec-1-0","coordinates":[-40.62232040192537,46.63726305614672]},"geometry":{"type":"MultiLineString","coordinates":[[[-9.232149223918933,54.20711352067886],[-9.562418989952736,54.55925876578231],[-10.799918113296759,55.07780072164767],[-12.599916838160784,55.07780072164767],[-16.199914287888834,54.29748595281839],[-23.399909187344846,52.41790126031551],[-39.59989771112098,46.890762878622326],[-50.39989006030513,44.21300917863173],[-61.19988240948919,42.07923561816413],[-68.39987730894529,41.0693404382162],[-71.09987539624129,40.47295490579834],[-72.87218414072115,40.800580995045266]]]}},{"type":"Feature","properties":{"id":"esat-2","name":"ESAT-2","color":"#27baad","feature_id":"esat-2-0","coordinates":[-4.615319758346711,53.53513602111024]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.215401361011431,53.3317112890075],[-5.624921779312721,53.435130856225875],[-3.599923213840749,53.635715156995076],[-3.006373634316763,53.647933398832954]]]}},{"type":"Feature","properties":{"id":"est-tet","name":"Est-Tet","color":"#2ca887","feature_id":"est-tet-0","coordinates":[-5.174922098096691,35.953047318525535]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.391811944449903,35.565918934421326],[-5.174922098096737,35.78566189952622],[-5.174922098096737,36.24065523321488],[-5.145872118676008,36.42741977174601]]]}},{"type":"Feature","properties":{"id":"farice-1","name":"FARICE-1","color":"#62bd60","feature_id":"farice-1-0","coordinates":[-6.5567326130043195,63.179471746966534]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.927950856234652,62.244112059037015],[-6.897247538141233,62.405946169383654],[-7.199920663568708,62.712391894030624],[-7.199920663568708,63.32486213107881]],[[-3.346213393571057,58.61541952086163],[-3.824923054448695,58.758568944882946],[-3.824923054448695,59.45171731890513],[-3.149923532624674,60.35428947498098],[-2.699923851408691,61.87557078357141],[-2.699923851408691,62.08696177092747],[-5.399921938704683,62.917978785251854],[-7.199920663568708,63.32486213107881],[-10.799918113296759,64.70468599661176],[-10.799918113296759,65.08652060243699],[-12.1499171569448,65.27540872550333],[-13.499916200592752,65.27540872550333],[-14.018075833523609,65.25084981890578]]]}},{"type":"Feature","properties":{"id":"fehmarn-blt","name":"Fehmarn Bält","color":"#af4298","feature_id":"fehmarn-blt-0","coordinates":[11.260634989711626,54.59984452443255]},"geometry":{"type":"MultiLineString","coordinates":[[[11.212566292852763,54.49618504236196],[11.250066266287346,54.593021637497834],[11.358566189425126,54.66306630403638]]]}},{"type":"Feature","properties":{"id":"fiber-optic-gulf-fog","name":"Fiber Optic Gulf (FOG)","color":"#2859a8","feature_id":"fiber-optic-gulf-fog-0","coordinates":[51.619007540901144,27.175477152805563]},"geometry":{"type":"MultiLineString","coordinates":[[[51.30003789451161,27.364667993860262],[50.85003821329572,26.562513149236715],[50.57601840741415,26.229494838391265]],[[52.65003693815965,26.562513149236715],[52.08753733663965,26.05828756029904],[51.519277739200085,25.294608758024626]],[[47.974840250113054,29.37410420420039],[48.60003980721571,28.95155473219332],[49.16253940873571,28.55704546571133],[50.175038691471606,27.86309157699361],[51.30003789451161,27.364667993860262],[51.975037416335724,26.964304734562898],[52.65003693815965,26.562513149236715],[53.55003630059162,25.75470426341523],[54.90003534423966,25.55188275942587],[55.30853505485483,25.269353998130182]]]}},{"type":"Feature","properties":{"id":"fibralink","name":"Fibralink","color":"#c83a26","feature_id":"fibralink-0","coordinates":[-74.9004746672672,18.15122965650188]},"geometry":{"type":"MultiLineString","coordinates":[[[-77.92138056441902,18.469357593227326],[-77.73737069477338,18.500930002688044],[-77.2873710135573,18.500930002688044],[-77.10324114340065,18.398661383088054]],[[-73.79987348353728,19.95262290516439],[-73.57487364292933,19.104405475930452],[-72.80265418997682,18.864770359655843],[-72.60866432740104,18.86504478169787]],[[-76.66662145270618,17.949772942659727],[-76.27487173022533,17.609605913224996],[-75.37487236779336,17.609605913224996],[-74.81237276627336,18.251816319028222],[-74.36237308505729,19.316876111628712],[-73.79987348353728,19.95262290516439]],[[-73.79987348353728,19.95262290516439],[-73.3498738023213,20.375041253465433],[-71.54987507745727,20.375041253465433],[-70.98737547593727,20.163975031975873],[-70.6911856857609,19.799436355797177]]]}},{"type":"Feature","properties":{"id":"finland-estonia-2-eesf-2","name":"Finland-Estonia 2 (EESF-2)","color":"#b91e4e","feature_id":"finland-estonia-2-eesf-2-0","coordinates":[25.1302486264449,59.78697022199855]},"geometry":{"type":"MultiLineString","coordinates":[[[24.752496701038964,59.43639985926234],[25.087556463679363,59.679663707208995],[25.200056383983473,59.9624316341522],[25.087556463679363,60.07486799642317],[24.932476573539617,60.171163188940554]]]}},{"type":"Feature","properties":{"id":"flag-atlantic-1-fa-1","name":"FLAG Atlantic-1 (FA-1)","color":"#80479b","feature_id":"flag-atlantic-1-fa-1-0","coordinates":[-37.9308101244673,42.84199037340771]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.674921743892284,50.06393817056209],[-6.299921301136742,50.09514516168246],[-8.099920026000767,49.87814473780419],[-10.799918113296759,49.58728674004685],[-16.199914287888834,48.40638249553803],[-23.399909187344846,47.19740739556967],[-39.59989771112098,43.073310783003215],[-50.39989006030513,40.04369219283004],[-61.19988240948919,39.35121757117122],[-68.39987730894529,39.87122513561614],[-71.6786849862071,41.09701835105607],[-72.1656446412403,41.217596026703156],[-72.36584449941695,41.217596026703156],[-72.82077417714041,41.14638300214584],[-73.19440391245767,41.022498134754876],[-73.34411380640174,40.909452382988626]],[[-73.65597358547731,40.60068600870845],[-71.09987539624129,39.87122513561614],[-68.39987730894529,39.6983233549332],[-61.19988240948919,39.00237890905839],[-50.39989006030513,39.524987333511675],[-39.59989771112098,42.41235450073586],[-23.399909187344846,46.5823550820958],[-16.199914287888834,46.5823550820958],[-5.399921938704683,49.29468421942562],[-4.499922576272716,49.29468421942562],[-3.599923213840749,49.14772788577412],[-2.812423771712709,48.852503408348504],[-2.767793803328928,48.534938683234785]]]}},{"type":"Feature","properties":{"id":"flag-north-asia-loopreach-north-asia-loop","name":"FLAG North Asia Loop/REACH North Asia Loop","color":"#c6b12e","feature_id":"flag-north-asia-loopreach-north-asia-loop-0","coordinates":[139.60237302402345,30.689317362291842]},"geometry":{"type":"MultiLineString","coordinates":[[[121.02775554672928,20.93310564677346],[118.79999007691224,21.111485983488812],[116.54999167083223,20.90143978523765],[115.19999262718419,21.111485983488812],[114.13129338426104,21.84429407917369],[113.93202352542546,22.227650940807052],[114.30004326471693,21.84429407917369],[115.19999262718419,21.42595132790301],[116.54999167083223,21.216397899942],[118.79999007691224,21.635297384859552],[120.12788799225589,21.66680565299917],[121.02775554672928,21.66680565299917],[121.94998784542422,22.469443964829516],[122.39998752664029,24.01990020343248],[122.17498768603225,24.53265756616073],[121.80144795065142,24.863504112487785],[122.17498768603225,24.94136317175375],[122.84998720785636,24.94136317175375],[125.99998497636834,24.32780311165181],[128.69998306366443,24.12261698700344],[132.74998019460836,24.53265756616073],[137.24997700676838,27.76358852605777],[138.82497589102445,29.344566989489813],[139.72497525345642,30.901396088515508],[140.17497493467252,32.43331330641721],[140.6249746158884,33.93964008831966],[140.4562247348366,34.69072647741027],[140.1785441559671,34.96779987634099],[140.09059999384857,35.01384769751837],[140.01677504674288,35.036003087164836],[140.0765375038106,35.01384769751837],[140.16448179519193,34.96779987634099],[140.42809975476052,34.69072647741027],[140.51247469558447,33.93964008831966],[139.94997509406446,32.43331330641721],[139.04997573163232,31.478822672736147],[137.69997668798445,30.708139993541643],[134.99997860068837,29.93125070442692],[132.74998019460836,29.93125070442692],[130.49998178852834,30.126049846722832],[129.5999824260964,30.901396088515508],[129.37498258548837,31.670513047087127],[129.37498258548837,32.8123187832876],[129.4874825057923,34.31215165223547],[128.99949285148878,35.17037876180022],[128.81248298396835,34.31215165223547],[128.24998338244836,32.8123187832876],[128.0249835418403,31.670513047087127],[127.34998402001638,29.540507745394493],[127.12498417940834,28.55704546571133],[125.99998497636834,26.1593079707739],[125.66248521545637,25.55188275942587],[125.32498545454442,24.12261698700344],[124.42498609211226,22.05298561667754],[122.84998720785636,21.111485983488812],[121.02775554672928,20.93310564677346]]]}},{"type":"Feature","properties":{"id":"flores-corvo-cable-system","name":"Flores-Corvo Cable System","color":"#425daa","feature_id":"flores-corvo-cable-system-0","coordinates":[-30.995581748343383,39.63909968175782]},"geometry":{"type":"MultiLineString","coordinates":[[[-28.647515469891374,38.52540431175965],[-28.799905361936922,38.38775473578444],[-29.69990472436889,38.651811712711336],[-30.599904086800947,39.35121757117122],[-31.128423712392745,39.46251104100099],[-31.108153726752057,39.5668202756421],[-31.110503725087366,39.67224286345835],[-30.599904086800947,39.524987333511675],[-28.799905361936922,39.00237890905839],[-28.1249058401129,38.91489898424152],[-27.96338595453508,39.01140845880094]]]}},{"type":"Feature","properties":{"id":"gemini-bermuda","name":"Gemini Bermuda","color":"#d73426","feature_id":"gemini-bermuda-0","coordinates":[-67.46657311302958,37.61607122842686]},"geometry":{"type":"MultiLineString","coordinates":[[[-74.04709330840446,40.12349265823708],[-71.09987539624129,39.524987333511675],[-67.41654467221427,37.589786573603064],[-64.79987985921724,34.683017659857974],[-64.12488033739322,33.565491482352044],[-63.89988049678528,32.8123187832876],[-64.23738025769724,32.43331330641721],[-64.7674091796907,32.31223462116531]]]}},{"type":"Feature","properties":{"id":"geo-eirgrid","name":"Geo-Eirgrid","color":"#50c3c9","feature_id":"geo-eirgrid-0","coordinates":[-4.56554667549013,53.586722425341584]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.165841396120176,53.52654276893218],[-5.624921779312721,53.70236555668246],[-3.330833404466384,53.45193909085112],[-3.027563619305618,53.20172844509667]]]}},{"type":"Feature","properties":{"id":"georgia-russia","name":"Georgia-Russia","color":"#ee7122","feature_id":"georgia-russia-0","coordinates":[39.98809262417004,43.24234193818626]},"geometry":{"type":"MultiLineString","coordinates":[[[38.660832300000735,44.32520489999982],[38.67787891632564,43.88277492065505],[39.37504634228764,43.564400497117596],[39.72611609358651,43.61550655406996],[39.82504602350353,43.401144973153954],[40.500045545327644,42.743713464436695],[41.40004490775961,42.246014931829706],[41.66752471827441,42.14675635811542]]]}},{"type":"Feature","properties":{"id":"germany-denmark-3","name":"Germany-Denmark 3","color":"#e61d2d","feature_id":"germany-denmark-3-0","coordinates":[12.037565708415386,54.38254333816774]},"geometry":{"type":"MultiLineString","coordinates":[[[11.94000577752764,54.577236267283396],[12.037565708415386,54.49397229925472],[12.037565708415386,54.29748595281839],[12.149575629066478,54.19157680986677]]]}},{"type":"Feature","properties":{"id":"glo-1","name":"Glo-1","color":"#3665b0","feature_id":"glo-1-0","coordinates":[-18.744837688538002,20.289425974077716]},"geometry":{"type":"MultiLineString","coordinates":[[[-0.204315619320974,5.558285889905858],[-0.449925445328682,3.279837005484997],[-0.449925445328682,2.156121468705662]],[[-4.544402544762735,50.82820142743812],[-6.074881460557064,50.38295743994838],[-7.649920344784692,49.73293362369082],[-9.899918750864702,48.70423463096067],[-14.399915563024809,44.05151922873524],[-14.399915563024809,39.6983233549332],[-13.499916200592752,35.78566189952622],[-12.82491667876882,33.189714664600466],[-12.599916838160784,30.126049846722832],[-13.24783202918155,28.161052262220792],[-14.624915403632755,26.964304734562898],[-17.549913331536874,22.884654113882444],[-18.899912375184826,19.95262290516439],[-18.899912375184826,14.801154224791581],[-18.899912375184826,11.735650161405832],[-17.549913331536874,8.635699417327467],[-13.049916519376767,4.164912849976942],[-10.799918113296759,1.918228780215599],[-3.599923213840749,1.918228780215599],[-0.449925445328682,2.156121468705662],[1.575073120143199,3.266814816815666],[2.25007264196731,3.379125568249918],[2.700072323183203,4.164912849976942],[3.423511810692114,6.439066911484626]]]}},{"type":"Feature","properties":{"id":"southern-caribbean-fiber","name":"Southern Caribbean Fiber","color":"#44c0bb","feature_id":"southern-caribbean-fiber-0","coordinates":[-63.106187025004914,16.267778494508416]},"geometry":{"type":"MultiLineString","coordinates":[[[-62.22175668617986,16.77071704667729],[-62.212331692856644,16.830453553562553],[-62.156081732704585,16.857419758344317],[-62.043631812365184,16.803627104178766]],[[-62.85054881207158,17.897915647022234],[-63.056031094576035,17.877381240665],[-63.1686310148092,17.930954706360694],[-63.1686310148092,18.037957897069543],[-63.078144550164644,18.08992880691782]],[[-64.81925984548825,17.773909269375704],[-64.5748800186092,17.984511967477506],[-64.12488033739322,17.931002277731235],[-63.924880479074965,17.180187287481317],[-62.37488157710876,15.452760959322058],[-61.762382011009194,14.692360031374392],[-61.31238232979321,14.147583506948735]],[[-61.715942043907745,16.028938259198707],[-61.87488193131321,15.886035719079029],[-61.98738185161723,15.940130106909258],[-63.05613109450518,17.180187287481317],[-63.17071434666634,17.422853263294805],[-63.112381054657234,17.77032870649733],[-63.22488097496117,17.877428826408096],[-63.22488097496117,18.037957897069543],[-63.078144550164644,18.08992880691782]],[[-66.10666893347558,18.46610423294742],[-65.69987922164921,18.518710038590605],[-65.36237946073724,18.465364393137126],[-65.08112965997725,18.251816319028222],[-64.68737993891322,18.091435124357137],[-64.12488033739322,18.144943564296213],[-63.4498808155692,18.251816319028222],[-63.22488097496117,18.198340634646357],[-63.078144550164644,18.08992880691782]],[[-61.57168214610275,16.244479667932865],[-61.47013221804175,15.988768942769152],[-61.49527220023222,15.892797111330715],[-61.607792120522106,15.838661138431222],[-61.715942043907745,16.028938259198707]],[[-61.20828240353852,13.145460938850311],[-61.59343213069483,13.054150695298627],[-61.9309318916068,12.395734000022975],[-61.93133189132347,12.191526789551752],[-61.790581991032056,12.008779421336667]],[[-60.986602560578575,14.032406258622672],[-61.19988240948919,13.92930384327183],[-61.42488225009723,13.492128176464083],[-61.42488225009723,13.273238157547594],[-61.20828240353852,13.145460938850311]],[[-64.81925984548825,17.773909269375704],[-64.68737993891322,18.091435124357137]],[[-61.31238232979321,14.147583506948735],[-61.19988240948919,14.038469666260218],[-60.986602560578575,14.032406258622672]],[[-61.31238232979321,14.147583506948735],[-60.974882568881156,14.256644994553485],[-60.74988272827321,14.147583506948735],[-59.84988336584115,13.273238157547594],[-59.60740353761622,13.084493800663104]],[[-61.09417248437512,14.615455776713933],[-61.31238232979321,14.801154224791581],[-61.42488225009723,15.018578573757472],[-61.39251227302841,15.308036758161125],[-61.53738217040116,15.452760959322058],[-61.72028204083323,15.838661138431222],[-61.715942043907745,16.028938259198707]],[[-61.715942043907745,16.028938259198707],[-61.87488193131321,15.994221447251933],[-62.09988177192116,16.534196198259725],[-62.043631812365184,16.803627104178766],[-61.98738185161723,16.965102599435927],[-61.84688195174463,17.159549933438978]],[[-62.729761325708566,17.298635546518675],[-63.05613109450518,17.180187287481317]],[[-61.09417248437512,14.615455776713933],[-61.14363244933723,14.365653759228442],[-61.14363244933723,14.147583506948735],[-60.986602560578575,14.032406258622672]],[[-61.790581991032056,12.008779421336667],[-61.81483197385321,11.861435172630657],[-61.64988209070518,11.294709319565477],[-61.59363213055321,11.073982781226615],[-61.64929209112319,10.687695708022828]]]}},{"type":"Feature","properties":{"id":"globalconnect-2-gc2","name":"GlobalConnect 2 (GC2)","color":"#3880c2","feature_id":"globalconnect-2-gc2-0","coordinates":[11.284722502689345,57.483603421231344]},"geometry":{"type":"MultiLineString","coordinates":[[[10.516666785834435,57.331044232885546],[10.80006658507127,57.45103605396468],[11.700065947503239,57.51151320633319],[12.076235681021313,57.4876890992735]]]}},{"type":"Feature","properties":{"id":"globalconnect-3-gc3","name":"GlobalConnect 3 (GC3)","color":"#d13829","feature_id":"globalconnect-3-gc3-0","coordinates":[10.974669081828283,55.33230861812641]},"geometry":{"type":"MultiLineString","coordinates":[[[11.149386337610071,55.32605364145998],[11.025066425679308,55.33458061322904],[10.799576585418436,55.32441516057587]]]}},{"type":"Feature","properties":{"id":"globalconnect-kpn","name":"GlobalConnect-KPN","color":"#e03225","feature_id":"globalconnect-kpn-0","coordinates":[11.828189393563592,54.286824689205325]},"geometry":{"type":"MultiLineString","coordinates":[[[11.94000577752764,54.577236267283396],[11.812565867807347,54.49397229925472],[11.812565867807347,54.29748595281839],[12.132485641173277,54.0791774165702]]]}},{"type":"Feature","properties":{"id":"globenet","name":"GlobeNet","color":"#7b489c","feature_id":"globenet-0","coordinates":[-39.35235425663465,2.18873777337913]},"geometry":{"type":"MultiLineString","coordinates":[[[-80.08893155227202,26.350584577319996],[-79.64986933934534,26.813799487940788],[-77.84987061448132,28.95155473219332],[-76.49987157083336,30.901396088515508],[-75.14987252718532,33.565491482352044],[-74.47487300595729,35.54192681258013],[-73.91237340443729,39.00237890905839],[-74.33781310245581,39.60388206573738],[-73.3498738023213,39.35121757117122],[-71.09987539624129,39.00237890905839],[-68.31654403464633,37.589786573603064],[-65.69987922164921,34.683017659857974],[-64.5748800186092,33.56549148238552],[-64.12488033739322,32.8123187832876],[-64.23738025769724,32.52821504536491],[-64.7674091796907,32.31223462116531],[-64.34988017800117,31.286738814391754],[-57.59988495976114,22.05298561667754],[-52.19988878516916,15.669513225155248],[-46.79989261057708,10.41081650540272],[-38.69989834868901,1.468426767331968],[-38.02489882686499,-1.231315750217412],[-38.542968459859594,-3.718735129291092],[-35.99990026139302,-3.479268678970064],[-34.199901536529,-4.152767748013638],[-32.174902964837905,-5.4979506821245],[-31.274903608624967,-9.29042430103552],[-32.84990249288096,-13.698987269610743],[-34.64990121774498,-18.026426383713453],[-38.02489882686499,-22.873434953546333],[-40.94989675476902,-23.905969261790265],[-42.29989579841706,-23.700175468198225],[-43.20956515399876,-22.903486555497956],[-42.29989579841706,-23.59715656726005],[-40.94989675476902,-23.70010845220312],[-38.36239858777696,-22.56211951183571],[-35.549900580176946,-18.026426383713453],[-33.74990185531301,-13.698987269610743],[-31.949903130448895,-9.29042430103552],[-32.51240272885988,-5.83380111633244],[-34.199901536529,-4.489307688629284],[-35.99990026139302,-3.70382647066824],[-38.542968459859594,-3.718735129291092]],[[-80.08893155227202,26.350584577319996],[-79.64986933934534,26.663094151095223],[-77.84987061448132,27.364667993860262],[-76.94987125204935,27.164665812813517],[-73.3498738023213,24.53265756616073],[-69.29987667137726,22.469443964829516],[-67.94987762772922,20.58581909604039],[-67.83737770742529,18.678647022154717],[-68.17487746833726,17.82393441253792],[-68.39987730894529,15.23578178303578],[-67.49987794651324,12.615395567393394],[-67.27487810590529,11.294709319565477],[-66.96042832866438,10.599588212552636],[-66.71237850438528,10.85308969074528],[-65.69987922164921,11.405009147532946],[-63.89988049678528,11.735650161405832],[-62.99988113435322,11.735650161405832],[-61.19988240948919,11.735650161405832],[-59.399883684625166,11.294709319565477],[-54.89988687246515,9.08033076823294],[-51.2998894227371,6.852191098754328],[-46.79989261057708,5.061986954416114],[-40.94989675476902,1.468426767331968],[-39.149898029904996,-1.231315750217412],[-38.542968459859594,-3.718735129291092]],[[-68.39987730894529,15.23578178303578],[-70.19987603380923,14.801154224791581],[-71.54987507745727,14.147583506948735],[-74.24987316475335,12.834868817846521],[-74.92487268657729,11.735650161405832],[-74.77975278938153,10.940445615726643]]]}},{"type":"Feature","properties":{"id":"go-1-mediterranean-cable-system","name":"GO-1 Mediterranean Cable System","color":"#49b751","feature_id":"go-1-mediterranean-cable-system-0","coordinates":[13.336982061256101,36.6424823724163]},"geometry":{"type":"MultiLineString","coordinates":[[[12.591375316091606,37.65058617278613],[12.712565230239315,37.23235432155614],[13.05006499115128,36.87321951208928],[14.062564273887357,36.05897312258681],[14.411884026425975,35.95058770661474]]]}},{"type":"Feature","properties":{"id":"gondwana-1","name":"Gondwana-1","color":"#583c97","feature_id":"gondwana-1-0","coordinates":[158.55470339591537,-27.95238431854148]},"geometry":{"type":"MultiLineString","coordinates":[[[151.20699711948467,-33.86955173177822],[152.01359716589357,-33.76115742340548],[154.79996457419256,-32.23291009389603],[157.49996266148847,-28.743810281149894],[165.5999569233767,-22.665969967794794],[166.4392563288091,-22.303308064620133]]]}},{"type":"Feature","properties":{"id":"oteglobe-kokkini-bari","name":"OTEGLOBE Kokkini-Bari","color":"#eb8d22","feature_id":"oteglobe-kokkini-bari-0","coordinates":[19.37472434465879,39.9858158704024]},"geometry":{"type":"MultiLineString","coordinates":[[[16.868812285914967,41.12570905852263],[18.00006148452737,41.154101109901234],[18.675061006351484,40.89949091487166],[19.125060687567377,40.38732029077508],[19.237560607871487,40.04369219283004],[19.923990121598468,39.75405284068902],[19.125060687567377,40.04369219283004],[19.012560767263448,40.38732029077508],[18.562561086047374,40.81440215469873],[18.00006148452737,41.0693404382162],[16.868812285914967,41.12570905852263]]]}},{"type":"Feature","properties":{"id":"greenland-connect-north","name":"Greenland Connect North","color":"#b1542d","feature_id":"greenland-connect-north-0","coordinates":[-53.99988751003309,66.40121848608965]},"geometry":{"type":"MultiLineString","coordinates":[[[-51.72996911806463,64.1812188111394],[-52.19988878516916,64.12167519439019],[-52.874888306993086,64.31739001144432],[-53.09988814760113,64.70468599661157],[-53.09988814760113,65.08652060243699],[-52.905722331173045,65.40767479539332],[-53.549887828817106,65.5562256550423],[-53.99988751003309,65.83404693088374],[-53.99988751003309,66.38080449917227],[-53.99988751003309,66.56045213116762],[-53.67338536157225,66.93947156321055],[-54.224887350641126,67.0039445723606],[-54.44988719124917,67.26621947299489],[-54.44988719124917,68.12014116880253],[-53.549887828817106,68.61776755908163],[-52.859115918877464,68.70697594519784]]]}},{"type":"Feature","properties":{"id":"greenland-connect","name":"Greenland Connect","color":"#f47920","feature_id":"greenland-connect-0","coordinates":[-47.191261354260966,59.826345721780775]},"geometry":{"type":"MultiLineString","coordinates":[[[-53.96027753868921,48.20755282132369],[-53.549887828817106,48.0692013806548],[-53.09988814760113,48.256798568947445],[-52.19988878516916,48.70423463096067],[-49.49989069787308,50.740281893948165],[-49.04989101665709,51.86557165559819],[-50.84988974152112,60.13094286609847],[-51.74988910395308,61.23255301306618],[-52.64988846638514,62.712391894030624],[-52.64988846638514,63.526173423791214],[-51.97488894456112,63.82549832634276],[-51.72996911806463,64.1812188111394],[-51.862389024257105,63.82549832634276],[-52.4248886257771,63.526173423791214],[-52.19988878516916,62.712391894030624],[-50.39989006030513,61.23255301306618],[-48.59989133544111,60.35428947498098],[-46.79989261057708,59.679663707208995],[-45.89989324814503,59.45171731890513],[-43.19989516084903,59.222223914844314],[-27.899905999504952,61.01524141470424],[-22.499909824912876,62.08696177092747],[-20.92491094065689,63.32486213107881],[-20.141851495383488,63.642367197144765]],[[-46.03539315215566,60.71902841019273],[-46.3498929293611,60.35428947498098],[-46.79989261057708,59.679663707208995]]]}},{"type":"Feature","properties":{"id":"guam-okinawa-kyushu-incheon-goki","name":"Guam Okinawa Kyushu Incheon (GOKI)","color":"#48b64e","feature_id":"guam-okinawa-kyushu-incheon-goki-0","coordinates":[131.4448329418809,21.902304279180385]},"geometry":{"type":"MultiLineString","coordinates":[[[144.80036165800522,13.5136853395933],[144.44997190622448,13.92930384327183],[138.59997605041642,17.395022634700517],[131.8499808321764,21.635297384859552],[128.69998306366443,23.7112581424843],[127.57498386062441,24.94136317175375],[127.12498417940834,25.957179978764344],[127.12498417940834,26.562513149236715],[128.0249835418403,28.55704546571133],[128.24998338244836,29.540507745394493],[128.92498290427227,30.5144959597591],[129.0374828245764,31.670513047087127],[129.5999824260964,33.565491482352044],[130.04998210731227,33.93964008831966],[130.45721181882723,34.03316211713014],[131.0319114117045,33.83952016970107]],[[127.12498417940834,25.957179978764344],[127.46248394032031,26.1593079707739],[127.68084378563216,26.212414126750428]]]}},{"type":"Feature","properties":{"id":"guernsey-jersey-4","name":"Guernsey-Jersey-4","color":"#3d7abe","feature_id":"guernsey-jersey-4-0","coordinates":[-2.389985809619759,49.31280629009675]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.201384204578854,49.24804518533205],[-2.362424090496635,49.29468421942562],[-2.55807395189651,49.423325709430145]]]}},{"type":"Feature","properties":{"id":"gulf-bridge-international-cable-systemmiddle-east-north-africa-cable-system-gbicsmena","name":"Gulf Bridge International Cable System/Middle East North Africa Cable System (GBICS/MENA)","color":"#b8d432","feature_id":"gulf-bridge-international-cable-systemmiddle-east-north-africa-cable-system-gbicsmena-0","coordinates":[64.40630096558134,22.116248705748358]},"geometry":{"type":"MultiLineString","coordinates":[[[49.27503932903964,28.95155473219332],[49.16253940873571,28.853067255226264]],[[56.33372432860119,25.121690004958644],[56.70003406910378,25.348717422116714],[56.86878394955967,26.1593079707739],[56.70003406910378,26.562513149236715],[56.2500343878877,26.562513149236715],[55.80003470667163,26.20978541224739],[55.35003502545574,25.957179978764344],[53.55003630059162,25.957179978764344],[52.20003725694376,25.855985466072205],[51.45198778686903,25.538926547132757],[51.75003757572769,26.1593079707739],[51.75003757572769,26.562513149236715],[51.525037735119646,26.964304734562898],[50.85003821329572,27.364667993860262],[50.175038691471606,28.161052262220792],[49.16253940873571,28.853067255226264],[48.60003980721571,29.049948644465697],[47.974840250113054,29.37410420420039]],[[56.33372432860119,25.121690004958644],[57.093783790167706,25.348717422116714],[57.093783790167706,26.1593079707739],[56.92503390971164,26.562513149236715],[56.2500343878877,26.763586569619914],[55.80003470667163,26.512189502051797],[55.35003502545574,26.512189502051797],[53.55003630059162,26.461843796188983],[53.10003661937573,26.562513149236715],[52.425037097551616,26.964304734562898],[51.75003757572769,27.364667993860262],[50.40003853207964,28.55704546571133],[49.27503932903964,28.95155473219332],[48.82503964782375,29.540507745394493],[48.5317798555716,29.92363278689715]],[[58.1762030233719,23.68487753168473],[58.331282913511636,23.91710129093513],[58.50003279396771,24.12261698700344]],[[50.65618835062081,26.241586178580675],[51.075038053903754,26.562513149236715],[51.525037735119646,26.964304734562898]],[[50.214198663730556,26.28537535931817],[50.23128865162375,26.461843796188983],[50.40003853207964,26.964304734562898],[50.85003821329572,27.364667993860262]],[[50.84271821848139,28.970348642858344],[50.40003853207964,28.55704546571133]],[[56.33372432860119,25.121690004958644],[56.92503390971164,24.762719791019048],[58.50003279396771,24.12261698700344],[59.85003265596724,24.73717420686441],[63.90002896855988,22.469443964829516],[66.60002705585578,20.58581909604039],[70.20002450558383,19.8468404054317],[72.87590260996693,19.07607425728523]]]}},{"type":"Feature","properties":{"id":"hantru1-cable-system","name":"HANTRU1 Cable System","color":"#45469c","feature_id":"hantru1-cable-system-0","coordinates":[155.96659845524127,9.858506753455973]},"geometry":{"type":"MultiLineString","coordinates":[[[159.0702615490743,7.786404758723782],[158.84996170513668,8.635699417327467],[158.84996170513668,9.52441134501949]],[[167.39995564824065,8.635699417327467],[169.64995405432066,7.744889052551447],[171.38026999999985,7.08971]],[[144.69470173285575,13.464772962370143],[144.8437216272884,13.273238157547594],[145.34997126865645,12.944533868662969],[146.24997063108842,12.395734000022975],[147.14996999352056,11.955858207114732],[149.39996839960057,11.294709319565477],[151.1999671244645,10.41081650540272],[158.84996170513668,9.52441134501949],[163.7999581985126,9.08033076823294],[167.39995564824065,8.635699417327467],[167.40581564408944,9.186487475823204]]]}},{"type":"Feature","properties":{"id":"hawaiki","name":"Hawaiki","color":"#3851a3","feature_id":"hawaiki-0","coordinates":[-169.40629188424063,-1.1960056555101188]},"geometry":{"type":"MultiLineString","coordinates":[[[179.9999467222889,-23.905969261790265],[173.69995118526478,-28.150316035845893],[170.9999530979687,-29.137613161609917],[166.94995596702458,-32.61276000573574],[165.5999569233767,-34.11602012163193]],[[-173.6998027134901,-11.943944931746815],[-172.07822386223177,-12.894213639363048],[-170.999804626194,-13.698987269610743],[-170.69570484162125,-14.276544564158804]],[[-158.05689434939785,21.335422205733376],[-157.8373139506259,21.134806167482292],[-157.61231411001796,21.134806167482292],[-157.49981418971396,21.169779563880702],[-157.38731427000602,21.356164482330126],[-152.99981737755394,25.348717422116714],[-147.6030982105313,30.516425505901374],[-138.60310458621126,35.05406343239751],[-128.24983491067374,42.743713464436695],[-125.09983714216159,45.172673246984274],[-124.19983777972962,45.80361417369449],[-123.52483825790569,45.80361417369449],[-122.98980067585488,45.522898824562965]],[[-158.05689434939785,21.335422205733376],[-158.2873136318419,20.796306105108872],[-159.07481307396995,18.678647022154717],[-161.99981100187398,13.054150695298627],[-167.39980717646606,2.367912558705407],[-171.4498043074101,-4.825692499217419],[-172.79980335105813,-10.17745743036107],[-173.6998027134901,-11.943944931746815],[-176.39980080078607,-18.45381377577717],[-179.99979825051412,-23.905969261790265]],[[174.57446056575412,-36.1261499070875],[174.59995054769675,-35.59302880961419],[174.14995086648068,-34.85783936223576],[172.7999518228328,-34.11602012163193],[165.5999569233767,-34.11602012163193],[159.29996138635258,-35.042260722865336],[155.69996393662453,-34.85783936223576],[152.09996648689665,-34.30209296887181],[151.20699711948467,-33.86955173177822]]]}},{"type":"Feature","properties":{"id":"hawaiki","name":"Hawaiki","color":"#939597","feature_id":"hawaiki-1","coordinates":[-175.19044619757412,-18.535728879049135]},"geometry":{"type":"MultiLineString","coordinates":[[[-176.39980080078607,-18.45381377577717],[-174.8248019135497,-18.560495634149003],[-173.98368251298305,-18.647678684858587]]]}},{"type":"Feature","properties":{"id":"hawk","name":"Hawk","color":"#ad4599","feature_id":"hawk-0","coordinates":[15.621483023223544,34.38069365262526]},"geometry":{"type":"MultiLineString","coordinates":[[[32.466651236259686,34.76657169708598],[31.500051920411707,34.157137999942634],[29.645663234673997,32.841864074406956],[28.68266219511189,32.22813703671877]],[[5.372530429989069,43.29362778902908],[5.850070091695361,41.74435878948223],[6.975069294735365,38.651811712711336],[7.650068816559295,37.94551049545967],[9.000067859611436,37.67887792909206],[10.348617229769278,37.67887792909206],[10.91256650537538,37.32187222983504],[11.475066105703581,37.23235432155614],[12.262565549023423,36.24065523321488],[12.600065309935387,35.78566189952622],[13.162564911457572,35.419780517080355],[14.400064034799321,34.683017659857974],[16.65006244087933,34.12610104005753],[19.350060528175415,34.49779087043369],[22.050058614875596,34.29666313310539],[25.200056383983473,33.565491482352044],[28.66495596458733,32.243210016262736],[29.8935130590948,31.191465077638455]]]}},{"type":"Feature","properties":{"id":"exa-north-and-south","name":"EXA North and South","color":"#4cb96a","feature_id":"exa-north-and-south-0","coordinates":[-5.766007052696966,55.067817143282014]},"geometry":{"type":"MultiLineString","coordinates":[[[-70.95027550281526,42.46364601310954],[-69.29987667137726,42.578254086072846],[-65.69987922164921,42.743713464436695],[-63.89988049678528,44.05151922873524],[-63.572490728711166,44.65322870491472],[-61.19988240948919,44.53466416326733],[-50.39989006030513,46.73677946695437],[-39.59989771112098,49.87814473780419],[-23.399909187344846,54.03403825672422],[-16.199914287888834,54.81936191424915],[-12.599916838160784,55.33458061322904],[-8.999919388432733,55.58970711313177],[-6.676191034583779,55.415759313161054],[-6.074921460528704,55.33458061322904],[-4.9499222574887,54.36308597431902],[-4.9499222574887,54.10005748241058],[-4.837372337220154,53.967914030873956],[-3.599923213840749,53.70236555668246],[-3.006373634316763,53.647933398832954],[-3.599923213840749,53.56895929103051],[-5.624921779312721,53.368058136502164],[-6.248311337697704,53.34812463259513],[-5.624921779312721,53.23359531864929],[-5.399921938704683,52.69150159464696],[-5.624921779312721,52.14259270367212],[-7.199920663568708,51.44682015166956],[-10.799918113296759,50.740281893948165],[-16.199914287888834,50.740281893948165],[-23.399909187344846,51.30637567738274],[-39.59989771112098,49.29468421942562],[-50.39989006030513,46.11643477220242],[-61.19988240948919,44.37405751055857],[-63.572490728711166,44.65322870491472]],[[-6.676191034583779,55.130930058159635],[-6.676191034583779,55.415759313161054]]]}},{"type":"Feature","properties":{"id":"exa-express","name":"EXA Express","color":"#b03d2b","feature_id":"exa-express-0","coordinates":[-33.54104515583307,49.62883332888279]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.010863631136018,51.293645748996475],[-4.049922895056732,51.44682015166956],[-5.399921938704683,51.30637567738274],[-7.199920663568708,51.30637567738274],[-10.799918113296759,50.59767719905356],[-16.199914287888834,50.454639125893955],[-23.399909187344846,50.740281893948165],[-39.59500294438848,48.96533145710388],[-50.394995293572634,45.766420912645],[-61.19988240948919,44.21300917863173],[-63.57581072635926,44.646178570763084]],[[-8.472719761905951,51.89860855381128],[-7.649920344784692,51.586833980054095],[-7.199920663568708,51.30637567738274]]]}},{"type":"Feature","properties":{"id":"high-capacity-undersea-guernsey-optical-fibre-hugo","name":"High-capacity Undersea Guernsey Optical-fibre (HUGO)","color":"#57bf9b","feature_id":"high-capacity-undersea-guernsey-optical-fibre-hugo-0","coordinates":[-4.1418581135246875,49.674988056927326]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.537573966418871,49.50954697267552],[-3.599923213840749,49.58728674004685],[-4.499922576272716,49.73293362369082],[-5.399921938704683,49.805593628808026],[-5.654511758350902,50.043147911894295]],[[-2.558223951790181,49.42685110088373],[-2.924923692016728,49.29468421942562],[-3.459883313046331,48.873416834450104],[-3.459883313046331,48.73055297916871]]]}},{"type":"Feature","properties":{"id":"hokkaido-sakhalin-cable-system-hscs","name":"Hokkaido-Sakhalin Cable System (HSCS)","color":"#adc136","feature_id":"hokkaido-sakhalin-cable-system-hscs-0","coordinates":[141.2325731513499,44.94776832877892]},"geometry":{"type":"MultiLineString","coordinates":[[[141.31540412678189,43.17117526599852],[141.07497429710446,43.564400497117596],[141.07497429710446,44.05151922873524],[141.2999741377125,45.331071073324864],[141.63747389862448,46.272182853813646],[141.8593537414428,46.68485289093097]]]}},{"type":"Feature","properties":{"id":"honotua","name":"Honotua","color":"#ba8c34","feature_id":"honotua-0","coordinates":[-153.67475227041388,1.043334882323639]},"geometry":{"type":"MultiLineString","coordinates":[[[-155.83140598217537,20.03998810568653],[-156.262315066966,19.740987365524937],[-156.5998148272819,19.104405475930452],[-156.5998148272819,18.251816319028222],[-154.79981610241796,5.957818681088533],[-150.29981929025786,-13.698987269610743],[-149.39981992842198,-17.168553094226155],[-149.44108067057505,-17.51215245847912],[-149.56857057763543,-17.433258753637784],[-149.73731968933393,-17.379584661169034],[-149.8295103855952,-17.538318795988708]],[[-149.73731968933393,-17.379584661169034],[-150.0748194496499,-17.27600887012678],[-150.749818971474,-16.953454989809906],[-151.03106950464166,-16.84581334779892],[-150.99996952686269,-16.729596913676634]],[[-151.03106950464166,-16.84581334779892],[-151.19981865269,-16.736195168143745],[-151.36856925702767,-16.68232030577119],[-151.4429792018391,-16.730535431149917]],[[-151.36856925702767,-16.68232030577119],[-151.4810691744897,-16.52060477977994],[-151.649818334502,-16.4666694364009],[-151.749478976969,-16.50585915193275]]]}},{"type":"Feature","properties":{"id":"i2i-cable-network-i2icn","name":"i2i Cable Network (i2icn)","color":"#d86526","feature_id":"i2i-cable-network-i2icn-0","coordinates":[92.97396523862938,8.79416724317216]},"geometry":{"type":"MultiLineString","coordinates":[[[80.24298739105474,13.06385310188338],[81.45001653598388,12.395734000022975],[83.70001494206389,11.294709319565477],[89.10001111665605,9.967915186974132],[93.1500082476,8.740828945067943],[95.40000665368001,7.744889052551447],[97.42500521915215,6.740481724921185],[99.45000378462413,5.286069860821008],[100.23750322675217,4.613591578862773],[100.68750290796805,3.266814816815666],[101.25000250948806,2.705081160335761],[102.15000187192003,2.143087178471855],[102.68279723997186,1.755006673795484],[103.34065102845322,1.355886056053319],[103.50000091556807,1.257299278085184],[103.64609081207688,1.338585852071497]]]}},{"type":"Feature","properties":{"id":"ingrid","name":"INGRID","color":"#41b549","feature_id":"ingrid-0","coordinates":[-2.370277513057691,49.34057361627847]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.021314332142032,49.22527732021623],[-1.916424406447071,49.256680777352365],[-1.650024595167177,49.283282999655135]],[[-2.529413972199473,49.4510471803252],[-2.304174131761598,49.29468421942562],[-2.201384204578854,49.24804518533205]]]}},{"type":"Feature","properties":{"id":"interchange-cable-network-1-icn1","name":"Interchange Cable Network 1 (ICN1)","color":"#cd2b42","feature_id":"interchange-cable-network-1-icn1-0","coordinates":[173.4391172213758,-18.356908573044453]},"geometry":{"type":"MultiLineString","coordinates":[[[168.32300499434405,-17.73050232618011],[168.63745477158477,-17.919416202114704],[169.19995437310476,-18.133371564207607],[177.29994863499283,-18.560495634149003],[178.0874480765248,-18.560495634149003],[178.43744782917764,-18.123810943537187]]]}},{"type":"Feature","properties":{"id":"globalconnect-denmark-sweden","name":"GlobalConnect Denmark-Sweden","color":"#3465b0","feature_id":"globalconnect-denmark-sweden-0","coordinates":[12.642148694188203,55.526080187888766]},"geometry":{"type":"MultiLineString","coordinates":[[[12.415005441033497,55.647554790974716],[12.487565389631278,55.55790652931397],[12.600065309935387,55.526080187888724],[12.712565230239315,55.526080187888724],[12.916665085653134,55.533568060627864]]]}},{"type":"Feature","properties":{"id":"italy-albania","name":"Italy-Albania","color":"#a8842d","feature_id":"italy-albania-0","coordinates":[18.16083930162342,41.2387523289666]},"geometry":{"type":"MultiLineString","coordinates":[[[16.868812285914967,41.12570905852263],[18.00006148452737,41.2387523289666],[19.125060687567377,41.2387523289666],[19.45006045733454,41.31691028026608]]]}},{"type":"Feature","properties":{"id":"italy-croatia","name":"Italy-Croatia","color":"#c23f2f","feature_id":"italy-croatia-0","coordinates":[12.863045445529735,45.331071073324864]},"geometry":{"type":"MultiLineString","coordinates":[[[12.25740911740422,45.49608242788426],[12.376065468618977,45.331071073324864],[13.275064831759318,45.331071073324864],[13.533478213425028,45.433276695186386]]]}},{"type":"Feature","properties":{"id":"italy-greece-1-ig-1","name":"Italy-Greece 1 (IG-1)","color":"#55b847","feature_id":"italy-greece-1-ig-1-0","coordinates":[19.282686617727276,39.9505406592124]},"geometry":{"type":"MultiLineString","coordinates":[[[18.48570114049574,40.14820187022187],[18.675061006351484,40.04369219283004],[19.80006020939149,39.87122513561614],[19.96881008984738,39.78479013330389],[19.96881008984738,39.74158952932109],[20.01546005680019,39.68362591227569]]]}},{"type":"Feature","properties":{"id":"italy-libya","name":"Italy-Libya","color":"#2767b2","feature_id":"italy-libya-0","coordinates":[12.848474053890431,35.265103678646945]},"geometry":{"type":"MultiLineString","coordinates":[[[12.591375316091606,37.65058617278613],[12.543815349783424,37.23235432155614],[12.600065309935387,36.87321951208928],[12.825065150547426,35.419780517080355],[13.162564911455389,33.189714664600466],[13.187364893886881,32.87762290319534]]]}},{"type":"Feature","properties":{"id":"italy-monaco","name":"Italy-Monaco","color":"#51459c","feature_id":"italy-monaco-0","coordinates":[8.098609573186144,43.8078748413408]},"geometry":{"type":"MultiLineString","coordinates":[[[7.42672897477544,43.7382556879356],[7.875068657167333,43.72721479104982],[8.325068338383225,43.88958773629964],[8.48375822596588,44.30574823054251]]]}},{"type":"Feature","properties":{"id":"jaka2ladema","name":"JaKa2LaDeMa","color":"#4a499e","feature_id":"jaka2ladema-0","coordinates":[109.588195991442,-2.6068289429743916]},"geometry":{"type":"MultiLineString","coordinates":[[[117.55106096166544,0.327276576000234],[117.89999071448027,0.118588418888312],[119.24998975812831,-1.006358951224796],[119.38846966002788,-1.142074966989317]],[[111.14999549624025,-3.479268678970064],[112.0499948586722,-3.92832730414264],[112.94999422110418,-3.92832730414264],[114.07499342414418,-3.70382647066824],[114.60399304939611,-3.327586828573115]],[[109.97196633076723,-1.858723986693225],[109.57499661198416,-1.906058394384765],[109.34999677137613,-2.130918480960333]],[[109.33554678161278,-0.027021392288274],[108.89999709016024,-0.443906656918545],[109.12499693076828,-1.681168935904995],[109.34999677137613,-2.130918480960333],[109.79999645259221,-3.029995968008661],[110.47499597441613,-3.479268678970064],[111.14999549624025,-3.479268678970064],[111.59999517745614,-3.254657364797681],[111.75292506911941,-2.849274293012173]],[[114.09716340843899,-8.615167135560569],[114.41249318505615,-8.893723131858618],[114.97499278657615,-8.893723131858618],[115.22152261133631,-8.656661268449556]],[[116.0815320026935,-8.585998888200503],[115.8749921490083,-8.566064314426075],[115.53749238809615,-8.595852074426833],[115.33144253346806,-8.536714291275516]]]}},{"type":"Feature","properties":{"id":"jakabare","name":"JAKABARE","color":"#33af85","feature_id":"jakabare-0","coordinates":[107.05910632420758,-1.5220792479338443]},"geometry":{"type":"MultiLineString","coordinates":[[[104.8499999592161,1.35596103499925],[104.62500011860807,1.35596103499925],[104.20156041857692,1.328818505780107],[103.98701057056589,1.389451396800233]],[[104.13320046700375,1.173685663377224],[104.28790035741287,1.201587148227037],[104.62500011860807,1.299726182129338],[104.8499999592161,1.35596103499925],[105.29999964043219,1.243490076978041],[106.87499852468808,-0.331409329660265],[107.15324832757338,-2.130918480960333],[107.269748245044,-3.029995968008661],[107.5499980465122,-4.60145376483711],[107.09999836529612,-5.273944363641298],[107.12099835041957,-5.981154260263285]],[[109.18222689022609,-0.061391357195038],[108.89999709016024,0.006088583243203],[106.87499852468808,-0.331409329660265]]]}},{"type":"Feature","properties":{"id":"janna","name":"Janna","color":"#ba9f39","feature_id":"janna-0","coordinates":[10.71286797642036,38.11928817607388]},"geometry":{"type":"MultiLineString","coordinates":[[[9.109447782721553,39.215608817480685],[9.450067541423229,38.739615313825674],[11.700065947503239,37.6343456033406],[12.591375316091606,37.65058617278613]],[[9.496447507971368,40.92357574660862],[9.900067222043404,41.09760615413818],[10.575066743867334,41.435845950249096],[11.250066266287346,41.74435878948223],[11.796845878943602,42.091414250473434]]]}},{"type":"Feature","properties":{"id":"chi","name":"CHI","color":"#ae4b9c","feature_id":"chi-0","coordinates":[-139.97348724589224,28.71189196953591]},"geometry":{"type":"MultiLineString","coordinates":[[[-158.22066328843266,21.4634468234482],[-158.39981354930393,21.635297384859552],[-158.39981245229697,21.73983373091106],[-158.17481371153798,22.05298561667754],[-157.94981387092994,22.261369678340607],[-152.99981737755394,24.53265756616073],[-147.6030982105313,27.366657115363733],[-138.60310458621126,28.953514579902283],[-127.79983522945767,32.052708023486204],[-122.39983905486586,34.683017659857974],[-120.8472016490899,35.367078251717096]]]}},{"type":"Feature","properties":{"id":"jerry-newton","name":"Jerry Newton","color":"#4365af","feature_id":"jerry-newton-0","coordinates":[-68.5905922192149,12.158312080067464]},"geometry":{"type":"MultiLineString","coordinates":[[[-68.28414739152544,12.163814736152432],[-68.51237722924922,12.175887185507976],[-68.89264695986267,12.09043961830498]]]}},{"type":"Feature","properties":{"id":"jonah","name":"Jonah","color":"#43b549","feature_id":"jonah-0","coordinates":[24.544287801333393,34.85279297386099]},"geometry":{"type":"MultiLineString","coordinates":[[[34.76967960477271,32.04501185826483],[33.750050327087614,32.52821504536491],[31.050052239791533,33.28381101905092],[25.200056383983473,34.683017659857974],[23.34443269554493,35.16342965688123],[22.050058615471496,35.876870570092834],[19.80006020939149,37.67887792909206],[19.182760646692255,39.48474996079946],[18.900060846959338,40.04369219283004],[18.787560926655413,40.38732029077508],[18.00006148452737,40.98447035812857],[16.868812285914967,41.12570905852263]]]}},{"type":"Feature","properties":{"id":"kattegat-2","name":"Kattegat 2","color":"#7fc241","feature_id":"kattegat-2-0","coordinates":[11.91479473627233,56.93701515888509]},"geometry":{"type":"MultiLineString","coordinates":[[[10.514616787286652,57.24491811100573],[10.687566664767344,57.238576475009886],[10.966956466845055,57.27264724087425]],[[11.199286302260399,57.31375088583712],[11.700065947503239,57.02488552657649],[12.150065628719313,56.840738642145496],[12.683365250924915,56.68336908123943]]]}},{"type":"Feature","properties":{"id":"kodiak-kenai-fiber-link-kkfl","name":"Kodiak Kenai Fiber Link (KKFL)","color":"#36bcac","feature_id":"kodiak-kenai-fiber-link-kkfl-0","coordinates":[-151.6498183339059,58.40126734741937]},"geometry":{"type":"MultiLineString","coordinates":[[[-149.4476706657402,60.110049313261904],[-149.3998199278259,59.906069924574304],[-149.3998199278259,59.679663707208995],[-149.84981960904187,59.45171731890513],[-151.1998186526899,58.99117670269853],[-151.42481849329786,58.52439396084473],[-151.42481849329786,58.05131589106027],[-151.87481817451393,57.57189027900508],[-152.32906855174062,57.42449129028307],[-152.09981801512188,57.57189027900508],[-152.09981801512188,57.692344580260766],[-152.39517850323762,57.7944222178726],[-152.09981801512188,57.8123997505166],[-151.6498183339059,58.05131589106027],[-151.6498183339059,58.52439396084473],[-152.32481785572992,59.106894957190725],[-152.32481785572992,59.50884868221247],[-152.09981801512188,59.56588346342965],[-151.54424912754024,59.646565622018684],[-152.09981801512188,59.679663707208995],[-152.09981801512188,59.906069924574304],[-151.6498183339059,60.35428947498098],[-151.26871860388053,60.553102538800644],[-151.59185909261012,60.70906894445236],[-151.59185909261012,60.867466201165044],[-150.23341008926553,61.217558335568484],[-149.8584103643921,61.217558335568484]]]}},{"type":"Feature","properties":{"id":"korea-japan-cable-network-kjcn","name":"Korea-Japan Cable Network (KJCN)","color":"#b32d25","feature_id":"korea-japan-cable-network-kjcn-0","coordinates":[129.12059853162657,35.10111055511714]},"geometry":{"type":"MultiLineString","coordinates":[[[131.0319114117045,33.83952016970107],[130.49998178852834,34.31215165223547],[128.99949285148878,35.17037876180022],[130.04998210731227,34.31215165223547],[130.40164185819341,33.59022724332908]]]}},{"type":"Feature","properties":{"id":"kuwait-iran","name":"Kuwait-Iran","color":"#c72379","feature_id":"kuwait-iran-0","coordinates":[49.260052533795346,29.344566989489813]},"geometry":{"type":"MultiLineString","coordinates":[[[49.95003885086375,29.442584645837396],[50.312048594412666,29.24602743373373]],[[49.50003916964768,29.344566989489813],[49.478069185211346,29.07273641911172]],[[47.974840250113054,29.37410420420039],[48.4875398869116,29.344566989489813],[49.50003916964768,29.344566989489813],[49.95003885086375,29.442584645837396],[50.52112844629867,29.570753352727138]]]}},{"type":"Feature","properties":{"id":"lanis-1","name":"Lanis-1","color":"#53bc84","feature_id":"lanis-1-0","coordinates":[-3.8299893271551118,53.89757264331379]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.050753602877637,53.80897597127547],[-3.599923213840749,53.86853064456715],[-4.387222656110318,53.967914030873956],[-4.566622529021879,54.10028616652028]]]}},{"type":"Feature","properties":{"id":"lanis-2","name":"Lanis-2","color":"#324ca0","feature_id":"lanis-2-0","coordinates":[-5.08061726461315,54.408690786113524]},"geometry":{"type":"MultiLineString","coordinates":[[[-4.691422440612409,54.222445613689885],[-4.791422369771537,54.28083898900154],[-5.384291949777194,54.54294403514443],[-5.484341878900849,54.54294403514443]]]}},{"type":"Feature","properties":{"id":"latvia-sweden-1-lv-se-1","name":"Latvia-Sweden 1 (LV-SE 1)","color":"#43b549","feature_id":"latvia-sweden-1-lv-se-1-0","coordinates":[19.65951853992938,58.019126320817584]},"geometry":{"type":"MultiLineString","coordinates":[[[21.570078955493642,57.389720408424935],[21.15005925303935,57.45103605396468],[19.57506036878345,58.05131589106027],[18.337561244843435,58.40671668748663],[18.00006148452737,58.758568944882946],[17.946541522441517,58.903099072193214]]]}},{"type":"Feature","properties":{"id":"lfon-libyan-fiber-optic-network","name":"LFON (Libyan Fiber Optic Network)","color":"#36af8a","feature_id":"lfon-libyan-fiber-optic-network-0","coordinates":[18.627869380450015,30.686408759572995]},"geometry":{"type":"MultiLineString","coordinates":[[[12.083365675970331,32.933546411839394],[12.37506546932735,33.001218522654476],[12.529855359672913,32.77488568686176],[12.642240573027069,32.96372252942492],[13.05006499115128,33.001218522654476],[13.187364893886881,32.87762290319534],[13.500064672367355,33.001218522654476],[14.175064194191284,32.8123187832876],[14.264514130824159,32.6499893709631],[14.400064034799321,32.8123187832876],[14.850063716015397,32.8123187832876],[15.075063556623434,32.62301664000789],[15.09498354251198,32.37460980808494],[15.30006339723147,32.33831157801293],[16.425062600271474,31.478822672736147],[16.588442484531583,31.20558735149696],[16.875062281487367,31.286738814391754],[17.55006180331148,31.286738814391754],[18.22506132513541,30.901396088515508],[18.411971192726792,30.586989976235927],[18.675061006351484,30.708139993541643],[19.350060528175415,30.708139993541643],[19.57652036774916,30.378447643853725],[19.57506036878345,30.708139993541643],[19.80006020939149,31.86180860227073],[20.066760020458908,32.116913544436095],[20.025060049999343,32.43331330641721],[20.250059890607382,32.7177179367584],[20.700059571823456,32.8123187832876],[20.94995939479222,32.71697755177159],[21.15005925303935,33.001218522654476],[21.600058934255422,33.001218522654476],[21.74175883387393,32.88214108067166],[22.050058615471496,33.001218522654476],[22.50005829668739,33.001218522654476],[22.639118198176227,32.76363502668908],[22.950057977903466,32.8123187832876],[23.850057340335432,32.43331330641721],[23.960407262162704,32.07985133144836]]]}},{"type":"Feature","properties":{"id":"libreville-port-gentil-cable","name":"Libreville-Port Gentil Cable","color":"#48c2c9","feature_id":"libreville-port-gentil-cable-0","coordinates":[8.909768729244552,-0.0033774997582103725]},"geometry":{"type":"MultiLineString","coordinates":[[[8.781608014966428,-0.720651899991483],[8.775049269612806,-0.331409329660265],[9.020377845819665,0.265947444189533],[9.454267538448212,0.394465191855477]]]}},{"type":"Feature","properties":{"id":"lower-indian-ocean-network-lion","name":"Lower Indian Ocean Network (LION)","color":"#c64d2b","feature_id":"lower-indian-ocean-network-lion-0","coordinates":[53.697537671430275,-19.685595665633734]},"geometry":{"type":"MultiLineString","coordinates":[[[57.51009349525022,-20.077536205633212],[56.70003406910378,-20.152543786018732],[55.80003470667163,-20.46905848545731],[55.575034866063774,-20.574419057276128],[55.54778488536792,-20.89726651520503],[55.35003502545574,-20.574419057276128],[52.20003725694376,-18.880139975101173],[49.40023924034702,-18.146086570227464]]]}},{"type":"Feature","properties":{"id":"lower-indian-ocean-network-2-lion2","name":"Lower Indian Ocean Network 2 (LION2)","color":"#973a95","feature_id":"lower-indian-ocean-network-2-lion2-0","coordinates":[46.24740801883432,-11.943944931746815]},"geometry":{"type":"MultiLineString","coordinates":[[[45.450042038703735,-11.943944931746815],[45.16576224009028,-12.817096445533013]],[[39.700146111983855,-4.050300939496507],[42.30004427019158,-5.049857167366764],[43.20004363262354,-5.721872747834119],[45.450042038703735,-11.943944931746815],[47.25004076356767,-11.943944931746815],[48.60003980721571,-11.503333845984299],[49.50003916964768,-11.503333845984299],[50.40003853207964,-12.383840433185572],[51.75003757572769,-17.168553094226155],[52.20003725694376,-18.880139975101173]]]}},{"type":"Feature","properties":{"id":"mainone","name":"MainOne","color":"#603f98","feature_id":"mainone-0","coordinates":[-19.280078359401543,10.541976821281889]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.599923213840749,0.118588418888312],[-3.924922983607823,1.468426767331968],[-4.049922895056732,2.367912558705407],[-4.049922895056732,3.266814816815666],[-4.026242911831877,5.323508791824841]],[[-19.803965545293075,15.23578178303578],[-18.449912693968844,15.23578178303578],[-17.445713405352947,14.686594841994992]],[[-0.204315619320974,5.558285889905858],[7.4235887302e-05,3.279837005484997],[7.4235887302e-05,0.806604849908682]],[[-9.107439312264662,38.642658330346336],[-9.449919069648717,38.21117903702318],[-9.787418830560773,37.23235432155614],[-10.124918591472738,35.78566189952622],[-10.574918272688812,33.93964008831966],[-13.949915881808826,29.73606949729215],[-14.399915563024809,28.95155473219332],[-14.624915403632755,28.161052262220792],[-15.074915084848831,26.964304734562898],[-18.449912693968844,22.884654113882444],[-19.799911737616885,19.95262290516439],[-19.804120576691208,15.23578178303578],[-19.799911737616885,11.735650161405832],[-18.449912693968844,8.635699417327467],[-13.949915881808826,3.266814816815666],[-10.799918113296759,0.118588418888312],[-3.599923213840749,0.118588418888312],[7.4235887302e-05,0.806604849908682],[1.575073120143199,1.918228780215599],[2.25007264196731,2.480311786858737],[3.150072004399278,4.164912849976942],[3.423511810692114,6.439066911484626]]]}},{"type":"Feature","properties":{"id":"malaysia-cambodia-thailand-mct-cable","name":"Malaysia-Cambodia-Thailand (MCT) Cable","color":"#b7922e","feature_id":"malaysia-cambodia-thailand-mct-cable-0","coordinates":[103.64806477790879,7.308585029265784]},"geometry":{"type":"MultiLineString","coordinates":[[[103.50000091556807,8.190543417795496],[101.92500203131218,9.52441134501949],[101.25000250948806,11.294709319565477],[101.13750258918414,12.175887185507976],[101.27734249012036,12.670662156670582]],[[103.50674091079348,10.63040170321047],[103.61250083587218,9.52441134501949],[103.50000091556807,8.190543417795496],[103.95000059678415,5.510071711803246],[103.72500075617612,4.613591578862773],[103.39521098980225,4.116310078259609]]]}},{"type":"Feature","properties":{"id":"mariana-guam-cable","name":"Mariana-Guam Cable","color":"#5e479c","feature_id":"mariana-guam-cable-0","coordinates":[145.40516004909406,14.362316164146604]},"geometry":{"type":"MultiLineString","coordinates":[[[145.75114098446412,15.178201201864436],[145.79997094987252,15.070969022342206],[145.63747106498886,15.011508499399486],[145.68747102956843,14.801154224791581],[145.40822122739166,14.365653759228442],[145.21247136606274,14.152228172439347],[145.1249714280484,13.92930384327183],[145.0124715077445,13.710817738179635],[144.809541651502,13.549094363148988]]]}},{"type":"Feature","properties":{"id":"mataram-kupang-cable-system-mkcs","name":"Mataram Kupang Cable System (MKCS)","color":"#d4254a","feature_id":"mataram-kupang-cable-system-mkcs-0","coordinates":[121.44644788312534,-9.068306003874412]},"geometry":{"type":"MultiLineString","coordinates":[[[118.0822205847911,-8.84114915636186],[117.89999071388438,-8.5865822751457],[117.56249095297241,-8.364039699657951],[117.33749111236438,-8.178490278944933],[117.22499119265616,-7.732822794391767]],[[116.65492159590312,-8.537099969976568],[116.54999167023632,-8.252720521974979],[116.54999167023632,-8.029988442955133],[116.77499151084437,-7.807134147544001],[117.22499119265616,-7.732822794391767],[118.23749047539224,-7.732822794391767],[118.5749902363042,-7.955717094334652],[118.76036010439051,-8.319317925115401],[118.77186509624045,-8.391864542982665],[118.74490011534256,-8.46426902855707]],[[120.25301904757286,-9.645765890160455],[120.59998880177636,-9.29042430103552],[120.59998880177636,-9.068306003874412]],[[123.58338668830928,-10.182939736570859],[123.29998688907226,-10.011319800856482],[122.84998720726047,-9.918984265715721],[121.72498800422028,-9.179382545871277],[121.6427380624869,-8.845694469062058],[121.49998816420832,-9.068306003874412],[120.59998880177636,-9.068306003874412],[119.24998975812831,-9.068306003874412],[118.71181013937976,-8.796444010194145]]]}},{"type":"Feature","properties":{"id":"matrix-cable-system","name":"Matrix Cable System","color":"#b0c335","feature_id":"matrix-cable-system-0","coordinates":[107.11651447578886,-2.275052062007308]},"geometry":{"type":"MultiLineString","coordinates":[[[104.0166370000003,1.066798000000349],[104.01992054725226,1.212637187567842],[104.16611044369012,1.230603090362567],[104.28790035741287,1.187552709061783],[104.62500011860807,1.187252773694101],[104.8499999592161,1.131014326431719],[105.29999964043219,1.131014326431719]],[[105.29999964043219,1.131014326431719],[104.8499999592161,1.243490076978041],[104.62500011860807,1.229455855593917],[104.19443042362789,1.295159856377344],[103.98701057056589,1.389451396800233]],[[106.83339855415794,-6.171588071824116],[106.87499852468808,-5.273944363641298],[107.32499820590417,-4.60145376483711],[107.21349828489204,-3.029995968008661],[107.09799836671304,-2.130918480960333],[106.76249860438416,-0.331409329660265],[105.29999964043219,1.131014326431719]]]}},{"type":"Feature","properties":{"id":"maya-1-2","name":"Maya-1.2","color":"#934499","feature_id":"maya-1-2-0","coordinates":[-83.4494432417556,23.580227942199585]},"geometry":{"type":"MultiLineString","coordinates":[[[-80.16016897784432,26.010548668010795],[-79.64986933934534,25.348717422116714],[-79.87486917995338,24.73717827217609],[-80.99986838299347,23.7112581424843],[-83.2498667890733,23.7112581424843],[-84.82486567332928,22.677206196582915],[-85.27486535454535,21.635297384859552],[-85.4998651951533,20.375041253465433],[-84.82486567332928,19.104405475930452]],[[-87.9461557876504,15.844981598742601],[-87.29986392001751,16.534196198259725],[-85.49986519515349,18.251816319028222],[-84.82486567332928,19.104405475930452]],[[-84.82486567332928,19.104405475930452],[-81.16676076149955,19.28295591266266]]]}},{"type":"Feature","properties":{"id":"med-cable-network","name":"Med Cable Network","color":"#3d80bf","feature_id":"med-cable-network-0","coordinates":[2.922309022542395,36.90995314592755]},"geometry":{"type":"MultiLineString","coordinates":[[[7.755438741914387,36.90282046530194],[7.650068816559295,37.23235432155614],[6.300069772911254,38.651811712711336],[5.512570330783214,41.74435878948223],[5.372530429989069,43.29362778902908]],[[6.300069772911254,38.651811712711336],[5.400070410479286,38.21117903702318],[3.150072004399278,37.05299936423364],[3.035712085413061,36.76212778211003],[2.812572243487313,37.05299936423364],[1.800072960751236,37.05299936423364],[7.4235887302e-05,36.33133835588799],[-0.642015309250446,35.701641134808355]]]}},{"type":"Feature","properties":{"id":"melita-1","name":"Melita 1","color":"#824c9e","feature_id":"melita-1-0","coordinates":[14.70602567553396,36.31282967547101]},"geometry":{"type":"MultiLineString","coordinates":[[[14.45875399322285,35.934136486264116],[14.625063875407358,36.1498667868178],[14.850063716015397,36.602754740329765],[14.853873713316414,36.733882871591575]]]}},{"type":"Feature","properties":{"id":"mid-atlantic-crossing-mac","name":"Mid-Atlantic Crossing (MAC)","color":"#5bba46","feature_id":"mid-atlantic-crossing-mac-0","coordinates":[-65.34523376495947,19.101212129833563]},"geometry":{"type":"MultiLineString","coordinates":[[[-74.24987316475335,33.565491482352044],[-75.59987220840131,30.901396088515508],[-77.39987093326533,28.95155473219332],[-79.19986965812936,26.964304734562898],[-79.64986933934534,26.36108632539156],[-80.16016897784432,26.010548668010795],[-79.64986933934534,26.260240971577822],[-78.97486981752132,26.964304734562898],[-77.84987061448132,27.663994423747],[-76.94987125204935,27.76358852605777],[-73.3498738023213,26.964304734562898],[-69.29987667137726,24.94136317175375],[-67.04987826529725,22.05298561667754],[-65.92487906225725,20.375041253465433],[-65.24987954043323,18.891661584303154],[-65.13737962012921,18.251816319028222],[-64.81925984548825,17.773909269375704],[-64.5748800186092,18.091482652425203],[-64.23738025769724,18.358623372153332],[-64.23738025769724,18.891661584303154],[-64.59988000089899,20.913116766319394],[-65.24987954043323,24.94136317175375],[-66.59987858408127,28.161052262220792],[-72.44987443988924,38.651811712711336],[-72.91227411232106,40.77352073429003],[-72.67487428049728,38.651811712711336],[-74.24987316475335,33.565491482352044]]]}},{"type":"Feature","properties":{"id":"moratelindo-international-cable-system-1-mic-1","name":"Moratelindo International Cable System-1 (MIC-1)","color":"#344fa2","feature_id":"moratelindo-international-cable-system-1-mic-1-0","coordinates":[103.97984515580926,1.2248739857589248]},"geometry":{"type":"MultiLineString","coordinates":[[[103.98701057056589,1.389451396800233],[103.97812557686022,1.185378176915766],[104.0166370000003,1.066798000000349]]]}},{"type":"Feature","properties":{"id":"northstar","name":"NorthStar","color":"#df2e91","feature_id":"northstar-0","coordinates":[-135.94523095080618,54.365984335263164]},"geometry":{"type":"MultiLineString","coordinates":[[[-148.68473122548716,60.77302768780248],[-148.52126134542036,60.769023622187255],[-148.41354142445135,60.78620827245595],[-148.31398149749563,60.77712889504656],[-148.19748158296832,60.77634287097309],[-148.09962084889904,60.75242094849553],[-148.08273166715708,60.72557180082256],[-148.06081168323905,60.69119678436089],[-148.05646168643062,60.65876959082504],[-147.875701819049,60.60642348854199],[-147.6338519964873,60.60251643847571],[-147.5057320904852,60.574485694378566],[-147.49523209818878,60.4850257284821],[-147.56803204477748,60.31180235217173],[-147.64054199157903,60.251238005321],[-147.76252108770373,60.11873415270099],[-147.78878188281965,60.02401418328774],[-147.89425180543932,59.962286469292955],[-148.00929172103787,59.87790332473849],[-148.08131166819882,59.839334333097796],[-147.8248210435698,59.45171731890513],[-145.34982279688185,58.52439396084473],[-139.04982725985772,56.840738642145496],[-138.14982789742575,55.84318584148108],[-135.44982981012976,54.03403825672422],[-132.2998320416177,50.740281893948165],[-127.79983522945767,47.80541217589291],[-125.09983714216159,46.5823550820958],[-124.19983777972962,46.0383951936514],[-123.52483825790569,45.88198490450073],[-122.98980067585488,45.522898824562965]],[[-146.35343293589426,61.13035646305128],[-146.55934278482408,61.1091536349257],[-146.6595427113103,61.06746482894028],[-146.80104260749584,60.96589258192077],[-146.82008259352665,60.91922303467996],[-146.85905256493558,60.858765344213495],[-147.06984241028502,60.78766268631922],[-147.32995221944986,60.77870088536695],[-147.53078207210677,60.76640117651843],[-147.68332114380976,60.76501417254222],[-147.7874718837808,60.764633224329316],[-147.88996180858678,60.76589815031962],[-148.02824170713478,60.75652479185255],[-148.2104615734452,60.788165371058966],[-148.32238149133278,60.78737961765462],[-148.38688144401104,60.79100075570164],[-148.47316138070988,60.783470086004485],[-148.51818134767996,60.77741693630959],[-148.68473122548716,60.77302768780248]],[[-134.7472914509898,58.551049268231914],[-134.8954413422964,58.4981259553756],[-134.98381127746194,58.4916930701227],[-135.0388912370513,58.46024329775657],[-135.05266122694871,58.413573683867476],[-135.02922124414596,58.365509963814],[-135.0147712547475,58.30573481193794],[-135.0147712547475,58.23884255426299],[-135.0638912187096,58.18680870274748],[-135.17493000487138,58.1791905533587],[-135.27131106653158,58.199010155391555],[-135.35237100706019,58.222726429171566],[-135.4474909372734,58.28756755123463],[-135.54587086509488,58.329479545806485],[-135.63186080200646,58.357898675160854],[-135.76961070094336,58.36023311803261],[-135.88347061740748,58.34363161367785],[-135.9869905414579,58.3271220669816],[-136.11301044900063,58.30106382103442],[-136.2840603235063,58.28854000125966],[-136.3920702442625,58.274502592624366],[-136.4775601815409,58.240900636965534],[-136.5505601279829,58.198520069813526],[-136.87126989268734,58.14519214129456],[-139.04982725985772,56.840738642145496]]]}},{"type":"Feature","properties":{"id":"oran-valencia-orval","name":"Oran-Valencia (ORVAL)","color":"#2cb56f","feature_id":"oran-valencia-orval-0","coordinates":[0.7108684280158478,37.75874153644595]},"geometry":{"type":"MultiLineString","coordinates":[[[0.675073757711232,37.589786573603064],[2.812572243487313,37.14273000200076],[3.035712085413061,36.76212778211003]],[[-0.376975497007027,39.459646713436726],[0.450073917103194,39.17701458492114],[0.900073598319269,38.651811712711336],[0.675073757711232,37.589786573603064],[7.4235887302e-05,36.51238821239364],[-0.642015309250446,35.701641134808355]]]}},{"type":"Feature","properties":{"id":"pacific-caribbean-cable-system-pccs","name":"Pacific Caribbean Cable System (PCCS)","color":"#44b97a","feature_id":"pacific-caribbean-cable-system-pccs-0","coordinates":[-64.74486945319327,20.485860645421145]},"geometry":{"type":"MultiLineString","coordinates":[[[-66.10666893347558,18.46610423294742],[-65.69987922164921,18.572039052566783],[-64.83573983381369,18.521952917911317],[-64.59715000283296,18.41441211576626]],[[-76.0498718896173,10.85308969074528],[-75.50573227509088,10.38680745163333]],[[-70.04992614003515,12.616917900441425],[-69.74987635259325,13.92930384327183]],[[-70.04992614003515,12.616917900441425],[-69.29987667137726,12.615395567393394],[-68.9623769104653,12.395734000022975],[-68.95697691429066,12.168849063090073]],[[-81.65563040282981,30.332100867462632],[-80.5498687017773,30.320465424761444],[-79.19986965812936,30.126049846722832],[-73.3498738023213,29.540507745394493],[-69.29987667137726,27.564309487941923],[-66.37487874347323,23.7112581424843],[-64.79987985921724,20.796306105108872],[-64.46238009830519,18.891661584303154],[-64.59715000283296,18.41441211576626],[-64.34988017800117,18.305228078976267],[-64.23738025769724,18.251816319028222],[-64.23738025769724,17.82393441253792],[-66.14987890286528,16.10232559580297],[-69.74987635259325,13.92930384327183],[-71.54987507745727,13.92930384327183],[-74.24987316475335,12.615395567393394],[-76.0498718896173,10.85308969074528],[-78.29987029569729,10.85308969074528],[-79.31236957843338,9.967915186974132],[-79.7534792659471,9.437721984870015]],[[-79.56661939832034,8.950317108800572],[-79.31236957843338,8.190543417795496],[-78.74986997691337,7.29876275445952],[-78.74986997691337,5.061986954416114],[-80.99986838299328,2.367912558705407],[-81.1215619945354,0.553867752345412],[-80.88736846268927,-0.331409329660265],[-80.71613109211354,-0.949727245539768]]]}},{"type":"Feature","properties":{"id":"pacific-crossing-1-pc-1","name":"Pacific Crossing-1 (PC-1)","color":"#05a5d7","feature_id":"pacific-crossing-1-pc-1-0","coordinates":[-126.73328748926824,39.94054027582586]},"geometry":{"type":"MultiLineString","coordinates":[[[-179.99979825051412,49.000334389463426],[-151.1998186526899,49.000334389463426],[-138.59982757864174,48.40638249553803],[-125.09983714216186,48.40638249553803],[-124.6498374609456,48.48100994210292],[-123.74983809851364,48.256798568947445],[-122.84983873608158,48.21933401420262],[-122.66605031524853,48.11006090495571],[-122.63793033587935,48.034889597039694],[-122.58168037714837,47.959608461901695],[-122.48324649637513,47.9219300503356],[-122.44105402626471,47.90307887010544],[-122.30218058161331,47.88632320620285],[-122.44105402626471,47.89364735216821],[-122.49731043904814,47.9219300503356],[-122.59574141668266,47.959608461901695],[-122.65198637683804,48.034889597039694],[-122.6801063569178,48.11006090495571],[-122.84983873608158,48.20059144803915],[-123.74983809851364,48.21933401420262],[-124.6498374609456,48.40638249553803],[-125.09983714216186,48.10677570919628],[-127.34983554824169,42.743713464436695],[-126.44983618580963,38.651811712711336],[-122.84983873608158,35.602930322906126],[-120.62152181466479,35.12094936772415],[-122.84983873608158,35.419780517080355],[-129.5998339543217,38.651811712711336],[-138.5998275786419,42.743713464436695],[-151.19983391146832,45.32832917028219],[-179.99981350929238,45.32832917028219]],[[179.99992719256971,45.3310537658534],[172.79992073307184,45.3310537658534],[160.19996074878455,42.07923561816413],[143.09997286257644,34.12610104005753],[138.59997605041642,33.001218522654476],[137.69997668798445,33.47169957086474],[136.87399727311598,34.33682825203173],[137.69997668798445,33.75276987113061],[138.59997605041642,33.565491482352044],[140.84997445649643,34.31215165223547],[141.52497397832056,35.05222991093673],[141.52497397832056,35.78566189952622],[140.6124746247436,36.383483735312474],[142.19997350014447,36.1498667868178],[149.39996839960057,39.6983233549332],[160.19996074878455,45.96024524125342],[172.7999518228328,49.000334389463426],[179.99995828233068,49.000334389463426]]]}},{"type":"Feature","properties":{"id":"palawan-iloilo-cable-system","name":"Palawan-Iloilo Cable System","color":"#4db74a","feature_id":"palawan-iloilo-cable-system-0","coordinates":[120.74805537239742,10.999877242154085]},"geometry":{"type":"MultiLineString","coordinates":[[[119.50037958074992,10.820000490489418],[120.14998912056028,10.85308969074528],[121.04998848299225,11.073982781226615],[121.49998816420832,10.85308969074528],[121.94129785158043,10.749301721782881]]]}},{"type":"Feature","properties":{"id":"pan-american-crossing-pac","name":"Pan-American Crossing (PAC)","color":"#36a9b7","feature_id":"pan-american-crossing-pac-0","coordinates":[-102.8012887970355,16.23046473604046]},"geometry":{"type":"MultiLineString","coordinates":[[[-85.04986551393732,7.744889052551447],[-84.59986583272143,8.635699417327467],[-84.4522083510602,9.525851215144279]],[[-118.79984160513764,31.286738814391754],[-117.44984256148977,32.43331330641721],[-117.03822444362804,32.5310141805925]],[[-106.42187223254336,23.199717218127276],[-107.54984957473768,22.05298561667754],[-107.99984925595349,20.375041253465433]],[[-79.54654941253821,8.934106573765973],[-79.76236925964936,8.190543417795496],[-79.64986933934534,7.29876275445952],[-80.09986902056141,6.852191098754328],[-80.99986838299347,6.852191098754328],[-85.04986551393732,7.744889052551447],[-87.29986392001733,9.52441134501949],[-98.09985626920157,14.365653759228442],[-102.5998530813615,16.10232559580297],[-106.64985021230544,18.678647022154717],[-107.99984925595349,20.375041253465433],[-111.59984670568154,22.469443964829516],[-116.09984351784173,27.76358852605777],[-118.79984160513764,31.286738814391754],[-120.59984033000175,32.8123187832876],[-121.04984001121782,34.31215165223547],[-120.62152181466479,35.12094936772415]]]}},{"type":"Feature","properties":{"id":"penbal-5","name":"Penbal-5","color":"#a82990","feature_id":"penbal-5-0","coordinates":[1.868359990621193,39.8335274431769]},"geometry":{"type":"MultiLineString","coordinates":[[[2.001342818169891,41.30436622489069],[1.800072960751236,40.72920412488655],[1.800072960751236,40.04369219283004],[2.025072801359273,39.35121757117122],[2.475072482575348,39.17701458492114],[2.970972131275422,39.35484412819336]]]}},{"type":"Feature","properties":{"id":"pencan-8","name":"Pencan-8","color":"#a52d5f","feature_id":"pencan-8-0","coordinates":[-11.862998867675099,33.223770256451914]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.087131451879048,36.27672346192373],[-6.749920982352725,36.24065523321488],[-8.54991970721675,35.876870570092834],[-9.449919069648717,35.419780517080355],[-11.249917794512742,33.93964008831966],[-14.849915244240792,29.73606949729215],[-15.187415005152758,28.95155473219332],[-16.03116440743276,28.441436356005738],[-16.371744166162888,28.355537519986957]]]}},{"type":"Feature","properties":{"id":"persona","name":"Persona","color":"#8fac3c","feature_id":"persona-0","coordinates":[-59.26685070080062,46.764182420836406]},"geometry":{"type":"MultiLineString","coordinates":[[[-60.135383163590475,46.2514557753114],[-59.399883684625166,46.5823550820958],[-58.94988400340918,47.19740739556967],[-58.686504189989854,47.61768369957318]],[[-58.686504189989854,47.61768369957318],[-59.174883844017224,47.19740739556967],[-59.6248835252332,46.5823550820958],[-60.135383163590475,46.2514557753114]]]}},{"type":"Feature","properties":{"id":"picot-1","name":"Picot-1","color":"#c83994","feature_id":"picot-1-0","coordinates":[166.26398838974941,-20.98014509134995]},"geometry":{"type":"MultiLineString","coordinates":[[[166.48901629355882,-20.705648050304482],[166.46636630960435,-20.827183610422622],[166.16186652531465,-20.97707442993219]],[[165.34155710642966,-20.945613989738906],[165.85776674074188,-21.024574704206884],[166.16186652531465,-20.97707442993219],[166.68042615796216,-20.99266679172066],[166.98120594488694,-20.848996911268983],[167.15151582423795,-20.780630532391687]]]}},{"type":"Feature","properties":{"id":"pipe-pacific-cable-1-ppc-1","name":"PIPE Pacific Cable-1 (PPC-1)","color":"#8ac53f","feature_id":"pipe-pacific-cable-1-ppc-1-0","coordinates":[153.65779191562947,-9.050310915716352]},"geometry":{"type":"MultiLineString","coordinates":[[[145.7847409606618,-5.23368424614946],[146.02497079048055,-5.161910662113067],[146.6749703300147,-5.137011581064615],[146.90776526532372,-4.838945214956163]],[[151.20699711948467,-33.86955173177822],[152.09996648689665,-33.27363077142247],[154.02056155078103,-31.85146566557725],[154.79996457419256,-28.743810281149894],[154.79996457419256,-25.540896076259312],[154.3499648929765,-18.880139975101173],[153.8999652117606,-15.441023659568087],[154.79996457419256,-11.943944931746815],[154.79996457419256,-10.17745743036107],[152.99996584932845,-8.401139048122838],[149.39996839960057,-7.063446338991064],[148.04996935595253,-6.225371753845629],[147.59996967473646,-5.777839699209677],[147.31871987397665,-5.273944363641298],[146.90776526532372,-4.838945214956163],[145.89997087903166,-2.3307666592315],[146.65530736297208,1.519276295401345],[146.24997063108842,7.744889052551447],[145.34997126865645,12.175887185507976],[145.1249714280484,12.615395567393394],[144.78747166713646,13.273238157547594],[144.69470173285575,13.464772962370143]]]}},{"type":"Feature","properties":{"id":"poseidon","name":"POSEIDON","color":"#a66d2c","feature_id":"poseidon-0","coordinates":[33.05448156025135,34.49779087043369]},"geometry":{"type":"MultiLineString","coordinates":[[[32.466651236259686,34.76657169708598],[32.73755104435154,34.49779087043369],[33.30005064587154,34.49779087043369],[33.61060042587536,34.82728147271538]]]}},{"type":"Feature","properties":{"id":"qatar-u-a-e-submarine-cable-system","name":"Qatar-U.A.E. Submarine Cable System","color":"#d01c59","feature_id":"qatar-u-a-e-submarine-cable-system-0","coordinates":[52.885280159010605,25.14206926382244]},"geometry":{"type":"MultiLineString","coordinates":[[[51.519277739200085,25.294608758024626],[52.20003725694376,25.653336613276053],[52.42024710094511,25.66892130710525],[52.65003693815965,25.450342946923914],[52.86595678520031,25.152632913545087],[54.00003598180769,24.53265756616073],[54.419075684956134,24.443964572625426]]]}},{"type":"Feature","properties":{"id":"fos-quellon-chacabuco","name":"FOS Quellon-Chacabuco","color":"#299bb8","feature_id":"fos-quellon-chacabuco-0","coordinates":[-73.56565434043569,-44.64949313906572]},"geometry":{"type":"MultiLineString","coordinates":[[[-73.4794637105186,-43.11747634819604],[-73.50998368889793,-44.121619058974865],[-73.57072364586915,-44.69756074503905],[-73.63151360280499,-45.13405788619885],[-73.56061365303121,-45.339262517439224],[-73.42174375140804,-45.35326269275853],[-73.28009385175406,-45.28212252426292],[-73.19831390968776,-45.281848113377116],[-73.04762401643794,-45.417940386955635],[-72.80509418824829,-45.45830094135324]]]}},{"type":"Feature","properties":{"id":"russia-japan-cable-network-rjcn","name":"Russia-Japan Cable Network (RJCN)","color":"#eb8c22","feature_id":"russia-japan-cable-network-rjcn-0","coordinates":[137.98067090045404,37.46501436672875]},"geometry":{"type":"MultiLineString","coordinates":[[[132.89127009392124,42.83453574149161],[133.64997955704033,42.329239699665536],[134.77497876008033,41.40772623743595],[137.02497716616034,38.651811712711336],[138.23607630761057,37.147847424552424],[137.24997700676838,38.651811712711336],[134.99997860068837,41.40772623743595],[133.64997955704033,42.41235450073586],[132.89127009392124,42.83453574149161]]]}},{"type":"Feature","properties":{"id":"safe","name":"SAFE","color":"#a9499b","feature_id":"safe-0","coordinates":[76.9722034007659,-2.8525966839583687]},"geometry":{"type":"MultiLineString","coordinates":[[[31.757961738301827,-28.950559666538012],[32.62505112404761,-29.52991296614913],[33.30005064587154,-30.30995334464681]],[[76.2695502058749,9.93838642489319],[76.05002036139189,9.52441134501949],[76.50002004260797,4.164912849976942],[77.40001940503993,0.568578852526193]],[[54.45003566302377,-20.574419057276128],[54.90003534423966,-20.784921868991052],[55.27923507561119,-21.000051587769306],[55.35003502545574,-20.784921868991052],[55.80003470667163,-20.574419057276128],[56.70003406910378,-20.784921868991052],[57.15003375031967,-20.995131543025785],[57.825033272143784,-20.995131543025785],[58.275032953359855,-20.574419057276128],[60.30003151883183,-18.880139975101173],[63.00002960612773,-14.571726491332546],[65.70002769342382,-11.943944931746815],[72.90002259287992,-8.401139048122838],[75.15002099895992,-6.616650693475355],[76.95001972382386,-3.029995968008661],[77.40001940503993,0.568578852526193],[81.00001685476798,1.468426767331968],[85.500013666928,-1.68111462680301],[90.00001047908802,-0.781332308789108],[92.70000856638391,3.715978119298069],[94.27500745064,4.713260444333049],[95.45328225426326,5.818423043687448],[97.42500521915215,5.733989114150127],[99.67500362523216,5.398081130463647],[100.40982310408316,5.368393581488473]],[[18.445861168718828,-33.72721819637743],[18.00006148452737,-34.11602012163193],[17.775061643919337,-34.85783936223576],[18.450061165743445,-36.3215277599179],[19.80006020939149,-37.401610748143824],[23.40005765911936,-37.401610748143824],[26.10005574641544,-36.3215277599179],[33.30005064587154,-30.30995334464681],[38.70004682046353,-28.743810281149894],[41.40004490775961,-28.743810281149894],[45.450041666655096,-28.743810607354384],[47.25004076356767,-27.95174728521976],[52.65003693815965,-23.08058350574764],[54.00003598180769,-20.995131543025785],[54.45003566302377,-20.574419057276128],[54.90003534423966,-20.36362554441106],[55.80003470667163,-20.36362554441106],[56.70003406910378,-20.574419057276128],[57.15003375031967,-20.574419057276128],[57.485483512684034,-20.473995660946287],[57.60003343153574,-20.679706953509093],[57.825033272143784,-20.995131543025785]]]}},{"type":"Feature","properties":{"id":"sint-maarten-puerto-rico-network-one-smpr-1","name":"Sint Maarten Puerto Rico Network One (SMPR-1)","color":"#3fb449","feature_id":"sint-maarten-puerto-rico-network-one-smpr-1-0","coordinates":[-64.49579046440812,18.772674867159726]},"geometry":{"type":"MultiLineString","coordinates":[[[-66.01686899709074,18.441839618642867],[-65.69987922164921,18.678647022154717],[-65.24987954043323,18.891661584303154],[-63.89988049678528,18.678647022154717],[-63.1456810310672,18.05968349844699],[-63.115555384550404,18.047704731939064],[-63.07366108208678,18.031045075146537]]]}},{"type":"Feature","properties":{"id":"samoa-american-samoa-sas","name":"Samoa-American Samoa (SAS)","color":"#924d9e","feature_id":"samoa-american-samoa-sas-0","coordinates":[-171.15046441269976,-13.880916628765299]},"geometry":{"type":"MultiLineString","coordinates":[[[-171.76669408292247,-13.83348925575777],[-171.4498043074101,-13.808261464814914],[-170.999804626194,-13.91748446246452],[-170.69570484162125,-14.276544564158804]]]}},{"type":"Feature","properties":{"id":"sat-3wasc","name":"SAT-3/WASC","color":"#04a6c7","feature_id":"sat-3wasc-0","coordinates":[-19.078983202670177,11.113526682380897]},"geometry":{"type":"MultiLineString","coordinates":[[[-10.349918432080775,33.93964008831966],[-8.54991970721675,35.419780517080355],[-7.199920663568708,36.33133835588799],[-6.42888120978034,36.73129423644183]],[[7.650068816559295,0.34358628488916],[8.550068178991262,0.34358628488916],[9.454267538448212,0.394465191855477]],[[2.25007264196731,2.929808880350098],[2.025072801359273,3.82823430332105],[2.025072801359273,5.061986954416114],[2.440112507341202,6.356673335458259]],[[-14.849915244240792,26.964304734562898],[-15.862464526941396,27.807911809695806],[-15.862464526941396,27.94275199342137],[-15.699964642057815,27.99976141196043]],[[13.372424762788773,-8.776668856663386],[12.600065309935387,-9.014619375760487],[11.700065947503239,-9.512401827330285],[9.675067382031267,-10.620064860363238]],[[9.706417359822684,4.047345511205705],[9.225067700815375,3.266814816815666],[8.10006849777537,2.817450442654169],[6.300069772911254,2.592701464601932]],[[-0.204315619320974,5.558285889905858],[-0.224925604720645,3.279837005484997],[-0.224925604720645,1.481465914707545]],[[-4.026242911831877,5.323508791824841],[-3.937422974752714,3.266814816815666],[-3.824923054448695,2.367912558705407],[-3.699923142999785,1.468426767331968],[-3.599923213840749,1.018534216615524]],[[-17.445713405352947,14.686594841994992],[-18.449912693968844,15.018578573757472],[-19.34991205640081,15.018578573757472]],[[2.92507216379124,4.164912849976942],[5.400070410479286,2.817450442654169],[6.300069772911254,2.592701464601932],[7.425068975951258,1.468426767331968],[7.650068816559295,0.34358628488916],[8.10006849777537,-4.825692499217419],[8.550068178991262,-6.616650693475355],[9.675067382031267,-10.620064860363238],[9.450067541423229,-18.026426383713453],[10.80006658507127,-23.49392244589784],[14.400064034799321,-30.30995334464681],[15.9750629190554,-32.61276000573574],[17.55006180331148,-33.64904537742418],[18.445861168718828,-33.72721819637743]],[[-9.102749315587026,38.4430794831419],[-9.22491922904077,38.122730108392204],[-9.562418989952736,37.23235432155614],[-9.899918750864702,35.78566189952622],[-10.349918432080775,33.93964008831966],[-12.82491667876882,30.126049846722832],[-13.472831869789587,28.161052262220792],[-14.849915244240792,26.964304734562898],[-17.99991301275286,22.884654113882444],[-19.34991205640081,19.95262290516439],[-19.34991205640081,15.018578573757472],[-19.34991205640081,11.735650161405832],[-17.99991301275286,8.635699417327467],[-13.499916200592752,3.715978119298069],[-10.799918113296759,1.018534216615524],[-3.599923213840749,1.018534216615524],[-0.224925604720645,1.481465914707545],[1.575073120143199,2.592701464601932],[2.25007264196731,2.929808880350098],[2.92507216379124,4.164912849976942],[3.423511810692114,6.439066911484626]]]}},{"type":"Feature","properties":{"id":"scandinavian-ring-north","name":"Scandinavian Ring North","color":"#79c042","feature_id":"scandinavian-ring-north-0","coordinates":[12.676008213613354,56.0141827832678]},"geometry":{"type":"MultiLineString","coordinates":[[[12.640495281294552,56.07069401721377],[12.668130261717424,56.05730958788612],[12.695765242140661,56.043920511503316],[12.683020251169262,56.02474048982951],[12.670275260198045,56.00555093561895],[12.64176028039837,56.019473115650584],[12.613245300598697,56.03339027842579],[12.626870290946533,56.05204665760568],[12.640495281294552,56.07069401721377]]]}},{"type":"Feature","properties":{"id":"scandinavian-ring-south","name":"Scandinavian Ring South","color":"#84489c","feature_id":"scandinavian-ring-south-0","coordinates":[12.869610233307684,55.57406747813322]},"geometry":{"type":"MultiLineString","coordinates":[[[12.670275260198045,55.593736174976776],[12.825115150508134,55.5896788573804],[12.918815084129971,55.556803647196006],[12.76881519039128,55.55790652931397],[12.670275260198045,55.593736174976776]]]}},{"type":"Feature","properties":{"id":"seabras-1","name":"Seabras-1","color":"#a9812d","feature_id":"seabras-1-0","coordinates":[-39.41007171898076,7.4926203176150326]},"geometry":{"type":"MultiLineString","coordinates":[[[-65.55639941646365,32.63736524178349],[-65.68543019646702,32.41623974317996],[-65.4999949252911,31.977134139206512],[-65.09715278445925,31.895737453957153],[-64.93362657765282,31.938695789532012],[-64.63356460651755,32.158659496218654]],[[-46.4124928850147,-24.00886839636483],[-44.54989420449707,-25.360305087215615],[-41.399896435985006,-25.540896076259312],[-36.67489978321695,-24.111502734257467],[-31.04972912191171,-18.025284192896695],[-29.249730397047685,-13.697820288632505],[-28.574905521329885,-9.29042430103552],[-30.824903908752983,-4.152767729405749],[-34.199901536529,0.568578852526193],[-39.59989771112098,7.744889052551447],[-48.75732182969582,17.469778422735878],[-61.80549550139919,29.53533695395528],[-65.04599822690268,31.435859958063894],[-65.52234028551544,32.609814615316346],[-68.05679741739422,34.636546883011455],[-73.13341895565995,39.63896955471727],[-74.06286329723282,40.15283384719588]]]}},{"type":"Feature","properties":{"id":"seychelles-to-east-africa-system-seas","name":"Seychelles to East Africa System (SEAS)","color":"#bb5235","feature_id":"seychelles-to-east-africa-system-seas-0","coordinates":[47.3606694306057,-5.742847166250923]},"geometry":{"type":"MultiLineString","coordinates":[[[39.269676416932725,-6.823132108349236],[40.500045545327644,-6.840100757612254],[42.75004395140765,-6.616650693475355],[52.20003725694376,-4.825692499217419],[54.00003598180769,-4.60145376483711],[55.44505495814286,-4.617611322442136]]]}},{"type":"Feature","properties":{"id":"shefa-2","name":"SHEFA-2","color":"#ca2026","feature_id":"shefa-2-0","coordinates":[-2.382888265556671,60.19259809540274]},"geometry":{"type":"MultiLineString","coordinates":[[[-4.33332269429366,60.33336464881493],[-4.049922895056732,60.24280652634953],[-3.599923213840749,60.24280652634953],[-2.924923692016728,60.35428947498098],[-2.699923851408691,60.40988845578937],[-2.294924138314315,60.4410317796407]],[[-2.523653976279908,57.666863027464274],[-2.699923851408691,57.932056586951404],[-2.699923851408691,58.52439396084473],[-2.900023709656091,58.8333702842968],[-2.474924010800744,58.87506831089772],[-1.687424569268697,59.3944892668567],[-1.181174929092641,59.679663707208995],[-1.124924967748694,59.79305890746809],[-1.238544886663268,59.99607269143399],[-1.267374866239842,60.00407766752495],[-1.323654826370558,60.00407766752495],[-1.799924488976633,60.01869762196877],[-2.924923692016728,60.35428947498098],[-6.299921301136742,61.87557078357159],[-6.771840966824436,62.017646249832836]]]}},{"type":"Feature","properties":{"id":"silphium","name":"Silphium","color":"#ce1e4c","feature_id":"silphium-0","coordinates":[23.073870143659388,34.58586349997977]},"geometry":{"type":"MultiLineString","coordinates":[[[22.639118198176227,32.76363502668908],[22.950057977903466,33.565491482352044],[23.1750578185115,35.419780517080355],[23.512557579423465,35.740018263868535],[23.737557420031504,35.740018263868535],[24.012167225495322,35.512042558637575]]]}},{"type":"Feature","properties":{"id":"sirius-south","name":"Sirius South","color":"#8f4a9c","feature_id":"sirius-south-0","coordinates":[-4.658602719796309,53.64527816721521]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.050753602877637,53.80897597127547],[-3.599923213840749,53.802143574575446],[-5.624921779312721,53.50209788266426],[-6.248311337697704,53.34812463259513]]]}},{"type":"Feature","properties":{"id":"sirius-north","name":"Sirius North","color":"#208ecb","feature_id":"sirius-north-0","coordinates":[-5.224192910352568,55.0695197378531]},"geometry":{"type":"MultiLineString","coordinates":[[[-5.808121649532141,54.71395525212919],[-5.592111802555592,54.71395525212919],[-4.9499222574887,55.33458061322904],[-4.783462375410428,55.637881810393246]]]}},{"type":"Feature","properties":{"id":"south-america-1-sam-1","name":"South America-1 (SAm-1)","color":"#35ad49","feature_id":"south-america-1-sam-1-0","coordinates":[-44.93080040956221,6.775101791950589]},"geometry":{"type":"MultiLineString","coordinates":[[[-46.328062944825646,-23.961842897597087],[-44.54989420449707,-24.81691653965546],[-42.74989547963305,-24.72611802920699],[-40.94989675476902,-23.287413403488653],[-39.03739810960098,-21.937383135692397],[-37.34989930504097,-18.026426383713453],[-36.44989994260901,-13.698987269610743],[-33.74990185531301,-8.401139048122838],[-33.74990185531301,-6.616650693475355],[-34.64990121774498,-4.825692499217419],[-35.99990026139302,-4.152767748013638],[-38.542968459859594,-3.718735129291092],[-38.474898508080976,-1.231315750217412],[-39.59989771112098,1.468426767331968],[-46.79989261057708,8.635699417327467],[-52.19988878516916,13.92930384327183],[-57.59988495976114,16.534196198259725],[-59.399883684625166,17.82393441253792],[-62.09988177192116,19.104405475930452],[-65.24987954043323,18.998067525948983],[-65.69987922164921,18.785187974742005],[-65.98107902244469,18.678647022154717],[-66.10666893347558,18.46610423294742],[-66.37487874347323,19.104405475930452],[-66.37487874347323,20.375041253465433],[-67.49987794651324,22.05298561667754],[-69.29987667137726,23.298598065875897],[-73.3498738023213,25.348717422116714],[-76.94987125204935,27.364667993860262],[-77.84987061448132,27.464533937820843],[-79.64986933934534,26.713351447732887],[-80.08893155227202,26.350584577319996]],[[-46.328062944825646,-23.961842897597087],[-45.44989356692904,-25.134186547061336],[-43.64989484206502,-27.95174728521976],[-45.89989324814503,-32.61276000573574],[-50.84988974152112,-35.22626671976625],[-53.99988751003309,-36.3215277599179],[-56.695445600474535,-36.47095527632105]],[[-44.54989420449707,-24.81691653965546],[-43.42489500145707,-23.905969261790265],[-43.20956515399876,-22.903486555497956]],[[-80.91442094663405,-2.272903429731061],[-81.44986806420927,-2.580536704984131],[-84.14986615150535,-3.029995968008661]],[[-81.05378084438966,-4.153834937264977],[-81.44986806420927,-3.479268678970064],[-81.44986806420927,-2.580536704984131]],[[-66.10666893347558,18.46610423294742],[-66.48737866377725,18.678647022154717],[-67.04987826529725,18.785187974742005],[-67.49987794651324,18.465364393137126],[-67.72487778712127,17.82393441253792],[-70.19987603380923,14.5835116451186],[-71.54987507745727,13.710817738179635],[-74.14709323756358,12.416907726166608],[-74.81237276627336,11.735650161405832],[-74.77975278938153,10.940445615726643]],[[-38.50448848711925,-12.96997203534297],[-37.34989930504097,-13.698987269610743],[-36.44989994260901,-13.698987269610743]],[[-80.08893155227202,26.350584577319996],[-79.87486917995338,25.348717422116714],[-80.32486886116926,24.73717827217609],[-80.99986838299347,24.12261698700344],[-83.2498667890733,24.12261698700344],[-84.82486567332928,23.09178547692239],[-85.72486503576134,21.635297384859552],[-86.17486471697732,20.375041253465433],[-86.96236415910536,18.251816319028222],[-87.86236352153733,16.534196198259725],[-88.31236320275332,16.10232559580297],[-88.59713531004529,15.727236638721036]],[[-71.62043502747198,-33.04554123247811],[-71.99987475867334,-31.85146566557725],[-73.79987348353728,-27.15383128539156],[-72.89987412110531,-19.517593878237122],[-70.30675595809456,-18.473543073651214],[-72.89987412110531,-19.092898581968107],[-75.59987220840131,-18.45381377577717],[-77.84987061448132,-15.441023659568087],[-78.07487045508935,-13.698987269610743],[-77.84987061449132,-12.82299562562977],[-76.87428130559793,-12.278420041799619],[-79.19986965812936,-12.383840433185572],[-81.89986774542525,-11.503333845984299],[-84.14986615150535,-6.616650693475355],[-84.14986615150535,-3.029995968008661],[-86.39986455758554,0.568578852526193],[-90.4498616885295,3.715978119298069],[-91.79986073217735,9.52441134501949],[-91.34986105096155,13.054150695298627],[-90.8222236775613,13.934797333208856]],[[-67.49987794651324,18.465364393137126],[-68.06237754803324,18.678647022154717],[-68.43815728182744,18.621371316104735]]]}},{"type":"Feature","properties":{"id":"south-american-crossing-sac","name":"South American Crossing (SAC)","color":"#276fac","feature_id":"south-american-crossing-sac-0","coordinates":[-36.76679294468002,-3.394605574712276]},"geometry":{"type":"MultiLineString","coordinates":[[[-77.04030118798798,3.883678466264191],[-78.29987029569729,4.164912849976942],[-79.64986933934534,5.061986954416114]],[[-56.695445600474535,-36.47095527632105],[-53.99988751003309,-36.140033391295425],[-50.84988974152112,-34.85783936223576],[-46.79989261057708,-32.61276000573574],[-44.54989420449707,-27.95174728521976],[-45.67489340753708,-25.134186547061336],[-46.328062944825646,-23.961842897597087],[-44.99989388571306,-24.316706749469176],[-43.64989484206502,-23.70010845220312],[-43.20956515399876,-22.903486555497956],[-42.29989579841706,-23.803113122349238],[-40.94989675476902,-24.111502734257467],[-37.68739906595303,-23.18403842445051],[-33.74990185531301,-18.026426383713453],[-31.949903130448895,-13.698987269610743],[-30.599904086800947,-9.29042430103552],[-31.837403200816922,-5.161910652822947],[-34.199901536529,-3.816084221750208],[-35.99990026139302,-3.254657364797681],[-38.542968459859594,-3.718735129291092],[-38.69989834868901,-1.231315750217412],[-40.049897392336966,1.468426767331968],[-46.79989261057708,6.852191098754328],[-51.2998894227371,8.635699417327467],[-54.89988687246515,10.85308969074528],[-57.149885278545156,13.054150695298627],[-60.29988304705723,16.534196198259725],[-61.64988209070518,17.395022634700517],[-63.4498808155692,17.82393441253792],[-64.12488033739322,18.038005439608753],[-64.5748800186092,18.038005439608753],[-64.81925984548825,17.773909269375704],[-64.99142972352155,17.83127418857191],[-66.14987890286528,16.965102599435927],[-68.39987730894529,15.886035719079029],[-70.19987603380923,15.23578178303578],[-71.54987507745727,14.5835116451186],[-74.24987316475335,13.273238157547594],[-78.29987029569729,11.515266158038768],[-79.87486917995338,9.967915186974132],[-79.90025916196684,9.353803196949398]],[[-67.0339082766105,10.608129806992471],[-67.38737802620922,11.294709319565477],[-67.72487778712127,12.615395567393394],[-68.84987699016128,13.92930384327183],[-70.19987603380923,15.23578178303578]],[[-71.62043502747198,-33.04554123247811],[-72.44987443988924,-31.85146566557725],[-74.24987316475335,-27.15383128539156],[-78.29987029569729,-15.441023659568087],[-78.29987029569729,-13.698987269610743],[-78.07487045508935,-12.82299562562977],[-76.87428130559793,-12.278420041799619],[-79.19986965812936,-12.163983680780412],[-80.99986838299328,-11.503333845984299],[-83.2498667890733,-6.616650693475355],[-83.2498667890733,-3.029995968008661],[-82.79986710785731,0.568578852526193],[-81.89986774542544,2.367912558705407],[-79.64986933934534,5.061986954416114],[-79.19986965812936,7.29876275445952],[-79.53736941904133,8.190543417795496],[-79.54654941253821,8.934106573765973]]]}},{"type":"Feature","properties":{"id":"south-atlantic-cable-system-sacs","name":"South Atlantic Cable System (SACS)","color":"#28ab4a","feature_id":"south-atlantic-cable-system-sacs-0","coordinates":[-13.018183576553122,-7.457062047705449]},"geometry":{"type":"MultiLineString","coordinates":[[[-38.542968459859594,-3.718735129291092],[-35.99990026139302,-2.805287932307917],[-34.199901536529,-2.580536704984131],[-29.812404616687857,-3.142332683643806],[-19.799911737616885,-6.616650693475355],[-5.399921938704683,-8.401139048122838],[7.200069135343221,-9.068306003874412],[11.700065947503239,-9.068306003874412],[12.600065309935387,-9.198513131358409],[13.201440382068753,-9.49008098880628]]]}},{"type":"Feature","properties":{"id":"southern-cross-cable-network-sccn","name":"Southern Cross Cable Network (SCCN)","color":"#2f85a6","feature_id":"southern-cross-cable-network-sccn-0","coordinates":[-161.285002465349,9.832870419957944]},"geometry":{"type":"MultiLineString","coordinates":[[[-155.8220359890499,20.0232931385683],[-156.14981514606572,20.269544035929588],[-156.89688520046363,20.45695112375976],[-157.34732486998877,20.5096446349069],[-157.85851393560765,20.89386327374593],[-158.13057429534098,21.35406896575391]],[[-122.98980067585488,45.522898824562965],[-123.52483825790569,45.823217206338505],[-124.19983777972962,45.862402571602836],[-125.09983714216159,45.331071073324864],[-128.69983459188964,42.743713464436695],[-138.60310458621126,35.78747880468752],[-147.6030982105313,31.288652857283093],[-152.99981737755394,26.562513149236715],[-157.94981387092994,22.90768438285807],[-158.51231347244993,22.05298561667754],[-158.51231237260097,21.73983373091106],[-158.51231346392387,21.635297384859552],[-158.13057429534098,21.35406896575391],[-158.73731331305797,20.796306105108872],[-159.97481243640226,18.678647022154717],[-162.89981036430603,14.801154224791581],[-166.499807814034,10.41081650540272],[-171.89980398862608,2.367912558705407],[-176.39980080078607,-6.616650693475355],[-179.0997988904665,-15.006817032918805],[-179.54979856929816,-16.953454989809906],[-179.99979825051412,-17.383402005942457]],[[-179.99979825051412,-35.59302880961419],[-175.49980143835413,-34.11602012163193],[-172.79980335105813,-25.540896076259312],[-169.19980590133008,-15.441023659568087],[-168.29980653889803,-10.17745743036107],[-163.799809726738,2.367912558705407],[-160.19981227700995,13.054150695298627],[-157.49981418971396,18.678647022154717],[-156.48731490757396,19.740987365524937],[-155.8220359890499,20.0232931385683],[-155.92481530545814,20.269544035929588],[-155.69981546484993,20.58581909604039],[-152.99981737755394,23.298598065875897],[-147.6030982105313,26.564516489168216],[-138.60310458621126,28.1630268819071],[-127.79983522945767,31.670513047087127],[-122.39983905486586,34.49779087043369],[-120.8472016490899,35.367078251717096]],[[179.9999603175593,-17.383402005942457],[178.8749611145193,-18.028803650699082],[178.43744782917764,-18.123810943537187],[178.0874480765248,-18.880139975101173],[173.69996478053517,-23.905969261790265],[166.49996988107907,-27.15383128539156],[160.64997402527118,-31.083834718767243],[154.79996457419256,-33.00992295652956],[152.0920653907799,-34.11735567246567],[151.591830457126,-33.96305435950763],[151.273987072028,-33.76116106060912]],[[151.19625712709274,-33.913571605570375],[152.09996648689665,-34.39497520616068],[155.69996393662453,-35.22626671976625],[159.29996138635258,-35.77578304431546],[167.39995564824065,-36.3215277599179],[172.7999518228328,-36.68325067019043],[174.62339053109176,-36.78757761230096]],[[174.76792042870525,-36.78780986154051],[175.04990772894308,-36.59297842795038],[175.04990772894308,-36.140033391295425],[175.49990741015898,-35.77578304431546],[178.64990517867093,-36.140033391295425],[179.99990422231897,-35.59302880961419]]]}},{"type":"Feature","properties":{"id":"st-thomas-st-croix-system","name":"St. Thomas-St. Croix System","color":"#ba742d","feature_id":"st-thomas-st-croix-system-0","coordinates":[-64.84149598647817,17.80134199888686]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.84313982857148,18.322468254678206],[-64.68454994091798,17.782279507518794],[-64.70319992770621,17.746662811447646],[-64.70319992770621,17.782279507518794],[-64.72174991456521,17.80134199888686],[-64.90007978823466,17.80134199888686],[-64.90007978823466,17.748053328852414],[-64.88146980141806,17.712429822041987],[-64.91862977509366,17.748053328852414],[-64.99386972179303,18.32460417009705]],[[-64.99386972179303,18.32460417009705],[-64.98456972838113,18.333503533793607],[-64.97526973496932,18.342402439472306],[-64.96164474462148,18.339065996785507],[-64.94801975427346,18.335729489696146],[-64.94592475575756,18.33197524897088],[-64.94382975724173,18.328220926737288],[-64.95080975229708,18.320574387618265],[-64.95778974735234,18.312927510584466],[-64.92753976878178,18.3027738725405],[-64.89728979021113,18.292619639280012],[-64.87021480939131,18.307544590090053],[-64.84313982857148,18.322468254678206]]]}},{"type":"Feature","properties":{"id":"subcan-link-1","name":"Subcan Link 1","color":"#92c83d","feature_id":"subcan-link-1-0","coordinates":[-15.492297959982858,28.386459207827542]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.36231417284318,28.37762364282845],[-15.288094933830214,28.38853301873347],[-15.180095010338338,28.38853301873347],[-15.180095010338338,28.060358799524476],[-15.40875484835354,28.040969582855265]]]}},{"type":"Feature","properties":{"id":"subcan-link-2","name":"Subcan Link 2","color":"#8dc63e","feature_id":"subcan-link-2-0","coordinates":[-15.33872947909735,28.479089831322458]},"geometry":{"type":"MultiLineString","coordinates":[[[-16.36231417284318,28.37762364282845],[-15.288094933830214,28.484109146622668],[-15.072085086853575,28.484109146622668],[-15.072085086853575,28.060358799524476],[-15.40875484835354,28.040969582855265]]]}},{"type":"Feature","properties":{"id":"suriname-guyana-submarine-cable-system-sg-scs","name":"Suriname-Guyana Submarine Cable System (SG-SCS)","color":"#63bb45","feature_id":"suriname-guyana-submarine-cable-system-sg-scs-0","coordinates":[-58.380112289273406,9.029604481528242]},"geometry":{"type":"MultiLineString","coordinates":[[[-56.37537582721494,5.886620767353748],[-56.36238583641721,6.405200795356032],[-56.474885756721136,7.29876275445952],[-57.374885119153106,8.190543417795496],[-60.29988304705723,10.632033208117836],[-60.74988272827321,10.85308969074528],[-60.974882568881156,10.963556857789316],[-61.42488225009723,10.85308969074528],[-61.65081209004632,10.686261032786325]],[[-58.154864566608346,6.804293299288684],[-57.71238488006516,7.29876275445952],[-57.374885119153106,8.190543417795496]]]}},{"type":"Feature","properties":{"id":"svalbard-undersea-cable-system","name":"Svalbard Undersea Cable System","color":"#944c9d","feature_id":"svalbard-undersea-cable-system-0","coordinates":[16.713776718677188,69.2557616582708]},"geometry":{"type":"MultiLineString","coordinates":[[[15.642983075583015,78.21811207261818],[14.42937335472244,78.13693925913735],[13.507532008541482,78.15076892267464],[12.76375065562616,78.04851931491818],[11.700065947503239,77.07068952519339],[12.600065309935387,73.42211510500317],[16.20006275966344,69.73724550802271],[16.875062281487367,69.10459505606217],[16.875062281487367,68.8625186415942],[16.553187508910593,68.73431026184308],[16.987562201791476,68.8625186415942],[17.100062122095405,69.10459505606217],[16.65006244087933,69.73724550802271],[13.05006499115128,73.42211510500317],[12.150065628719313,77.07068952519339],[13.05006499115128,78.03993864842269],[13.525563071642315,78.12018490851229],[14.452259920314427,78.1154120692674],[15.642983075583015,78.21811207261818]]]}},{"type":"Feature","properties":{"id":"sweden-estonia-ee-s-1","name":"Sweden-Estonia (EE-S 1)","color":"#e23825","feature_id":"sweden-estonia-ee-s-1-0","coordinates":[21.772402244209484,59.133557347737586]},"geometry":{"type":"MultiLineString","coordinates":[[[24.752496701038964,59.43639985926234],[24.412556941855435,59.50884868221247],[23.850057340335432,59.45171731890513],[23.1750578185115,59.222223914844314],[22.736388129269244,59.000082835046605],[22.050058615471496,59.106894957190725],[20.250059890607382,59.27974267096037],[18.900060846959338,59.27974267096037],[18.688360996929806,59.292766765691574]]]}},{"type":"Feature","properties":{"id":"taino-carib","name":"Taino-Carib","color":"#44bb90","feature_id":"taino-carib-0","coordinates":[-65.5099799574482,18.442367991692414]},"geometry":{"type":"MultiLineString","coordinates":[[[-66.08278895039234,18.453602408781496],[-66.030607739014,18.44429123321624],[-66.01686899709074,18.441839618642867],[-65.69987922164921,18.465364393137126],[-64.93708976201641,18.372992194090898]]]}},{"type":"Feature","properties":{"id":"taiwan-strait-express-1-tse-1","name":"Taiwan Strait Express-1 (TSE-1)","color":"#63b545","feature_id":"taiwan-strait-express-1-tse-1-0","coordinates":[120.58041644458821,25.620763286564546]},"geometry":{"type":"MultiLineString","coordinates":[[[119.60781373392035,25.780770721177067],[119.92498927876045,25.805355685864413],[120.82498864178831,25.55188275942587],[121.27498832419637,25.348717422116714],[121.46258819070279,25.181712818924378]]]}},{"type":"Feature","properties":{"id":"exelera-north","name":"Exelera North","color":"#d41577","feature_id":"exelera-north-0","coordinates":[33.555646127767034,33.53991473376938]},"geometry":{"type":"MultiLineString","coordinates":[[[32.466651236259686,34.76657169708598],[32.62505112404761,34.49779087043369],[33.52505048647958,33.565491482352044],[34.200050008303506,33.001218522654476],[34.97190100000024,32.76170000000019]]]}},{"type":"Feature","properties":{"id":"tangerine","name":"Tangerine","color":"#25ae73","feature_id":"tangerine-0","coordinates":[2.1668424991066217,51.235991798271144]},"geometry":{"type":"MultiLineString","coordinates":[[[1.440993215126906,51.35857144425905],[1.800072960751236,51.235991798271144],[2.475072482575348,51.235991798271144],[2.91277217250473,51.2312205646267]]]}},{"type":"Feature","properties":{"id":"tasman-global-access-tga-cable","name":"Tasman Global Access (TGA) Cable","color":"#cc3b95","feature_id":"tasman-global-access-tga-cable-0","coordinates":[162.8033858922768,-36.73645635191931]},"geometry":{"type":"MultiLineString","coordinates":[[[174.87183035509463,-37.8013820822191],[174.59995054769675,-37.758235764746985],[172.7999518228328,-37.401610748143824],[167.39995564824065,-37.04328040742407],[159.29996138635258,-36.50260046108511],[155.69996393662453,-35.59302880961419],[152.09996648689665,-34.48775447869505],[151.2450870925013,-33.737123050977864]]]}},{"type":"Feature","properties":{"id":"tata-tgn-atlantic-south","name":"Tata TGN-Atlantic South","color":"#b86d35","feature_id":"tata-tgn-atlantic-south-0","coordinates":[-38.53944305109249,45.90450350872602]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.974873656631674,51.22244696599781],[-4.049922895056732,51.3766517753536],[-5.399921938704683,51.16550007909214],[-7.199920663568708,51.02419288763878],[-10.799918113296759,50.31116725161073],[-16.199914287888834,49.87814473780419],[-23.399909187344846,49.58728674004685],[-39.59989771112098,45.646541495187385],[-50.39989006030513,42.578254086072846],[-61.19988240948919,41.0693404382162],[-68.39987730894529,40.72920412488655],[-71.09987539624129,40.30157665795881],[-74.06286329723282,40.15283384719588]]]}},{"type":"Feature","properties":{"id":"tata-tgn-gulf","name":"Tata TGN-Gulf","color":"#63bb45","feature_id":"tata-tgn-gulf-0","coordinates":[60.376302878680036,22.884654113882444]},"geometry":{"type":"MultiLineString","coordinates":[[[61.87503040308773,18.678647022154717],[61.87503040308773,22.469443964829516],[60.75003119945182,22.884654113882444],[59.62503199581592,22.884654113882444],[59.366662179443516,22.700003992423866],[59.40003215580378,22.884654113882444],[59.17503231400394,23.608214441359472],[58.50003279396771,24.430271928048704],[56.92503390971164,25.043329056612176],[56.33372432860119,25.121690004958644]],[[55.30853505485483,25.269353998130182],[55.146080140722326,25.491442370319074],[54.94940481462296,25.645171808480264],[53.55003630059162,26.05828756029904],[52.425037097551616,26.562513149236715],[51.75003757572769,26.964304734562898],[51.075038053903754,27.364667993860262],[50.51253845238375,26.964304734562898],[50.287538611775716,26.461843796188983],[50.214198663730556,26.28537535931817]],[[50.57601840741415,26.229494838391265],[51.187537974207686,26.562513149236715],[51.75003757572769,26.964304734562898]],[[51.519277739200085,25.294608758024626],[51.975037416335724,26.05828756029904],[52.425037097551616,26.562513149236715]]]}},{"type":"Feature","properties":{"id":"tata-tgn-pacific","name":"Tata TGN-Pacific","color":"#b86637","feature_id":"tata-tgn-pacific-0","coordinates":[-141.98468279027563,47.36074149138619]},"geometry":{"type":"MultiLineString","coordinates":[[[-118.24535355799169,34.053396879397056],[-118.79984160513764,33.93964008831966],[-119.2498412869497,33.87739543625145],[-120.59984033000157,33.93964008831966],[-122.3998390548656,34.31215165223547],[-123.29983841789374,35.05222991093673],[-125.54983682337766,38.651811712711336],[-126.44983618580963,42.743713464436695],[-125.09983714216159,45.0138336439531],[-124.19983777972962,45.74476367411526],[-123.52483825790569,45.76438740771229],[-122.98980067585488,45.522898824562965],[-123.52483825790569,45.8428133389289],[-124.19983777972962,45.92112887154667],[-125.09983714216159,46.0383951936514],[-129.5998339543217,46.272182853813646],[-138.59982757864174,47.19740739556967],[-151.19981865269,47.80541217589291],[-179.99979825051412,47.80541217589291]],[[-122.98980067585488,45.522898824562965],[-123.52483825790569,45.862402571602836],[-124.19983777972962,45.97979307748938],[-125.09983714216159,46.19436398821858],[-129.5998339543217,46.5823550820958],[-138.59982757864174,47.80541217589291],[-151.1998186526899,48.40638249553803],[-179.99979825051412,48.40638249553803]],[[179.99995828233068,48.40638249553803],[172.7999518228328,48.40638249553803],[160.19996074878455,45.331071073324864],[149.39996839960057,39.35121757117122],[141.2999741377125,35.05222991093673],[140.3437248151284,35.05222991093673],[140.06110501533894,35.062298417794814]],[[179.99995828233068,47.80541217589291],[172.7999518228328,47.80541217589291],[160.19996074878455,44.694829089578164],[149.39996839960057,39.00237890905839],[143.09997286257644,35.05222991093673],[138.59997605041642,34.032921789964035],[137.69997668798445,34.31215165223547],[137.39157690645783,34.76914289401008],[137.58747676768036,34.31215165223547],[138.59997605041642,24.12261698700344],[139.94997509406446,21.635297384859552],[142.19997350014447,16.965102599435927],[143.32497270318447,15.23578178303578],[144.22497206561644,13.92930384327183],[144.69470173285575,13.464772962370143]]]}},{"type":"Feature","properties":{"id":"tata-tgn-tata-indicom","name":"Tata TGN-Tata Indicom","color":"#94a139","feature_id":"tata-tgn-tata-indicom-0","coordinates":[92.85399911501484,8.55949483400084]},"geometry":{"type":"MultiLineString","coordinates":[[[80.24298739105474,13.06385310188338],[81.45001653598388,12.175887185507976],[83.70001494206389,10.41081650540272],[89.10001111665605,9.08033076823294],[93.1500082476,8.518425924569478],[95.40000665368001,7.521883237406507],[97.42500521915215,6.5728695185769],[99.2250039440161,5.286069860821008],[100.01250338614413,4.613591578862773],[100.57500298766413,3.266814816815666],[101.25000250948806,2.592701464601932],[102.15000187192003,2.086875539277345],[102.68279723997186,1.726894676446862],[103.34065102845322,1.327793781945009],[103.50000091556807,1.243290124212273],[103.91973061822782,1.172215972443871]],[[103.91973061822782,1.172215972443871],[103.98701057056589,1.389451396800233]]]}},{"type":"Feature","properties":{"id":"tata-tgn-western-europe","name":"Tata TGN-Western Europe","color":"#613e98","feature_id":"tata-tgn-western-europe-0","coordinates":[-9.123172630879672,49.586130053554875]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.949193674823563,43.274220252000646],[-4.049922895056732,44.694829089578164],[-5.849921619920758,46.272182853813646],[-6.974920822960762,48.10677570919628],[-6.974920822960762,50.454639125893955],[-5.399921938704683,51.02419288763878],[-4.049922895056732,51.27119721416558],[-2.974873656631674,51.22244696599781],[-4.049922895056732,51.30637567738274],[-5.399921938704683,51.09490046148111],[-7.199920663568708,50.59767719905356],[-10.799918113296759,48.70423463096067],[-15.299914925456777,44.694829089578164],[-15.299914925456777,39.6983233549332],[-13.949915881808826,39.00237890905839],[-10.799918113296759,38.651811712711336],[-9.107439312264662,38.642658330346336]]]}},{"type":"Feature","properties":{"id":"te-northtgn-eurasiaseacomalexandrosmedex","name":"TE North/TGN-Eurasia/SEACOM/Alexandros/Medex","color":"#3c54a4","feature_id":"te-northtgn-eurasiaseacomalexandrosmedex-0","coordinates":[15.326417266767319,33.977401942308276]},"geometry":{"type":"MultiLineString","coordinates":[[[8.10006849777537,37.94551049545967],[7.987568577471261,37.23235432155614],[7.755438741914387,36.90282046530194]],[[27.900054471279375,32.243210016262736],[30.60005255857546,32.43331330641721],[32.40005128343957,33.189714664600466],[33.41255056617547,34.49779087043369],[33.61060042587536,34.82728147271538]],[[5.372530429989069,43.29362778902908],[6.075069932303216,41.74435878948223],[7.425068975951258,38.651811712711336],[8.10006849777537,37.94551049545967],[9.000067859611436,37.85673997565852],[10.348617229769278,37.85673997565852],[10.91256650537538,37.50058844605323],[11.700065946311437,37.23235432155614],[11.812565867807347,36.24065523321488],[12.262565549023423,35.78566189952622],[12.656315270092444,35.419780517080355],[14.400064034799321,34.265677526524286],[16.65006244087933,33.565491482352044],[19.350060528175415,33.93964008831966],[22.050058614875596,33.87739543625145],[25.200056383983473,33.14262853088797],[27.900054471279375,32.243210016262736],[29.70093319552029,31.072270031660306]]]}},{"type":"Feature","properties":{"id":"telstra-endeavour","name":"Telstra Endeavour","color":"#393d98","feature_id":"telstra-endeavour-0","coordinates":[168.29156866934412,-24.230720295320193]},"geometry":{"type":"MultiLineString","coordinates":[[[151.22848710426095,-33.882038650285516],[152.0332142221154,-33.848958880365075],[154.80001816943468,-32.423034994424306],[160.64997402527118,-30.30995334464681],[166.49996988107907,-25.540896076259312],[170.9999666932391,-22.250099679090077],[173.69996478053517,-17.168553094226155],[179.9999603175593,-8.401139048122838]],[[-179.99979825051412,-8.401139048122838],[-176.39980080078607,-3.029995968008661],[-172.79980335105813,2.367912558705407],[-167.39980717646606,10.41081650540272],[-163.799809726738,14.801154224791581],[-160.1998122770105,18.678647022154717],[-158.849813233362,20.796306105108872],[-158.3998135521461,21.425997872385402],[-158.24204999203212,21.54876173571662]]]}},{"type":"Feature","properties":{"id":"thailand-indonesia-singapore-tis","name":"Thailand-Indonesia-Singapore (TIS)","color":"#79c042","feature_id":"thailand-indonesia-singapore-tis-0","coordinates":[104.3997228574189,5.24143602573144]},"geometry":{"type":"MultiLineString","coordinates":[[[104.0166370000003,1.066798000000349],[104.03350053763215,1.290748482962603],[103.98701057056589,1.389451396800233],[104.19209042528557,1.302655424517022],[104.28790035741287,1.35596103499925],[104.37232529760543,1.468426767331968],[104.65208343275526,2.367912558705407],[104.38596586214548,5.398081130463647],[103.03476681934734,6.893492138282953],[101.70000219070414,7.019705967385337],[100.5951029728293,7.198818071264419]]]}},{"type":"Feature","properties":{"id":"the-east-african-marine-system-teams","name":"The East African Marine System (TEAMS)","color":"#73bf43","feature_id":"the-east-african-marine-system-teams-0","coordinates":[57.17435522397155,8.258620151746948]},"geometry":{"type":"MultiLineString","coordinates":[[[39.672896131288006,-4.052924364763054],[42.30004427019158,-4.60145376483711],[46.57504124174374,-2.35574573664619],[53.10003661937573,1.468426767331968],[56.25003438848378,5.510071711803246],[57.60003343153574,9.52441134501949],[62.10003024369576,15.669513225155248],[63.00002960612773,20.796306105108872],[63.00002960612773,22.469443964829516],[59.85003183761575,24.32780311165363],[58.50003279396771,24.660522249648846],[56.92503390971164,24.915858493558826],[56.33372432860119,25.121690004958644]]]}},{"type":"Feature","properties":{"id":"tobrok-emasaed-cable-system","name":"Tobrok-Emasaed Cable System","color":"#65ac44","feature_id":"tobrok-emasaed-cable-system-0","coordinates":[24.606382917057203,32.1567570757107]},"geometry":{"type":"MultiLineString","coordinates":[[[23.960407262162704,32.07985133144836],[24.300057021551506,32.243210016262736],[24.975056543375437,32.052708023486204],[25.087356463821255,31.761227937714725]]]}},{"type":"Feature","properties":{"id":"tonga-cable","name":"Tonga Cable","color":"#42b549","feature_id":"tonga-cable-0","coordinates":[-177.62282479346842,-20.297109438335415]},"geometry":{"type":"MultiLineString","coordinates":[[[-179.99979825051412,-19.305384072361306],[-175.9498011195701,-20.995131543025785],[-175.20000165073512,-21.133465659292966]],[[179.9999603175593,-19.305384072361306],[179.09996095512733,-18.66711083815884],[178.43744782917764,-18.123810943537187]]]}},{"type":"Feature","properties":{"id":"trans-pacific-express-tpe-cable-system","name":"Trans-Pacific Express (TPE) Cable System","color":"#a2c539","feature_id":"trans-pacific-express-tpe-cable-system-0","coordinates":[-151.72507890815905,46.5823550820958]},"geometry":{"type":"MultiLineString","coordinates":[[[134.99997860068837,30.708139993541643],[136.7999773255523,31.478822672736147],[138.59997605041642,32.62301664000789],[140.39997477528055,33.37780603565933],[143.09997286257644,34.49779087043369],[149.39996839960057,37.94551049545967],[160.19996074878455,43.401144973153954],[172.7999518228328,46.5823550820958],[179.99995828233068,46.5823550820958]],[[132.74998019460836,30.320465424761444],[132.74998019460836,30.708139993541643],[130.49998178852834,30.708139993541643],[128.92498290427227,31.670513047087127],[127.85028816476637,33.19758857732108],[128.36248330275228,34.31215165223547],[128.62078311977027,34.88072781981967],[127.91248362153638,34.31215165223547],[127.12498417940834,33.189714664600466],[125.99998497636834,32.8123187832876],[124.19998625150441,33.189714664600466],[122.84998720785636,33.93964008831966],[120.8249886423844,35.419780517080355],[120.34246898420574,36.08731090741939],[120.59998880177636,35.419780517080355],[122.39998752664029,33.93964008831966],[123.74998657028833,33.001218522654476],[124.19998625150441,31.86180860227073]],[[139.97546699999984,35.005433000000174],[140.1046624838865,34.89859296336222],[140.06247501377248,34.69072647741027],[139.94997509406446,34.405022750715936],[139.04997573163232,33.93964008831966],[136.7999773255523,31.86180860227073],[134.99997860068837,31.09426282763951],[132.74998019460836,30.708139993541643]],[[121.40818822924032,31.61896581082966],[122.17498768603225,31.19054975154414],[123.5249867296803,30.126049846722832],[123.74998657028833,28.161052262220792],[121.94998784542422,26.562513149236715],[121.49998816420832,25.75470426341523],[121.46258819070279,25.181712818924378],[121.61248808451225,25.75470426341523],[121.94998784542422,26.36108632539156],[125.26189309097956,27.59034732929116],[130.49998178852834,30.708139993541643]],[[134.99997860068837,30.708139993541643],[132.74998019460836,30.320465424761444],[130.49998178852834,30.5144959597591],[124.19998625150441,31.86180860227073],[122.84998720785636,31.957307911004964],[121.94998784542422,31.766210259727007],[121.39529823837174,31.619800328867754]],[[-123.94016937986751,45.64401775142813],[-125.09983714216159,44.85455225626708],[-129.5998339543217,44.05151922873524],[-138.59982757864174,45.646541495187385],[-151.1998186526899,46.5823550820958],[-179.99979825051412,46.5823550820958]]]}},{"type":"Feature","properties":{"id":"transworld-tw1","name":"Transworld (TW1)","color":"#61bb46","feature_id":"transworld-tw1-0","coordinates":[61.67200213645002,24.665565595204]},"geometry":{"type":"MultiLineString","coordinates":[[[58.1762030233719,23.68487753168473],[58.275082953324564,23.91710129093513],[58.72503263457575,24.225251377401914],[59.85003265596724,24.941359113142855]],[[56.33372432860119,25.121690004958644],[56.92503390971164,25.068807301098893],[58.72503263457575,25.145210227401346],[59.85003265596724,24.941359113142855],[62.55002992491184,24.53265756616073],[67.02854675228855,24.889731701235817]]]}},{"type":"Feature","properties":{"id":"tt1","name":"TT1","color":"#4abb84","feature_id":"tt1-0","coordinates":[-60.970520635231445,11.021638590788555]},"geometry":{"type":"MultiLineString","coordinates":[[[-60.949592586796825,10.831511900511618],[-60.974882568881156,11.016811865272118],[-60.84026266424723,11.165776379841363]]]}},{"type":"Feature","properties":{"id":"turcyos-1","name":"Turcyos-1","color":"#97b93c","feature_id":"turcyos-1-0","coordinates":[33.03347658614124,35.676931641711754]},"geometry":{"type":"MultiLineString","coordinates":[[[32.96670088142377,36.099997364015636],[32.96255088436367,35.90725015614043],[33.075050804667605,35.54192681258013],[33.23628069104678,35.29912186607703]]]}},{"type":"Feature","properties":{"id":"turcyos-2","name":"Turcyos-2","color":"#81c341","feature_id":"turcyos-2-0","coordinates":[35.01639266681694,35.49639512283798]},"geometry":{"type":"MultiLineString","coordinates":[[[35.9993687336493,36.082340813673596],[35.55004905195155,35.78566189952622],[34.87504953012762,35.419780517080355],[34.200050008303506,35.236213400528236],[33.91945020708308,35.28438909238445]]]}},{"type":"Feature","properties":{"id":"uae-iran","name":"UAE-Iran","color":"#d41f26","feature_id":"uae-iran-0","coordinates":[57.212944337494406,25.153681018757986]},"geometry":{"type":"MultiLineString","coordinates":[[[56.33372432860119,25.121690004958644],[56.92503390971164,25.094280247013153],[57.60364342897847,25.234288823528676],[57.79730329178807,25.681322707882497]]]}},{"type":"Feature","properties":{"id":"ugarit","name":"UGARIT","color":"#267cb5","feature_id":"ugarit-0","coordinates":[34.7527429480767,34.82107849658103]},"geometry":{"type":"MultiLineString","coordinates":[[[35.89779880560243,34.89170328553848],[35.55004905195155,34.867831005273345],[33.97505016769547,34.775476075756664],[33.61060042587536,34.82728147271538]]]}},{"type":"Feature","properties":{"id":"uk-channel-islands-8","name":"UK-Channel Islands-8","color":"#8fc73e","feature_id":"uk-channel-islands-8-0","coordinates":[-3.7568240359353537,49.46667101388998]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.225994187144854,49.21570868235566],[-2.420674049231854,49.2186480515311],[-3.599923213840749,49.44120372312804],[-4.499922576272716,49.58728674004685],[-5.172972099478099,50.02254139117193]]]}},{"type":"Feature","properties":{"id":"unity","name":"Unity","color":"#77459a","feature_id":"unity-0","coordinates":[-148.18220341164763,44.06630066756654]},"geometry":{"type":"MultiLineString","coordinates":[[[-118.38802345391501,33.84447040216643],[-120.59984033000157,33.799525734581415],[-122.3998390548656,34.12610104005753],[-129.5998339543217,37.94551049545967],[-138.5998275786419,42.07923561816413],[-151.19983391146832,44.69205655553234],[-179.99981350929238,44.69205655553234]],[[139.95485509060742,34.97657002902234],[140.06247501377248,34.96776525378359],[140.3437248151284,34.960082324548345],[141.2999741377125,34.867831005273345],[143.09997286257644,34.867831005273345],[149.39996839960057,36.1498667868178],[160.19996074878455,41.40772623743595],[172.79992073307184,44.694811588752586],[179.99992719256971,44.694811588752586]]]}},{"type":"Feature","properties":{"id":"west-africa-cable-system-wacs","name":"West Africa Cable System (WACS)","color":"#394da1","feature_id":"west-africa-cable-system-wacs-0","coordinates":[-6.06677813221715,-0.7813866362255875]},"geometry":{"type":"MultiLineString","coordinates":[[[14.533463940297649,-22.68542973223072],[13.05006499115128,-22.873434953546333],[9.900067222639304,-23.49392244589784]],[[12.349965487108514,-5.933373731471328],[10.80006658507127,-5.945707155070644],[8.10006849777537,-6.616650693475355]],[[9.000067860207336,-10.620064860363238],[11.700065947503239,-9.29042430103552],[12.600065309935387,-9.29042430103552],[13.201440382068753,-9.49008098880628]],[[10.80006658507127,-5.945707155070644],[11.250066265691444,-5.236602021940458],[11.863635831629022,-4.77878776891936]],[[4.500071048047319,0.118588418888312],[6.300069772911254,1.693340822791726],[8.10006849777537,2.367912558705407],[9.000067860207336,3.266814816815666],[9.208657712440504,4.014706479784149]],[[3.423511810692114,6.439066911484626],[3.375071845007315,4.164912849976942],[2.25007264196731,2.03066189047467]],[[1.227803366152544,6.126307297218732],[1.46257319924337,5.061986954416114],[3.375071845007315,4.164912849976942]],[[-9.107439312264662,38.642658330346336],[-9.449919069648717,38.29952060596925],[-11.024917953904795,36.51238821239364],[-11.924917316336764,35.419780517080355],[-13.499916200592752,32.052708023486204],[-14.624915403632755,30.5144959597591],[-15.299914925456777,28.95155473219332],[-16.199914287888834,27.76358852605777],[-17.99991301275286,24.94136317175375],[-18.899912375184826,22.884654113882444],[-20.24991141883287,19.95262290516439],[-20.24991141883287,15.23578178303578],[-20.24991141883287,11.735650161405832],[-18.899912375184826,8.635699417327467],[-14.399915563024809,2.817450442654169],[-10.799918113296759,-0.781386636225587],[-3.599923213840749,-0.781386636225587],[0.225074076495339,0.13163185678509],[1.575073120143199,1.35596103499925],[2.25007264196731,2.03066189047467],[4.500071048047319,0.118588418888312],[6.300069772911254,-1.231315750217412],[7.650068816559295,-4.825692499217419],[8.10006849777537,-6.616650693475355],[9.000067860207336,-10.620064860363238],[8.550068178991262,-18.026426383713453],[9.900067222639304,-23.49392244589784],[13.950064353583429,-30.30995334464681],[15.750063078447363,-32.61276000573574],[16.65006244087933,-33.27363077142247],[18.15553137439108,-33.348058456467676]],[[-0.204315619320974,5.558285889905858],[0.225074076495339,3.279837005484997],[0.225074076495339,0.13163185678509]],[[-4.026242911831877,5.323508791824841],[-4.162422815360751,3.266814816815666],[-4.274922735664679,2.367912558705407],[-4.14992282421577,1.468426767331968],[-3.599923213840749,-0.781386636225587]],[[-23.521209101414858,14.923035560171673],[-22.499909824912876,15.018578573757472],[-20.24991141883287,15.018578573757472]],[[-16.199914287888834,27.76358852605777],[-15.74991460667276,27.564309487941923],[-15.46866480591276,27.564309487941923],[-15.299914925456777,27.663994423747],[-15.299914925456777,27.813351446514346],[-15.39874485544474,27.959394261046018]]]}},{"type":"Feature","properties":{"id":"cross-straits-cable-network-cscn","name":"Cross-Straits Cable Network (CSCN)","color":"#1e92d1","feature_id":"cross-straits-cable-network-cscn-0","coordinates":[118.23949047409472,24.47471752631132]},"geometry":{"type":"MultiLineString","coordinates":[[[118.30692042620751,24.476050879560166],[118.30389542835046,24.5163951946322],[118.3008704304934,24.55672655773242]],[[118.18905050970763,24.493915539480593],[118.2394904739755,24.474717526356702],[118.28993043824354,24.455516584685828]]]}},{"type":"Feature","properties":{"id":"yellow","name":"Yellow","color":"#b99633","feature_id":"yellow-0","coordinates":[-38.70797214670583,44.59606592327159]},"geometry":{"type":"MultiLineString","coordinates":[[[-72.93786409419282,40.75584308487114],[-71.09987539624129,40.12976255393115],[-68.39987730894529,40.38732029077508],[-61.19988240948919,40.38732029077508],[-50.39989006030513,41.576261830098154],[-39.59989771112098,44.37405751055857],[-23.399909187344846,48.40638249553803],[-16.199914287888834,49.29468421942562],[-10.799918113296759,50.022920456254944],[-8.099920026000767,50.31116725161073],[-5.399921938704683,50.811421859282945],[-4.544402544762735,50.82820142743812]]]}},{"type":"Feature","properties":{"id":"baltic-sea-submarine-cable","name":"Baltic Sea Submarine Cable","color":"#2fbfcc","feature_id":"baltic-sea-submarine-cable-0","coordinates":[20.749830524880952,59.55948018659495]},"geometry":{"type":"MultiLineString","coordinates":[[[21.375059093647387,59.5373781389088],[20.250059890607382,59.45171731890513],[18.900060846959338,59.33716441962142],[18.062761440110208,59.33230901818709],[18.900060846959338,59.3944892668567],[20.250059890607382,59.50884868221247],[21.375059093647387,59.62282176941042],[23.850057340335432,59.679663707208995],[24.412556941855435,59.79305890746809],[24.932476573539617,60.171163188940554],[24.91880658322347,60.07486799642317],[24.86255662307151,59.9624316341522],[24.7500567027674,59.679663707208995],[24.752496701038964,59.43639985926234],[24.412556941855435,59.56588346342965],[23.850057340335432,59.56588346342965],[21.375059093647387,59.5373781389088]]]}},{"type":"Feature","properties":{"id":"solas","name":"Solas","color":"#af3143","feature_id":"solas-0","coordinates":[-5.483009534617182,51.47267219749354]},"geometry":{"type":"MultiLineString","coordinates":[[[-4.169502810345242,51.55809471609609],[-5.399921938704683,51.44682015166956],[-5.849921620516659,51.586833980054095],[-6.585031099162287,52.17164795778553]]]}},{"type":"Feature","properties":{"id":"pan-european-crossing-uk-ireland","name":"Pan European Crossing (UK-Ireland)","color":"#59b947","feature_id":"pan-european-crossing-uk-ireland-0","coordinates":[-5.446351911625827,51.64417593731623]},"geometry":{"type":"MultiLineString","coordinates":[[[-6.558811117736723,52.184255568368805],[-6.074921461124696,51.586833980054095],[-5.737421700212731,50.740281893948165],[-5.698461727216356,50.07870033214287]],[[-4.544402544762735,50.82820142743812],[-5.399921938704683,51.586833980054095],[-5.849921619920758,52.14259270367212],[-6.364861255132669,52.40176042819693]]]}},{"type":"Feature","properties":{"id":"alaska-united-southeast-au-se","name":"Alaska United Southeast (AU-SE)","color":"#7e439a","feature_id":"alaska-united-southeast-au-se-0","coordinates":[-133.68772704901258,57.532965301974784]},"geometry":{"type":"MultiLineString","coordinates":[[[-135.3344010202442,57.05301929960622],[-135.47615091624638,57.14285437334868],[-135.56560085061952,57.25632706167504],[-135.62014081060508,57.29294273759133],[-135.68474076320985,57.32790795452416],[-135.70291074987912,57.35154490127678],[-135.65237078695884,57.37664384009415],[-135.61692081296755,57.39764169906029],[-135.5723408456746,57.43153840198825],[-135.52976087691425,57.4657963369845],[-135.53240087497736,57.50700103750678],[-135.53240087497736,57.54920559971693],[-135.50540089478653,57.568538621060895],[-135.41858095848386,57.58377679148179],[-135.325321026906,57.56374387311736],[-135.1631111459147,57.4973463454386],[-135.05979122171766,57.44987929314743],[-134.96975128777734,57.43046177296257],[-134.8572513703154,57.41589725419255],[-134.77170143308095,57.4255734788795],[-134.58225157207488,57.501940298718075],[-134.69651534438088,57.594609061615635],[-134.76067779892762,57.734649479402336],[-134.8106777635072,58.012978928938054],[-134.81292411835489,58.07747851820177],[-134.74172145507632,58.12820451017112],[-134.63616153252264,58.21297738638939],[-134.71174147707188,58.291672685647676],[-134.7013914846653,58.30999281015943],[-134.60315155674115,58.326917289684346],[-134.54221160145104,58.318893286425045],[-134.4068617007534,58.299576750775365],[-134.29583062763373,58.23709493249001],[-134.13655189907203,58.165130914395746],[-134.1248307487715,58.101249458975765],[-133.99143084327335,57.98640326883048],[-133.82473096136496,57.82371236991844],[-133.80256214411085,57.707894171078024],[-133.69143105579607,57.558771470979615],[-133.66477224520332,57.37303699157905],[-133.6304922703536,57.31396150003885],[-133.658131079386,57.22966820564022],[-133.62948227169065,57.13766184463267],[-133.51633117983843,57.09442219161841],[-133.23294256202445,57.05115924380715],[-133.00823153978092,57.02097743143672],[-132.97024275475985,56.98329605125804],[-132.9011028054859,56.91336556277725],[-132.969852755046,56.807791226083026],[-132.8874491482218,56.722763716398205],[-132.84510784787435,56.661040335003094],[-132.76073290764631,56.59916066233438],[-132.70438295040975,56.537179473172735],[-132.5355830742533,56.47504144368907],[-132.3838131850065,56.470788497078864],[-132.45901312983446,56.3862218123596],[-132.51975308527136,56.368054145955455],[-132.59182303239558,56.35047071868664],[-132.59719302845576,56.31317190855833],[-132.6260030073188,56.25964372839669],[-132.7297129312297,56.232895991831526],[-132.84104284955015,56.19050811225174],[-132.85501283930074,56.12703903462036],[-132.74182292234497,56.066792217170224],[-132.61350301648966,56.00634486676592],[-132.45149313535165,55.89266381393939],[-132.34348321459547,55.79765291550112],[-132.27600326410357,55.63377825521405],[-132.1336233685637,55.526742438171844],[-131.97551348456435,55.45213247504737],[-131.91331353019876,55.466199572077606],[-131.8253235947544,55.434270637976695],[-131.64788372493697,55.34196841314809]]]}},{"type":"Feature","properties":{"id":"america-movil-submarine-cable-system-1-amx-1","name":"America Movil Submarine Cable System-1 (AMX-1)","color":"#3e60ac","feature_id":"america-movil-submarine-cable-system-1-amx-1-0","coordinates":[-45.68283490232327,8.348070685535115]},"geometry":{"type":"MultiLineString","coordinates":[[[-83.03765938887449,9.988597517410145],[-83.02486694906135,10.41081650540272],[-82.12486758662938,11.662208223864337],[-82.2373675069334,12.981078187892704],[-82.12486758662938,13.419186961310027],[-81.89986774602134,14.074846740630262],[-80.5498687017773,16.10232559580297]],[[-81.73000034886279,12.55112730403864],[-81.89986774602134,12.871429169544808],[-82.2373675069334,12.981078187892704]],[[-70.68356569115905,19.803388017159396],[-70.19987603380923,20.05833455139623],[-69.29987667137726,19.95262290516439],[-67.04987826529725,19.210675111642853],[-66.48737866377725,18.891661584303154],[-66.10666893347558,18.46610423294742]],[[-70.6911856857609,19.799436355797177],[-70.6498757150253,20.375041253465433],[-70.6498757150253,21.216397899942]],[[-69.29987667137726,22.261369678340607],[-70.6498757150253,21.216397899942],[-73.3498738023213,20.58581909604039],[-73.9123734038413,19.95262290516439],[-74.4748730053613,19.316876111628712],[-74.92487268657729,18.251816319028222],[-75.26237244748934,17.395022634700517],[-75.26237244748934,11.735650161405832],[-74.77975278938153,10.940445615726643]],[[-75.50573227509088,10.38680745163333],[-76.0498718896173,11.515266158038768],[-79.19986965872535,14.946128218512863],[-80.5498687017773,16.10232559580297],[-81.89986774542525,17.395022634700517],[-84.59986583272125,19.104405475930452],[-85.27486535454535,20.375041253465433],[-85.04986551393732,21.635297384859552],[-84.82486567332928,22.469443964829516],[-83.2498667890733,23.50508968095737],[-80.99986838299347,23.50508968095737],[-79.64986933934534,24.73717827217609],[-79.53736941904133,25.348717422116714],[-80.16016897784432,26.010548668010795]],[[-88.59713531004529,15.727236638721036],[-88.19986328244948,16.10232559580297],[-87.6373636809293,16.534196198259725],[-86.73736431849733,18.251816319028222],[-85.27486535454535,20.375041253465433]],[[-38.50448848711925,-12.96997203534297],[-37.34989930504097,-13.455974309054534],[-35.99990026139302,-13.504596782344024],[-35.549900580176946,-13.698987269610743]],[[-43.20956515399876,-22.903486555497956],[-42.29989579841706,-23.494056688715368],[-40.94989675476902,-23.49392244589784],[-38.69989834868901,-22.250099679090077],[-36.44989994260901,-18.026426383713453],[-35.549900580176946,-13.698987269610743],[-33.299902174096935,-8.401139048122838],[-33.299902174096935,-6.616650693475355],[-34.199901536529,-4.825692499217419],[-35.99990026139302,-3.92832730414264],[-38.542968459859594,-3.718735129291092],[-38.24989866747303,-1.231315750217412],[-39.149898029904996,1.468426767331968],[-46.79989261057708,9.52441134501949],[-52.19988878516916,14.801154224791581],[-57.59988495976114,17.395022634700517],[-59.399883684625166,18.251816319028222],[-62.09988177192116,19.316876111628712],[-63.89988049678528,19.316876111628712],[-65.69987922164921,19.529070924350908],[-67.49987794651324,21.216397899942],[-69.29987667137726,22.261369678340607],[-73.3498738023213,24.32780311165181],[-76.94987125204935,26.964304734562898],[-79.19986965812936,29.1482487910328],[-80.5498687017773,30.126049846722832],[-81.65563040282981,30.332100867462632]],[[-65.69987922164921,19.529070924350908],[-66.03737898256126,19.104405475930452],[-66.10666893347558,18.46610423294742]]]}},{"type":"Feature","properties":{"id":"america-movil-submarine-cable-system-1-amx-1","name":"America Movil Submarine Cable System-1 (AMX-1)","color":"#939597","feature_id":"america-movil-submarine-cable-system-1-amx-1-1","coordinates":[-70.80240522628625,17.16804012828196]},"geometry":{"type":"MultiLineString","coordinates":[[[-69.86237627289727,17.395022634700517],[-69.74987635318924,17.82393441253792],[-69.8061263133412,18.144943564296213],[-69.94053621812404,18.486808968061684]],[[-66.62663637762577,17.98265426367754],[-66.82487842647718,17.609605913224996],[-67.49987794651324,17.287636299591117],[-69.86237627289727,17.395022634700517],[-70.6498757150253,17.180187287481317],[-71.99987475867334,17.07267593989621],[-74.69987284596934,17.180187287481317],[-75.26237244748934,17.395022634700517]]]}},{"type":"Feature","properties":{"id":"avassa","name":"Avassa","color":"#bf6b28","feature_id":"avassa-0","coordinates":[44.85531830960453,-12.13911156845713]},"geometry":{"type":"MultiLineString","coordinates":[[[44.40004278253289,-12.1662747986749],[44.40004278253289,-11.921730511641545],[44.65004260543071,-11.921730511641545],[45.233294145374835,-12.539377089217226],[45.233294145374835,-12.783297381732545]],[[43.489203584029966,-11.923115980293565],[43.489203584029966,-12.045379517998398],[43.31254355292765,-12.053986862571566],[43.20004363262354,-11.943944931746815],[43.24330532072668,-11.700586528216206]]]}},{"type":"Feature","properties":{"id":"indigo-central","name":"INDIGO-Central","color":"#a4bb39","feature_id":"indigo-central-0","coordinates":[132.59494981581025,-36.48458466517816]},"geometry":{"type":"MultiLineString","coordinates":[[[151.19625712709274,-33.913571605570375],[151.34879326843867,-34.82698199055459],[150.27496777914686,-37.942453525696855],[149.39996839960057,-38.642301250436695],[147.59996967473646,-39.16757423638764],[146.24997063108842,-39.51559387611211],[144.4499719056286,-39.34180065396819],[143.9999722250084,-39.16757423638764],[142.19997350014447,-39.16757423638764],[140.39997477528055,-38.81782397325074],[134.85085761257704,-36.676358605808446],[127.09256232737636,-36.016828610146156],[119.55018485796727,-36.07920493188053],[115.44676979611502,-35.917240097009994],[114.05321609582157,-34.611299785451145],[114.05321609582157,-33.06182889373477],[115.85731638027985,-31.95343894398052]]]}},{"type":"Feature","properties":{"id":"eastern-africa-submarine-system-eassy","name":"Eastern Africa Submarine System (EASSy)","color":"#28a27f","feature_id":"eastern-africa-submarine-system-eassy-0","coordinates":[55.41741010630586,10.449991164659412]},"geometry":{"type":"MultiLineString","coordinates":[[[51.30003789451161,1.468426767331968],[46.80004108235159,2.255504211923801],[45.344182113695986,2.041205223228781]],[[43.24330360197787,-11.700589282272533],[42.75004395140765,-11.943944931746815],[42.07504442958354,-11.943944931746815]],[[43.66314330455965,-23.354724804059778],[42.75004395140765,-23.59705596407509],[41.40004490775961,-23.49392244589784]],[[32.58062115552212,-25.968268155407962],[33.750050327087614,-26.450941899317534],[35.55004905195155,-26.752713396100123]],[[39.672896131288006,-4.052924364763054],[42.30004427019158,-4.152767748013638]],[[40.500045545327644,-6.169450529574503],[41.62504474836765,-9.29042430103552],[42.07504442958354,-11.943944931746815],[42.525044110203716,-14.861883917661954],[42.52504411079961,-15.224032284647373],[42.52504411079961,-20.574419057276128],[41.40004490775961,-23.49392244589784],[35.55004905195155,-26.752713396100123],[33.750050327087614,-28.54634921047574],[32.850050964655466,-28.940898806450146],[31.757961738301827,-28.950559666538012]],[[37.21967786917097,19.61556659454616],[37.80004745803156,19.529070924350908],[39.150046502275686,18.251816319028222],[40.16254578501358,16.534196198259725],[41.62504474896373,14.801154224791581],[42.13129439033177,13.92930384327183],[42.806293912155695,13.054150695298627],[43.1297311836258,12.834868817846521],[43.21410612385384,12.615395567393394],[43.453168453307654,12.395734000022975],[44.55004267627159,11.460143029456674],[45.450042038703735,11.405009147532946],[48.60003980781179,12.175887185507976],[52.65003693815965,13.163718917913586],[54.00003598419185,13.492128176464083],[55.575034866063774,12.615395567393394],[55.35003502545574,9.52441134501949],[54.45003566361985,5.510071711803246],[51.30003789451161,1.468426767331968],[46.12504156052766,-1.906058394384765],[42.30004427019158,-4.152767748013638],[40.95004522654354,-5.497950688314882],[40.500045545327644,-6.169450529574503],[39.82504602290763,-6.523516459651954],[39.269676416932725,-6.823132108349236]],[[43.16164365982675,11.573660387694234],[43.65004331383962,11.56544739308108],[44.55004267627159,11.460143029456674]]]}},{"type":"Feature","properties":{"id":"dumai-melaka-cable-system-dmcs","name":"Dumai-Melaka Cable System (DMCS)","color":"#6bbd44","feature_id":"dumai-melaka-cable-system-dmcs-0","coordinates":[101.58210930555742,2.1897261952501026]},"geometry":{"type":"MultiLineString","coordinates":[[[101.44766236946417,1.665522797277061],[101.41875238994413,2.143087178471855],[101.81250211100806,2.255504211923801],[102.220901821694,2.273260323566543]]]}},{"type":"Feature","properties":{"id":"aden-djibouti","name":"Aden-Djibouti","color":"#08acdb","feature_id":"aden-djibouti-0","coordinates":[44.0777530184267,12.217167550728814]},"geometry":{"type":"MultiLineString","coordinates":[[[43.147992888246804,11.59488132936423],[43.65004331383962,11.955956037776811],[45.03353842750859,12.800886250786704]]]}},{"type":"Feature","properties":{"id":"chuuk-pohnpei-cable","name":"Chuuk-Pohnpei Cable","color":"#5abb5d","feature_id":"chuuk-pohnpei-cable-0","coordinates":[155.4447110271217,7.744889052551447]},"geometry":{"type":"MultiLineString","coordinates":[[[151.85848716577576,7.439993539799818],[152.99996584932845,7.744889052551447],[157.94996234270454,7.744889052551447],[159.0702615490743,7.786404758723782]]]}},{"type":"Feature","properties":{"id":"pacific-light-cable-network-plcn","name":"Pacific Light Cable Network (PLCN)","color":"#bc3e96","feature_id":"pacific-light-cable-network-plcn-0","coordinates":[-148.39382924040027,42.803904611812975]},"geometry":{"type":"MultiLineString","coordinates":[[[-118.41596126184768,33.873229987687004],[-120.59984033000157,33.612349285068355],[-122.3998390548656,33.75276987113061],[-129.5998339543217,37.23235432155614],[-138.5998275786419,40.72920412488655],[-151.19983391146832,43.39831121479671],[-179.99981350929238,43.39831121479671]],[[125.99998497636834,21.006499845176737],[130.94998146974444,22.469443964829516],[132.74998019460836,23.298598065875897],[138.59997605041642,25.75470426341523],[160.19996074878455,40.04369219283004],[172.79992073307184,43.4011270858577],[179.99992719256971,43.4011270858577]],[[125.99998497636834,21.006499845176737],[124.14876558466459,23.55170502223485],[122.84998720785636,24.53265756616073],[122.17498768603225,24.788256058863375],[121.80145279439779,24.863504254255204]],[[125.99998497636834,21.006499845176737],[124.6499859321244,19.24608308700458],[123.29998688907226,17.82393441253792],[122.39998752664029,16.10232559580297],[122.17498768603225,15.886035719079029],[121.94998784542422,15.777803371817374],[121.56018812156209,15.761539465842137]]]}},{"type":"Feature","properties":{"id":"colombia-florida-express-cfx-1","name":"Colombia-Florida Express (CFX-1)","color":"#ca2e32","feature_id":"colombia-florida-express-cfx-1-0","coordinates":[-74.14918274409902,19.812126245383148]},"geometry":{"type":"MultiLineString","coordinates":[[[-80.08893152830949,26.350585697437857],[-79.4248694987373,25.957179978764344],[-79.31236957843338,25.348717422116714],[-78.97486981752132,24.73717827217609],[-78.97486981752132,23.7112581424843],[-78.29987029569729,22.884654113882444],[-76.0498718896173,21.635297384859552],[-74.69987284596934,21.006499845176737],[-73.96862336399336,20.375041253465433],[-73.9123734038413,20.163975031975873],[-74.02487332414532,19.95262290516439],[-74.58737292566532,19.316876111628712],[-75.0373726068813,18.251816319028222],[-75.59987220840131,17.395022634700517],[-75.59987220840131,11.073982781226615],[-75.50573165009133,10.386791448721706]],[[-76.68936118269113,17.942952785882994],[-76.49987157083336,17.82393441253792],[-76.27487173022533,17.82393441253792],[-76.18434445060568,17.918365683338788],[-76.0498718896173,17.82393441253792],[-75.59987220840131,17.395022634700517]]]}},{"type":"Feature","properties":{"id":"imewe","name":"IMEWE","color":"#2966b1","feature_id":"imewe-0","coordinates":[48.42281650540944,12.901288725928946]},"geometry":{"type":"MultiLineString","coordinates":[[[32.52993119143143,29.972545436050364],[32.287551363135464,30.466024503890644],[31.9500516022235,30.877238883975348],[31.387552000703497,31.094220011720186],[30.825052399183495,31.19054975154414],[29.8935130590948,31.191465077638455]],[[56.33372432860119,25.121690004958644],[56.92503390971164,24.864833316508726],[58.50003279396771,24.507068968791266],[59.85003183761575,23.91710129093604],[62.10003024369576,22.469443964829516],[62.10003024369576,19.104405475930452]],[[35.859228832925915,34.43974246013246],[35.55004905195155,34.405022750715936],[32.40005128343957,33.28381101905092],[30.57465671568515,32.55671109167817],[28.800053833711523,32.41438660250263]],[[15.06744356202158,37.51344748573393],[15.750063078447363,37.411283634923244],[16.2563127198154,36.87321951208928],[16.425062600271474,35.78566189952622],[16.65006244028343,34.35479262780249]],[[5.372530429989069,43.29362778902908],[5.962570011999289,41.74435878948223],[7.200069135343221,38.651811712711336],[7.875068657167333,37.94551049545967],[9.000067859611436,37.76786242517874],[10.348617229769278,37.76786242517874],[10.91256650537538,37.411283634923244],[11.58756602600751,37.23235432155614],[12.703817920304136,35.893519314921924],[14.437792044692554,34.87439333360583],[16.65006244028343,34.35479262780249],[19.265309401660918,34.74032582202073],[22.050058614875596,34.516395933671596],[25.28984215557834,33.80029687462985],[28.800053833711523,32.41438660250263],[29.8935130590948,31.191465077638455],[30.825052399183495,31.118343723670264],[31.387552000703497,30.99783535602406],[31.9500516022235,30.780635088989538],[32.287551363135464,30.41752891425909],[32.52993119143143,29.972545436050364]],[[32.52993119143143,29.972545436050364],[32.56877616391329,29.63833609362628],[32.73755104435154,29.344566989489813],[33.01880084511154,28.95155473219332],[33.511262996247716,28.161052262220792],[34.312549928607616,27.364667993860262],[35.184424310963514,26.562513149236715],[35.887548812863514,25.75470426341523],[36.900048095598684,24.12261698700344],[38.137547218943524,22.05298561667754],[38.92504666107156,20.375041253465433],[40.2750457047196,18.251816319028222],[41.28754498745659,16.534196198259725],[42.24379431003961,14.801154224791581],[42.75004395140765,13.92930384327183],[43.11566869239569,13.054150695298627],[43.270356082813635,12.834868817846521],[43.35473102304167,12.615395567393394],[43.734418254067656,12.395734000022975],[44.55004267627159,12.010882360458767],[45.450042038703735,12.175887185507976],[48.60003980721571,12.944533868662969],[55.35003502545574,15.23578178303578],[58.95003247518379,16.965102599435927],[62.10003024369576,19.104405475930452],[66.60002705585578,19.529070924350908],[70.20002450558383,19.316876111628712],[72.87590260996693,19.07607425728523]],[[67.02854675228855,24.889731701235817],[66.48752713555186,23.298598065875897],[66.15002737463989,20.375041253465433],[66.60002705585578,19.529070924350908]],[[38.137547218943524,22.05298561667754],[39.18275647850768,21.481533475502996]]]}},{"type":"Feature","properties":{"id":"seacomtata-tgn-eurasia","name":"SEACOM/Tata TGN-Eurasia","color":"#2f95b3","feature_id":"seacomtata-tgn-eurasia-0","coordinates":[48.786506248119146,12.89857027648199]},"geometry":{"type":"MultiLineString","coordinates":[[[72.90833590939474,19.08952099458581],[70.232457805012,19.224110884087814],[66.63246035528395,19.330303180397426],[61.90746370251589,18.692125701453875],[58.98246577461195,16.763395784717346],[55.3824683248839,15.032320749690347],[48.632473106643694,12.848741565417857],[45.48247533813172,12.07980921311095],[44.58247597569975,11.9697778362716],[43.73872657341975,12.409630577439529],[43.37310183243171,12.629280326722103],[43.28872689220368,12.848741565417857],[43.119977011747785,13.068011238315085],[42.726227290683674,13.94311365796037],[42.219977649315815,14.81491029925734],[41.20747836658065,16.54783600485381],[40.19497908384366,18.26532858133193],[38.8449800401958,20.38837908615011],[38.057480598067585,22.066172634374052],[36.81998147472256,24.13560242446459],[35.807482191987575,25.767518777408142],[35.13248267016364,26.575239208943042],[34.288733267883636,27.3773037156237],[33.47345884543558,28.1735958463088],[32.64989110585475,29.116661999999696]],[[32.6130544549501,-25.955475388503118],[33.7824836265156,-26.53889211948715],[35.807482191987575,-26.940767064044092]],[[42.33247756961974,-4.362957099929003],[39.70532943071599,-4.038731181161849]],[[55.3824683248839,15.032320749690347],[55.832468006099795,12.629280326722103],[55.832468006099795,9.538443559786772],[55.382468325479806,5.524234439321599],[52.232470556371744,1.482650691528387],[46.382474700563684,-2.116699612616721],[42.33247756961974,-4.362957099929003],[40.9824785259717,-5.707714823439762],[40.64497876505974,-6.155304105140356],[39.857479322335614,-6.565263959445051],[39.30210971636071,-6.809004030362613]],[[31.790395037729812,-28.938108319513333],[32.88248426408364,-29.026862190178257],[33.7824836265156,-28.731334165606242],[35.807482191987575,-26.940767064044092],[41.65747804779581,-23.68707917734726],[42.78247725083582,-20.561097385973355],[42.78247725083582,-15.210302528564313],[42.78247725023955,-14.84813082933909],[42.33247756961974,-11.930023974236281],[41.88247788840367,-9.276382018590148],[40.64497876505974,-6.155304105140356]],[[43.180426968924365,11.608807305452311],[43.68247661326779,11.804597919620866],[44.58247597569975,11.9697778362716]],[[38.057480598067585,22.066172634374052],[39.21518977793548,21.494773132194442]]]}},{"type":"Feature","properties":{"id":"middle-east-north-africa-mena-cable-systemgulf-bridge-international","name":"Middle East North Africa (MENA) Cable System/Gulf Bridge International","color":"#51b847","feature_id":"middle-east-north-africa-mena-cable-systemgulf-bridge-international-0","coordinates":[45.405295722056806,12.593544017219301]},"geometry":{"type":"MultiLineString","coordinates":[[[58.50003279396771,24.12261698700344],[58.331282913511636,23.91710129093513],[58.1762030233719,23.68487753168473]],[[32.65318110412008,29.113614162980063],[33.42698805595291,28.161052262220792],[34.031300127847615,27.364667993860262],[34.84692455005155,26.562513149236715],[35.43754913164762,25.75470426341523],[36.45004841438352,24.12261698700344],[37.68754753772763,22.05298561667754],[38.47504697985549,20.375041253465433],[39.82504602350353,18.251816319028222],[40.83754530624179,16.534196198259725],[41.96254450927961,14.801154224791581],[42.46879415064765,13.92930384327183],[42.975043792015505,13.054150695298627],[43.20004363262354,12.834868817846521],[43.28441857285158,12.615395567393394],[43.59379335368765,12.395734000022975],[44.55004267627159,12.175887185507976],[45.450042038703735,12.615395567393394],[48.60003980721571,13.3827080361257],[55.35003502545574,16.10232559580297],[58.95003247518379,17.82393441253792],[60.075031678223795,19.104405475930452],[60.187531597931816,22.469443964829516],[59.85003183761575,22.988259503893058],[58.50003279396771,24.12261698700344]],[[29.70093319552029,31.072270031660306],[29.98130299690349,30.61136637963382],[30.375052717967602,30.296184504419557],[31.050052239791533,29.93125070442692],[31.72505176161546,29.687214675556923],[32.17505144283154,29.393413371278484],[32.65318110412008,29.113614162980063]],[[29.70093319552029,31.072270031660306],[29.98130299690349,30.65976529855482],[30.375052717967602,30.393272076386282],[31.050052239791533,30.02869812787728],[31.72505176161546,29.784900534878602],[32.17505144283154,29.4423669335806],[32.65318110412008,29.113614162980063]],[[12.591375316091606,37.65058617278613],[12.173015612461494,37.27875778048947],[12.037565708415386,36.87321951208928],[12.150065628719313,35.78566189952622],[12.487565389636371,35.419780517080355],[14.400064034799321,34.12610104005753],[16.65006244087933,33.37780603565933],[19.350060528175415,33.75276987113061],[22.050058614875596,33.73717891339029],[25.200056383983473,33.001218522654476],[27.900054471279375,32.148008778540614],[29.70093319552029,31.072270031660306]],[[37.68754753772763,22.05298561667754],[39.18275647850768,21.481533475502996]]]}},{"type":"Feature","properties":{"id":"saudi-arabia-sudan-2-sas-2","name":"Saudi Arabia-Sudan-2 (SAS-2)","color":"#3c67b1","feature_id":"saudi-arabia-sudan-2-sas-2-0","coordinates":[38.03315212988427,20.72293228270063]},"geometry":{"type":"MultiLineString","coordinates":[[[37.21967786917097,19.61556659454616],[37.58923757400337,20.236025167233485],[38.10004724550894,20.796306105108872],[39.18275647850768,21.481533475502996]]]}},{"type":"Feature","properties":{"id":"eac-c2c","name":"EAC-C2C","color":"#3a56a6","feature_id":"eac-c2c-0","coordinates":[124.22374543987213,20.728817443467044]},"geometry":{"type":"MultiLineString","coordinates":[[[120.12788799225589,21.457551614722192],[118.79999007691224,21.53068533396254],[117.4499910332642,21.84429407917369],[115.64999230840026,22.05298561667754],[114.97499278657615,22.365445686418724],[114.2586832940168,22.31829267897149]],[[114.20292333351767,22.22205041973683],[114.63749302566418,20.796306105108872],[115.42499246779222,18.238460810952724],[116.99999135204831,16.10232559580297],[119.24998975812831,14.365653759228442],[120.14998912056028,13.820086409698062],[121.06600847164388,13.762418337904428]],[[121.46258819070279,25.168986122701572],[121.3874882439044,25.742038029757644],[121.94998784542422,26.751029869608292],[123.5249867296803,28.148653708881287],[123.29998688907226,30.113886122109243],[122.17498768603225,30.74440510438189],[121.92508786246776,30.852678537714777],[122.17498768603225,31.034033881789767],[122.84998720785636,31.46682894547825],[128.0249835418403,32.80049917601868],[128.69998306366443,34.30053553069045],[128.99949285148878,35.158882668071676],[129.5999824260964,34.30053553069045],[129.5999824260964,32.80049917601868],[129.5999824260964,31.6585439519066],[130.49998178852834,30.889328974889438],[132.74998019460836,30.889328974889438],[134.99997860068837,31.274720539181796],[136.7999773255523,32.04078843974209],[137.02497716616034,32.80049917601868],[136.87399727311598,34.32521554537484],[137.69997668798445,33.927972678693564],[138.59997605041642,33.927972678693564],[139.27497557224055,34.114459241194844],[139.8937251339125,34.393419492403375],[140.0343500336966,34.679162981906806],[140.02028754365847,34.84090484813936],[139.95485509060742,34.965046603583694],[140.09059999384857,34.84090484813936],[140.3155998344566,34.679162981906806],[140.4562247354325,34.393419492403375],[140.7374745361925,33.927972678693564],[140.6249746158884,32.421443555350706],[140.17497493467252,30.889328974889438],[138.82497589102445,28.544693071144245],[137.24997700676838,26.95177029188127],[132.74998019460836,23.698382121989734],[130.94998146974444,22.87169786996185],[125.99998497636834,21.203287979625483],[122.84998720785636,20.361858037652684],[121.11255349138571,19.18943026293286],[120.24308317969574,18.601843893825777],[119.11906339140688,17.549363428561175],[119.02498991752027,15.222213115980855],[119.58748951904028,14.569901804622967],[120.14998912056028,13.915654478895796],[121.06600847164388,13.748759175855872],[120.14998912056028,13.2595509442811],[118.79999007691224,12.601672204746537],[116.09999198961616,9.06644423990714],[114.07499342414418,7.730954611330002],[110.69999581502417,5.943831970446426],[110.02499629320025,5.496074035021858],[107.99999772772827,4.599574515521482],[107.09999836529612,4.038674649466248],[105.74999932164808,3.252775080426739],[105.24374968028005,2.803404866588448],[104.62500011860807,1.454368851373345],[104.28790035741287,1.215596520932091],[104.16377044534778,1.210005277728221],[103.98701057056589,1.375392999849927],[104.17793043531677,1.249346186877429],[104.28790035741287,1.299801162778933],[104.42847525782817,1.454368851373345],[104.79374999906415,2.803404866588448],[105.74999932164808,4.150887372137655],[107.09999836529612,4.935905975277167],[107.99999772772827,5.6080461663058],[110.47499597441613,7.730954611330002],[111.71249509776025,9.954064678408844],[112.72499438049614,12.601672204746537],[114.29999326415633,17.095079260964887],[114.52499310536027,18.238460810952724],[114.1874933444483,20.783159233732995],[114.2586832940168,22.305283024668398]],[[124.6499859327203,35.419780517080355],[121.49998816420832,35.78566189952622],[120.34246898420574,36.08731090741939]],[[103.98701057056589,1.389451396800233],[104.18740042860793,1.289568782938401],[104.28790035741287,1.341927435270103],[104.4004002777168,1.468426767331968],[104.73750003891219,2.817450442654169],[105.74999932164808,4.277107602190303],[107.09999836529612,5.061986954416114],[107.99999772772827,5.733989114150127],[110.24999613380828,7.744889052551447],[111.4874952571522,9.967915186974132],[112.49999453988829,12.615395567393394],[114.07499342354828,17.10851996079568],[114.29999326475222,18.251816319028222],[114.07499342414418,20.796306105108872],[114.20292333351767,22.22205041973683]],[[121.3832882468796,25.149980712893985],[121.72498800481618,25.75470426341523],[121.94998784542422,26.05828756029904],[122.84998720785636,26.260240971577822],[128.69998306366443,25.75470426341523],[131.39998115096031,26.1593079707739],[132.74998019460836,26.1593079707739]],[[114.2586832940168,22.31829267897149],[114.97499278657615,22.261369678340607],[115.64999230840026,21.948678137927157],[117.4499910332642,21.635297384859552],[118.79999007691224,21.006499845176737],[121.02775554672928,20.827994119059056],[122.84998720785636,20.796306105108872],[125.99998497636834,22.05298561667754],[128.69998306366443,23.298598065875897],[132.74998019460836,26.1593079707739]],[[114.2586832940168,22.31829267897149],[114.97499278657615,22.313417380769337],[115.64999230840026,22.000841467910675],[117.4499910332642,21.73983373091106],[118.79999007691224,21.216397899942],[121.02775554672928,21.038143463338198],[122.84998720785636,21.216397899942],[124.19998625150441,22.05298561667754],[125.09998561393637,24.12261698700344],[125.38123541469638,25.55188275942587],[125.66248521545637,26.1593079707739],[126.67498449819227,28.55704546571133],[126.89998433880031,29.540507745394493],[127.34998402001638,30.708139993541643],[125.09998561393637,33.189714664600466],[124.6499859327203,34.31215165223547],[124.6499859327203,35.419780517080355],[125.54998529515227,36.1498667868178],[126.39158469895561,36.57633045558579],[125.54998529515227,35.96797434759339],[125.09998561393637,35.419780517080355],[125.09998561393637,34.31215165223547],[125.32498545454442,33.189714664600466],[128.24998338244836,30.708139993541643],[130.49998178852834,29.540507745394493],[132.74998019460836,29.344566989489813],[134.99997860068837,29.344566989489813],[137.69997668798445,30.126049846722832],[139.27497557224055,30.901396088515508],[141.2999741377125,32.052708023486204],[142.19997350014447,34.405022750715936],[142.19997350014447,35.05222991093673],[141.97497365953643,35.78566189952622],[140.6124746247436,36.383483735312474],[141.7499738189284,35.78566189952622],[141.7499738189284,35.05222991093673],[140.84997445649643,34.12610104005753],[138.59997605041642,33.37780603565933],[137.69997668798445,33.659181629050494],[136.87399727311598,34.33682825203173],[137.4749768473764,32.8123187832876],[137.69997668798445,31.286738814391754],[137.24997700676838,29.344566989489813],[132.74998019460836,26.1593079707739]],[[125.09998561393637,24.109781889526705],[123.74998657028833,25.2342865621001],[122.84998720785636,25.539194978687103],[121.94998784542422,25.43764443864878],[121.3832882468796,25.137250705417735],[121.94998784542422,25.33600821718872],[122.39998752664029,24.928611492263457],[122.84998720785636,24.007054825363046],[122.39998752664029,22.45644844059945],[121.04998848299225,19.72775079133148],[119.76865992030457,18.516117231747454],[118.93597086667044,17.741878907400267],[118.79999007691224,15.222213115980855],[119.36248967843224,14.569901804622967],[120.14998912056028,14.352030559547492],[120.82019864577752,14.273021484821282],[120.14998912056028,14.024826773554539],[118.79999007691224,13.040451242220165],[115.64999230840026,9.06644423990714],[113.84999358353615,7.730954611330002],[110.47499597441613,5.943831970446426],[109.79999645259221,5.496074035021858],[107.99999772772827,4.711703227447191],[107.09999836529612,4.150887372137655],[105.74999932164808,3.365087426296303],[105.18749972012807,2.803404866588448],[104.5969251384969,1.454368851373345],[104.28790035741287,1.229630815177437],[104.1731404387099,1.23626927314036],[103.98701057056589,1.375392999849927]],[[120.12788799225589,21.457551614722192],[120.37498896116831,21.635297384859552],[120.54373884162439,22.05298561667754],[120.66219875770618,22.24925482135663]]]}},{"type":"Feature","properties":{"id":"asia-submarine-cable-express-asecahaya-malaysia","name":"Asia Submarine-cable Express (ASE)/Cahaya Malaysia","color":"#1ab4dd","feature_id":"asia-submarine-cable-express-asecahaya-malaysia-0","coordinates":[115.69140756853142,11.342080245282922]},"geometry":{"type":"MultiLineString","coordinates":[[[130.90187508980648,23.865759963390698],[128.69998306366443,25.55188275942587],[128.0249835418403,25.957179978764344],[127.70078377150666,26.087749635462092]],[[105.07499979982416,2.803404866588448],[104.79751925424193,2.51340691774082],[104.40000027800004,2.42411333960119],[103.85068066714335,2.29570245694968]],[[126.85721436909918,19.466476359726585],[125.54998529515227,19.303604751105766],[120.96988207969743,19.75148716830613],[120.32093903559283,19.446973787349965],[119.44922323177441,18.712816516277243],[118.5501687609761,17.89128877075432],[117.56329095300164,15.439678695520064],[116.21249190992026,12.601672204746537],[114.7499929459683,9.06644423990714],[112.94999422110418,7.730954611330002],[110.02499629320025,5.943831970446426],[109.34999677137613,5.496074035021858],[107.99999772772827,4.935905975277167],[107.09999836529612,4.375264548610226],[105.74999932164808,3.589672857320649],[105.07499979982416,2.803404866588448],[104.54077517827399,1.454368851373345],[104.28790035741287,1.271733251829275],[104.19932042016363,1.308321449396243],[103.98594057132397,1.371284183356795]],[[139.97546699999984,35.005433000000174],[140.1327874639626,34.89859296336222],[140.11872497392463,34.69072647741027],[140.0624750143684,34.405022750715936],[139.72497525345642,33.93964008831966],[139.94997509406446,32.43331330641721],[139.49997541284839,30.901396088515508],[138.82497589102445,29.73606949729215],[137.24997700676838,28.55704546571133],[132.74998019460836,25.348717422116714],[130.94998146974444,23.91710129093513],[126.85721436909918,19.479734448240144],[124.19998625150441,15.23578178303578],[123.5249867296803,14.365653759228442],[122.95008713694455,14.11652289884896]],[[119.44922323177441,18.712816516277243],[118.34999039569617,20.163975031975873],[116.99999135204831,21.111485983488812],[115.64999230840026,21.79207342302722],[114.97499278657615,22.157216226160177],[114.2586832940168,22.31829267897149]]]}},{"type":"Feature","properties":{"id":"pldt-domestic-fiber-optic-network-dfon","name":"PLDT Domestic Fiber Optic Network (DFON)","color":"#57b947","feature_id":"pldt-domestic-fiber-optic-network-dfon-0","coordinates":[122.75657360976507,11.591340541816004]},"geometry":{"type":"MultiLineString","coordinates":[[[124.61277595908027,11.006888020676206],[124.6499859327203,10.742581675476407],[124.6499859327203,10.41081650540272],[124.76248585302442,9.967915186974132],[125.0437356531885,9.746236973759974],[125.38123541410047,9.302441529883154],[125.54061530179015,8.947610463936108],[125.32498545454442,9.302441529883154],[125.09998561393637,9.52441134501949],[124.6499859327203,9.413444258507564],[124.53748601241637,9.08033076823294],[124.70623589287226,8.635699417327467],[124.63191594552143,8.454147535358473],[124.42498609211226,8.635699417327467],[124.19998625150441,8.635699417327467],[124.0576568198609,8.325649123940481],[123.84998649944745,8.149939793212361],[123.97498641089636,8.413185359560185],[123.74998657028833,8.8024990629144],[123.41248680937636,9.08033076823294],[123.28143690221334,9.295503918747997]],[[124.61277595908027,11.006888020676206],[124.53748601241637,10.742581675476407],[124.42498609211226,10.521444685552128],[124.19998625150441,10.41081650540272],[123.89461646783124,10.309948397086673],[124.0874863312003,10.41081650540272],[124.190416258284,10.93201162513164],[124.0874863312003,11.294709319565477],[123.74998657028833,11.294709319565477],[123.29998688907226,10.950037883763155]],[[120.62298878548306,14.088232047424347],[120.48748888147225,13.92930384327183],[120.59998880177636,13.710817738179635],[121.04998848299225,13.54681947716878],[121.45623819460526,13.492128176464083],[121.56873811490937,13.273238157547594],[121.46453818932153,13.045782550710932],[121.66873804406832,12.834868817846521],[121.78123796437242,12.615395567393394],[121.94998784542422,12.175887185507976],[122.06248776572832,12.065895273570327],[122.39998752664029,11.955858207114732],[122.74998727869705,11.583202180445051],[122.96248712816029,11.84577637362577],[123.29998688907226,11.84577637362577],[123.41248680937636,11.955858207114732],[123.64617664382837,12.366734534392018],[123.5813366897615,12.505588131780646],[123.5249867296803,12.615395567393394],[123.5249867296803,12.834868817846521],[123.63748664998441,13.054150695298627],[123.74373657471575,13.138994853951246],[123.97498641089636,13.163718917913586],[124.19998625150441,13.054150695298627],[124.19871625240401,12.617971818017347],[124.19998625150441,12.285833556268383],[124.42498609092046,12.120896898039394],[124.60027596793546,12.069904662870776]]]}},{"type":"Feature","properties":{"id":"tata-tgn-intra-asia-tgn-ia","name":"Tata TGN-Intra Asia (TGN-IA)","color":"#3eb65c","feature_id":"tata-tgn-intra-asia-tgn-ia-0","coordinates":[118.52909995594474,16.566185059272218]},"geometry":{"type":"MultiLineString","coordinates":[[[120.22031319972999,18.785187974742005],[120.59998880058437,18.785187974742005],[121.04998848299225,18.785187974742005],[121.5130781549352,18.418302135034143]],[[114.18397334694201,22.24961578335278],[114.7499929459683,21.896495662923588],[115.64999230840026,21.635250907408707],[116.99999135204831,21.32123529551186],[118.34999039569617,20.58581909604039],[120.14998912056028,19.740987365524937],[121.04998848299225,19.529070924350908]],[[103.98701057056589,1.375392999849927],[104.18262043199422,1.262333057432152],[104.28790035741287,1.243665035636787],[104.56885015838535,1.454368851373345],[105.13124975997611,2.803404866588448],[105.74999932164808,3.477386828549033],[107.09999836529612,4.263084147817874],[107.99999772772827,4.82381385611519],[109.57499661198416,5.496074035021858],[110.24999613380828,5.943831970446426],[113.17499406171221,7.730954611330002],[114.97499278657615,9.06644423990714],[116.54999167083223,12.601672204746537],[118.01327063423176,15.439678695520064],[119.02751712903803,17.654665480331733],[120.01268452973224,18.601843893825777],[121.04998848299225,19.515816877621507],[122.84998720785636,19.72775079133148],[125.99998497636834,20.361858037652684],[130.94998146974444,21.203287979625483],[138.59997605041642,24.109781889526705]],[[107.07919838003114,10.342138429683002],[107.77499788712005,9.635342384764561],[108.6749972495522,9.302441529883154],[111.59999517745614,9.302441529883154],[113.39999390232026,9.08033076823294],[114.97499278657615,9.08033076823294]]]}},{"type":"Feature","properties":{"id":"asia-pacific-gateway-apg","name":"Asia Pacific Gateway (APG)","color":"#b63894","feature_id":"asia-pacific-gateway-apg-0","coordinates":[121.3880914113467,20.6648377037875]},"geometry":{"type":"MultiLineString","coordinates":[[[125.54998529515227,24.12261698700344],[122.84998720785636,24.83931282559271],[122.17498768603225,24.89034854048814],[121.80144795065142,24.863504112487785]],[[121.92508786246776,30.86475026744717],[122.17498768603225,30.80481662242606],[124.19998625150441,30.126049846722832],[125.54998529515227,29.540507745394493],[127.57498386062441,28.55704546571133]],[[127.79998370123228,29.540507745394493],[125.99998497636834,30.708139993541643],[124.19998625150441,31.478822672736147],[122.84998720785636,31.766210259727007],[121.94998784542422,31.670513047087127],[121.39529823837174,31.619800328867754]],[[136.7999773255523,31.286738814391754],[137.24997700676838,32.8123187832876],[136.87399727311598,34.33682825203173]],[[112.0499948586722,12.615395567393394],[111.59999517745614,13.054150695298627],[110.69999581502417,14.801154224791581],[109.79999645259221,15.56116563526334],[108.89999709016024,15.886035719079029],[108.19247759137373,16.043393005208348]],[[107.99999772772827,6.852191098754328],[105.29999964043219,7.075530930004602],[103.04883123518101,7.228431783286316],[101.70000219070414,7.187160551695455],[100.5951029728293,7.198818071264419]],[[113.84999358353615,18.251816319028222],[113.84999358353615,20.796306105108872],[114.2586832940168,22.31829267897149]],[[128.69998306366443,30.5144959597591],[128.69998306366443,31.670513047087127],[128.92498290427227,32.8123187832876],[129.1499827448803,34.31215165223547],[128.99949285148878,35.17037876180022]],[[103.38789161939158,4.128192842398844],[103.95000059678415,3.940475772228814],[106.19999900286416,5.510071711803246],[107.99999772772827,6.852191098754328],[111.03749557593613,9.967915186974132],[112.0499948586722,12.615395567393394],[113.84999358353615,18.251816319028222],[116.99999135204831,19.740987365524937],[120.14998912056028,20.375041253465433],[121.04998848299225,20.58581909604039],[122.84998720785636,21.006499845176737],[124.6499859327203,22.05298561667754],[125.54998529515227,24.12261698700344],[125.9437350162162,25.55188275942587],[126.3374847372803,26.1593079707739],[127.57498386062441,28.55704546571133],[127.79998370123228,29.540507745394493],[128.69998306366443,30.5144959597591],[130.49998178852834,30.320465424761444],[132.74998019460836,30.126049846722832],[134.99997860068837,30.5144959597591],[136.7999773255523,31.286738814391754],[138.59997605041642,32.43331330641721],[139.49997541284839,33.93964008831966],[140.00622505421643,34.405022750715936],[140.09059999384857,34.69072647741027],[140.11872497392463,34.89859296336222],[139.97546699999984,35.005433000000174]],[[103.98701057056589,1.389451396800233],[104.18740042860793,1.302655424517022],[104.48462521805108,1.468426767331968],[105.29999964043219,2.367912558705407],[106.19999900286416,4.613591578862773],[106.19999900286416,5.510071711803246]]]}},{"type":"Feature","properties":{"id":"seamewe-4","name":"SeaMeWe-4","color":"#187bb6","feature_id":"seamewe-4-0","coordinates":[80.36459874739873,12.86336844112738]},"geometry":{"type":"MultiLineString","coordinates":[[[12.150065628719313,38.38775473578444],[12.262565549023423,38.21117903702318],[12.262565549023423,36.87321951208928],[12.273600696860054,36.389404427280255],[12.642252779453505,35.84291709297635],[14.415591366954907,34.776285033076995],[16.624110734755995,34.25341409729844],[19.279602673945632,34.61921094546477],[22.049976930010512,34.39634721320805],[25.238146034548574,33.683386224796195],[28.649657890488538,32.36444613424394],[29.8935130590948,31.191465077638455],[30.825052399183495,30.828970604876503],[31.387552000703497,30.61132334760356],[31.9500516022235,30.393250512072004],[32.287551363135464,30.223305674181642],[32.54282118230001,29.95909144105574],[32.59687614400701,29.63833609362628],[32.76567602442743,29.344566989489813],[33.04692582518743,28.95155473219332],[33.52527548632113,28.161052262220792],[34.48129980906351,27.364667993860262],[35.43754913164762,26.562513149236715],[36.22504857377548,25.75470426341523],[37.237547856509735,24.12261698700344],[38.47504697985549,22.05298561667754],[39.18275647850768,21.481533475502996]],[[29.8935130590948,31.191465077638455],[30.825052399183495,30.901396088515508],[31.387552000703497,30.708097004575936],[31.9500516022235,30.49024170709155],[32.287551363135464,30.271897570624173],[32.52993119143143,29.972545436050364]],[[100.06611334816643,6.613518860854109],[100.0579133539753,6.354447103901104],[99.99248340032653,6.205536229871337],[99.67350362629472,5.956366566270154],[99.00000410340806,5.845915088460266],[97.42500521915215,6.405200795356032]],[[62.55002992491184,19.95262290516439],[62.55002992491184,22.469443964829516],[59.85003183761575,24.12261698700435],[58.50003279396771,24.583819112323365],[56.92503390971164,24.89034854048814],[56.33372432860119,25.121690004958644]],[[39.18275647850768,21.481533475502996],[39.26254642198353,20.375041253465433],[40.61254546563157,18.251816319028222],[41.62504474836765,16.534196198259725],[42.4125441904955,14.801154224791581],[42.918793831863546,13.92930384327183],[43.20004363262354,13.054150695298627],[43.31254355292765,12.834868817846521],[43.39691849315569,12.615395567393394],[43.81879319429551,12.395734000022975],[44.55004267627159,12.120896898039394],[45.450042038703735,12.395734000022975],[48.60003980721571,13.163718917913586],[55.35003502545574,15.669513225155248],[58.95003247518379,17.395022634700517],[62.55002992491184,19.95262290516439],[66.60002705585578,19.95262290516439],[70.20002450558383,19.529070924350908],[72.87590260996693,19.07607425728523]],[[13.358654772543574,38.11612161658339],[13.05006499115128,38.38775473578444],[12.600065309935387,38.51986519151931],[12.150065628719313,38.38775473578444],[10.348617229769278,38.38775473578444],[9.000067859611436,38.38775473578444],[8.10006849777537,38.38775473578444],[7.650068816559295,38.651811712711336],[6.187569852607326,41.74435878948223],[5.372530429989069,43.29362778902908]],[[9.867357245811593,37.276816253475154],[9.675067382031267,37.589786573603064],[9.000067859611436,38.38775473578444]],[[7.755438741914387,36.90282046530194],[7.875068657167333,37.23235432155614],[7.987568577471261,37.94551049545967],[8.10006849777537,38.38775473578444]],[[103.64609081207688,1.338585852071497],[103.50000091556807,1.229280895999666],[103.34065102845322,1.299701188578927],[102.68279723997186,1.698782263242901],[102.15000187192003,2.03066189047467],[101.25000250948806,2.480311786858737],[100.46250306736002,3.266814816815666],[99.7875035455361,4.613591578862773],[99.00000410340806,5.286069860821008],[97.42500521915215,6.405200795356032],[95.40000665368001,8.190543417795496],[93.14492825119876,9.52441134501949],[91.80000920395213,10.41081650540272],[90.00001047908802,12.395734000022975],[88.20001175422391,13.492079936238724],[83.70001494206389,13.929255692764443],[81.45001653598388,13.273238157547594],[80.24298739105474,13.06385310188338],[81.45001653598388,11.073982781226615],[82.1250160560201,9.52441134501949],[82.575015737236,7.744852765542954],[82.35001589841602,5.51002310933014],[81.00001685476798,4.613591578862773],[78.69513048465001,4.613591578862773],[76.39024411453221,6.852191098754328],[74.19513367248999,9.52441134501949],[72.84513462884213,13.492128176464083],[72.2250230710558,16.965102599435927],[72.87590260996693,19.07607425728523]],[[79.87208765380376,6.927036656836354],[79.4250179705119,5.957818681088533],[78.46194979910258,4.807252410277582]],[[91.99482906593992,21.42927456664916],[91.80000920395213,19.95262290516439],[88.20001175422391,13.492079936238724]],[[66.60002705585578,19.95262290516439],[66.37502721524774,20.375041253465433],[66.60002705585578,23.298598065875897],[67.02854675228855,24.889731701235817]],[[101.25000250948806,2.480311786858737],[101.70000219070414,2.367912558705407],[102.220901821694,2.273260323566543]]]}},{"type":"Feature","properties":{"id":"batam-rengit-cable-system-brcs","name":"Batam-Rengit Cable System (BRCS)","color":"#9f2f87","feature_id":"batam-rengit-cable-system-brcs-0","coordinates":[103.52451154276334,1.2427621972838077]},"geometry":{"type":"MultiLineString","coordinates":[[[103.14775116510523,1.67742772118393],[103.34065102845322,1.383978004154865],[103.50000091556807,1.271308356781118],[103.66875079602414,1.074774789350549],[103.78125071632807,1.018534216615524],[104.01375700144472,1.065548217296064]]]}},{"type":"Feature","properties":{"id":"southeast-asia-japan-cable-sjc","name":"Southeast Asia-Japan Cable (SJC)","color":"#6bbd44","feature_id":"southeast-asia-japan-cable-sjc-0","coordinates":[120.61553906063712,20.15077387441527]},"geometry":{"type":"MultiLineString","coordinates":[[[116.67753158048176,23.355006811273547],[117.1687412325042,22.884654113882444],[118.34999039569617,22.105110548108275],[120.14998912056028,20.163975031975873]],[[115.19999262718419,14.801154224791581],[116.99999135204831,14.147583506948735],[118.79999007691224,13.92930384327183],[120.14998912056028,14.147583506948735],[120.62298878548306,14.088232047424347]],[[116.09999198961616,18.251816319028222],[115.19999262718419,19.529070924350908],[114.7499929459683,20.796306105108872],[114.29999326475222,21.635297384859552],[114.20292333351767,22.22205041973683]],[[103.64609081207688,1.324527159471344],[104.16846044202524,1.223182297279849],[104.28790035741287,1.25769918146722],[104.51270019816243,1.454368851373345],[105.01874983967218,2.803404866588448],[105.74999932164808,3.701945083003531],[107.09999836529612,4.487428146931985],[107.99999772772827,5.047979159038785],[108.6749972495522,5.496074035021858],[109.34999677137613,5.943831970446426],[111.82499501806417,7.730954611330002],[113.73750165524976,9.954064678408844],[114.7499929459683,13.040451242220165],[115.19999262718419,14.787557926772921],[116.09999198961616,18.238460810952724],[120.14998912056028,20.15077387441527],[121.04998848299225,20.15077387441527],[122.84998720785636,20.572653976019456],[125.99998497636834,21.41290665207303],[130.94998146974444,23.28568165987353],[132.74998019460836,24.109781889526705],[137.24997700676838,27.352178406079517],[138.82497589102445,28.939248910255287],[139.94997509406446,30.889328974889438],[140.39997477528055,32.421443555350706],[139.94997509406446,33.927972678693564],[140.3437248151284,34.393419492403375],[140.25934987430446,34.679162981906806],[140.06247501377248,34.84090484813936],[139.95485509060742,34.965046603583694]],[[114.57069307298597,4.703623084487131],[114.29999326475222,5.061986954416114],[111.82499501806417,7.744889052551447]]]}},{"type":"Feature","properties":{"id":"europe-india-gateway-eig","name":"Europe India Gateway (EIG)","color":"#a35e29","feature_id":"europe-india-gateway-eig-0","coordinates":[2.5644083518901257,37.80327438205269]},"geometry":{"type":"MultiLineString","coordinates":[[[29.70093319552029,31.072270031660306],[29.98130299690349,30.56294325920113],[30.375052717967602,30.199000717300507],[31.050052239791533,29.833707764444064],[31.72505176161546,29.589433775533966],[32.17505144283154,29.344436236246633],[32.65318110412008,29.113614162980063]],[[-5.624921779312721,35.92243557734424],[-5.34758197578279,36.15601951413446]],[[32.65318110412008,29.113614162980063],[33.455063036063365,28.161052262220792],[34.36879988875958,27.364667993860262],[35.26879925119155,26.562513149236715],[36.000048733167624,25.75470426341523],[37.01254801590261,24.12261698700344],[38.250047139247634,22.05298561667754],[39.037546581375494,20.375041253465433],[40.387545625023535,18.251816319028222],[41.4000449077607,16.534196198259725],[42.30004427019158,14.801154224791581],[42.806293911559614,13.92930384327183],[43.14379367247158,13.054150695298627],[43.28441857285158,12.834868817846521],[43.368793513079616,12.615395567393394],[43.76254323414373,12.395734000022975],[44.55004267627159,12.065895273570327],[45.450042038703735,12.285833556268383],[48.60003980721571,13.054150695298627],[55.35003502545574,15.452760959322058],[58.95003247518379,17.180187287481317],[62.3250300843038,19.529070924350908],[66.60002705585578,19.740987365524937],[70.20002450558383,19.42300815558179],[72.87590260996693,19.07607425728523]],[[32.65318110412008,29.113614162980063],[32.17505144283154,29.295435552938983],[31.72505176161546,29.4915580274035],[31.050052239791533,29.73606949729215],[30.375052717967602,30.101720899554778],[29.98130299690349,30.5144959597591],[29.70093319552029,31.072270031660306],[27.900054471279375,32.052708023486204],[25.200056383983473,32.85958149046064],[22.050058614875596,33.59673284538102],[19.350060528175415,33.565491482352044],[16.65006244087933,33.189714664600466],[14.400064034799321,33.98629373718467],[12.31881550918157,35.419780517080355],[12.037565708415386,35.78566189952622],[11.925065788111276,36.24065523321488],[11.925065786919474,37.23235432155614],[10.91256650537538,37.67887792909206],[10.348617229769278,38.03417390064187],[9.000067859611436,38.03417390064187],[5.400070410479286,38.122730108392204],[2.25007264196731,37.76786242517874],[-2.249924170192707,36.05897312258681],[-4.499922576272716,35.96797434759339],[-5.624921779312721,35.92243557734424],[-6.299921301136742,35.876870570092834],[-8.999919388432733,36.05897312258681],[-9.899918750864702,36.42191605012598],[-11.249917794512742,37.94551049545967],[-13.499916200592752,39.6983233549332],[-13.499916200592752,44.05151922873524],[-9.449919069648717,48.70423463096067],[-7.649920344784692,49.58728674004685],[-6.074881460557064,50.31116725161073],[-4.544402544762735,50.82820142743812]],[[-11.249917794512742,37.94551049545967],[-10.349918432080775,37.94551049545967],[-9.337419149344699,38.122730108392204],[-9.102749315587026,38.4430794831419]],[[14.400064034799321,33.98629373718467],[13.500064672367355,33.09551711711581],[13.187364893886881,32.87762290319534]],[[7.42672897477544,43.7382556879356],[7.31256905564733,43.401144973153954],[7.425068975951258,41.74435878948223],[7.969108590548607,39.42351982330401],[8.325068338383225,38.651811712711336],[8.437568258687335,38.38775473578444],[9.000067859611436,38.03417390064187]],[[44.55004267627159,12.065895273570327],[43.65004331383962,11.818224495851856],[43.16164365982675,11.573660387694234]],[[38.250047139247634,22.05298561667754],[39.18275647850768,21.481533475502996]],[[56.33372432860119,25.121690004958644],[56.92503390971164,24.660522249648846],[57.88604869707389,23.67872371194431],[58.162533033055745,23.968510996734643],[58.72503263457575,24.32780311165181],[59.85003183761575,24.019900203433572],[62.3250300843038,22.469443964829516],[62.3250300843038,19.529070924350908]]]}},{"type":"Feature","properties":{"id":"asia-africa-europe-1-aae-1","name":"Asia Africa Europe-1 (AAE-1)","color":"#a1489b","feature_id":"asia-africa-europe-1-aae-1-0","coordinates":[50.2473894305509,13.095718171129844]},"geometry":{"type":"MultiLineString","coordinates":[[[29.70093319552029,31.072270031660306],[29.98130299690349,30.75649044225256],[30.375052717967602,30.587157843202064],[31.050052239791533,30.223305674181642],[31.72505176161546,29.979986367503503],[32.17505144283154,29.49129689877981],[32.65318110412008,29.113614162980063]],[[107.07919838003114,10.342138429683002],[107.77499788712005,9.85709470870232],[108.6749972495522,9.746236973759974],[110.24999613380828,9.967915186974132]],[[94.39121736831608,16.85803225570866],[93.60000792881607,16.749771315644697],[92.25000888516803,14.801154224791581],[90.90000984151999,9.52441134501949],[90.4500101603039,6.181561339870244],[90.00001047908802,4.613591578862773]],[[100.06611334816643,6.613518860854109],[100.3500531470208,6.908035999527216],[100.5951029728293,7.198818071264419]],[[19.350060528175415,34.12610104005753],[19.350060528175415,37.67887792909206],[18.957770806077196,39.48474996079946],[18.787560926655413,40.04369219283004],[18.675061006351484,40.38732029077508],[18.00006148452737,40.89949091487166],[16.868812285914967,41.12570905852263]],[[45.033542333756095,12.800877546853616],[45.450042038703735,11.84577637362577]],[[22.57920153405357,33.894592669629816],[22.950057977903466,35.419780517080355],[23.42456935990921,35.78566189952622],[23.737557420031504,35.78566189952622],[24.012167225495322,35.512042558637575]],[[103.50674091079348,10.63040170321047],[103.72500075617612,9.52441134501949],[103.72500075617612,8.190543417795496],[103.04883123518101,7.340023741610628]],[[97.42500521915215,5.957818681088533],[99.00000410340806,6.069699469736006],[100.06611334816643,6.613518860854109],[100.23765322664612,6.908035999527216],[100.5951029728293,7.198818071264419],[101.70000219070414,7.24296510649207],[103.04883123518101,7.340023741610628],[105.29999964043219,7.29876275445952],[107.99999772772827,8.07917551824101],[110.24999613380828,9.967915186974132],[111.59999517745614,12.615395567393394],[113.6249937429283,18.251816319028222],[113.73749366323221,20.796306105108872],[114.26024329291157,22.20803425139447]],[[58.60608271884114,23.576084864537346],[58.95003247518379,23.60821444135838],[59.85003183761575,23.50508968095737]],[[61.20003088126379,17.395022634700517],[61.20003088126379,22.469443964829516],[59.85003183761575,23.50508968095737],[59.04197976437238,23.912037834470418],[58.50003279396771,24.199600518565422],[56.92503390971164,24.788256058863375],[56.33372432860119,25.121690004958644],[56.92503390971164,25.348717422116714],[56.98128386986378,26.1593079707739],[56.812533989407704,26.562513149236715],[56.2500343878877,26.663094151095223],[55.80003470667163,26.31067461914043],[55.35003502545574,26.1593079707739],[53.55003630059162,26.1593079707739],[52.20003725694376,25.957179978764344],[51.519277739200085,25.294608758024626]],[[72.87590260996693,19.07607425728523],[71.77502338983992,16.965102599435927]],[[5.372530429989069,43.29362778902908],[6.300069772911254,41.74435878948223],[7.875068657167333,38.651811712711336],[8.212568418079297,38.38775473578444],[9.000067859611436,38.122730108392204],[10.348617229769278,38.122730108392204],[10.91256650537538,37.76786242517874],[12.037565707223584,37.23235432155614],[12.037565708415386,36.24065523321488],[12.37506546932735,35.78566189952622],[12.825065150547426,35.419780517080355],[14.400064034799321,34.405022750715936],[16.65006244087933,33.75276987113061],[19.350060528175415,34.12610104005753],[22.050058614875596,34.017381950753595],[25.200056383983473,33.28381101905092],[27.900054471279375,32.33831157801293],[29.70093319552029,31.072270031660306],[29.98130299690349,30.708139993541643],[30.375052717967602,30.49026324996359],[31.050052239791533,30.126049846722832],[31.72505176161546,29.88249116219725],[32.17505144283154,29.49129689877981],[32.65318110412008,29.113614162980063],[33.39891307584246,28.161052262220792],[33.97505016769547,27.364667993860262],[34.76254960982351,26.562513149236715],[35.32504921134351,25.75470426341523],[36.33754849407959,24.12261698700344],[37.57504761742352,22.05298561667754],[38.36254705955156,20.375041253465433],[39.7125461031996,18.251816319028222],[40.72504538593768,16.534196198259725],[41.90629454912765,14.801154224791581],[42.4125441904955,13.92930384327183],[42.94691881193962,13.054150695298627],[43.1859811425856,12.834868817846521],[43.270356082813635,12.615395567393394],[43.56566837361158,12.395734000022975],[44.55004267627159,11.790718790556442],[45.450042038703735,11.84577637362577],[48.60003980781179,12.615395567393394],[55.35003502545574,14.5835116451186],[58.95003247518379,16.10232559580297],[61.20003088126379,17.395022634700517],[66.60002705585578,18.465364393137126],[71.77502338983992,16.965102599435927],[71.94513526640998,13.492128176464083],[73.29513431005802,9.52441134501949],[75.49024475210024,6.852191098754328],[78.69513048465001,4.164912849976942],[79.65001781052403,3.641132700076536],[81.00001685476798,3.266814816815666],[85.500013666928,3.715978119298069],[90.00001047908802,4.613591578862773],[92.70000856638391,5.061986954416114],[94.27500745064,6.05726941024067],[95.38036761595671,6.386923570693734],[95.38114147367385,6.387150045560412],[95.3819171164044,6.387368581851069],[95.38269448296793,6.387579177173141],[95.38347351218404,6.387781829134064],[95.38425414287228,6.387976535341275],[95.38503631385225,6.388163293402209],[95.3858199639435,6.388342100924303],[95.38660503196563,6.388512955514994],[95.38739145673821,6.388675854781716],[95.3881791770808,6.388830796331908],[95.388968131813,6.388977777773004],[95.38975825975437,6.38911679671244],[95.3905494997245,6.389247850757656],[95.39134179054295,6.389370937516083],[95.3921350710293,6.389486054595161],[95.39292928000313,6.389593199602325],[95.39372435628403,6.389692370145011],[95.39452023869154,6.389783563830655],[95.39531686604526,6.389866778266694],[95.39611417716478,6.389942011060564],[95.39691211086965,6.390009259819701],[95.39771060597947,6.390068522151541],[95.39850960131379,6.390119795663521],[95.3993090356922,6.390163077963077],[95.40010884793428,6.390198366657645],[95.4009089768596,6.390225659354662],[95.40170936128773,6.390244953661562],[95.40250994003826,6.390256247185783],[95.40331065193077,6.390259537534762],[95.40411143578481,6.390254822315933],[95.40491223041998,6.390242099136734],[95.40571297465584,6.3902213656046],[95.40651360731198,6.390192619326969],[95.40731406720798,6.390155857911275],[95.4081142931634,6.390111078964956],[95.40891422399781,6.390058280095448],[95.40971379853082,6.389997458910186],[95.41051295558196,6.389928613016608],[95.41131163397085,6.389851740022148],[95.41210977251704,6.389766837534244],[95.41290731004013,6.389673903160332],[95.41370418535966,6.389572934507847],[95.41450033729524,6.389463929184227],[95.41529570466642,6.389346884796907],[95.4160902262928,6.389221798953324],[95.41688384099393,6.389088669260913],[95.41767648758942,6.388947493327112],[95.4184681048988,6.388798268759357],[95.42004800693766,6.388475664151725],[95.42004800693766,6.388475664151725],[97.42500521915215,5.957818681088533],[99.67500362523216,5.733989114150127],[100.40982310408316,5.368393581488473]],[[43.14799366949638,11.594869371447825],[43.65004331383962,11.735552251813294],[44.55004267627159,11.790718790556442]],[[39.18275647850768,21.481533475502996],[37.57504761742352,22.05298561667754]],[[67.02854675228855,24.889731701235817],[65.25002801161183,24.1568376182792],[61.20003088126379,22.469443964829516]]]}},{"type":"Feature","properties":{"id":"pishgaman-oman-iran-poi-network","name":"Pishgaman Oman Iran (POI) Network","color":"#90499c","feature_id":"pishgaman-oman-iran-poi-network-0","coordinates":[59.01149514547928,24.853239702978335]},"geometry":{"type":"MultiLineString","coordinates":[[[57.79730329178807,25.681322707882497],[57.95931317701873,25.190816399183323],[57.93753319244771,24.12261698700344],[57.88604869707389,23.67872371194431]],[[60.63284128306634,25.2959287691298],[60.30003151883183,25.145210227401346],[58.95003247518379,24.83931282559271],[58.050033112751635,24.12261698700344],[57.88604869707389,23.679602601492906]]]}},{"type":"Feature","properties":{"id":"omranepeg","name":"OMRAN/EPEG","color":"#3e67b1","feature_id":"omranepeg-0","coordinates":[59.06870617296035,24.768569858738083]},"geometry":{"type":"MultiLineString","coordinates":[[[56.257944538534126,25.616974601949348],[56.58753414879967,25.348717422116714],[57.32386175217833,24.420846844473278],[57.88605322832058,23.67872342575357]],[[56.246811733920715,26.181306905191125],[56.362534308191634,26.411476060868516],[56.58753414879967,26.411476060868516],[56.70003406910378,26.1593079707739],[56.570834941879646,25.790848374316596],[56.257944538534126,25.616974601949348]],[[57.79729891679104,25.6813269323404],[57.79729891679104,25.19081696474251],[57.32386175217833,24.420846844473278]],[[57.88605322832058,23.67872342575357],[58.106283072903786,24.12261698700344],[58.95003247518379,24.73717827217609],[60.30003151883183,25.094280247013153],[60.63284378306454,25.29593018180523]]]}},{"type":"Feature","properties":{"id":"bay-of-bengal-gateway-bbg","name":"Bay of Bengal Gateway (BBG)","color":"#a4332b","feature_id":"bay-of-bengal-gateway-bbg-0","coordinates":[73.99739965125022,9.217315450838143]},"geometry":{"type":"MultiLineString","coordinates":[[[79.88937764155526,6.82077608459704],[79.53751789081602,5.957818681088533],[78.45083428096896,4.580645089775046]],[[80.24298739105474,13.06385310188338],[81.45001653598388,12.615395567393394],[83.70001494206389,12.175887185507976],[89.10001111665605,10.85308969074528],[93.1500082476,9.296323017976968],[95.40000665368001,7.967776882259704],[97.42500521915215,7.131299528983607],[99.67500362523216,5.622041180883233],[100.40982310408316,5.368393581488473]],[[72.00002323044777,16.965102599435927],[72.87590260996693,19.07607425728523]],[[97.42500521915215,7.131299528983607],[95.40000665368001,6.504566780877437],[94.27500745064,6.380356264139964],[92.70000856638391,5.510071711803246],[90.00001047908802,5.510071711803246],[85.500013666928,4.613591578862773],[81.00001685476798,3.491423322320592],[79.65001781052403,3.865649782482034],[78.69513048465001,4.389285926050993],[75.94024443331631,6.852191098754328],[73.74513399127409,9.52441134501949],[72.39513494762605,13.492128176464083],[72.00002323044777,16.965102599435927],[66.82502689646383,20.58581909604039],[62.662529845215765,23.91710129093513],[59.85003265596724,24.839308763626327],[58.72503263457575,24.94136317175375],[56.92503390971164,25.017845517489846],[56.33372432860119,25.121690004958644]],[[58.72503263457575,24.94136317175375],[58.162533033055745,24.01990020343248],[57.88605322832058,23.67872342575357]]]}},{"type":"Feature","properties":{"id":"jasuka","name":"JaSuKa","color":"#32499f","feature_id":"jasuka-0","coordinates":[108.86108464351302,0.12453318129583016]},"geometry":{"type":"MultiLineString","coordinates":[[[107.12099835041957,-5.981154260263285],[107.21249828560005,-5.273944363641298],[107.66249796681612,-4.60145376483711],[107.32599820519597,-3.029995968008661],[107.30493637508928,-2.783713633979089],[107.41104629497711,-2.62823853632246],[107.66288796654008,-2.767442755874634],[107.66288796654008,-2.517708985005663],[107.76054789735689,-2.237970538313992],[108.22499756833612,-1.231315750217412],[108.89999709016024,-0.218910724747347],[109.33554678161278,-0.027021392288274],[108.89999709016024,0.118588418888312],[104.8499999592161,0.737317714243841],[104.40000027800004,0.793562652607196],[104.2875003576961,0.906050180869095],[104.17500043739219,0.962292662396848],[104.0166370000003,1.066798000000349],[103.88438064327008,1.159128690702065],[103.50000091556807,1.15908369994202],[103.34065102845322,1.131139301987234],[102.68279723997186,1.473918781768247],[102.15000187192003,1.637114620370998],[101.72812717078021,1.693340822791726],[101.44766236946417,1.665522797277061]],[[105.25409967294819,-5.409293894312003],[105.35624960058415,-5.721872747834119],[105.88026922936372,-5.868190997616806],[106.4249988434722,-5.721872747834119],[106.83339855415794,-6.171588071824116]]]}},{"type":"Feature","properties":{"id":"indonesia-global-gateway-igg-system","name":"Indonesia Global Gateway (IGG) System","color":"#5a9f43","feature_id":"indonesia-global-gateway-igg-system-0","coordinates":[113.43510331475238,-5.562666118998097]},"geometry":{"type":"MultiLineString","coordinates":[[[116.83129147155694,-1.265389667588013],[117.08124129449006,-1.402870227222247],[117.85190631946367,-1.51533365197483]],[[120.59998880177636,1.918228780215599],[118.79999007691224,2.817450442654169],[117.89999071448027,3.154491498099848],[117.67499087387223,3.154491498099848],[117.57851094221976,3.327354396392341]],[[117.4499910332642,-4.37714437553184],[118.79999007691224,-4.937784304559489],[119.41238964308275,-5.152180217334703]],[[116.58310164737706,-5.749115659923423],[116.54999167083223,-6.616650693475355],[115.8749921490083,-8.178490278944933],[115.84442576381582,-8.371311450744278],[115.69240000000046,-8.405888110965844]],[[114.46970572643436,-5.945707155070644],[113.39999390232026,-6.616650693475355],[113.28349007860268,-6.902248768835711]],[[104.0166370000003,1.066798000000349],[103.89883584657089,1.191468968816909]],[[103.64609081207688,1.338585852071497],[103.89883584657089,1.191468968816909]],[[107.21249828560005,-4.60145376483711],[106.76249860438416,-5.273944363641298],[106.83339855415794,-6.1289648492105]],[[101.44766236946417,1.665522797277061],[101.72812717078021,1.749465440761394],[102.15000187192003,1.74956539407541],[102.68279723997186,1.530149411893926],[103.34065102845322,1.215421560433802],[103.50000091556807,1.187252773694101],[103.89883584657089,1.191468968816909],[104.1378104637381,1.238391276726424],[104.28790035741287,1.173518198634015],[104.62500011860807,1.131014326431719],[104.8499999592161,1.018534216615524],[105.29999964043219,1.018534216615524],[106.64999868408005,-0.331409329660265],[107.0366484101739,-2.130918480960333],[107.15309832767961,-3.029995968008661],[107.21249828560005,-4.60145376483711],[112.0499948586722,-5.049857167366764],[114.46970572643436,-5.945707155070644],[116.58310164737706,-5.749115659923423],[117.4499910332642,-4.37714437553184],[117.59999092700289,-2.730375485267853],[117.85190631946367,-1.51533365197483],[118.54128832686715,-0.810555324740758],[119.24998975693651,0.568578852526193],[119.47498959814027,1.018534216615524],[120.59998880177636,1.918228780215599],[124.19998625150441,1.918228780215599],[124.8396357983706,1.490779296094715]]]}},{"type":"Feature","properties":{"id":"global-caribbean-network-gcn","name":"Global Caribbean Network (GCN)","color":"#5dba46","feature_id":"global-caribbean-network-gcn-0","coordinates":[-62.5965537030894,16.77751655453056]},"geometry":{"type":"MultiLineString","coordinates":[[[-64.81925984548825,17.773909269375704],[-64.5748800186092,18.144943564296213],[-64.12488033739322,18.251816319028222],[-63.4498808155692,18.144943564296213],[-63.08246600000027,18.06751899999977],[-62.99988113435322,17.986414235906896],[-62.85055124073587,17.897908]],[[-63.08246600000027,18.06751899999977],[-63.464190806027844,17.71178205639041],[-63.464190806027844,17.6164969787067],[-63.28321093423575,17.422853263294805],[-62.943581174236634,17.180187287481317],[-61.87488193131321,15.940130106909258],[-61.746192023074286,16.020844700000207],[-61.607792120522106,15.892797111330715],[-61.5263921781866,15.988768942769152],[-61.57168214610275,16.244479667932865]],[[-64.5748800186092,18.144943564296213],[-64.83573983381369,18.415247054142775],[-65.36237946073724,18.572039052566783],[-65.53112934119322,18.572039052566783],[-65.69987922164921,18.678647022154717],[-65.86862910210529,18.678647022154717],[-66.10666893347558,18.46610423294742]]]}},{"type":"Feature","properties":{"id":"jakarta-bangka-bintan-batam-singapore-b3js","name":"Jakarta-Bangka-Bintan-Batam-Singapore (B3JS)","color":"#1ebab0","feature_id":"jakarta-bangka-bintan-batam-singapore-b3js-0","coordinates":[105.62504582957571,-1.6430063460614153]},"geometry":{"type":"MultiLineString","coordinates":[[[106.82782855810404,-6.171876390816321],[106.31249892316808,-5.273944363641298],[106.53749876377611,-4.60145376483711],[106.53749876377611,-3.479268678970064],[106.54745875672049,-3.079924874677993],[106.19999900286416,-2.580536704984131],[105.74999932164808,-1.906058394384765],[105.5827094401579,-1.553879793691628],[105.4124995613322,-1.231315750217412],[105.07499980042023,0.118588418888312],[104.8499999592161,0.290337139339023],[104.17500043739219,0.398835084041189],[103.66875079602414,0.793562652607196],[103.66875079602414,1.018534216615524],[103.87813064769749,1.190951974272981],[104.0166370000003,1.066798000000349],[103.97815057624668,1.185378176915766],[103.94648059927786,1.327258925921003],[104.01133055333753,1.233727365552387],[104.14960045538582,1.18452336036332],[104.34415031696894,1.201587148227037],[104.42580025912726,1.136713206281876]]]}},{"type":"Feature","properties":{"id":"seamewe-5","name":"SeaMeWe-5","color":"#c71f8e","feature_id":"seamewe-5-0","coordinates":[41.37831144972093,16.761911867249623]},"geometry":{"type":"MultiLineString","coordinates":[[[38.10697724059967,24.070648010417838],[37.80004745803156,24.01990020343248],[37.34051417738748,24.03538146018735],[37.12504793620581,24.12261698700344]],[[42.95452380595619,14.797809010241023],[42.75004395140765,14.746763925028056],[42.35629423034354,14.801154224791581]],[[101.25000250948806,2.367912558705407],[101.36255242975687,2.143087178471855],[101.44766236946417,1.665522797277061]],[[99.56250370492806,4.613591578862773],[98.67598433294692,3.752031394331533]],[[27.900054471279375,32.43331330641721],[28.800053833711523,34.31215165223547],[28.575053993103488,36.1498667868178],[28.462554072799378,36.51238821239364],[28.253574220842975,36.85525019317097]],[[16.65006244087933,33.93964008831966],[16.425050392653056,34.649035185051616],[16.260905867940522,35.801066734347735],[16.08756283935933,36.87321951208928],[15.750063078447363,37.32187222983504],[15.06744356202158,37.51344748573393]],[[94.39121736831608,16.85803225570866],[93.60000792881607,16.965102599435927],[91.80000920395213,17.82393441253792]],[[102.220901821694,2.273260323566543],[102.15000187192003,1.974446286104158]],[[90.11661039648769,21.820818029820398],[90.90000984151999,20.375041253465433],[91.80000920395213,17.82393441253792],[91.80000920395213,14.801154224791581],[90.4500101603039,9.52441134501949],[90.22501031969605,7.967776882259704],[90.00001047908802,7.29876275445952]],[[67.02854675228855,24.889731701235817],[65.25002801161183,24.054148269801107],[63.22502944673577,22.469443964829516]],[[65.75491565746178,16.88633703423319],[63.45836261477361,20.88077116880577],[63.22502944673577,22.469443964829516],[59.85003183761575,24.430271928050523],[58.50003279396771,24.73717827217609],[56.92503390971164,24.94136317175375],[56.33372432860119,25.121690004958644]],[[29.70093319552029,31.072270031660306],[29.98130299690349,30.41748579633928],[30.375052717967602,29.906873916731318],[31.050052239791533,29.540507745394493],[31.72505176161546,29.295522763665502],[32.17505144283154,29.197363639715668],[32.65318110412008,29.113614162980063]],[[5.930340034831254,43.125291587014985],[6.300069772911254,42.743713464436695],[6.525069613519291,41.74435878948223],[8.10006849777537,38.651811712711336],[8.325068338383225,38.38775473578444],[9.000067859611436,38.21117903702318],[10.348617229769278,38.21117903702318],[10.91256650537538,37.85673997565852],[12.150065627527512,37.23235432155614],[12.150065628719313,36.24065523321488],[12.487565389631278,35.78566189952622],[12.99381503100241,35.419780517080355],[14.400064034799321,34.54413627297858],[16.65006244087933,33.93964008831966],[19.350060528175415,34.31215165223547],[22.050058614875596,34.157137999942634],[25.200056383983473,33.42476549736121],[27.900054471279375,32.43331330641721],[29.70093319552029,31.072270031660306],[29.98130299690349,30.466024503890644],[30.375052717967602,30.00434523699696],[31.050052239791533,29.63833609362628],[31.72505176161546,29.393587625053524],[32.17505144283154,29.246411345890234],[32.65318110412008,29.113614162980063],[33.46910052611805,28.161052262220792],[34.42504984891155,27.364667993860262],[35.35317419141958,26.562513149236715],[36.11254865347155,25.75470426341523],[37.12504793620581,24.12261698700344],[38.36254705955156,22.05298561667754],[39.1500465016796,20.375041253465433],[40.500045545327644,18.251816319028222],[41.51254482806354,16.534196198259725],[42.35629423034354,14.801154224791581],[42.86254387171158,13.92930384327183],[43.17191865254765,13.054150695298627],[43.29848106288953,12.834868817846521],[43.38285600311756,12.615395567393394],[43.53754339353551,12.395734000022975],[44.55004267627159,11.735650161405832],[45.450042038703735,11.735650161405832],[48.60003980781179,12.505588131780646],[55.35003502545574,14.365653759228442],[58.95003247518379,15.886035719079029],[60.975031038271794,15.994209911785974],[65.75491565746178,16.88633703423319],[70.65002418679991,13.41205503289061],[72.10979915852461,9.280734132427842],[74.30490960056683,6.606897166243519],[76.95001972382386,5.510071711803246],[79.65001781111994,5.510071711803246],[80.53985718074962,5.940820740520149]],[[80.53985718074962,5.940820740520149],[81.00001685476798,5.510071711803246],[82.80001557963192,5.510071711803246],[85.500013666928,6.405200795356032],[90.00001047908802,7.29876275445952],[92.70000856638391,6.852191098754328],[94.27500745064,6.852191098754328],[95.40000665368001,6.740481724921185],[97.42500521915215,6.237476972533139],[98.77500426280001,5.286069860821008],[99.56250370492806,4.613591578862773],[100.3500031470561,3.266814816815666],[101.25000250948806,2.367912558705407],[102.15000187192003,1.974446286104158],[102.68279723997186,1.670619462234952],[103.34065102845322,1.271608282704793],[103.50000091556807,1.215271594284278],[103.64609081207688,1.338585852071497]],[[43.16164365982675,11.573660387694234],[43.65004331383962,11.70798932055409],[44.55004267627159,11.735650161405832]],[[59.366662179443516,22.700003992423866],[59.51253207610789,22.884654113882444],[59.85003183761575,24.430271928050523]]]}},{"type":"Feature","properties":{"id":"italy-malta","name":"Italy-Malta","color":"#a7732a","feature_id":"italy-malta-0","coordinates":[15.733540232516354,36.53285728608339]},"geometry":{"type":"MultiLineString","coordinates":[[[15.06744356202158,37.51344748573393],[15.750063078447363,37.23235432155614],[15.918812958903438,36.87321951208928],[15.525063237839326,36.1498667868178],[15.075063556623434,35.92243557734424],[14.492544437439456,35.92096569276682]]]}},{"type":"Feature","properties":{"id":"epic-malta-sicily-cable-system-emscs","name":"Epic Malta-Sicily Cable System (EMSCS)","color":"#48b648","feature_id":"epic-malta-sicily-cable-system-emscs-0","coordinates":[15.538157320636477,36.53259125431128]},"geometry":{"type":"MultiLineString","coordinates":[[[15.06744356202158,37.51344748573393],[15.637563158143436,37.23235432155614],[15.750063078447363,36.87321951208928],[15.30006339723147,36.1498667868178],[15.075063556623434,36.013486867197166],[14.380044048981722,35.93406361398958]]]}},{"type":"Feature","properties":{"id":"hannibal-system","name":"HANNIBAL System","color":"#5ab946","feature_id":"hannibal-system-0","coordinates":[11.869247045735086,37.15682288531832]},"geometry":{"type":"MultiLineString","coordinates":[[[11.090886379052035,36.84993699396254],[11.4273661406866,36.84931057824871],[12.173015612461494,37.368220507849735],[12.591375316091606,37.65058617278613]]]}},{"type":"Feature","properties":{"id":"didon","name":"Didon","color":"#37b44d","feature_id":"didon-0","coordinates":[11.846552497834175,37.23066081797086]},"geometry":{"type":"MultiLineString","coordinates":[[[11.090886379052035,36.84993699396254],[11.4273661406866,36.93929548035904],[12.173015612461494,37.45757668483838],[12.591375316091606,37.65058617278613]]]}},{"type":"Feature","properties":{"id":"mednautilus-submarine-system","name":"MedNautilus Submarine System","color":"#53b847","feature_id":"mednautilus-submarine-system-0","coordinates":[25.334243624117097,34.44940588724045]},"geometry":{"type":"MultiLineString","coordinates":[[[28.988233700403125,41.04061756347715],[28.283554199604758,40.7445175271339],[27.67066463378159,40.571463184888],[27.204354964119698,40.51728976261815],[26.755425282145552,40.45564648003217],[26.64400536107653,40.37549034333631],[26.59292539726206,40.31736166816431],[26.51655545136326,40.27677072796649],[26.447805500066316,40.223703402432285],[26.372225553608057,40.19439284484717],[26.376225550774205,40.14678775490784],[26.344195573464642,40.1045953658932],[26.246055642987802,40.05564908987763],[25.3125563042874,39.524987333511675],[25.3125563042874,38.651811712711336],[25.650056065199365,37.411283634923244],[25.200056383983473,37.23235432155614],[24.63755678246347,37.277126582876754],[24.166306973235315,37.239619217488034],[23.962557260639358,37.589786573603064],[23.73618742100205,37.97607797573181]],[[25.875055905807404,36.602754740329765],[25.42505622459151,36.602754740329765],[24.975056543375437,36.33133835588799],[24.52505686215936,36.33133835588799],[24.187557101843478,36.51238821239364],[23.850057340335432,37.589786573603064],[23.73618742100205,37.97607797573181]],[[28.988233700403125,41.04061756347715],[28.305814183835448,40.72743084616859],[27.678864627972537,40.55231865816978],[27.18003498134806,40.495681130064526],[26.754935282492717,40.43735937424689],[26.677105337628205,40.3798096956335],[26.60562538826515,40.30783009842792],[26.531695440637915,40.26268557434711],[26.481695476058352,40.22138987189183],[26.388625541989953,40.19170400909338],[26.39077554046697,40.13245384394122],[26.34819557063097,40.08674097664053],[26.260015633098497,40.04234480534568],[26.09819574773315,39.97772318814789],[25.42505622459151,39.524987333511675],[25.42505622459151,38.651811712711336],[25.875055905807404,37.411283634923244],[26.212555666719368,37.23235432155614],[26.325055587023478,36.87321951208928],[25.875055905807404,36.602754740329765],[25.933624491168022,35.836586354437685]],[[34.200050008303506,33.09551711711581],[33.750050327087614,33.565491482352044],[33.750050327087614,34.49779087043369],[33.61060042587536,34.82728147271538]],[[24.012167225495322,35.512042558637575],[23.962557260639358,35.78566189952622],[23.850057339143632,36.51238821239364],[23.737557420031504,37.589786573603064],[23.73618742100205,37.97607797573181]],[[15.06744356202158,37.51344748573393],[15.750063078447363,37.50058844605323],[18.00006148452737,36.51238821239364],[19.342345691678812,36.33070897538892],[22.050058614875596,35.54192681258013],[23.303036242879482,34.96583678559484],[24.435213175209686,34.662356899182655],[31.050052239791533,33.09551711711581],[33.750050327087614,32.33831157801293],[34.76967960477271,32.04501185826483],[34.53754976861957,32.243210016262736],[34.65004968892368,32.62301664000789],[34.97190100000024,32.76170000000019]],[[34.97190100000024,32.76170000000019],[34.200050008303506,33.09551711711581],[31.050052239791533,33.565491482352044],[28.800053833711523,34.31215165223547],[26.574796150245934,35.455341306260905],[25.933624491168022,35.836586354437685],[25.386282830980196,35.785858781085906],[24.012167225495322,35.512042558637575],[23.737557420031504,35.83127933955618],[22.950057977903466,35.96797434759339],[18.00006148452737,36.87321951208928],[15.750063078447363,37.589786573603064],[15.06744356202158,37.51344748573393]]]}},{"type":"Feature","properties":{"id":"channel-islands-9-liberty-submarine-cable","name":"Channel Islands-9 Liberty Submarine Cable","color":"#3a499e","feature_id":"channel-islands-9-liberty-submarine-cable-0","coordinates":[-2.86354726673046,50.11697655271897]},"geometry":{"type":"MultiLineString","coordinates":[[[-3.598459602999541,50.32426129232395],[-3.149923532624674,50.23926850952171],[-2.812423771712709,50.09514516168246],[-2.474924010800744,49.58728674004685],[-2.533373969394162,49.503391023483246]]]}},{"type":"Feature","properties":{"id":"circe-south","name":"Circe South","color":"#cb218e","feature_id":"circe-south-0","coordinates":[0.9178745154388831,50.47986575279056]},"geometry":{"type":"MultiLineString","coordinates":[[[0.366673976184613,50.81931962098235],[0.450073917103194,50.740281893948165],[1.350073279535343,50.23926850952171],[1.493433177977853,50.17917387330185]]]}},{"type":"Feature","properties":{"id":"uk-channel-islands-7","name":"UK-Channel Islands-7","color":"#923e97","feature_id":"uk-channel-islands-7-0","coordinates":[-2.7645302674141687,50.19480860949745]},"geometry":{"type":"MultiLineString","coordinates":[[[-2.533373969394162,49.503391023483246],[-2.418674050648689,49.58728674004685],[-2.699923851408691,50.167261162927154],[-3.037423612320747,50.31116725161073],[-3.598459602999541,50.32426129232395]]]}},{"type":"Feature","properties":{"id":"pan-european-crossing-uk-belgium","name":"Pan European Crossing (UK-Belgium)","color":"#60b446","feature_id":"pan-european-crossing-uk-belgium-0","coordinates":[2.201398555109915,51.30637567738274]},"geometry":{"type":"MultiLineString","coordinates":[[[1.440993215126906,51.35857144425905],[1.800072960751236,51.30637567738274],[2.475072482575348,51.30637567738274],[2.961892137707676,51.246659538426435]]]}},{"type":"Feature","properties":{"id":"concerto","name":"Concerto","color":"#33c0cc","feature_id":"concerto-0","coordinates":[3.0774214030658826,52.217550300511036]},"geometry":{"type":"MultiLineString","coordinates":[[[4.524191030960483,52.36366638180829],[4.520747594069142,52.36330677716338],[4.516013673110618,52.36282489532795],[4.510043038254378,52.36222583101928],[4.502889459669888,52.361514678954684],[4.494606707526613,52.36069653385145],[4.485248551994019,52.359776490426896],[4.474868763241573,52.35875964339831],[4.463521111438739,52.357651087483],[4.451259366754986,52.35645591739826],[4.438137299359777,52.355179227861385],[4.42420867942258,52.35382611358969],[4.409527277112859,52.35240166930047],[4.394146862600081,52.350910989711025],[4.378121206053712,52.34935916953866],[4.361504077643218,52.347751303500665],[4.344349247538065,52.34609248631435],[4.326710485907718,52.34438781269701],[4.308641562921644,52.34264237736595],[4.290196248749308,52.34086127503847],[4.271428313560177,52.33904960043186],[4.252391527523717,52.33721244826344],[4.233139660809392,52.335354913250505],[4.21372648358667,52.333482090110344],[4.194205766025015,52.33159907356026],[4.174631278293895,52.32971095831757],[4.155056790562774,52.32782283909956],[4.135536073001121,52.32593981062353],[4.116122895778398,52.32406696760679],[4.096871029064074,52.32220940476663],[4.077834243027612,52.32037221682035],[4.059066307838481,52.31856049848527],[4.040620993666145,52.31677934447867],[4.022552070680072,52.31503384951786],[4.004913309049725,52.31332910832014],[3.987758478944571,52.3116702156028],[3.971141350534078,52.31006226608316],[3.955115693987709,52.30851035447851],[3.939735279474931,52.30701957550614],[3.92505387716521,52.30559502388337],[3.911125257228013,52.30424179432749],[3.898003189832804,52.3029649815558],[3.88574144514905,52.30176968028561],[3.874393793346218,52.30066098523421],[3.864014004593771,52.299643991118906],[3.854655849061178,52.29872379265699],[3.846373096917903,52.29790548456578],[3.839219518333412,52.297194161562565],[3.833248883477172,52.29659491836465],[3.825071525627307,52.2957530502539],[3.825071525627307,52.2957530502539],[3.816071532002986,52.29422355935958],[3.807071538378665,52.292694041875734],[3.798071544754344,52.291164497443546],[3.789071551130024,52.2896349257042],[3.780071557505705,52.288105326298854],[3.771071563881385,52.2865756988687],[3.762071570257066,52.28504604305491],[3.753071576632747,52.28351635849867],[3.744071583008429,52.28198664484115],[3.735071589384111,52.28045690172353],[3.726071595759793,52.27892712878699],[3.717071602135475,52.277397325672695],[3.708071608511158,52.27586749202184],[3.699071614886841,52.274337627475596],[3.690071621262524,52.27280773167514],[3.681071627638207,52.27127780426164],[3.67207163401389,52.2697478448763],[3.663071640389574,52.268217853160266],[3.654071646765257,52.26668782875474],[3.645071653140941,52.265157771300885],[3.636071659516625,52.26362768043989],[3.627071665892308,52.26209755581292],[3.618071672267992,52.26056739706116],[3.609071678643677,52.25903720382579],[3.60007168501936,52.25750697574799],[3.591071691395044,52.25597671246892],[3.582071697770728,52.25444641362978],[3.573071704146412,52.25291607887173],[3.564071710522096,52.25138570783596],[3.55507171689778,52.249855300163645],[3.546071723273463,52.24832485549595],[3.537071729649147,52.246794373474074],[3.528071736024831,52.24526385373918],[3.519071742400514,52.24373329593245],[3.510071748776197,52.24220269969506],[3.50107175515188,52.240672064668196],[3.492071761527563,52.239141390493025],[3.483071767903246,52.237610676810725],[3.474071774278928,52.23607992326248],[3.46507178065461,52.234549129489466],[3.456071787030292,52.23301829513286],[3.447071793405974,52.23148741983383],[3.438071799781655,52.22995650323357],[3.429071806157336,52.228425544973256],[3.420071812533017,52.226894544694055],[3.411071818908697,52.22536350203715],[3.402071825284377,52.22383241664372],[3.393071831660056,52.22230128815493],[3.375071844411414,52.219238900456034],[3.375071844411414,52.219238900456034],[2.025072800763373,52.211580224391206],[1.620287931266729,52.20721179437706]]]}},{"type":"Feature","properties":{"id":"farland-north","name":"Farland North","color":"#52bb77","feature_id":"farland-north-0","coordinates":[2.525472849613037,51.77218715330889]},"geometry":{"type":"MultiLineString","coordinates":[[[1.590603109141634,52.15784048805771],[2.025072801359273,52.00429650272413],[2.92507216379124,51.586833980054095],[3.496161759226153,51.563950944766155]]]}},{"type":"Feature","properties":{"id":"circe-north","name":"Circe North","color":"#3cb54e","feature_id":"circe-north-0","coordinates":[3.126835437758527,52.41790126031551]},"geometry":{"type":"MultiLineString","coordinates":[[[1.72927301090669,52.46882263773048],[2.25007264196731,52.41790126031551],[3.825071526223208,52.41790126031551],[4.524191030960483,52.36366638180829]]]}},{"type":"Feature","properties":{"id":"e-llan","name":"E-LLAN","color":"#44b549","feature_id":"e-llan-0","coordinates":[-3.771466810717881,53.95209894866871]},"geometry":{"type":"MultiLineString","coordinates":[[[-4.480882589760787,54.150478175109725],[-4.274922735664679,54.10005748241058],[-3.599923213840749,53.90168472607427],[-3.050753602877637,53.80897597127547]]]}},{"type":"Feature","properties":{"id":"lanis-3","name":"Lanis-3","color":"#2d8cb2","feature_id":"lanis-3-0","coordinates":[-5.219973632599597,55.20510575766682]},"geometry":{"type":"MultiLineString","coordinates":[[[-4.659932462920117,55.5413317564715],[-4.9499222574887,55.462350188098306],[-5.624921779312721,54.81936191424915],[-5.718721712863974,54.753701760470875]]]}},{"type":"Feature","properties":{"id":"finland-estonia-3-eesf-3","name":"Finland-Estonia 3 (EESF-3)","color":"#41b769","feature_id":"finland-estonia-3-eesf-3-0","coordinates":[24.568446825338455,59.810273160278776]},"geometry":{"type":"MultiLineString","coordinates":[[[24.27661703815667,59.40095452286688],[24.412556941855435,59.679663707208995],[24.7500567027674,59.9624316341522],[24.932476573539617,60.171163188940554]]]}},{"type":"Feature","properties":{"id":"bcs-east","name":"BCS East","color":"#bc6f29","feature_id":"bcs-east-0","coordinates":[20.812559492127384,56.24404101569347]},"geometry":{"type":"MultiLineString","coordinates":[[[21.011189351416185,56.50836914088424],[20.812559492127384,56.407518054312945],[20.812559492127384,56.15772578558828],[21.08267930077222,56.028506850473754]]]}},{"type":"Feature","properties":{"id":"batam-dumai-melaka-bdm","name":"Batam Dumai Melaka (BDM)","color":"#3cbba0","feature_id":"batam-dumai-melaka-bdm-0","coordinates":[102.74660651831417,1.4715089599375142]},"geometry":{"type":"MultiLineString","coordinates":[[[101.44766236946417,1.665522797277061],[101.72812717078021,1.777527123428276],[101.92500203131218,1.918228780215599],[102.220901821694,2.273260323566543]],[[104.0166370000003,1.066798000000349],[103.50000091556807,1.173168272269238],[103.34065102845322,1.18732775753875],[102.68279723997186,1.502034277710852],[102.15000187192003,1.693340822791726],[101.72812717078021,1.721403338307429],[101.44766236946417,1.665522797277061]]]}},{"type":"Feature","properties":{"id":"pgascom","name":"PGASCOM","color":"#7c9e3e","feature_id":"pgascom-0","coordinates":[103.83548378915265,0.23511774804232174]},"geometry":{"type":"MultiLineString","coordinates":[[[103.70596076966436,1.259306292565431],[103.86557565659176,1.185378176915766],[104.0166370000003,1.066798000000349]],[[103.46670093915829,-0.816543192375546],[103.89375063663218,-0.331409329660265],[103.89375063663218,0.118588418888312],[103.55625087572004,0.793562652607196],[103.66875079602414,1.018534216615524],[104.0166370000003,1.066798000000349]]]}},{"type":"Feature","properties":{"id":"boracay-palawan-submarine-cable-system-bpscs","name":"Boracay-Palawan Submarine Cable System (BPSCS)","color":"#2b51a3","feature_id":"boracay-palawan-submarine-cable-system-bpscs-0","coordinates":[120.40542620577979,11.407132406675665]},"geometry":{"type":"MultiLineString","coordinates":[[[121.94481206784093,11.949266020482876],[121.93593035478695,11.937514333211984],[121.95077784426886,11.930929802473868]],[[120.2007690845874,12.005434247136186],[120.37498896116831,11.84577637362577],[120.59998880177636,11.735650161405832]],[[119.50037958074992,10.820000490489418],[120.14998912056028,10.97582844878326],[120.59998880177636,11.735650161405832],[120.8249886423844,12.175887185507976],[121.05018848285071,12.363012914770698]]]}},{"type":"Feature","properties":{"id":"saudi-arabia-sudan-1-sas-1","name":"Saudi Arabia-Sudan-1 (SAS-1)","color":"#68bc45","feature_id":"saudi-arabia-sudan-1-sas-1-0","coordinates":[38.0983476031497,20.654265086135478]},"geometry":{"type":"MultiLineString","coordinates":[[[37.21967786917097,19.61556659454616],[37.58923757400337,20.13043586514086],[38.10004724550894,20.656013867895815],[39.18275647850768,21.481533475502996]]]}},{"type":"Feature","properties":{"id":"falcon","name":"FALCON","color":"#c62026","feature_id":"falcon-0","coordinates":[57.68145496109924,24.435579750299368]},"geometry":{"type":"MultiLineString","coordinates":[[[42.95452380595619,14.797809010241023],[42.75004395140765,14.692360031374392],[42.1312943897355,14.801154224791581]],[[48.5317798555716,29.92363278689715],[48.71253972751964,29.540507745394493],[48.60003980721571,29.1482487910328]],[[48.5317798555716,29.92363278689715],[48.60003980721571,29.540507745394493],[48.4875398869116,29.246454972180413]],[[60.627371286941326,25.258664579046147],[59.85003265596724,24.634955698183607]],[[52.182457269397545,16.213003862431094],[52.65003693815965,15.669513225155248],[52.65003693815965,15.23578178303578]],[[75.54513271613803,6.628746603597807],[79.20001812990387,6.628746603597807],[79.87208765380376,6.927036656836354]],[[76.97022970950695,8.798160747261367],[76.50002004260797,8.190543417795496],[75.54513271613803,6.628746603597807],[74.25002163652778,5.398081130463647],[73.5000221678345,4.16666819886197]],[[72.87590260996693,19.07607425728523],[70.20002450558383,19.740987365524937],[66.60002705585578,20.375041253465433],[63.675029127951845,22.469443964829516],[59.85003265596724,24.634955698183607],[58.50003279396771,23.968510996734643],[58.1762030233719,23.68487753168473],[57.88128323229574,24.12261698700344],[57.37503359092771,25.348717422116714],[57.15003375031967,26.1593079707739],[56.98128386986378,26.562513149236715],[56.74300403866356,26.97318161868908],[56.27415437080105,27.18725294593831],[56.2500343878877,26.813799487940788],[55.80003470667163,26.411476060868516],[55.35003502545574,26.36108632539156],[53.55003630059162,26.36108632539156],[52.875036778767694,26.562513149236715],[52.20003725694376,26.964304734562898],[51.525037735119646,27.364667993860262],[50.175038691471606,27.962503359972466],[49.16253940873571,28.65581241773305],[48.60003980721571,29.1482487910328],[48.4875398869116,29.246454972180413],[47.974840250113054,29.37410420420039],[48.60003980721571,28.853067255226264],[49.16253940873571,28.458185766004554],[50.175038691471606,26.964304734562898],[50.175038691471606,26.461843796188983],[50.214198663730556,26.28537535931817],[50.34378857192768,26.461843796188983],[50.51253845238375,26.461843796188983],[50.57601840741415,26.229494838391265],[51.187537974207686,26.36108632539156],[51.637537655423756,26.260240971577822],[51.75003757572769,26.05828756029904],[51.519277739200085,25.294608758024626],[52.20003725694376,25.75470426341523],[53.55003630059162,25.855985466072205],[55.1250351848477,25.855985466072205],[55.1250351848477,25.55188275942587],[55.30853505485483,25.269353998130182],[55.237585105116516,25.55188275942587],[55.35003502545574,25.75470426341523],[55.80003470667163,26.10880867686235],[56.24681439016876,26.181305362781977],[56.362534308191634,26.461843796188983],[56.58753414879967,26.461843796188983],[56.756284029255745,26.1593079707739],[57.26253367062378,25.348717422116714],[57.825033272143784,24.12261698700344],[58.1762030233719,23.68487753168473],[58.50003279396771,23.81422051502533],[58.95003247518379,23.65974644119216],[59.85003183761575,22.884654113882444],[60.07503167703199,22.469443964829516],[59.85003183761575,19.104405475930452],[58.95003247518379,18.038005439608753],[55.35003502545574,16.318380026359527],[52.65003693815965,15.23578178303578],[48.60003980721571,13.492128176464083],[45.450042038703735,12.72515592356304],[44.55004267627159,12.230866087669199],[43.67816829391569,12.395734000022975],[43.3266060429656,12.615395567393394],[43.24223110273756,12.834868817846521],[43.05941873224354,13.054150695298627],[42.637544031103545,13.92930384327183],[42.1312943897355,14.801154224791581],[41.062545146848734,16.534196198259725],[40.05004586411157,18.251816319028222],[38.70004682046353,20.375041253465433],[37.91254737833549,22.05298561667754],[36.67504825499064,24.12261698700344],[35.66254897225548,25.75470426341523],[35.01567443050744,26.562513149236715],[34.200050008303506,27.364667993860262],[33.497250506175384,28.161052262220792],[32.99067586503547,28.95155473219332],[32.70942606427547,29.344566989489813],[32.54067268382206,29.63833609362628],[32.54068118381597,29.974234637029465]],[[39.18275647850768,21.481533475502996],[38.70004682046353,20.375041253465433],[37.58923757400337,19.81323778521068],[37.21967786917097,19.61556659454616]]]}}]} diff --git a/assets/cables/landing-point-geo.json b/assets/cables/landing-point-geo.json new file mode 100644 index 0000000..3a92bb9 --- /dev/null +++ b/assets/cables/landing-point-geo.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","name":"landing_points","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"id":"nybor-denmark","name":"Nybor, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.799480647390464,55.324102015186114]}},{"type":"Feature","properties":{"id":"korsor-denmark","name":"Korsor, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.149382743266532,55.32575488731598]}},{"type":"Feature","properties":{"id":"rostock-germany","name":"Rostock, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.13238985939624,54.078893478280825]}},{"type":"Feature","properties":{"id":"markgrafenheide-germany","name":"Markgrafenheide, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.149479691038506,54.19140540038316]}},{"type":"Feature","properties":{"id":"osterby-denmark","name":"Osterby, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.199285051665399,57.31345558303452]}},{"type":"Feature","properties":{"id":"kristinelund-sweden","name":"Kristinelund, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.588639536183623,56.134734209506526]}},{"type":"Feature","properties":{"id":"tinian-northern-mariana-islands","name":"Tinian, Northern Mariana Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.63747106439294,15.011127130087093]}},{"type":"Feature","properties":{"id":"saipan-northern-mariana-islands","name":"Saipan, Northern Mariana Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.7509475465053,15.1777319139343]}},{"type":"Feature","properties":{"id":"rota-northern-mariana-islands","name":"Rota, Northern Mariana Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.21247136546685,14.151844706294286]}},{"type":"Feature","properties":{"id":"vila-olga-virgin-islands-u-s-","name":"Vila Olga, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.94802428611733,18.335728451477152]}},{"type":"Feature","properties":{"id":"banana-bay-virgin-islands-u-s-","name":"Banana Bay, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.94377624225066,18.328219740149585]}},{"type":"Feature","properties":{"id":"flamingo-bay-virgin-islands-u-s-","name":"Flamingo Bay, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.95778990419826,18.312830498451948]}},{"type":"Feature","properties":{"id":"tortola-virgin-islands-u-k-","name":"Tortola, Virgin Islands (U.K.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.5972432846129,18.414781849275833]}},{"type":"Feature","properties":{"id":"great-bay-virgin-islands-u-s-","name":"Great Bay, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.84319037600663,18.322472111215845]}},{"type":"Feature","properties":{"id":"brewers-bay-virgin-islands-u-s-","name":"Brewer's Bay, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.97531918865539,18.342402587783717]}},{"type":"Feature","properties":{"id":"frederiksted-virgin-islands-u-s-","name":"Frederiksted, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.88152042697823,17.71242997088509]}},{"type":"Feature","properties":{"id":"christiansted-virgin-islands-u-s-","name":"Christiansted, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.70315141271153,17.746660579229843]}},{"type":"Feature","properties":{"id":"carrickfergus-united-kingdom","name":"Carrickfergus, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.808173603216411,54.71367039332284]}},{"type":"Feature","properties":{"id":"saltcoats-united-kingdom","name":"Saltcoats, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.783516125969337,55.63758019678909]}},{"type":"Feature","properties":{"id":"douglas-isle-of-man","name":"Douglas, Isle of Man","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.480879621608963,54.15027516173659]}},{"type":"Feature","properties":{"id":"silecroft-beach-united-kingdom","name":"Silecroft Beach, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.35714994891956,54.21062739961812]}},{"type":"Feature","properties":{"id":"groudle-bay-isle-of-man","name":"Groudle Bay, Isle of Man","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.423897240100775,54.16697942720116]}},{"type":"Feature","properties":{"id":"ras-lanuf-libya","name":"Ras Lanuf, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.41187759844718,30.586737502695293]}},{"type":"Feature","properties":{"id":"faial-portugal","name":"Faial, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-28.647561720454593,38.525099690783364]}},{"type":"Feature","properties":{"id":"graciosa-portugal","name":"Graciosa, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-27.963480173814336,39.01102990331266]}},{"type":"Feature","properties":{"id":"corvo-portugal","name":"Corvo, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-31.110548256901776,39.67193532519225]}},{"type":"Feature","properties":{"id":"flores-portugal","name":"Flores, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-31.128516994172585,39.462211754202585]}},{"type":"Feature","properties":{"id":"piedra-santa-spain","name":"Piedra Santa, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.408801567666467,28.04062233001219]}},{"type":"Feature","properties":{"id":"las-caletillas-spain","name":"Las Caletillas, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.36236534527797,28.37727858251394]}},{"type":"Feature","properties":{"id":"sihanoukville-cambodia","name":"Sihanoukville, Cambodia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.5066415352679,10.630005631197276]}},{"type":"Feature","properties":{"id":"kralendijk-bonaire-netherlands","name":"Kralendijk, Bonaire, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.27668403743753,12.150684714118114]}},{"type":"Feature","properties":{"id":"north-salina-bonaire-sint-eustatius-and-saba","name":"North Salina, Bonaire, Sint Eustatius and Saba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.28414900000034,12.1638160000004]}},{"type":"Feature","properties":{"id":"ratmalana-sri-lanka","name":"Ratmalana, Sri Lanka","is_tbd":false},"geometry":{"type":"Point","coordinates":[79.88927545353178,6.820387603783256]}},{"type":"Feature","properties":{"id":"mataram-indonesia","name":"Mataram, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.08153497084551,-8.586389151919366]}},{"type":"Feature","properties":{"id":"beculuk-indonesia","name":"Beculuk, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.09706372041353,-8.615634129813643]}},{"type":"Feature","properties":{"id":"toweli-indonesia","name":"Toweli, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.38836856575348,-1.142467701149998]}},{"type":"Feature","properties":{"id":"sangata-indonesia","name":"Sangata, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[117.55096752363566,0.326887363868111]}},{"type":"Feature","properties":{"id":"pankalan-indonesia","name":"Pankalan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[111.75292475602346,-2.849667399839222]}},{"type":"Feature","properties":{"id":"ketapang-indonesia","name":"Ketapang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[109.97187133023849,-1.859123326919139]}},{"type":"Feature","properties":{"id":"banjarmasin-indonesia","name":"Banjarmasin, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.60399695504718,-3.327961488455888]}},{"type":"Feature","properties":{"id":"pontianak-indonesia","name":"Pontianak, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[109.33564131219983,-0.02740748572126]}},{"type":"Feature","properties":{"id":"klagshamn-sweden","name":"Klagshamn, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.916666647556017,55.53329310071712]}},{"type":"Feature","properties":{"id":"brondby-denmark","name":"Brondby, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.41490919050584,55.64724561414846]}},{"type":"Feature","properties":{"id":"sirte-libya","name":"Sirte, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[16.588343734005548,31.205251640496304]}},{"type":"Feature","properties":{"id":"misuratah-libya","name":"Misuratah, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.094790104552972,32.37427884369104]}},{"type":"Feature","properties":{"id":"al-khums-libya","name":"Al Khums, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.26441959904531,32.64966152384897]}},{"type":"Feature","properties":{"id":"zawia-libya","name":"Zawia, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.529752859149395,32.774720416295295]}},{"type":"Feature","properties":{"id":"zuwara-libya","name":"Zuwara, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.083366456623823,32.93337907602355]}},{"type":"Feature","properties":{"id":"hermosa-beach-ca-united-states","name":"Hermosa Beach, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-118.39954892055475,33.862232632157735]}},{"type":"Feature","properties":{"id":"sandy-point-vic-australia","name":"Sandy Point, VIC, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[146.11969728527944,-38.82018266620627]}},{"type":"Feature","properties":{"id":"four-mile-bluff-tas-australia","name":"Four Mile Bluff, TAS, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[146.85016551780996,-41.03327707528322]}},{"type":"Feature","properties":{"id":"mcgaurans-beach-vic-australia","name":"McGaurans Beach, VIC, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[147.07125911118302,-38.44361560267599]}},{"type":"Feature","properties":{"id":"stanley-tas-australia","name":"Stanley, TAS, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.29411193263084,-40.760375144220674]}},{"type":"Feature","properties":{"id":"inverloch-vic-australia","name":"Inverloch, VIC, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.72946318672496,-38.63345276915476]}},{"type":"Feature","properties":{"id":"boat-harbour-tas-australia","name":"Boat Harbour, TAS, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.62379919907835,-40.95086828582336]}},{"type":"Feature","properties":{"id":"balboa-panama","name":"Balboa, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.56667848090554,8.950027090049982]}},{"type":"Feature","properties":{"id":"manta-ecuador","name":"Manta, Ecuador","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.71618938533148,-0.950019548909037]}},{"type":"Feature","properties":{"id":"hudishibana-aruba","name":"Hudishibana, Aruba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.04997379684741,12.616634445885316]}},{"type":"Feature","properties":{"id":"tyra-denmark","name":"Tyra, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.748508371456093,55.71560692113311]}},{"type":"Feature","properties":{"id":"valdemar-denmark","name":"Valdemar, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.564328814430503,55.80407237566748]}},{"type":"Feature","properties":{"id":"south-arne-denmark","name":"South Arne, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.228391552411684,56.07828845791397]}},{"type":"Feature","properties":{"id":"ajaccio-france","name":"Ajaccio, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.738642263557752,41.91932911005837]}},{"type":"Feature","properties":{"id":"la-seyne-france","name":"La Seyne, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.878097414994473,43.1029080448373]}},{"type":"Feature","properties":{"id":"lle-rousse-france","name":"L’Île-Rousse, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.937079622982862,42.6365095071255]}},{"type":"Feature","properties":{"id":"peel-isle-of-man","name":"Peel, Isle of Man","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.691426347455632,54.22244748636314]}},{"type":"Feature","properties":{"id":"ballywater-united-kingdom","name":"Ballywater, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.484394535704497,54.542741580201856]}},{"type":"Feature","properties":{"id":"port-grenaugh-isle-of-man","name":"Port Grenaugh, Isle of Man","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.566670576458828,54.09999306170466]}},{"type":"Feature","properties":{"id":"hulhumale-maldives","name":"Hulhumale, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.54015885755544,4.211942635751779]}},{"type":"Feature","properties":{"id":"kulhudhufushi-maldives","name":"Kulhudhufushi, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.07140918962199,6.622441345756148]}},{"type":"Feature","properties":{"id":"eydhafushi-maldives","name":"Eydhafushi, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.07082325253708,5.10323036500878]}},{"type":"Feature","properties":{"id":"dhangethi-maldives","name":"Dhangethi, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.95558895917019,3.608093477293043]}},{"type":"Feature","properties":{"id":"gan-maldives","name":"Gan, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.54465104187312,1.918411782935871]}},{"type":"Feature","properties":{"id":"gahdhoo-maldives","name":"Gahdhoo, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.45549094878496,0.288802003782011]}},{"type":"Feature","properties":{"id":"diego-garcia-british-indian-ocean-territory","name":"Diego Garcia, British Indian Ocean Territory","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.416672,-7.333330000000503]}},{"type":"Feature","properties":{"id":"hithadhoo-maldives","name":"Hithadhoo, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.08918261453131,-0.606021265123826]}},{"type":"Feature","properties":{"id":"fuvahmulah-maldives","name":"Fuvahmulah, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.42687768780485,-0.298304384685104]}},{"type":"Feature","properties":{"id":"port-gentil-gabon","name":"Port Gentil, Gabon","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.781610983118252,-0.721040306475029]}},{"type":"Feature","properties":{"id":"lusk-ireland","name":"Lusk, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.165888193558025,53.52625445974578]}},{"type":"Feature","properties":{"id":"tobruk-libya","name":"Tobruk, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[23.960311167883617,32.079604155442446]}},{"type":"Feature","properties":{"id":"al-bayda-libya","name":"Al Bayda, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.74166039584776,32.88172722141822]}},{"type":"Feature","properties":{"id":"tolmeta-libya","name":"Tolmeta, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.949961737944495,32.71673198238239]}},{"type":"Feature","properties":{"id":"benghazi-libya","name":"Benghazi, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.066759238613432,32.11658375707056]}},{"type":"Feature","properties":{"id":"brega-libya","name":"Brega, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.576525210899817,30.378108493012235]}},{"type":"Feature","properties":{"id":"fish-camp-ak-united-states","name":"Fish Camp, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.85885536783067,59.94919988638963]}},{"type":"Feature","properties":{"id":"nondalton-ak-united-states","name":"Nondalton, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.84772256321745,59.972649771731774]}},{"type":"Feature","properties":{"id":"newhalen-ak-united-states","name":"Newhalen, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.899773307594,59.7181450195821]}},{"type":"Feature","properties":{"id":"kokhanok-ak-united-states","name":"Kokhanok, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.75275192737027,59.44215809995201]}},{"type":"Feature","properties":{"id":"pile-bay-ak-united-states","name":"Pile Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-153.88048692029113,59.776054476860836]}},{"type":"Feature","properties":{"id":"illiamna-ak-united-states","name":"Illiamna, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.90612095934728,59.754765229743505]}},{"type":"Feature","properties":{"id":"pedro-bay-ak-united-states","name":"Pedro Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.10612152607442,59.7872115404838]}},{"type":"Feature","properties":{"id":"williamsport-ak-united-states","name":"Williamsport, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-153.63214725246726,59.682402835634406]}},{"type":"Feature","properties":{"id":"mchugh-point-ak-united-states","name":"McHugh Point, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.73219884335225,61.01571463051166]}},{"type":"Feature","properties":{"id":"portage-ak-united-states","name":"Portage, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-148.98981655676278,60.82828925189919]}},{"type":"Feature","properties":{"id":"matara-sri-lanka","name":"Matara, Sri Lanka","is_tbd":false},"geometry":{"type":"Point","coordinates":[80.53986093015084,5.940833037393244]}},{"type":"Feature","properties":{"id":"kuakata-bangladesh","name":"Kuakata, Bangladesh","is_tbd":false},"geometry":{"type":"Point","coordinates":[90.11661195839058,21.816735551700102]}},{"type":"Feature","properties":{"id":"ngwe-saung-myanmar","name":"Ngwe Saung, Myanmar","is_tbd":false},"geometry":{"type":"Point","coordinates":[94.39121830521923,16.858028367792194]}},{"type":"Feature","properties":{"id":"yanbu-saudi-arabia","name":"Yanbu, Saudi Arabia","is_tbd":false},"geometry":{"type":"Point","coordinates":[38.10698083375123,24.070555564820936]}},{"type":"Feature","properties":{"id":"toulon-france","name":"Toulon, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.930343471732967,43.12529261338072]}},{"type":"Feature","properties":{"id":"buenaventura-colombia","name":"Buenaventura, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.0403008760841,3.883674880769303]}},{"type":"Feature","properties":{"id":"puerto-chacabuco-chile","name":"Puerto Chacabuco, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.805098798216,-45.45830050296172]}},{"type":"Feature","properties":{"id":"quellon-chile","name":"Quellon, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.47946355486467,-43.117473610870405]}},{"type":"Feature","properties":{"id":"gav-spain","name":"Gavá, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.001342348824283,41.304002941820244]}},{"type":"Feature","properties":{"id":"fomboni-moheli-comoros","name":"Fomboni Moheli, Comoros","is_tbd":false},"geometry":{"type":"Point","coordinates":[43.73959403105522,-12.288236282174532]}},{"type":"Feature","properties":{"id":"mutsamudu-comoros","name":"Mutsamudu, Comoros","is_tbd":false},"geometry":{"type":"Point","coordinates":[44.400042781936996,-12.16665664973713]}},{"type":"Feature","properties":{"id":"chindini-comoros","name":"Chindini, Comoros","is_tbd":false},"geometry":{"type":"Point","coordinates":[43.48910592725337,-11.923498177297583]}},{"type":"Feature","properties":{"id":"cadiz-city-philippines","name":"Cadiz City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.29998688847635,10.950026359206582]}},{"type":"Feature","properties":{"id":"coilleag-united-kingdom","name":"Coilleag, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.302215513573107,57.07361367890789]}},{"type":"Feature","properties":{"id":"ardbeg-point-united-kingdom","name":"Ardbeg Point, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.063594052558523,55.858590024607395]}},{"type":"Feature","properties":{"id":"ardyne-point-united-kingdom","name":"Ardyne Point, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.019990567822677,55.86941315469073]}},{"type":"Feature","properties":{"id":"ardgour-united-kingdom","name":"Ardgour, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.233662291455637,56.72156793829049]}},{"type":"Feature","properties":{"id":"raglan-new-zealand","name":"Raglan, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.87182535450324,-37.8013819587598]}},{"type":"Feature","properties":{"id":"ola-russia","name":"Ola, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.2833655022884,59.5833440417752]}},{"type":"Feature","properties":{"id":"okha-russia","name":"Okha, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[142.94245344231877,53.5775487202457]}},{"type":"Feature","properties":{"id":"ust-bolsheretsk-russia","name":"Ust-Bolsheretsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[156.28707289511507,52.812414384362135]}},{"type":"Feature","properties":{"id":"porthcressa-beach-united-kingdom","name":"Porthcressa Beach, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.308173249011959,49.919905077432276]}},{"type":"Feature","properties":{"id":"mogadishu-somalia","name":"Mogadishu, Somalia","is_tbd":false},"geometry":{"type":"Point","coordinates":[45.344182738099455,2.041189900937192]}},{"type":"Feature","properties":{"id":"satun-thailand","name":"Satun, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.06611799999914,6.613467]}},{"type":"Feature","properties":{"id":"rayong-thailand","name":"Rayong, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[101.27734623952158,12.670662766448473]}},{"type":"Feature","properties":{"id":"cherating-malaysia","name":"Cherating, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.39365333405976,4.130238298773818]}},{"type":"Feature","properties":{"id":"davao-philippines","name":"Davao, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.61277821882337,7.079988883160643]}},{"type":"Feature","properties":{"id":"ilyich-russia","name":"Ilyich, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[36.77084896777956,45.42360850409014]}},{"type":"Feature","properties":{"id":"kerch-ukraine","name":"Kerch, Ukraine","is_tbd":false},"geometry":{"type":"Point","coordinates":[36.477392144417024,45.35698172208115]}},{"type":"Feature","properties":{"id":"domburg-netherlands","name":"Domburg, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[3.496165508627551,51.56395317878603]}},{"type":"Feature","properties":{"id":"aldeburgh-united-kingdom","name":"Aldeburgh, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.590600452297692,52.1578426448517]}},{"type":"Feature","properties":{"id":"port-hedland-wa-australia","name":"Port Hedland, WA, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.57723632786723,-20.31345781610387]}},{"type":"Feature","properties":{"id":"darwin-nt-australia","name":"Darwin, NT, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.8431456073319,-12.467490679762426]}},{"type":"Feature","properties":{"id":"igiugig-ak-united-states","name":"Igiugig, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-155.8947433058731,59.327800128586105]}},{"type":"Feature","properties":{"id":"port-alsworth-ak-united-states","name":"Port Alsworth, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-154.3369319094411,60.200371500530665]}},{"type":"Feature","properties":{"id":"dumaguete-philippines","name":"Dumaguete, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.28143221412073,9.295611105669924]}},{"type":"Feature","properties":{"id":"ozamiz-city-philippines","name":"Ozamiz City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.84998649885156,8.15002871017614]}},{"type":"Feature","properties":{"id":"cagayan-de-oro-philippines","name":"Cagayan de Oro, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.6319195386728,8.454228346754538]}},{"type":"Feature","properties":{"id":"butuan-city-philippines","name":"Butuan City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.54061030119786,8.947615403087521]}},{"type":"Feature","properties":{"id":"san-jose-de-buenavista-philippines","name":"San Jose de Buenavista, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.94129644473541,10.748806024464415]}},{"type":"Feature","properties":{"id":"santiago-de-cuba-cuba","name":"Santiago de Cuba, Cuba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.82897360919968,20.028793830551784]}},{"type":"Feature","properties":{"id":"killala-ireland","name":"Killala, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-9.23219461510775,54.20682940735113]}},{"type":"Feature","properties":{"id":"cork-ireland","name":"Cork, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-8.472771324965343,51.89833468681305]}},{"type":"Feature","properties":{"id":"milton-nl-canada","name":"Milton, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-53.96023910121645,48.20761257904667]}},{"type":"Feature","properties":{"id":"pacific-city-or-united-states","name":"Pacific City, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.9626309171155,45.201924825052444]}},{"type":"Feature","properties":{"id":"labuan-bajo-indonesia","name":"Labuan Bajo, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.90756399999964,-8.475551000000419]}},{"type":"Feature","properties":{"id":"sape-indonesia","name":"Sape, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.97619999999958,-8.505600000000262]}},{"type":"Feature","properties":{"id":"ende-indonesia","name":"Ende, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.64273999999965,-8.845699000000248]}},{"type":"Feature","properties":{"id":"sumbawa-besar-indonesia","name":"Sumbawa Besar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.08221700000053,-8.84115000000092]}},{"type":"Feature","properties":{"id":"bima-indonesia","name":"Bima, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.74490299999954,-8.464266]}},{"type":"Feature","properties":{"id":"saraemee-indonesia","name":"Saraemee, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.71180654503641,-8.796931179918277]}},{"type":"Feature","properties":{"id":"waingapu-indonesia","name":"Waingapu, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.25301639072892,-9.64615484323023]}},{"type":"Feature","properties":{"id":"kupang-indonesia","name":"Kupang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.5833851252144,-10.183308656195656]}},{"type":"Feature","properties":{"id":"taytay-philippines","name":"Taytay, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.50038020515338,10.819603438863586]}},{"type":"Feature","properties":{"id":"san-jose-philippines","name":"San Jose, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.05008613857723,12.362623239786029]}},{"type":"Feature","properties":{"id":"coron-philippines","name":"Coron, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.20067267780973,12.004960160699559]}},{"type":"Feature","properties":{"id":"el-quawef-libya","name":"El-Quawef, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.08736115072189,31.760813307797136]}},{"type":"Feature","properties":{"id":"mouly-new-caledonia","name":"Mouly, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[166.48901879296093,-20.70593760646555]}},{"type":"Feature","properties":{"id":"xepenehe-new-caledonia","name":"Xepenehe, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.1513230112785,-20.7809160007802]}},{"type":"Feature","properties":{"id":"poindimie-new-caledonia","name":"Poindimie, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[165.34155866833254,-20.945878679076127]}},{"type":"Feature","properties":{"id":"angra-do-heroismo-portugal","name":"Angra do Heroismo, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-27.215824453460687,38.65852273411055]}},{"type":"Feature","properties":{"id":"vila-do-porto-portugal","name":"Vila do Porto, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-25.14126537622283,36.95676381760329]}},{"type":"Feature","properties":{"id":"sao-mateus-portugal","name":"Sao Mateus, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-28.46123372745104,38.43229047782683]}},{"type":"Feature","properties":{"id":"velas-portugal","name":"Velas, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-28.2131870281707,38.683845455403926]}},{"type":"Feature","properties":{"id":"porto-santo-portugal","name":"Porto Santo, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.347668090064676,33.047316301636776]}},{"type":"Feature","properties":{"id":"funchal-portugal","name":"Funchal, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.908946989325337,32.64686582848514]}},{"type":"Feature","properties":{"id":"toco-trinidad-and-tobago","name":"Toco, Trinidad and Tobago","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.94968727482579,10.831137615524929]}},{"type":"Feature","properties":{"id":"pigeon-point-trinidad-and-tobago","name":"Pigeon Point, Trinidad and Tobago","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.84031235230797,11.16540972374498]}},{"type":"Feature","properties":{"id":"kaliko-haiti","name":"Kaliko, Haiti","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.60871221858814,18.86458746066303]}},{"type":"Feature","properties":{"id":"huahine-french-polynesia","name":"Huahine, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.0000690389311,-16.730055979033075]}},{"type":"Feature","properties":{"id":"moorea-french-polynesia","name":"Moorea, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.82956205562922,-17.538774974102118]}},{"type":"Feature","properties":{"id":"uturoa-french-polynesia","name":"Uturoa, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.4430374751281,-16.73090937041819]}},{"type":"Feature","properties":{"id":"vaitape-french-polynesia","name":"Vaitape, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.7495313986299,-16.506324613958466]}},{"type":"Feature","properties":{"id":"nasugbu-philippines","name":"Nasugbu, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.62301068928154,14.088187386038742]}},{"type":"Feature","properties":{"id":"pinamalayan-philippines","name":"Pinamalayan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.46453896997501,13.045778897500922]}},{"type":"Feature","properties":{"id":"roxas-city-philippines","name":"Roxas City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.74998727810134,11.583305826411662]}},{"type":"Feature","properties":{"id":"masbate-city-philippines","name":"Masbate City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.61668588287377,12.36672505260177]}},{"type":"Feature","properties":{"id":"legazpi-city-philippines","name":"Legazpi City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.74373657411985,13.139089344982024]}},{"type":"Feature","properties":{"id":"calbayog-philippines","name":"Calbayog, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.60027893608729,12.069906190827878]}},{"type":"Feature","properties":{"id":"ormoc-philippines","name":"Ormoc, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.61277892723209,11.006888634178475]}},{"type":"Feature","properties":{"id":"cebu-philippines","name":"Cebu, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.89461537348717,10.310033388932034]}},{"type":"Feature","properties":{"id":"fujairah-united-arab-emirates","name":"Fujairah, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[56.33372573425405,25.12169311729696]}},{"type":"Feature","properties":{"id":"penang-malaysia","name":"Penang, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.40982400223058,5.368393581488473]}},{"type":"Feature","properties":{"id":"songkhla-thailand","name":"Songkhla, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.5951000000003,7.198819999999446]}},{"type":"Feature","properties":{"id":"island-park-ny-united-states","name":"Island Park, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.6559282736054,40.60030327678829]}},{"type":"Feature","properties":{"id":"danang-vietnam","name":"Danang, Vietnam","is_tbd":false},"geometry":{"type":"Point","coordinates":[108.21474366875417,16.051559827539638]}},{"type":"Feature","properties":{"id":"mersing-malaysia","name":"Mersing, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.84990301084824,2.295511672819276]}},{"type":"Feature","properties":{"id":"tuas-singapore","name":"Tuas, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.64707112328632,1.338192522185158]}},{"type":"Feature","properties":{"id":"tuckerton-nj-united-states","name":"Tuckerton, NJ, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.33791021235805,39.60388495499803]}},{"type":"Feature","properties":{"id":"boca-raton-fl-united-states","name":"Boca Raton, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.08894373592818,26.350323169523403]}},{"type":"Feature","properties":{"id":"naha-japan","name":"Naha, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.68055019149426,26.21241384638718]}},{"type":"Feature","properties":{"id":"toucheng-taiwan","name":"Toucheng, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.80145279380189,24.863592858849902]}},{"type":"Feature","properties":{"id":"karachi-pakistan","name":"Karachi, Pakistan","is_tbd":false},"geometry":{"type":"Point","coordinates":[67.02854237669561,24.88937409747322]}},{"type":"Feature","properties":{"id":"haramous-djibouti","name":"Haramous, Djibouti","is_tbd":false},"geometry":{"type":"Point","coordinates":[43.16166943911836,11.57367892559012]}},{"type":"Feature","properties":{"id":"yeroskipos-cyprus","name":"Yeroskipos, Cyprus","is_tbd":false},"geometry":{"type":"Point","coordinates":[32.46655514198169,34.76641137968897]}},{"type":"Feature","properties":{"id":"kahe-point-hi-united-states","name":"Kahe Point, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.1305815657343,21.35398165191293]}},{"type":"Feature","properties":{"id":"valparaso-chile","name":"Valparaíso, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.62048049678572,-33.045765558769304]}},{"type":"Feature","properties":{"id":"lurin-peru","name":"Lurin, Peru","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.87428536869109,-12.278527239265857]}},{"type":"Feature","properties":{"id":"rio-de-janeiro-brazil","name":"Rio de Janeiro, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-43.209563123346165,-22.90339400756494]}},{"type":"Feature","properties":{"id":"santos-brazil","name":"Santos, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-46.32806677354495,-23.961845467703107]}},{"type":"Feature","properties":{"id":"las-toninas-argentina","name":"Las Toninas, Argentina","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.695491069788275,-36.47252952471871]}},{"type":"Feature","properties":{"id":"maldonado-uruguay","name":"Maldonado, Uruguay","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.95017980618316,-34.900379504866834]}},{"type":"Feature","properties":{"id":"fort-amador-panama","name":"Fort Amador, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.54673220597367,8.934109660849998]}},{"type":"Feature","properties":{"id":"maruyama-japan","name":"Maruyama, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.97546699999984,35.005432999999265]}},{"type":"Feature","properties":{"id":"makaha-hi-united-states","name":"Makaha, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.2206478576183,21.463431186887963]}},{"type":"Feature","properties":{"id":"morro-bay-ca-united-states","name":"Morro Bay, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-120.84720343661348,35.3666813511006]}},{"type":"Feature","properties":{"id":"porthcurno-united-kingdom","name":"Porthcurno, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.654511602696961,50.043048657721435]}},{"type":"Feature","properties":{"id":"estepona-spain","name":"Estepona, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.145869384899948,36.42710220192439]}},{"type":"Feature","properties":{"id":"suva-fiji","name":"Suva, Fiji","is_tbd":false},"geometry":{"type":"Point","coordinates":[178.43744782858172,-18.123812280017187]}},{"type":"Feature","properties":{"id":"savona-italy","name":"Savona, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.483759631619103,44.305540140669045]}},{"type":"Feature","properties":{"id":"baby-beach-aruba","name":"Baby Beach, Aruba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.87868485568913,12.414141621401608]}},{"type":"Feature","properties":{"id":"halifax-ns-canada","name":"Halifax, NS, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.573952993896306,44.64579771640326]}},{"type":"Feature","properties":{"id":"lynn-ma-united-states","name":"Lynn, MA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.95026612782192,42.46366906639672]}},{"type":"Feature","properties":{"id":"dublin-ireland","name":"Dublin, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.248261182079236,53.348045408252375]}},{"type":"Feature","properties":{"id":"southport-united-kingdom","name":"Southport, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.006368947416131,53.64793071295795]}},{"type":"Feature","properties":{"id":"bude-united-kingdom","name":"Bude, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.544404967232005,50.82811048000128]}},{"type":"Feature","properties":{"id":"san-juan-pr-united-states","name":"San Juan, PR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.10666604344867,18.465839112933374]}},{"type":"Feature","properties":{"id":"arica-chile","name":"Arica, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.30671189622174,-18.473810108334412]}},{"type":"Feature","properties":{"id":"changi-north-singapore","name":"Changi North, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.9870122887188,1.389044778364265]}},{"type":"Feature","properties":{"id":"marmaris-turkey","name":"Marmaris, Turkey","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.25366750143074,36.85524944302755]}},{"type":"Feature","properties":{"id":"mazara-del-vallo-italy","name":"Mazara del Vallo, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.591276253065702,37.650130188288585]}},{"type":"Feature","properties":{"id":"sesimbra-portugal","name":"Sesimbra, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-9.1027513474316,38.44269349871853]}},{"type":"Feature","properties":{"id":"goonhilly-downs-united-kingdom","name":"Goonhilly Downs, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.174531473969396,50.0248026869269]}},{"type":"Feature","properties":{"id":"sylt-germany","name":"Sylt, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.383369077736644,54.89850565849031]}},{"type":"Feature","properties":{"id":"dakar-senegal","name":"Dakar, Senegal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-17.451915354680473,14.686597713745336]}},{"type":"Feature","properties":{"id":"conil-de-la-frontera-spain","name":"Conil de la Frontera, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.087226139907921,36.2765632358394]}},{"type":"Feature","properties":{"id":"nassau-bahamas","name":"Nassau, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.34025183547105,25.067038149721757]}},{"type":"Feature","properties":{"id":"crooked-island-bahamas","name":"Crooked Island, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.19499039172877,22.629711836470232]}},{"type":"Feature","properties":{"id":"providenciales-turks-and-caicos-islands","name":"Providenciales, Turks and Caicos Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.12023600213026,21.851092241181057]}},{"type":"Feature","properties":{"id":"punta-cana-dominican-republic","name":"Punta Cana, Dominican Republic","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.43825618860332,18.621279512611874]}},{"type":"Feature","properties":{"id":"puerto-plata-dominican-republic","name":"Puerto Plata, Dominican Republic","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.6912331081983,19.79934388457018]}},{"type":"Feature","properties":{"id":"riohacha-colombia","name":"Riohacha, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.95270611552462,11.482908943707109]}},{"type":"Feature","properties":{"id":"bluefields-nicaragua","name":"Bluefields, Nicaragua","is_tbd":false},"geometry":{"type":"Point","coordinates":[-83.77146065844866,11.991778023043153]}},{"type":"Feature","properties":{"id":"puerto-lempira-honduras","name":"Puerto Lempira, Honduras","is_tbd":false},"geometry":{"type":"Point","coordinates":[-83.77675850625805,15.261220674450207]}},{"type":"Feature","properties":{"id":"trujillo-honduras","name":"Trujillo, Honduras","is_tbd":false},"geometry":{"type":"Point","coordinates":[-85.95475989302918,15.915150827636316]}},{"type":"Feature","properties":{"id":"puerto-barrios-guatemala","name":"Puerto Barrios, Guatemala","is_tbd":false},"geometry":{"type":"Point","coordinates":[-88.59723848982233,15.727143540875408]}},{"type":"Feature","properties":{"id":"hillsboro-or-united-states","name":"Hillsboro, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.98980067645105,45.522898824562965]}},{"type":"Feature","properties":{"id":"cagliari-italy","name":"Cagliari, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.109345125948376,39.21530980337921]}},{"type":"Feature","properties":{"id":"civitavecchia-italy","name":"Civitavecchia, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.796843222099477,42.091130652249426]}},{"type":"Feature","properties":{"id":"olbia-italy","name":"Olbia, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.49644289999974,40.923576400000215]}},{"type":"Feature","properties":{"id":"khark-island-iran","name":"Khark Island, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.31205031256539,29.245773309269826]}},{"type":"Feature","properties":{"id":"soroosh-platform-iran","name":"Soroosh Platform, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[49.47806652836741,29.072484050458698]}},{"type":"Feature","properties":{"id":"diba-oman","name":"Diba, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[56.258042194119106,25.616974601949348]}},{"type":"Feature","properties":{"id":"tanah-merah-singapore","name":"Tanah Merah, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.9465826298595,1.327257988673153]}},{"type":"Feature","properties":{"id":"nanhui-china","name":"Nanhui, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.92506915087795,30.864713861582327]}},{"type":"Feature","properties":{"id":"west-palm-beach-fl-united-states","name":"West Palm Beach, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.05334805801945,26.715357789296696]}},{"type":"Feature","properties":{"id":"magens-bay-vi-united-states","name":"Magen’s Bay, VI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.93708679386458,18.372989080105853]}},{"type":"Feature","properties":{"id":"samandag-turkey","name":"Samandag, Turkey","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.99926748312506,36.08233778303261]}},{"type":"Feature","properties":{"id":"girne-cyprus","name":"Girne, Cyprus","is_tbd":false},"geometry":{"type":"Point","coordinates":[33.23628115920059,35.2991225036909]}},{"type":"Feature","properties":{"id":"bozyazi-turkey","name":"Bozyazi, Turkey","is_tbd":false},"geometry":{"type":"Point","coordinates":[32.966701999999856,36.09999800000024]}},{"type":"Feature","properties":{"id":"daet-philippines","name":"Daet, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.94988948023871,14.116616393710665]}},{"type":"Feature","properties":{"id":"st-ouens-bay-jersey","name":"St. Ouens Bay, Jersey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.225900750307065,49.215711233966566]}},{"type":"Feature","properties":{"id":"archirondel-jersey","name":"Archirondel, Jersey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.021311051490342,49.22527885088672]}},{"type":"Feature","properties":{"id":"duncan-town-bahamas","name":"Duncan Town, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.73346586435832,22.183261833926533]}},{"type":"Feature","properties":{"id":"cannes-france","name":"Cannes, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.01735442043418,43.552927166028965]}},{"type":"Feature","properties":{"id":"alsgarde-denmark","name":"Alsgarde, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.536881760350429,56.074882184341305]}},{"type":"Feature","properties":{"id":"kristiansand-norway","name":"Kristiansand, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.996259976968266,58.15095596477219]}},{"type":"Feature","properties":{"id":"monte-carlo-monaco","name":"Monte Carlo, Monaco","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.42721741133341,43.73973086446908]}},{"type":"Feature","properties":{"id":"otranto-italy","name":"Otranto, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.48570567114653,40.14805341338409]}},{"type":"Feature","properties":{"id":"umag-croatia","name":"Umag, Croatia","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.520181845020224,45.43310919075176]}},{"type":"Feature","properties":{"id":"mestre-italy","name":"Mestre, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.244108530252593,45.49587287439114]}},{"type":"Feature","properties":{"id":"vaasa-finland","name":"Vaasa, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.6163675158564,63.09519496029314]}},{"type":"Feature","properties":{"id":"ume-sweden","name":"Umeå, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.262950505879612,63.82586986108827]}},{"type":"Feature","properties":{"id":"nynashamn-sweden","name":"Nynashamn, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[17.94654589684356,58.902924681852696]}},{"type":"Feature","properties":{"id":"meremisa-estonia","name":"Meremöisa, Estonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.276619537558968,59.40084650364711]}},{"type":"Feature","properties":{"id":"dubrovnik-croatia","name":"Dubrovnik, Croatia","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.106409064843877,42.64186152795143]}},{"type":"Feature","properties":{"id":"aethos-greece","name":"Aethos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.01544924229398,39.683615198996556]}},{"type":"Feature","properties":{"id":"corfu-greece","name":"Corfu, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.9194937179377,39.61929827180403]}},{"type":"Feature","properties":{"id":"durres-albania","name":"Durres, Albania","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.45006045673864,41.316693174085714]}},{"type":"Feature","properties":{"id":"bridgetown-barbados","name":"Bridgetown, Barbados","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.61336009649245,13.098954014787664]}},{"type":"Feature","properties":{"id":"castries-saint-lucia","name":"Castries, Saint Lucia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.00681614060512,13.994222056803721]}},{"type":"Feature","properties":{"id":"pointe-a-pitre-guadeloupe","name":"Pointe-a-Pitre, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.53308529904113,16.241044022954217]}},{"type":"Feature","properties":{"id":"roseau-dominica","name":"Roseau, Dominica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.37073189842878,15.251799221840017]}},{"type":"Feature","properties":{"id":"the-valley-anguilla","name":"The Valley, Anguilla","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.0572053130902,18.217405253293137]}},{"type":"Feature","properties":{"id":"mayaguana-bahamas","name":"Mayaguana, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.0641318178386,22.40156502331468]}},{"type":"Feature","properties":{"id":"kuala-tungkal-indonesia","name":"Kuala Tungkal, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.46670015731281,-0.816539442758962]}},{"type":"Feature","properties":{"id":"batam-indonesia","name":"Batam, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.01664054897991,1.066796188550793]}},{"type":"Feature","properties":{"id":"sakra-island-singapore","name":"Sakra Island, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.70419998906566,1.258916074584671]}},{"type":"Feature","properties":{"id":"grover-beach-ca-united-states","name":"Grover Beach, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-120.62142234655879,35.1206334382351]}},{"type":"Feature","properties":{"id":"shima-japan","name":"Shima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[136.87439133474103,34.33683057441225]}},{"type":"Feature","properties":{"id":"ajigaura-japan","name":"Ajigaura, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.61227931178595,36.38355921004956]}},{"type":"Feature","properties":{"id":"brookhaven-ny-united-states","name":"Brookhaven, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.91227645666531,40.773148001414974]}},{"type":"Feature","properties":{"id":"beverwijk-netherlands","name":"Beverwijk, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.656906873847417,52.48631265079464]}},{"type":"Feature","properties":{"id":"whitesands-bay-united-kingdom","name":"Whitesands Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.6984568840657,50.07851709909518]}},{"type":"Feature","properties":{"id":"tijuana-mexico","name":"Tijuana, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-117.03822175993173,32.53084977596535]}},{"type":"Feature","properties":{"id":"northport-ny-united-states","name":"Northport, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.34411208824892,40.90945509894606]}},{"type":"Feature","properties":{"id":"takapuna-new-zealand","name":"Takapuna, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.76791917811025,-36.78796527793357]}},{"type":"Feature","properties":{"id":"whenuapai-new-zealand","name":"Whenuapai, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.6233880304975,-36.788806016342754]}},{"type":"Feature","properties":{"id":"surville-france","name":"Surville, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.650022252014811,49.28329065675959]}},{"type":"Feature","properties":{"id":"greve-de-lecq-jersey","name":"Greve de Lecq, Jersey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.201437877011841,49.24794670647614]}},{"type":"Feature","properties":{"id":"havelet-bay-guernsey","name":"Havelet Bay, Guernsey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.529513816474767,49.4509894968767]}},{"type":"Feature","properties":{"id":"new-victoria-ns-canada","name":"New Victoria, NS, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.12957066830409,46.25290729969465]}},{"type":"Feature","properties":{"id":"rose-blanche-nl-canada","name":"Rose Blanche, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-58.68660294051598,47.61768929491325]}},{"type":"Feature","properties":{"id":"lancresse-bay-guernsey","name":"L'Ancresse Bay, Guernsey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.533468891797979,49.503393052866365]}},{"type":"Feature","properties":{"id":"saints-bay-guernsey","name":"Saints Bay, Guernsey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.55802942127399,49.42332555697762]}},{"type":"Feature","properties":{"id":"pembroke-guernsey","name":"Pembroke, Guernsey","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.537619279482766,49.50954423335227]}},{"type":"Feature","properties":{"id":"malabo-equatorial-guinea","name":"Malabo, Equatorial Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.783368794372972,3.749792920040749]}},{"type":"Feature","properties":{"id":"palma-spain","name":"Palma, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.60524817101164,39.55232558289561]}},{"type":"Feature","properties":{"id":"santa-cruz-de-la-palma-canary-islands-spain","name":"Santa Cruz de La Palma, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-17.76524521083967,28.663181918946645]}},{"type":"Feature","properties":{"id":"granadilla-de-abona-spain","name":"Granadilla de Abona, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.518053538916995,28.059115806261115]}},{"type":"Feature","properties":{"id":"nukualofa-tonga","name":"Nuku'alofa, Tonga","is_tbd":false},"geometry":{"type":"Point","coordinates":[-175.2000320590245,-21.133285523298625]}},{"type":"Feature","properties":{"id":"fresh-creek-bahamas","name":"Fresh Creek, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.84460938833539,24.689806158505295]}},{"type":"Feature","properties":{"id":"port-nelson-bahamas","name":"Port Nelson, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.84054657503567,23.652143168499897]}},{"type":"Feature","properties":{"id":"george-town-bahamas","name":"George Town, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.78800684134592,23.516551982193732]}},{"type":"Feature","properties":{"id":"clarence-town-bahamas","name":"Clarence Town, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.96618125165993,23.09834303441083]}},{"type":"Feature","properties":{"id":"cockburn-town-bahamas","name":"Cockburn Town, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.53024406048189,24.05253194857149]}},{"type":"Feature","properties":{"id":"governors-harbor-bahamas","name":"Governors Harbor, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.24064323944407,25.196118966380833]}},{"type":"Feature","properties":{"id":"luwuk-indonesia","name":"Luwuk, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.79278509934603,-0.938827229844351]}},{"type":"Feature","properties":{"id":"salakan-indonesia","name":"Salakan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.3401968209294,-1.301013030053515]}},{"type":"Feature","properties":{"id":"bangga-indonesia","name":"Bangga, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.5275341004328,-1.600278223931106]}},{"type":"Feature","properties":{"id":"taliabu-indonesia","name":"Taliabu, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.7740581098555,-1.826840253714747]}},{"type":"Feature","properties":{"id":"sanana-indonesia","name":"Sanana, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.93699673914386,-2.201449043927759]}},{"type":"Feature","properties":{"id":"kendari-indonesia","name":"Kendari, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.51297572725252,-3.998447236539088]}},{"type":"Feature","properties":{"id":"wawonii-indonesia","name":"Wawonii, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.12388838041427,-4.136148734803371]}},{"type":"Feature","properties":{"id":"raha-indonesia","name":"Raha, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.72108104857878,-4.832382529604614]}},{"type":"Feature","properties":{"id":"buranga-indonesia","name":"Buranga, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.85611021090891,-4.792266637754579]}},{"type":"Feature","properties":{"id":"lakudo-indonesia","name":"Lakudo, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.55989952213733,-5.38911765238875]}},{"type":"Feature","properties":{"id":"baubau-indonesia","name":"Baubau, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.59688680062212,-5.507063767817269]}},{"type":"Feature","properties":{"id":"ijmuiden-netherlands","name":"Ijmuiden, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.613685008225113,52.45851826150987]}},{"type":"Feature","properties":{"id":"takaroa-french-polynesia","name":"Takaroa, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-144.97220770853863,-14.449768610910688]}},{"type":"Feature","properties":{"id":"manihi-french-polynesia","name":"Manihi, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-145.95814451009178,-14.402893905977733]}},{"type":"Feature","properties":{"id":"rangiroa-french-polynesia","name":"Rangiroa, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-147.65130737313953,-15.116218466216106]}},{"type":"Feature","properties":{"id":"arutua-french-polynesia","name":"Arutua, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-146.78615295672594,-15.289899868101953]}},{"type":"Feature","properties":{"id":"kaukura-french-polynesia","name":"Kaukura, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-146.6738422452723,-15.741389321160499]}},{"type":"Feature","properties":{"id":"fakarava-french-polynesia","name":"Fakarava, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-145.6245632034352,-16.310313265214543]}},{"type":"Feature","properties":{"id":"makemo-french-polynesia","name":"Makemo, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-143.86719140149896,-16.539560977104614]}},{"type":"Feature","properties":{"id":"hitiaa-french-polynesia","name":"Hitia'a, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.3081207746325,-17.723318964508866]}},{"type":"Feature","properties":{"id":"hiva-oa-french-polynesia","name":"Hiva Oa, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-139.02112549855988,-9.754675849911433]}},{"type":"Feature","properties":{"id":"nuku-hiva-french-polynesia","name":"Nuku Hiva, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-140.14209638414113,-8.860487903690377]}},{"type":"Feature","properties":{"id":"levin-new-zealand","name":"Levin, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[175.28531582518968,-40.625283896847584]}},{"type":"Feature","properties":{"id":"pangai-tonga","name":"Pangai, Tonga","is_tbd":false},"geometry":{"type":"Point","coordinates":[-174.35026124305728,-19.81142785318058]}},{"type":"Feature","properties":{"id":"neiafu-tonga","name":"Neiafu, Tonga","is_tbd":false},"geometry":{"type":"Point","coordinates":[-173.98368505366702,-18.6476851110264]}},{"type":"Feature","properties":{"id":"kekaha-hi-united-states","name":"Kekaha, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-159.72420070177037,21.9703051762448]}},{"type":"Feature","properties":{"id":"kawaihae-hi-united-states","name":"Kawaihae, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-155.83123627078376,20.040296565242308]}},{"type":"Feature","properties":{"id":"makena-hi-united-states","name":"Makena, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.43999896208965,20.66359808291422]}},{"type":"Feature","properties":{"id":"lahaina-hi-united-states","name":"Lahaina, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.68449952130453,20.900903808232126]}},{"type":"Feature","properties":{"id":"kaunakakai-hi-united-states","name":"Kaunakakai, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-157.02388831896445,21.093332873862575]}},{"type":"Feature","properties":{"id":"hawaii-kai-hi-united-states","name":"Hawaii Kai, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-157.66889976388774,21.27199968597905]}},{"type":"Feature","properties":{"id":"rst-norway","name":"Røst, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.070117249965712,67.50256025183084]}},{"type":"Feature","properties":{"id":"bod-norway","name":"Bodø, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.400076793159448,67.28600571343614]}},{"type":"Feature","properties":{"id":"golden-bay-malta","name":"Golden Bay, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.344455230051304,35.93869335743338]}},{"type":"Feature","properties":{"id":"mgarr-ix-xini-malta","name":"Mgarr ix-Xini, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.271322957639894,36.02044571205089]}},{"type":"Feature","properties":{"id":"grand-baie-rodrigues-mauritius","name":"Grand Baie (Rodrigues), Mauritius","is_tbd":false},"geometry":{"type":"Point","coordinates":[63.44823384600894,-19.674345590458458]}},{"type":"Feature","properties":{"id":"hao-french-polynesia","name":"Hao, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-140.9080889473968,-18.21576216824627]}},{"type":"Feature","properties":{"id":"manado-indonesia","name":"Manado, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.83960982123124,1.490831387793467]}},{"type":"Feature","properties":{"id":"ondong-siau-indonesia","name":"Ondong Siau, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.37295905277648,2.754597622785401]}},{"type":"Feature","properties":{"id":"tahuna-indonesia","name":"Tahuna, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.48550780117085,3.611114813225133]}},{"type":"Feature","properties":{"id":"melonguane-indonesia","name":"Melonguane, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.71726962389127,4.042997369771683]}},{"type":"Feature","properties":{"id":"morotai-indonesia","name":"Morotai, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.40081335312806,2.365656185992342]}},{"type":"Feature","properties":{"id":"tobelo-indonesia","name":"Tobelo, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.96785467546509,1.71458385132884]}},{"type":"Feature","properties":{"id":"ternate-indonesia","name":"Ternate, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.36133655044124,0.79580852872504]}},{"type":"Feature","properties":{"id":"sofifi-indonesia","name":"Sofifi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.56143406494019,0.734974159349461]}},{"type":"Feature","properties":{"id":"tidore-indonesia","name":"Tidore, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.40408554359549,0.674004693399349]}},{"type":"Feature","properties":{"id":"gustavia-saint-barthlemy","name":"Gustavia, Saint Barthélemy","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.85054881266757,17.897915647022234]}},{"type":"Feature","properties":{"id":"st-louis-saint-martin","name":"St. Louis, Saint Martin","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.078144550760726,18.08992880691782]}},{"type":"Feature","properties":{"id":"baie-mahault-guadeloupe","name":"Baie-Mahault, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.5717247194846,16.244479667931955]}},{"type":"Feature","properties":{"id":"copa-club-jamaica","name":"Copa Club, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.68936118328712,17.942952785882994]}},{"type":"Feature","properties":{"id":"weno-chuuk-micronesia","name":"Weno, Chuuk, Micronesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.85848716518078,7.439993539798909]}},{"type":"Feature","properties":{"id":"magachgil-yap-micronesia","name":"Magachgil, Yap, Micronesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[138.06149986878208,9.443922836169385]}},{"type":"Feature","properties":{"id":"ngeremlengui-palau","name":"Ngeremlengui, Palau","is_tbd":false},"geometry":{"type":"Point","coordinates":[134.56094082517401,7.531746239289517]}},{"type":"Feature","properties":{"id":"el-segundo-ca-united-states","name":"El Segundo, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-118.4159551589325,33.91992001851462]}},{"type":"Feature","properties":{"id":"sangano-angola","name":"Sangano, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.201444277847978,-9.490068430331165]}},{"type":"Feature","properties":{"id":"aden-yemen","name":"Aden, Yemen","is_tbd":false},"geometry":{"type":"Point","coordinates":[45.0335384269116,12.800683889023277]}},{"type":"Feature","properties":{"id":"djibouti-city-djibouti","name":"Djibouti City, Djibouti","is_tbd":false},"geometry":{"type":"Point","coordinates":[43.14799288765091,11.594678044710776]}},{"type":"Feature","properties":{"id":"bp-clair-ridge-united-kingdom","name":"BP Clair Ridge, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.294930049347119,60.44104932347154]}},{"type":"Feature","properties":{"id":"baie-longue-saint-martin","name":"Baie Longue, Saint Martin","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.14570622695726,18.05965128120834]}},{"type":"Feature","properties":{"id":"philipsburg-sint-maarten","name":"Philipsburg, Sint Maarten","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.04582836802477,18.03020531994377]}},{"type":"Feature","properties":{"id":"mamoudzou-mayotte","name":"Mamoudzou, Mayotte","is_tbd":false},"geometry":{"type":"Point","coordinates":[45.23329414477784,-12.78330928619106]}},{"type":"Feature","properties":{"id":"perth-wa-australia","name":"Perth, WA, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.85721872350325,-31.95343894398052]}},{"type":"Feature","properties":{"id":"alexandria-nsw-australia","name":"Alexandria, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.19620853634117,-33.913673538776834]}},{"type":"Feature","properties":{"id":"port-moresby-papua-new-guinea","name":"Port Moresby, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[147.18851977030369,-9.47960554573348]}},{"type":"Feature","properties":{"id":"kikori-papua-new-guinea","name":"Kikori, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.2402064292285,-7.413514034786931]}},{"type":"Feature","properties":{"id":"sisimiut-greenland","name":"Sisimiut, Greenland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-53.67338627708164,66.93946731265544]}},{"type":"Feature","properties":{"id":"maniitsoq-greenland","name":"Maniitsoq, Greenland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-52.90572324668234,65.40768043958342]}},{"type":"Feature","properties":{"id":"aasiaat-greenland","name":"Aasiaat, Greenland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-52.85911683438676,68.70697200462038]}},{"type":"Feature","properties":{"id":"suro-guinea-bissau","name":"Suro, Guinea-Bissau","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.791145687980318,11.774131923775238]}},{"type":"Feature","properties":{"id":"duynefontein-south-africa","name":"Duynefontein, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.449914853508062,-33.69332250414625]}},{"type":"Feature","properties":{"id":"tuasivi-samoa","name":"Tuasivi, Samoa","is_tbd":false},"geometry":{"type":"Point","coordinates":[-172.17816102572917,-13.670594022635894]}},{"type":"Feature","properties":{"id":"puerto-montt-chile","name":"Puerto Montt, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.9534112342951,-41.46037424479032]}},{"type":"Feature","properties":{"id":"punta-arenas-chile","name":"Punta Arenas, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.93333257585476,-53.16665547850115]}},{"type":"Feature","properties":{"id":"puerto-williams-chile","name":"Puerto Williams, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-67.6058614273846,-54.935200597435504]}},{"type":"Feature","properties":{"id":"tortel-chile","name":"Tortel, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.53688749922706,-47.80121466459952]}},{"type":"Feature","properties":{"id":"buffalo-ny-united-states","name":"Buffalo, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.87846124712107,42.88543648440449]}},{"type":"Feature","properties":{"id":"toronto-on-canada","name":"Toronto, ON, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.38531972935779,43.64855718648997]}},{"type":"Feature","properties":{"id":"dania-beach-fl-united-states","name":"Dania Beach, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.14394128131609,26.052316286427192]}},{"type":"Feature","properties":{"id":"guantanamo-bay-cuba","name":"Guantanamo Bay, Cuba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.15816600469212,19.939616197540328]}},{"type":"Feature","properties":{"id":"newcastle-united-kingdom","name":"Newcastle, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.617778331330762,54.978249214505595]}},{"type":"Feature","properties":{"id":"endrup-denmark","name":"Endrup, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.718388990908426,55.523118197393856]}},{"type":"Feature","properties":{"id":"eemshaven-netherlands","name":"Eemshaven, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.816022174500881,53.4428046914825]}},{"type":"Feature","properties":{"id":"pegwell-barbados","name":"Pegwell, Barbados","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.53633378387061,13.062605447541747]}},{"type":"Feature","properties":{"id":"georgetown-guyana","name":"Georgetown, Guyana","is_tbd":false},"geometry":{"type":"Point","coordinates":[-58.15484062190828,6.804497184903389]}},{"type":"Feature","properties":{"id":"mt-lavinia-sri-lanka","name":"Mt. Lavinia, Sri Lanka","is_tbd":false},"geometry":{"type":"Point","coordinates":[79.86679011789853,6.833211066334108]}},{"type":"Feature","properties":{"id":"kourou-french-guiana","name":"Kourou, French Guiana","is_tbd":false},"geometry":{"type":"Point","coordinates":[-52.64555499899603,5.16829853939239]}},{"type":"Feature","properties":{"id":"flying-fish-cove-christmas-island","name":"Flying Fish Cove, Christmas Island","is_tbd":false},"geometry":{"type":"Point","coordinates":[105.69706984367991,-10.437358645528692]}},{"type":"Feature","properties":{"id":"leava-wallis-and-futuna","name":"Leava, Wallis and Futuna","is_tbd":false},"geometry":{"type":"Point","coordinates":[-178.1581082290078,-14.29683787673267]}},{"type":"Feature","properties":{"id":"mata-utu-wallis-and-futuna","name":"Mata-Utu, Wallis and Futuna","is_tbd":false},"geometry":{"type":"Point","coordinates":[-176.17500035041277,-13.282000575148167]}},{"type":"Feature","properties":{"id":"savusavu-fiji","name":"Savusavu, Fiji","is_tbd":false},"geometry":{"type":"Point","coordinates":[179.34974953178585,-16.80801177359569]}},{"type":"Feature","properties":{"id":"nelson-new-zealand","name":"Nelson, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[173.28395005547594,-41.2722550869257]}},{"type":"Feature","properties":{"id":"sao-tome-sao-tome-and-principe","name":"Sao Tome, Sao Tome and Principe","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.733297177107941,0.333291349734918]}},{"type":"Feature","properties":{"id":"annobon-equatorial-guinea","name":"Annobon, Equatorial Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.636850199935443,-1.435134530086755]}},{"type":"Feature","properties":{"id":"thanlyin-myanmar","name":"Thanlyin, Myanmar","is_tbd":false},"geometry":{"type":"Point","coordinates":[96.24822399826894,16.75874394031272]}},{"type":"Feature","properties":{"id":"maroochydore-qld-australia","name":"Maroochydore, QLD, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[153.08944349704078,-26.65184454476273]}},{"type":"Feature","properties":{"id":"wurrumiyanga-nt-australia","name":"Wurrumiyanga, NT, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.63211077321296,-11.762586195478848]}},{"type":"Feature","properties":{"id":"trondheim-norway","name":"Trondheim, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.392083475057504,63.43101023727201]}},{"type":"Feature","properties":{"id":"narvik-norway","name":"Narvik, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[17.55999831911432,68.42055748484374]}},{"type":"Feature","properties":{"id":"nesna-norway","name":"Nesna, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.01819245454037,66.19807367745263]}},{"type":"Feature","properties":{"id":"sandnessjen-norway","name":"Sandnessjøen, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.631461771472987,66.0215486705702]}},{"type":"Feature","properties":{"id":"brnnysund-norway","name":"Brønnøysund, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.207743809919723,65.47356212044562]}},{"type":"Feature","properties":{"id":"rrvik-norway","name":"Rørvik, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.237346548140215,64.86207691166618]}},{"type":"Feature","properties":{"id":"utskarpen-norway","name":"Utskarpen, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.563626638462416,66.29295854243092]}},{"type":"Feature","properties":{"id":"hemnesberget-norway","name":"Hemnesberget, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.624454232090782,66.2241605995991]}},{"type":"Feature","properties":{"id":"mo-i-rana-norway","name":"Mo I Rana, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.141983162344278,66.31371064643939]}},{"type":"Feature","properties":{"id":"lucena-philippines","name":"Lucena, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.61229277155478,13.935263338898412]}},{"type":"Feature","properties":{"id":"iloilo-city-philippines","name":"Iloilo City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.56210600000121,10.720150000000242]}},{"type":"Feature","properties":{"id":"rdvig-denmark","name":"Rødvig, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.3718507555018,55.256140818456515]}},{"type":"Feature","properties":{"id":"rnne-denmark","name":"Rønne, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.708323709697277,55.10101672136453]}},{"type":"Feature","properties":{"id":"great-nicobar-india","name":"Great Nicobar, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[93.92740511526485,7.031330621106178]}},{"type":"Feature","properties":{"id":"kamorta-india","name":"Kamorta, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[93.48140933746261,8.172231912838134]}},{"type":"Feature","properties":{"id":"candikusuma-indonesia","name":"Candikusuma, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.52724417391767,-8.294580838185764]}},{"type":"Feature","properties":{"id":"senggigi-indonesia","name":"Senggigi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.04728206542369,-8.48545680087743]}},{"type":"Feature","properties":{"id":"kawinda-nae-indonesia","name":"Kawinda Nae, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[117.86156300673181,-8.108065089693461]}},{"type":"Feature","properties":{"id":"sanur-indonesia","name":"Sanur, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.25961172497856,-8.695053648699613]}},{"type":"Feature","properties":{"id":"puger-indonesia","name":"Puger, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[113.45680538491655,-8.374136096774764]}},{"type":"Feature","properties":{"id":"jimbaran-indonesia","name":"Jimbaran, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.15980710818118,-8.784071344370432]}},{"type":"Feature","properties":{"id":"mentigi-indonesia","name":"Mentigi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[107.69636024692,-3.195985843905528]}},{"type":"Feature","properties":{"id":"ancol-indonesia","name":"Ancol, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[106.83337257701858,-6.129010757137125]}},{"type":"Feature","properties":{"id":"tanjung-pakis-indonesia","name":"Tanjung Pakis, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[107.12089678739565,-5.981255891395774]}},{"type":"Feature","properties":{"id":"sungailiat-indonesia","name":"Sungailiat, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[106.13249416727733,-1.85149793733644]}},{"type":"Feature","properties":{"id":"anyer-indonesia","name":"Anyer, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[105.88391035900133,-6.073698462562994]}},{"type":"Feature","properties":{"id":"kalianda-indonesia","name":"Kalianda, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[105.58491154737705,-5.769253113829172]}},{"type":"Feature","properties":{"id":"takesung-indonesia","name":"Takesung, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.66681429335993,-3.882827780552574]}},{"type":"Feature","properties":{"id":"ujung-pankah-indonesia","name":"Ujung Pankah, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[112.59823665719661,-6.953337827181953]}},{"type":"Feature","properties":{"id":"bawean-indonesia","name":"Bawean, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[112.5856147684581,-5.79349087209221]}},{"type":"Feature","properties":{"id":"sungsang-indonesia","name":"Sungsang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.87448724596129,-2.295321954856525]}},{"type":"Feature","properties":{"id":"muntok-indonesia","name":"Muntok, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[105.16430637658756,-2.06517893841984]}},{"type":"Feature","properties":{"id":"ruperts-bay-saint-helena-ascension-and-tristan-da-cunha","name":"Rupert's Bay, Saint Helena, Ascension and Tristan da Cunha","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.711485529379086,-15.918594542915663]}},{"type":"Feature","properties":{"id":"muncar-indonesia","name":"Muncar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.31037421036321,-8.448018585744538]}},{"type":"Feature","properties":{"id":"banyu-urip-indonesia","name":"Banyu Urip, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[112.71968042869285,-7.271904005469731]}},{"type":"Feature","properties":{"id":"kendal-indonesia","name":"Kendal, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[110.18790325087357,-7.02654903238991]}},{"type":"Feature","properties":{"id":"cirebon-indonesia","name":"Cirebon, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[108.5666651853077,-6.716666684587929]}},{"type":"Feature","properties":{"id":"tabwakea-kiribati","name":"Tabwakea, Kiribati","is_tbd":false},"geometry":{"type":"Point","coordinates":[-157.42781242073514,1.872139418081973]}},{"type":"Feature","properties":{"id":"nukunonu-tokelau","name":"Nukunonu, Tokelau","is_tbd":false},"geometry":{"type":"Point","coordinates":[-171.81150431859518,-9.174594889235633]}},{"type":"Feature","properties":{"id":"wall-township-nj-united-states","name":"Wall Township, NJ, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.06287361347052,40.15287376160566]}},{"type":"Feature","properties":{"id":"blaabjerg-denmark","name":"Blaabjerg, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.329194484059272,55.75167411423394]}},{"type":"Feature","properties":{"id":"lecanvey-ireland","name":"Lecanvey, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-9.696504823189091,53.770824560670455]}},{"type":"Feature","properties":{"id":"medan-indonesia","name":"Medan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[98.67606376706563,3.752137998988499]}},{"type":"Feature","properties":{"id":"panipahan-indonesia","name":"Panipahan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.3133149021334,2.452351467017714]}},{"type":"Feature","properties":{"id":"dumai-indonesia","name":"Dumai, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[101.44763310682389,1.665607287285858]}},{"type":"Feature","properties":{"id":"brookvale-nsw-australia","name":"Brookvale, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.27399050892973,-33.76115742340548]}},{"type":"Feature","properties":{"id":"piti-guam","name":"Piti, Guam","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.69474214461212,13.464655237903562]}},{"type":"Feature","properties":{"id":"minamiboso-japan","name":"Minamiboso, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.9609790000003,34.9740779999996]}},{"type":"Feature","properties":{"id":"car-nicobar-india","name":"Car Nicobar, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[92.81644398821722,9.177491191419044]}},{"type":"Feature","properties":{"id":"little-andaman-india","name":"Little Andaman, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[92.5971570341871,10.709053093381524]}},{"type":"Feature","properties":{"id":"havelock-india","name":"Havelock, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[92.98756203105867,11.976057677884663]}},{"type":"Feature","properties":{"id":"long-island-india","name":"Long Island, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[92.93507183386816,12.39649103222661]}},{"type":"Feature","properties":{"id":"rangat-india","name":"Rangat, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[92.91385602858452,12.506947715390154]}},{"type":"Feature","properties":{"id":"cloverdale-or-united-states","name":"Cloverdale, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.95636439138565,45.23105362306843]}},{"type":"Feature","properties":{"id":"topolobampo-mexico","name":"Topolobampo, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-109.05036857024876,25.600694810118945]}},{"type":"Feature","properties":{"id":"la-paz-mexico","name":"La Paz, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-110.3054817744706,24.102573212618204]}},{"type":"Feature","properties":{"id":"sydney-nsw-australia","name":"Sydney, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.20704719697792,-33.86969726258813]}},{"type":"Feature","properties":{"id":"honiara-solomon-islands","name":"Honiara, Solomon Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[159.94979002697502,-9.429092662827419]}},{"type":"Feature","properties":{"id":"auki-solomon-islands","name":"Auki, Solomon Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[160.70132758051585,-8.774649361837039]}},{"type":"Feature","properties":{"id":"noro-solomon-islands","name":"Noro, Solomon Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[157.19066112219286,-8.242077358023918]}},{"type":"Feature","properties":{"id":"taro-solomon-islands","name":"Taro, Solomon Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[156.39591070863844,-6.708991470564002]}},{"type":"Feature","properties":{"id":"saint-pierre-saint-pierre-and-miquelon","name":"Saint-Pierre, Saint Pierre and Miquelon","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.18063111336785,46.7758434822524]}},{"type":"Feature","properties":{"id":"miquelon-langlade-saint-pierre-and-miquelon","name":"Miquelon-Langlade, Saint Pierre and Miquelon","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.34992308328285,47.08366803819901]}},{"type":"Feature","properties":{"id":"fortune-nl-canada","name":"Fortune, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-55.82728663711745,47.071981606498106]}},{"type":"Feature","properties":{"id":"lamaline-nl-canada","name":"Lamaline, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-55.80327542365825,46.868952141319625]}},{"type":"Feature","properties":{"id":"narragansett-ri-united-states","name":"Narragansett, RI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.44280929994466,41.441373103781494]}},{"type":"Feature","properties":{"id":"crescent-beach-ri-united-states","name":"Crescent Beach, RI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.59367589228837,41.1919576902494]}},{"type":"Feature","properties":{"id":"nybro-sweden","name":"Nybro, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.908684989788139,56.7438002945013]}},{"type":"Feature","properties":{"id":"klaipeda-lithuania","name":"Klaipeda, Lithuania","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.14998987054871,55.69572398403818]}},{"type":"Feature","properties":{"id":"baie-du-tombeau-mauritius","name":"Baie du Tombeau, Mauritius","is_tbd":false},"geometry":{"type":"Point","coordinates":[57.49512645132687,-20.122119652452948]}},{"type":"Feature","properties":{"id":"le-port-runion","name":"Le Port, Réunion","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.30328230092486,-20.944389515009206]}},{"type":"Feature","properties":{"id":"fort-dauphin-madagascar","name":"Fort Dauphin, Madagascar","is_tbd":false},"geometry":{"type":"Point","coordinates":[46.98537557369402,-25.022532459682907]}},{"type":"Feature","properties":{"id":"chipiona-spain","name":"Chipiona, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.428876288504763,36.731307150406245]}},{"type":"Feature","properties":{"id":"la-union-philippines","name":"La Union, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.38963738769527,16.582590683428545]}},{"type":"Feature","properties":{"id":"lingang-china","name":"Lingang, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.89608163301598,30.935661747314708]}},{"type":"Feature","properties":{"id":"san-andres-colombia","name":"San Andres, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.70056368799148,12.584695674410096]}},{"type":"Feature","properties":{"id":"skagway-ak-united-states","name":"Skagway, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-135.31389240702538,59.45834296188645]}},{"type":"Feature","properties":{"id":"haines-ak-united-states","name":"Haines, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-135.44499582977528,59.235832218021784]}},{"type":"Feature","properties":{"id":"manele-bay-hi-united-states","name":"Manele Bay, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.89689103344207,20.74343777516374]}},{"type":"Feature","properties":{"id":"ko-olina-hi-united-states","name":"Ko Olina, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.11949758921116,21.339701501022805]}},{"type":"Feature","properties":{"id":"koko-head-hi-united-states","name":"Koko Head, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-157.69601156108757,21.277562122844273]}},{"type":"Feature","properties":{"id":"kihei-hi-united-states","name":"Kihei, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.46310227824227,20.782154911754443]}},{"type":"Feature","properties":{"id":"lihue-hi-united-states","name":"Lihue, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-159.36857049585998,21.974943320873784]}},{"type":"Feature","properties":{"id":"skaill-united-kingdom","name":"Skaill, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.354952684851159,59.05145759025851]}},{"type":"Feature","properties":{"id":"dunnet-head-united-kingdom","name":"Dunnet Head, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.376583528902636,58.670331191552904]}},{"type":"Feature","properties":{"id":"whitehead-united-kingdom","name":"Whitehead, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.718720541585788,54.753703383542344]}},{"type":"Feature","properties":{"id":"troon-united-kingdom","name":"Troon, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.659932229141345,55.541326617756305]}},{"type":"Feature","properties":{"id":"rota-spain","name":"Rota, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.363007194542094,36.62627034140999]}},{"type":"Feature","properties":{"id":"tinocas-canary-islands-spain","name":"Tinocas, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.487707761768586,28.134359150695914]}},{"type":"Feature","properties":{"id":"gimar-canary-islands-spain","name":"Güimar, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.412560622219107,28.310582527291686]}},{"type":"Feature","properties":{"id":"batu-prahu-indonesia","name":"Batu Prahu, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[106.54745969362382,-3.079924874677993]}},{"type":"Feature","properties":{"id":"lagavulin-united-kingdom","name":"Lagavulin, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.125409706608378,55.63611260842295]}},{"type":"Feature","properties":{"id":"point-hope-ak-united-states","name":"Point Hope, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-166.80806870465366,68.34776717273871]}},{"type":"Feature","properties":{"id":"wainwright-ak-united-states","name":"Wainwright, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-160.0383454120102,70.63695061464387]}},{"type":"Feature","properties":{"id":"kotzebue-ak-united-states","name":"Kotzebue, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-162.59666879498258,66.89834258781605]}},{"type":"Feature","properties":{"id":"nome-ak-united-states","name":"Nome, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-165.40640954135213,64.5011139383348]}},{"type":"Feature","properties":{"id":"prudhoe-bay-ak-united-states","name":"Prudhoe Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-148.45676558455187,70.29404593604013]}},{"type":"Feature","properties":{"id":"kauditan-indonesia","name":"Kauditan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.06561063769091,1.378623021535939]}},{"type":"Feature","properties":{"id":"candelaria-canary-islands-spain","name":"Candelaria, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.37174033863666,28.35553820749914]}},{"type":"Feature","properties":{"id":"cabo-espiritu-santo-argentina","name":"Cabo Espiritu Santo, Argentina","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.60578536679905,-52.65889381307709]}},{"type":"Feature","properties":{"id":"punta-dungeness-argentina","name":"Punta Dungeness, Argentina","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.41975034233805,-52.39023015657009]}},{"type":"Feature","properties":{"id":"seraya-indonesia","name":"Seraya, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.74667192681562,-8.386261088786334]}},{"type":"Feature","properties":{"id":"tarahales-spain","name":"Tarahales, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.45074489732838,28.096374586517886]}},{"type":"Feature","properties":{"id":"taba-egypt","name":"Taba, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.89487373423804,29.492578054639665]}},{"type":"Feature","properties":{"id":"praia-grande-brazil","name":"Praia Grande, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-46.41249054186233,-24.008866255391673]}},{"type":"Feature","properties":{"id":"bosaso-somalia","name":"Bosaso, Somalia","is_tbd":false},"geometry":{"type":"Point","coordinates":[49.187930015152745,11.275567682156476]}},{"type":"Feature","properties":{"id":"mombasa-kenya","name":"Mombasa, Kenya","is_tbd":false},"geometry":{"type":"Point","coordinates":[39.67280003701128,-4.053206761989876]}},{"type":"Feature","properties":{"id":"berbera-somalia","name":"Berbera, Somalia","is_tbd":false},"geometry":{"type":"Point","coordinates":[45.01088219296272,10.43511582934602]}},{"type":"Feature","properties":{"id":"salalah-oman","name":"Salalah, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[54.14808275133401,17.095825991958318]}},{"type":"Feature","properties":{"id":"burgau-portugal","name":"Burgau, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-8.774539999999584,37.07339099999967]}},{"type":"Feature","properties":{"id":"glenbarr-united-kingdom","name":"Glenbarr, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.697577978438339,55.565500154567616]}},{"type":"Feature","properties":{"id":"craighouse-united-kingdom","name":"Craighouse, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.953827796908559,55.833671668737324]}},{"type":"Feature","properties":{"id":"ormsary-united-kingdom","name":"Ormsary, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.614570224740873,55.89168013274772]}},{"type":"Feature","properties":{"id":"kilchoan-ferry-united-kingdom","name":"Kilchoan Ferry, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.093964416384531,56.68857206371403]}},{"type":"Feature","properties":{"id":"tobermory-united-kingdom","name":"Tobermory, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.07028279253579,56.621848763444284]}},{"type":"Feature","properties":{"id":"duart-bay-united-kingdom","name":"Duart Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.669355342181571,56.45583872337901]}},{"type":"Feature","properties":{"id":"ganavan-bay-united-kingdom","name":"Ganavan Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.475800791797472,56.43776362936582]}},{"type":"Feature","properties":{"id":"corran-united-kingdom","name":"Corran, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.245381033153955,56.722525753369865]}},{"type":"Feature","properties":{"id":"ardmair-united-kingdom","name":"Ardmair, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.196211146111312,57.93407860444327]}},{"type":"Feature","properties":{"id":"branahuie-bay-united-kingdom","name":"Branahuie Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.310761137803691,58.209061789126075]}},{"type":"Feature","properties":{"id":"leverburgh-united-kingdom","name":"Leverburgh, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.008368065487336,57.769404984215875]}},{"type":"Feature","properties":{"id":"lochmaddy-united-kingdom","name":"Lochmaddy, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.163348424447826,57.603696020720946]}},{"type":"Feature","properties":{"id":"dunvegan-united-kingdom","name":"Dunvegan, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.581659383399854,57.43632161635939]}},{"type":"Feature","properties":{"id":"holmar-united-kingdom","name":"Holmar, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.274140611586573,57.36669044941733]}},{"type":"Feature","properties":{"id":"ardvasar-united-kingdom","name":"Ardvasar, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.906464549211167,57.059371673818994]}},{"type":"Feature","properties":{"id":"mallaig-united-kingdom","name":"Mallaig, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.820429453909197,57.008477935490994]}},{"type":"Feature","properties":{"id":"scarinish-united-kingdom","name":"Scarinish, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.808514691440399,56.503788111663106]}},{"type":"Feature","properties":{"id":"calgary-united-kingdom","name":"Calgary, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.272382258741658,56.582123807892486]}},{"type":"Feature","properties":{"id":"ludag-united-kingdom","name":"Ludag, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.328143229579688,57.10553545436941]}},{"type":"Feature","properties":{"id":"balla-united-kingdom","name":"Balla, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.312176444016704,57.0815220684469]}},{"type":"Feature","properties":{"id":"north-bay-united-kingdom","name":"North Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.449481034248839,57.02529080676931]}},{"type":"Feature","properties":{"id":"bay-of-tuquoy-united-kingdom","name":"Bay of Tuquoy, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.939523291645224,59.27976761462974]}},{"type":"Feature","properties":{"id":"aikerness-bay-united-kingdom","name":"Aikerness Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.095076000000142,59.11804019999936]}},{"type":"Feature","properties":{"id":"portachur-point-united-kingdom","name":"Portachur Point, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.943867574873866,55.74276545167681]}},{"type":"Feature","properties":{"id":"palembang-indonesia","name":"Palembang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.75732424302369,-2.990975214813836]}},{"type":"Feature","properties":{"id":"pesaren-indonesia","name":"Pesaren, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[105.58271428330856,-1.553876045073304]}},{"type":"Feature","properties":{"id":"linao-chile","name":"Linao, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.50446353715454,-41.991130772682006]}},{"type":"Feature","properties":{"id":"meimen-chile","name":"Meimen, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.15529386263451,-41.80692209717843]}},{"type":"Feature","properties":{"id":"kota-kinabalu-malaysia","name":"Kota Kinabalu, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.07430841346488,5.981335462945161]}},{"type":"Feature","properties":{"id":"miri-malaysia","name":"Miri, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.00741534642134,4.425299696021491]}},{"type":"Feature","properties":{"id":"bintulu-malaysia","name":"Bintulu, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[113.06835351166146,3.197004204897361]}},{"type":"Feature","properties":{"id":"kuching-malaysia","name":"Kuching, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[110.35370699724253,1.520179142639674]}},{"type":"Feature","properties":{"id":"largs-united-kingdom","name":"Largs, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.867305129111466,55.79334084522659]}},{"type":"Feature","properties":{"id":"kilchatten-bay-united-kingdom","name":"Kilchatten Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.028096030830676,55.75184157675707]}},{"type":"Feature","properties":{"id":"otter-ferry-united-kingdom","name":"Otter Ferry, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.321211057560222,56.00828363082888]}},{"type":"Feature","properties":{"id":"achnaba-united-kingdom","name":"Achnaba, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.365791104104307,56.019419800771715]}},{"type":"Feature","properties":{"id":"blackwaterfoot-united-kingdom","name":"Blackwaterfoot, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.33209972172162,55.50195153980693]}},{"type":"Feature","properties":{"id":"ardnacross-united-kingdom","name":"Ardnacross, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.533417938480915,55.476548995475824]}},{"type":"Feature","properties":{"id":"down-craig-united-kingdom","name":"Down Craig, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.900459402499686,55.78015567878292]}},{"type":"Feature","properties":{"id":"corrie-united-kingdom","name":"Corrie, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.141426028670615,55.643649778816055]}},{"type":"Feature","properties":{"id":"ardneil-bay-united-kingdom","name":"Ardneil Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.889375425976623,55.693046380984796]}},{"type":"Feature","properties":{"id":"port-askaig-united-kingdom","name":"Port Askaig, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.106317923258195,55.84773646690274]}},{"type":"Feature","properties":{"id":"feolin-ferry-united-kingdom","name":"Feolin Ferry, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.089911684880532,55.8467496295193]}},{"type":"Feature","properties":{"id":"yapen-indonesia","name":"Yapen, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[136.15698461639664,-1.756122937374005]}},{"type":"Feature","properties":{"id":"supiori-indonesia","name":"Supiori, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[135.63852795242698,-0.729511301429761]}},{"type":"Feature","properties":{"id":"manokwari-indonesia","name":"Manokwari, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[134.06203981141215,-0.861468674318491]}},{"type":"Feature","properties":{"id":"teluk-indonesia","name":"Teluk, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[133.4821305001853,-2.202373735308288]}},{"type":"Feature","properties":{"id":"makassar-indonesia","name":"Makassar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.41239198623502,-5.152184574655166]}},{"type":"Feature","properties":{"id":"balikpapan-indonesia","name":"Balikpapan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.83119264290589,-1.265365259496888]}},{"type":"Feature","properties":{"id":"tarakan-indonesia","name":"Tarakan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[117.57850656662664,3.327346733556252]}},{"type":"Feature","properties":{"id":"madura-indonesia","name":"Madura, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[113.2834656639621,-6.902285124495741]}},{"type":"Feature","properties":{"id":"hanko-finland","name":"Hanko, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[22.968222026939856,59.82321000411124]}},{"type":"Feature","properties":{"id":"bomba-belize","name":"Bomba, Belize","is_tbd":false},"geometry":{"type":"Point","coordinates":[-88.29445550119163,17.925613252139954]}},{"type":"Feature","properties":{"id":"san-pedro-belize","name":"San Pedro, Belize","is_tbd":false},"geometry":{"type":"Point","coordinates":[-87.97834244387931,17.911036510229174]}},{"type":"Feature","properties":{"id":"kiamsam-malaysia","name":"Kiamsam, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.16893796108768,5.255328831990221]}},{"type":"Feature","properties":{"id":"so-mateus-brazil","name":"São Mateus, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-39.85912604370125,-18.716705271937165]}},{"type":"Feature","properties":{"id":"porto-seguro-brazil","name":"Porto Seguro, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-39.06469301273603,-16.451085786630014]}},{"type":"Feature","properties":{"id":"ilhus-brazil","name":"Ilhéus, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-39.04770083727346,-14.787976283084333]}},{"type":"Feature","properties":{"id":"salvador-brazil","name":"Salvador, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-38.504537159555746,-12.969985149046327]}},{"type":"Feature","properties":{"id":"aracaj-brazil","name":"Aracajú, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-37.07480184426858,-10.909604310398228]}},{"type":"Feature","properties":{"id":"macei-brazil","name":"Maceió, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-35.734959043425796,-9.666468352123673]}},{"type":"Feature","properties":{"id":"recife-brazil","name":"Recife, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-34.87197137352438,-8.055334790265151]}},{"type":"Feature","properties":{"id":"joo-pessoa-brazil","name":"João Pessoa, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-34.86103388127255,-7.115292965129927]}},{"type":"Feature","properties":{"id":"natal-brazil","name":"Natal, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-35.21118011760072,-5.79483030955312]}},{"type":"Feature","properties":{"id":"waisai-indonesia","name":"Waisai, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.8575987220932,-0.383361405408924]}},{"type":"Feature","properties":{"id":"jakarta-indonesia","name":"Jakarta, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[106.82785500280222,-6.171598654655946]}},{"type":"Feature","properties":{"id":"seba-indonesia","name":"Seba, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.87989512104575,-10.457822046091534]}},{"type":"Feature","properties":{"id":"baa-indonesia","name":"Baa, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.03526539632057,-10.733340209244103]}},{"type":"Feature","properties":{"id":"alor-indonesia","name":"Alor, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.40375899999984,-8.32065399999956]}},{"type":"Feature","properties":{"id":"kokar-indonesia","name":"Kokar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.45345286822533,-8.158311369783492]}},{"type":"Feature","properties":{"id":"tiakur-indonesia","name":"Tiakur, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.7878715476518,-8.150331686078742]}},{"type":"Feature","properties":{"id":"serwaru-indonesia","name":"Serwaru, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.69148768374592,-8.158118033985609]}},{"type":"Feature","properties":{"id":"suemlaki-indonesia","name":"Suemlaki, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.21304280623139,-8.052228527722814]}},{"type":"Feature","properties":{"id":"tual-indonesia","name":"Tual, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[132.75207980190007,-5.626577896544199]}},{"type":"Feature","properties":{"id":"kep-aru-indonesia","name":"Kep. Aru, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[134.55017423123815,-6.194644939615719]}},{"type":"Feature","properties":{"id":"timika-indonesia","name":"Timika, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[136.88957687085835,-4.550311186325139]}},{"type":"Feature","properties":{"id":"agats-indonesia","name":"Agats, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[138.12136310762435,-5.53562932769966]}},{"type":"Feature","properties":{"id":"kota-mappi-indonesia","name":"Kota Mappi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.39650868867545,-7.102452989489187]}},{"type":"Feature","properties":{"id":"nabire-indonesia","name":"Nabire, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[135.50163840096195,-3.372233814094874]}},{"type":"Feature","properties":{"id":"fakfak-indonesia","name":"Fakfak, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[133.01941359689437,-3.097769992193036]}},{"type":"Feature","properties":{"id":"kaimana-indonesia","name":"Kaimana, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[133.7914833624518,-3.679353447601521]}},{"type":"Feature","properties":{"id":"merauke-indonesia","name":"Merauke, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.40505289608706,-8.499087423602486]}},{"type":"Feature","properties":{"id":"tutuyan-indonesia","name":"Tutuyan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.57498598525505,0.761436727647575]}},{"type":"Feature","properties":{"id":"tanjung-selor-indonesia","name":"Tanjung Selor, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[117.81942436470823,2.572031573356858]}},{"type":"Feature","properties":{"id":"surabaya-indonesia","name":"Surabaya, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[112.74667405204215,-7.258579529403598]}},{"type":"Feature","properties":{"id":"tjele-denmark","name":"Tjele, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.611688520083643,56.51080050758227]}},{"type":"Feature","properties":{"id":"san-jose-northern-mariana-islands","name":"San Jose, Northern Mariana Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.62926794520425,14.95877106098141]}},{"type":"Feature","properties":{"id":"sasanlagu-northern-mariana-islands","name":"Sasanlagu, Northern Mariana Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.1343464208112,14.144932053702924]}},{"type":"Feature","properties":{"id":"tungku-brunei","name":"Tungku, Brunei","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.88583269289208,4.926371091877179]}},{"type":"Feature","properties":{"id":"virginia-beach-va-united-states","name":"Virginia Beach, VA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.05919805548162,36.755008440641625]}},{"type":"Feature","properties":{"id":"carcavelos-portugal","name":"Carcavelos, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-9.331559779091531,38.69016282606887]}},{"type":"Feature","properties":{"id":"utqiavik-ak-united-states","name":"Utqiaġvik, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.78863915700455,71.2905514484418]}},{"type":"Feature","properties":{"id":"vitria-brazil","name":"Vitória, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-40.30165502708559,-20.294018169658056]}},{"type":"Feature","properties":{"id":"maca-brazil","name":"Macaé, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-41.785638350817806,-22.371806144383072]}},{"type":"Feature","properties":{"id":"sitio-brazil","name":"Sitio, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-37.57050461810811,-11.846665780631282]}},{"type":"Feature","properties":{"id":"atafona-brazil","name":"Atafona, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-41.027240450573984,-21.631160717587278]}},{"type":"Feature","properties":{"id":"thinadhoo-maldives","name":"Thinadhoo, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.99767877310352,0.531092812926878]}},{"type":"Feature","properties":{"id":"kolhufushi-maldives","name":"Kolhufushi, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.4246315956461,2.776764140474404]}},{"type":"Feature","properties":{"id":"terempa-indonesia","name":"Terempa, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[106.21113180688167,3.207132403275247]}},{"type":"Feature","properties":{"id":"penarik-indonesia","name":"Penarik, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[108.29023189652773,3.666751882884222]}},{"type":"Feature","properties":{"id":"jayapura-indonesia","name":"Jayapura, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.669115209023,-2.591560615049015]}},{"type":"Feature","properties":{"id":"sarmi-indonesia","name":"Sarmi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.35329582866166,-2.175235284063719]}},{"type":"Feature","properties":{"id":"biak-indonesia","name":"Biak, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[136.053298166411,-1.16347173352822]}},{"type":"Feature","properties":{"id":"sorong-indonesia","name":"Sorong, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.29539138070675,-0.882071743284192]}},{"type":"Feature","properties":{"id":"labuha-indonesia","name":"Labuha, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.48045267699531,-0.626796415138967]}},{"type":"Feature","properties":{"id":"namlea-indonesia","name":"Namlea, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.08582405030384,-3.233414619247889]}},{"type":"Feature","properties":{"id":"ambon-indonesia","name":"Ambon, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.19070608009508,-3.655379222174619]}},{"type":"Feature","properties":{"id":"masohi-indonesia","name":"Masohi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.9552563197305,-3.29783615769313]}},{"type":"Feature","properties":{"id":"bandaneria-indonesia","name":"Bandaneria, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[129.8720525452634,-4.520181235524493]}},{"type":"Feature","properties":{"id":"busan-south-korea","name":"Busan, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.99929925728011,35.17014221411413]}},{"type":"Feature","properties":{"id":"barka-oman","name":"Barka, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[57.88605,23.678719999999707]}},{"type":"Feature","properties":{"id":"monaco-monaco","name":"Monaco, Monaco","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.417647105613144,43.732621985131885]}},{"type":"Feature","properties":{"id":"jeddah-saudi-arabia","name":"Jeddah, Saudi Arabia","is_tbd":false},"geometry":{"type":"Point","coordinates":[39.18276132165815,21.481258967424996]}},{"type":"Feature","properties":{"id":"gibraltar-gibraltar","name":"Gibraltar, Gibraltar","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.347675882562271,36.155938394333255]}},{"type":"Feature","properties":{"id":"al-seeb-oman","name":"Al Seeb, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[58.176107241594856,23.684699958424957]}},{"type":"Feature","properties":{"id":"tanjung-pinggir-indonesia","name":"Tanjung Pinggir, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.0166370000003,1.066798000000349]}},{"type":"Feature","properties":{"id":"rengit-malaysia","name":"Rengit, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.14765741457559,1.677136908543797]}},{"type":"Feature","properties":{"id":"bahar-ic-caghaq-malta","name":"Bahar ic-Caghaq, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.45875539887589,35.93405994507042]}},{"type":"Feature","properties":{"id":"pozzallo-italy","name":"Pozzallo, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.85387230647139,36.733723588899274]}},{"type":"Feature","properties":{"id":"chaguaramas-trinidad-and-tobago","name":"Chaguaramas, Trinidad and Tobago","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.65080982501897,10.686160924629455]}},{"type":"Feature","properties":{"id":"totness-suriname","name":"Totness, Suriname","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.37537410906212,5.886630889468524]}},{"type":"Feature","properties":{"id":"sungai-kakap-indonesia","name":"Sungai Kakap, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[109.18320001394063,-0.067055880871205]}},{"type":"Feature","properties":{"id":"angoon-ak-united-states","name":"Angoon, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-134.58225230032588,57.50184070413134]}},{"type":"Feature","properties":{"id":"sitka-ak-united-states","name":"Sitka, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-135.33440020499748,57.05291252397816]}},{"type":"Feature","properties":{"id":"st-pauls-bay-malta","name":"St. Paul's Bay, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.415591366954907,35.95050510992472]}},{"type":"Feature","properties":{"id":"banff-united-kingdom","name":"Banff, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.523654445625608,57.666865033116686]}},{"type":"Feature","properties":{"id":"torshavn-faroe-islands","name":"Torshavn, Faroe Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.771844795542737,62.01745992125028]}},{"type":"Feature","properties":{"id":"ayre-of-cara-united-kingdom","name":"Ayre of Cara, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.900119022684513,58.83327167074278]}},{"type":"Feature","properties":{"id":"sandwick-united-kingdom","name":"Sandwick, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.238694418403314,59.995976239482815]}},{"type":"Feature","properties":{"id":"maywick-united-kingdom","name":"Maywick, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.323801779987484,60.00398405107041]}},{"type":"Feature","properties":{"id":"cavite-philippines","name":"Cavite, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.82010583274857,14.286268059205984]}},{"type":"Feature","properties":{"id":"pa-li-taiwan","name":"Pa Li, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.38319137135348,25.149983824511253]}},{"type":"Feature","properties":{"id":"shindu-ri-south-korea","name":"Shindu-Ri, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.3915862608585,36.5762519059319]}},{"type":"Feature","properties":{"id":"tseung-kwan-o-china","name":"Tseung Kwan O, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.25868469966966,22.31829585896108]}},{"type":"Feature","properties":{"id":"qingdao-china","name":"Qingdao, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.34256710854024,36.08707301679953]}},{"type":"Feature","properties":{"id":"chikura-japan","name":"Chikura, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.95466259014782,34.976657744880164]}},{"type":"Feature","properties":{"id":"tanshui-taiwan","name":"Tanshui, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.46258584635854,25.18136115573805]}},{"type":"Feature","properties":{"id":"fangshan-taiwan","name":"Fangshan, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.66209813218148,22.249258581382197]}},{"type":"Feature","properties":{"id":"batangas-philippines","name":"Batangas, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.06492987806165,13.765553306627538]}},{"type":"Feature","properties":{"id":"chung-hom-kok-china","name":"Chung Hom Kok, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.2030206766037,22.222049985803473]}},{"type":"Feature","properties":{"id":"changi-south-singapore","name":"Changi South, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.9870122887188,1.389044778364265]}},{"type":"Feature","properties":{"id":"tanjung-bemban-indonesia","name":"Tanjung Bemban, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.13310593522472,1.17320547147447]}},{"type":"Feature","properties":{"id":"kelibia-tunisia","name":"Kelibia, Tunisia","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.089910129147581,36.8493105782478]}},{"type":"Feature","properties":{"id":"sventoji-lithuania","name":"Sventoji, Lithuania","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.08238351913671,56.0282882271951]}},{"type":"Feature","properties":{"id":"liepaja-latvia","name":"Liepaja, Latvia","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.011289819499044,56.50818700923447]}},{"type":"Feature","properties":{"id":"kotka-finland","name":"Kotka, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[26.88355128453393,60.5010413821721]}},{"type":"Feature","properties":{"id":"helsinki-finland","name":"Helsinki, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.932478447942366,60.17107541825205]}},{"type":"Feature","properties":{"id":"stavsnas-sweden","name":"Stavsnas, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.688335038692102,59.29277953886518]}},{"type":"Feature","properties":{"id":"mariehamn-finland","name":"Mariehamn, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.937853079931752,60.11383725176352]}},{"type":"Feature","properties":{"id":"haradsholm-finland","name":"Haradsholm, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[22.30210921757059,60.300969420291864]}},{"type":"Feature","properties":{"id":"tallinn-estonia","name":"Tallinn, Estonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.752400450511306,59.43619967386813]}},{"type":"Feature","properties":{"id":"stockholm-sweden","name":"Stockholm, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.062854408198472,59.33220864029587]}},{"type":"Feature","properties":{"id":"toamasina-madagascar","name":"Toamasina, Madagascar","is_tbd":false},"geometry":{"type":"Point","coordinates":[49.4003322084351,-18.146178330153365]}},{"type":"Feature","properties":{"id":"sainte-marie-runion","name":"Sainte Marie, Réunion","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.5499372269983,-20.89737367686448]}},{"type":"Feature","properties":{"id":"terre-rouge-mauritius","name":"Terre Rouge, Mauritius","is_tbd":false},"geometry":{"type":"Point","coordinates":[57.510092088405194,-20.077808728343975]}},{"type":"Feature","properties":{"id":"penmarch-france","name":"Penmarch, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.338692222335817,47.811315015459364]}},{"type":"Feature","properties":{"id":"nouakchott-mauritania","name":"Nouakchott, Mauritania","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.978283586115094,18.083870571147802]}},{"type":"Feature","properties":{"id":"banjul-gambia","name":"Banjul, Gambia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.58135933076553,13.455945272538813]}},{"type":"Feature","properties":{"id":"baillif-guadeloupe","name":"Baillif, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.71394454591877,16.02894096235337]}},{"type":"Feature","properties":{"id":"needhams-point-barbados","name":"Needham’s Point, Barbados","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.61272533131711,13.078788771964126]}},{"type":"Feature","properties":{"id":"rodney-bay-saint-lucia","name":"Rodney Bay, Saint Lucia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.98855443479185,14.035627463902806]}},{"type":"Feature","properties":{"id":"kingstown-saint-vincent-and-the-grenadines","name":"Kingstown, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.20825642758987,13.145437164552455]}},{"type":"Feature","properties":{"id":"point-salines-grenada","name":"Point Salines, Grenada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.79057834201764,12.008822041918634]}},{"type":"Feature","properties":{"id":"st-johns-antigua-and-barbuda","name":"St. John’s, Antigua and Barbuda","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.85793858453698,17.05148365600316]}},{"type":"Feature","properties":{"id":"le-lamentin-martinique","name":"Le Lamentin, Martinique","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.094267250528915,14.615536344106692]}},{"type":"Feature","properties":{"id":"canefield-dominica","name":"Canefield, Dominica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.384843216557165,15.303329396919429]}},{"type":"Feature","properties":{"id":"seixal-portugal","name":"Seixal, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-9.107390016020597,38.642277931043054]}},{"type":"Feature","properties":{"id":"accra-ghana","name":"Accra, Ghana","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.201097497196668,5.558283401661053]}},{"type":"Feature","properties":{"id":"pohnpei-micronesia","name":"Pohnpei, Micronesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[159.070334,7.786486]}},{"type":"Feature","properties":{"id":"tarawa-kiribati","name":"Tarawa, Kiribati","is_tbd":false},"geometry":{"type":"Point","coordinates":[172.97909999999962,1.329099999999538]}},{"type":"Feature","properties":{"id":"yaren-nauru","name":"Yaren, Nauru","is_tbd":false},"geometry":{"type":"Point","coordinates":[166.9210999999995,0.546700000000151]}},{"type":"Feature","properties":{"id":"kosrae-micronesia","name":"Kosrae, Micronesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[163.00810000000064,5.327899999999427]}},{"type":"Feature","properties":{"id":"kwajalein-marshall-islands","name":"Kwajalein, Marshall Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.4243696928496,9.189776771931857]}},{"type":"Feature","properties":{"id":"lagos-nigeria","name":"Lagos, Nigeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[3.423216341555379,6.438874849613729]}},{"type":"Feature","properties":{"id":"apia-samoa","name":"Apia, Samoa","is_tbd":false},"geometry":{"type":"Point","coordinates":[-171.7666841189259,-13.83367556515764]}},{"type":"Feature","properties":{"id":"pago-pago-american-samoa","name":"Pago Pago, American Samoa","is_tbd":false},"geometry":{"type":"Point","coordinates":[-170.69571319792425,-14.276549258314652]}},{"type":"Feature","properties":{"id":"catania-italy","name":"Catania, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.067446373923563,37.51158912057901]}},{"type":"Feature","properties":{"id":"tripoli-lebanon","name":"Tripoli, Lebanon","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.85913086364927,34.43942017407265]}},{"type":"Feature","properties":{"id":"marseille-france","name":"Marseille, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.372629023073098,43.29316463678684]}},{"type":"Feature","properties":{"id":"chabahar-iran","name":"Chabahar, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[60.62962112850147,25.298225757613157]}},{"type":"Feature","properties":{"id":"bandar-abbas-iran","name":"Bandar Abbas, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[56.2743507763158,27.187166634918263]}},{"type":"Feature","properties":{"id":"valdez-ak-united-states","name":"Valdez, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-146.35334076333427,61.13035268631903]}},{"type":"Feature","properties":{"id":"coleraine-united-kingdom","name":"Coleraine, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.676190566430063,55.13073527680774]}},{"type":"Feature","properties":{"id":"moroni-comoros","name":"Moroni, Comoros","is_tbd":false},"geometry":{"type":"Point","coordinates":[43.24340297631166,-11.700694108521688]}},{"type":"Feature","properties":{"id":"maria-chiquita-panama","name":"Maria Chiquita, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.75354358290546,9.437336030723529]}},{"type":"Feature","properties":{"id":"clonshaugh-ireland","name":"Clonshaugh, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.197919420866779,53.41005646403016]}},{"type":"Feature","properties":{"id":"madang-papua-new-guinea","name":"Madang, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.78476099911464,-5.233684557346384]}},{"type":"Feature","properties":{"id":"vanimo-papua-new-guinea","name":"Vanimo, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.29985206689105,-2.689686209025461]}},{"type":"Feature","properties":{"id":"wewak-papua-new-guinea","name":"Wewak, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[143.65832207581576,-3.580017060976444]}},{"type":"Feature","properties":{"id":"lorengau-papua-new-guinea","name":"Lorengau, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[147.27904704992326,-2.034973696257618]}},{"type":"Feature","properties":{"id":"kavieng-papua-new-guinea","name":"Kavieng, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[150.80860997923475,-2.578109968566538]}},{"type":"Feature","properties":{"id":"kokopo-papua-new-guinea","name":"Kokopo, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[152.27462456569725,-4.342345484470949]}},{"type":"Feature","properties":{"id":"kimbe-papua-new-guinea","name":"Kimbe, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[150.13873740690366,-5.551156943700584]}},{"type":"Feature","properties":{"id":"arawa-papua-new-guinea","name":"Arawa, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[155.56781070933528,-6.225626589587894]}},{"type":"Feature","properties":{"id":"lae-papua-new-guinea","name":"Lae, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[146.9929632682127,-6.742790426839873]}},{"type":"Feature","properties":{"id":"popondetta-papua-new-guinea","name":"Popondetta, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[148.29347504222986,-8.604481957230574]}},{"type":"Feature","properties":{"id":"alotau-papua-new-guinea","name":"Alotau, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[150.4587811254958,-10.315707376355984]}},{"type":"Feature","properties":{"id":"kerema-papua-new-guinea","name":"Kerema, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.77174831301969,-7.963732377083875]}},{"type":"Feature","properties":{"id":"daru-papua-new-guinea","name":"Daru, Papua New Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[143.2099825496737,-9.078178461616169]}},{"type":"Feature","properties":{"id":"mtunzini-south-africa","name":"Mtunzini, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[31.75786423777489,-28.950640880887153]}},{"type":"Feature","properties":{"id":"maputo-mozambique","name":"Maputo, Mozambique","is_tbd":false},"geometry":{"type":"Point","coordinates":[32.58061756117876,-25.968533089796413]}},{"type":"Feature","properties":{"id":"dar-es-salaam-tanzania","name":"Dar Es Salaam, Tanzania","is_tbd":false},"geometry":{"type":"Point","coordinates":[39.26967532258757,-6.823229228025631]}},{"type":"Feature","properties":{"id":"alexandria-egypt","name":"Alexandria, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[29.889799154879793,31.191886381300385]}},{"type":"Feature","properties":{"id":"suez-egypt","name":"Suez, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[32.53012931569517,29.9722883988634]}},{"type":"Feature","properties":{"id":"glen-lyon-united-kingdom","name":"Glen Lyon, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.333418788572565,60.33307401281914]}},{"type":"Feature","properties":{"id":"zafarana-egypt","name":"Zafarana, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[32.649855793379736,29.116686929125173]}},{"type":"Feature","properties":{"id":"abu-talat-egypt","name":"Abu Talat, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[29.702494600068096,31.071848731738037]}},{"type":"Feature","properties":{"id":"poti-georgia","name":"Poti, Georgia","is_tbd":false},"geometry":{"type":"Point","coordinates":[41.667622842608914,42.150771468682514]}},{"type":"Feature","properties":{"id":"balchik-bulgaria","name":"Balchik, Bulgaria","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.167437093767106,43.41434082476211]}},{"type":"Feature","properties":{"id":"homer-ak-united-states","name":"Homer, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.54430693463783,59.6463664840008]}},{"type":"Feature","properties":{"id":"florence-or-united-states","name":"Florence, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.09983785116658,43.98213392544815]}},{"type":"Feature","properties":{"id":"anchorage-ak-united-states","name":"Anchorage, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.85837062897107,61.21746022819186]}},{"type":"Feature","properties":{"id":"nikiski-ak-united-states","name":"Nikiski, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.2917192229484,60.68982437473834]}},{"type":"Feature","properties":{"id":"nuuk-greenland","name":"Nuuk, Greenland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-51.72996724366197,64.18113207585318]}},{"type":"Feature","properties":{"id":"qaqortoq-greenland","name":"Qaqortoq, Greenland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-46.03539119962808,60.71893720673817]}},{"type":"Feature","properties":{"id":"landeyjar-iceland","name":"Landeyjar, Iceland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-20.142294308165763,63.64216740018537]}},{"type":"Feature","properties":{"id":"wrangell-ak-united-states","name":"Wrangell, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-132.38381635771856,56.47079696590441]}},{"type":"Feature","properties":{"id":"petersburg-ak-united-states","name":"Petersburg, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-132.97004641117766,56.80761348649167]}},{"type":"Feature","properties":{"id":"hawk-inlet-ak-united-states","name":"Hawk Inlet, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-134.74182249978475,58.128107290422165]}},{"type":"Feature","properties":{"id":"matthew-town-bahamas","name":"Matthew Town, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.68307669187324,20.95051347324147]}},{"type":"Feature","properties":{"id":"port-au-prince-haiti","name":"Port-au-Prince, Haiti","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.34313623484967,18.542691638169746]}},{"type":"Feature","properties":{"id":"redondo-beach-ca-united-states","name":"Redondo Beach, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-118.3880254912181,33.844471699903785]}},{"type":"Feature","properties":{"id":"colombo-sri-lanka","name":"Colombo, Sri Lanka","is_tbd":false},"geometry":{"type":"Point","coordinates":[79.87199030952667,6.926734329228445]}},{"type":"Feature","properties":{"id":"al-faw-iraq","name":"Al Faw, Iraq","is_tbd":false},"geometry":{"type":"Point","coordinates":[48.531778136227075,29.923295047889447]}},{"type":"Feature","properties":{"id":"port-antonio-jamaica","name":"Port Antonio, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.44607954957705,18.176323584205434]}},{"type":"Feature","properties":{"id":"bull-bay-jamaica","name":"Bull Bay, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.66665199999949,17.949940999999754]}},{"type":"Feature","properties":{"id":"negril-jamaica","name":"Negril, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.3482567,18.278668550000276]}},{"type":"Feature","properties":{"id":"montego-bay-jamaica","name":"Montego Bay, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.92137900000012,18.46936000000036]}},{"type":"Feature","properties":{"id":"black-river-jamaica","name":"Black River, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.84837204999995,18.023692299999826]}},{"type":"Feature","properties":{"id":"ocho-rios-jamaica","name":"Ocho Rios, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.10319145653189,18.398554763480092]}},{"type":"Feature","properties":{"id":"port-vila-vanuatu","name":"Port Vila, Vanuatu","is_tbd":false},"geometry":{"type":"Point","coordinates":[168.32280655638846,-17.73033029960228]}},{"type":"Feature","properties":{"id":"jacksonville-fl-united-states","name":"Jacksonville, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.65573950099538,30.33176074674755]}},{"type":"Feature","properties":{"id":"skalvik-sweden","name":"Skalvik, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.68326837539771,56.68318839192751]}},{"type":"Feature","properties":{"id":"vestero-denmark","name":"Vestero, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.966960997494754,57.272250331765626]}},{"type":"Feature","properties":{"id":"lyngsa-denmark","name":"Lyngsa, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.514617567940144,57.244805156352555]}},{"type":"Feature","properties":{"id":"deeside-clwyd-united-kingdom","name":"Deeside Clwyd, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.027560338653928,53.201726854005564]}},{"type":"Feature","properties":{"id":"willemstad-curaao","name":"Willemstad, Curaçao","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.89660547327941,12.09531920781741]}},{"type":"Feature","properties":{"id":"hollywood-fl-united-states","name":"Hollywood, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.160161,26.010495]}},{"type":"Feature","properties":{"id":"condado-beach-pr-united-states","name":"Condado Beach, PR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.07795512628769,18.459899231626796]}},{"type":"Feature","properties":{"id":"isla-verde-pr-united-states","name":"Isla Verde, PR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.01687299999985,18.442036999999676]}},{"type":"Feature","properties":{"id":"punta-salinas-pr-united-states","name":"Punta Salinas, PR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.18575110125005,18.47299398772983]}},{"type":"Feature","properties":{"id":"butler-bay-virgin-islands-u-s-","name":"Butler Bay, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.8805299999999,17.753369999999727]}},{"type":"Feature","properties":{"id":"st-croix-virgin-islands-virgin-islands-u-s-","name":"St. Croix, Virgin Islands, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.8194110959771,17.77186426252591]}},{"type":"Feature","properties":{"id":"fortaleza-brazil","name":"Fortaleza, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-38.54297900000012,-3.718537]}},{"type":"Feature","properties":{"id":"cancn-mexico","name":"Cancún, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-86.76756599999986,21.095659999999558]}},{"type":"Feature","properties":{"id":"lowestoft-united-kingdom","name":"Lowestoft, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.729174572880337,52.47136138660393]}},{"type":"Feature","properties":{"id":"krst-norway","name":"Kårstø, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.524386728065418,59.27926561977106]}},{"type":"Feature","properties":{"id":"lista-norway","name":"Lista, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.786928999999851,58.06444]}},{"type":"Feature","properties":{"id":"tanjung-pandan-indonesia","name":"Tanjung Pandan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[107.662926,-2.767443000000358]}},{"type":"Feature","properties":{"id":"sines-portugal","name":"Sines, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-8.869599,37.957190000000196]}},{"type":"Feature","properties":{"id":"tripoli-libya","name":"Tripoli, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.187271924606817,32.877298517745]}},{"type":"Feature","properties":{"id":"schoelcher-martinique","name":"Schoelcher, Martinique","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.11213699999982,14.629004999999763]}},{"type":"Feature","properties":{"id":"mahuma-curaao","name":"Mahuma, Curaçao","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.95694320562458,12.168897494151157]}},{"type":"Feature","properties":{"id":"tolu-colombia","name":"Tolu, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.55868571473619,9.496684976707714]}},{"type":"Feature","properties":{"id":"puerto-cortes-honduras","name":"Puerto Cortes, Honduras","is_tbd":false},"geometry":{"type":"Point","coordinates":[-87.946157,15.84523299999986]}},{"type":"Feature","properties":{"id":"half-moon-bay-cayman-islands","name":"Half Moon Bay, Cayman Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.16677500363237,19.28295827240884]}},{"type":"Feature","properties":{"id":"puerto-limon-costa-rica","name":"Puerto Limon, Costa Rica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-83.037697,9.988570000000225]}},{"type":"Feature","properties":{"id":"basseterre-saint-kitts-and-nevis","name":"Basseterre, Saint Kitts and Nevis","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.73121677449255,17.29863882853097]}},{"type":"Feature","properties":{"id":"dickenson-bay-antigua-and-barbuda","name":"Dickenson Bay, Antigua and Barbuda","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.84685007059131,17.159562620478198]}},{"type":"Feature","properties":{"id":"luanda-angola","name":"Luanda, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.234998,-8.812663]}},{"type":"Feature","properties":{"id":"cabinda-angola","name":"Cabinda, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.1898399999998,-5.556549000000163]}},{"type":"Feature","properties":{"id":"soyo-angola","name":"Soyo, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.352114999999813,-6.141026000001154]}},{"type":"Feature","properties":{"id":"sugar-dock-saipan-northern-mariana-islands","name":"Sugar Dock, Saipan, Northern Mariana Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.69958039539418,15.151811637858861]}},{"type":"Feature","properties":{"id":"fukuoka-japan","name":"Fukuoka, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.40171599999988,33.59035499999965]}},{"type":"Feature","properties":{"id":"dawu-taiwan","name":"Dawu, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.88978000000047,22.340450000000153]}},{"type":"Feature","properties":{"id":"mumbai-india","name":"Mumbai, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.87586599999976,19.07608000000048]}},{"type":"Feature","properties":{"id":"brisbane-qld-australia","name":"Brisbane, QLD, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[153.0228269999997,-27.468880000000254]}},{"type":"Feature","properties":{"id":"aqaba-jordan","name":"Aqaba, Jordan","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.005095000000225,29.581029499999897]}},{"type":"Feature","properties":{"id":"haql-saudi-arabia","name":"Haql, Saudi Arabia","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.95220799999987,29.283851999999897]}},{"type":"Feature","properties":{"id":"tympaki-greece","name":"Tympaki, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.768278120000296,35.07140756999981]}},{"type":"Feature","properties":{"id":"guanyin-mountain-china","name":"Guanyin Mountain, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.18895535292904,24.493917245738405]}},{"type":"Feature","properties":{"id":"st-davids-bermuda","name":"St. David’s, Bermuda","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.76950878757832,32.31223462116531]}},{"type":"Feature","properties":{"id":"holyhead-united-kingdom","name":"Holyhead, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.630391234443445,53.30603695420273]}},{"type":"Feature","properties":{"id":"kuwait-city-kuwait","name":"Kuwait City, Kuwait","is_tbd":false},"geometry":{"type":"Point","coordinates":[47.97474728083281,29.37401624369425]}},{"type":"Feature","properties":{"id":"bushehr-iran","name":"Bushehr, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.842713999138304,28.970010723820973]}},{"type":"Feature","properties":{"id":"al-khobar-saudi-arabia","name":"Al Khobar, Saudi Arabia","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.214198819384315,26.286171946143295]}},{"type":"Feature","properties":{"id":"shantou-china","name":"Shantou, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.67547986258927,23.354554663214007]}},{"type":"Feature","properties":{"id":"breivika-norway","name":"Breivika, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[16.553187508910593,68.73504741252802]}},{"type":"Feature","properties":{"id":"longyearbyen-svalbard-norway","name":"Longyearbyen, Svalbard, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.648793618341642,78.21852706841459]}},{"type":"Feature","properties":{"id":"amwaj-island-bahrain","name":"Amwaj Island, Bahrain","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.57581965695888,26.228971616238493]}},{"type":"Feature","properties":{"id":"conakry-guinea","name":"Conakry, Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[-13.70382230673977,9.513624453698883]}},{"type":"Feature","properties":{"id":"freetown-sierra-leone","name":"Freetown, Sierra Leone","is_tbd":false},"geometry":{"type":"Point","coordinates":[-13.238099980411818,8.485330684414931]}},{"type":"Feature","properties":{"id":"monrovia-liberia","name":"Monrovia, Liberia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-10.79718374082979,6.300076440551201]}},{"type":"Feature","properties":{"id":"abidjan-cte-divoire","name":"Abidjan, Côte d'Ivoire","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.026241271803983,5.323518612555771]}},{"type":"Feature","properties":{"id":"cotonou-benin","name":"Cotonou, Benin","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.43991625688431,6.356578143137007]}},{"type":"Feature","properties":{"id":"libreville-gabon","name":"Libreville, Gabon","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.454364412783434,0.394268790397072]}},{"type":"Feature","properties":{"id":"muanda-congo-dem-rep-","name":"Muanda, Congo, Dem. Rep.","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.349870174080092,-5.933359258652115]}},{"type":"Feature","properties":{"id":"pointe-noire-congo-rep-","name":"Pointe-Noire, Congo, Rep.","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.863640049779946,-4.779091572143155]}},{"type":"Feature","properties":{"id":"lome-togo","name":"Lome, Togo","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.227807740553492,6.126007437636297]}},{"type":"Feature","properties":{"id":"praia-cape-verde","name":"Praia, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-23.521246992608987,14.923010648471926]}},{"type":"Feature","properties":{"id":"el-goro-canary-islands-spain","name":"El Goro, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.398742981042082,27.959398125393665]}},{"type":"Feature","properties":{"id":"guningtou-taiwan","name":"Guningtou, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.30711933172064,24.476142461748875]}},{"type":"Feature","properties":{"id":"lake-ci-taiwan","name":"Lake Ci, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.28973653153483,24.45552056717078]}},{"type":"Feature","properties":{"id":"bata-equatorial-guinea","name":"Bata, Equatorial Guinea","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.768231377937187,1.860069534049234]}},{"type":"Feature","properties":{"id":"dadeng-island-china","name":"Dadeng Island, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.30096699232894,24.55673096336322]}},{"type":"Feature","properties":{"id":"al-kheesa-qatar","name":"Al-Kheesa, Qatar","is_tbd":false},"geometry":{"type":"Point","coordinates":[51.51937367603625,25.294340911551398]}},{"type":"Feature","properties":{"id":"dubai-united-arab-emirates","name":"Dubai, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.308433491830726,25.269340274513237]}},{"type":"Feature","properties":{"id":"victoria-seychelles","name":"Victoria, Seychelles","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.445054488797076,-4.617612256899657]}},{"type":"Feature","properties":{"id":"brean-united-kingdom","name":"Brean, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.010909959824159,51.293736519285474]}},{"type":"Feature","properties":{"id":"tel-aviv-israel","name":"Tel Aviv, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.76967851042755,32.044596253282435]}},{"type":"Feature","properties":{"id":"bari-italy","name":"Bari, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[16.866663849341016,41.12549190517644]}},{"type":"Feature","properties":{"id":"al-hidd-bahrain","name":"Al Hidd, Bahrain","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.656190693773084,26.24158547784863]}},{"type":"Feature","properties":{"id":"al-daayen-qatar","name":"Al Daayen, Qatar","is_tbd":false},"geometry":{"type":"Point","coordinates":[51.45189325509,25.5385891916817]}},{"type":"Feature","properties":{"id":"melaka-malaysia","name":"Melaka, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[102.22090025859913,2.273178376445331]}},{"type":"Feature","properties":{"id":"qalhat-oman","name":"Qalhat, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[59.36666670000019,22.70000000000014]}},{"type":"Feature","properties":{"id":"telisai-brunei","name":"Telisai, Brunei","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.57059854120693,4.703722436182512]}},{"type":"Feature","properties":{"id":"papenoo-french-polynesia","name":"Papenoo, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.44108576832946,-17.51233961268075]}},{"type":"Feature","properties":{"id":"pentaskhinos-cyprus","name":"Pentaskhinos, Cyprus","is_tbd":false},"geometry":{"type":"Point","coordinates":[33.603566055263556,34.82848058540633]}},{"type":"Feature","properties":{"id":"fuzhou-china","name":"Fuzhou, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.61855638196424,25.78006638728176]}},{"type":"Feature","properties":{"id":"yzerfontein-south-africa","name":"Yzerfontein, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.15553012379608,-33.34822369818516]}},{"type":"Feature","properties":{"id":"swakopmund-namibia","name":"Swakopmund, Namibia","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.528091287257743,-22.678326281671723]}},{"type":"Feature","properties":{"id":"limbe-cameroon","name":"Limbe, Cameroon","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.208466149480143,4.014515699202046]}},{"type":"Feature","properties":{"id":"oran-algeria","name":"Oran, Algeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.641966325506066,35.701644687598005]}},{"type":"Feature","properties":{"id":"valencia-spain","name":"Valencia, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.376976278852502,39.468309046511735]}},{"type":"Feature","properties":{"id":"kribi-cameroon","name":"Kribi, Cameroon","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.910418777210333,2.932917598068574]}},{"type":"Feature","properties":{"id":"derna-libya","name":"Derna, Libya","is_tbd":false},"geometry":{"type":"Point","coordinates":[22.639218353759222,32.76355277517541]}},{"type":"Feature","properties":{"id":"chania-greece","name":"Chania, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.01216659989987,35.51180510130388]}},{"type":"Feature","properties":{"id":"harbour-view-jamaica","name":"Harbour View, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.71686360521018,17.949676769482377]}},{"type":"Feature","properties":{"id":"haina-dominican-republic","name":"Haina, Dominican Republic","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.16183895197608,18.698998571766964]}},{"type":"Feature","properties":{"id":"nanny-cay-virgin-islands-u-k-","name":"Nanny Cay, Virgin Islands (U.K.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.5972432846129,18.414781849275833]}},{"type":"Feature","properties":{"id":"nyali-kenya","name":"Nyali, Kenya","is_tbd":false},"geometry":{"type":"Point","coordinates":[39.70004611145872,-4.050503576490907]}},{"type":"Feature","properties":{"id":"kaweni-mayotte","name":"Kaweni, Mayotte","is_tbd":false},"geometry":{"type":"Point","coordinates":[45.16586255192312,-12.817103777696085]}},{"type":"Feature","properties":{"id":"lynnwood-wa-united-states","name":"Lynnwood, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.31585473995688,47.82399565289682]}},{"type":"Feature","properties":{"id":"melkbosstrand-south-africa","name":"Melkbosstrand, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.44576429319144,-33.72721429783116]}},{"type":"Feature","properties":{"id":"barranquilla-colombia","name":"Barranquilla, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.77975560247559,10.94046235659719]}},{"type":"Feature","properties":{"id":"los-angeles-ca-united-states","name":"Los Angeles, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-118.24534981104084,34.05339441974166]}},{"type":"Feature","properties":{"id":"toyohashi-japan","name":"Toyohashi, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[137.39157846836073,34.76905869474041]}},{"type":"Feature","properties":{"id":"pedersker-denmark","name":"Pedersker, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.992153458511764,55.03092522192895]}},{"type":"Feature","properties":{"id":"emi-japan","name":"Emi, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.0611078272411,35.06238218890678]}},{"type":"Feature","properties":{"id":"kilmore-quay-ireland","name":"Kilmore Quay, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.584100787917268,52.17458459780514]}},{"type":"Feature","properties":{"id":"oxwich-bay-united-kingdom","name":"Oxwich Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.169600545246942,51.557783405563]}},{"type":"Feature","properties":{"id":"north-miami-beach-fl-united-states","name":"North Miami Beach, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.16238118390437,25.932943369736446]}},{"type":"Feature","properties":{"id":"katthammarsvik-sweden","name":"Katthammarsvik, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.845275728923742,57.43103874071341]}},{"type":"Feature","properties":{"id":"caves-point-bahamas","name":"Caves Point, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.45299589622708,25.068453472867645]}},{"type":"Feature","properties":{"id":"current-bahamas","name":"Current, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.7876643363042,25.407832959532634]}},{"type":"Feature","properties":{"id":"sandy-point-bahamas","name":"Sandy Point, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.39952913722843,26.02520898623078]}},{"type":"Feature","properties":{"id":"cacuaco-angola","name":"Cacuaco, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.372330387259586,-8.776676133719656]}},{"type":"Feature","properties":{"id":"douala-cameroon","name":"Douala, Cameroon","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.70631735929773,4.047149594894643]}},{"type":"Feature","properties":{"id":"kochi-india","name":"Kochi, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[76.2695514552781,9.938085366963655]}},{"type":"Feature","properties":{"id":"baie-jacotet-mauritius","name":"Baie Jacotet, Mauritius","is_tbd":false},"geometry":{"type":"Point","coordinates":[57.48538507465786,-20.473998881300506]}},{"type":"Feature","properties":{"id":"saint-paul-runion","name":"Saint Paul, Réunion","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.27913663758484,-21.000248532786777]}},{"type":"Feature","properties":{"id":"coln-panama","name":"Colón, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.90002785413272,9.3537196548148]}},{"type":"Feature","properties":{"id":"koobrzeg-poland","name":"Kołobrzeg, Poland","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.574867889461414,54.17234594764527]}},{"type":"Feature","properties":{"id":"ystad-sweden","name":"Ystad, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.828287095505607,55.43133306942637]}},{"type":"Feature","properties":{"id":"gedser-denmark","name":"Gedser, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.928972034748147,54.57634945132528]}},{"type":"Feature","properties":{"id":"sandymount-ireland","name":"Sandymount, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.215448705323909,53.331420488921665]}},{"type":"Feature","properties":{"id":"punto-fijo-venezuela","name":"Punto Fijo, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.20436821872299,11.708601794141522]}},{"type":"Feature","properties":{"id":"wada-japan","name":"Wada, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.01677192114903,35.03584970765731]}},{"type":"Feature","properties":{"id":"maiquetia-venezuela","name":"Maiquetia, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.96032754808184,10.599398382983578]}},{"type":"Feature","properties":{"id":"el-djamila-algeria","name":"El Djamila, Algeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.901439367437128,36.80021914596024]}},{"type":"Feature","properties":{"id":"funningsfjordur-faroe-islands","name":"Funningsfjordur, Faroe Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.928143512944177,62.24410742927245]}},{"type":"Feature","properties":{"id":"seydisfjordur-iceland","name":"Seydisfjordur, Iceland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-14.018031068526327,65.25134493671578]}},{"type":"Feature","properties":{"id":"plerin-france","name":"Plerin, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.76808786621663,48.534742361946115]}},{"type":"Feature","properties":{"id":"porto-rafti-greece","name":"Porto Rafti, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.011428,37.888177999999506]}},{"type":"Feature","properties":{"id":"syros-greece","name":"Syros, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.936036453932804,37.441582605439635]}},{"type":"Feature","properties":{"id":"athens-greece","name":"Athens, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[23.73628788908491,37.97607760623158]}},{"type":"Feature","properties":{"id":"ses-covetes-spain","name":"Ses Covetes, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.970970568180556,39.35454015029774]}},{"type":"Feature","properties":{"id":"kitakyushu-japan","name":"Kitakyushu, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.03201266103676,33.83928059318515]}},{"type":"Feature","properties":{"id":"dunnet-bay-united-kingdom","name":"Dunnet Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.346212456667815,58.615311733571986]}},{"type":"Feature","properties":{"id":"harbour-pointe-wa-united-states","name":"Harbour Pointe, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.30218287464227,47.88621453431034]}},{"type":"Feature","properties":{"id":"port-sudan-sudan","name":"Port Sudan, Sudan","is_tbd":false},"geometry":{"type":"Point","coordinates":[37.219676774825814,19.61556365090266]}},{"type":"Feature","properties":{"id":"ganaveh-iran","name":"Ganaveh, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.52113219569988,29.57074954758684]}},{"type":"Feature","properties":{"id":"highbridge-united-kingdom","name":"Highbridge, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.975021313373071,51.2222247152995]}},{"type":"Feature","properties":{"id":"bilbao-spain","name":"Bilbao, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.946163911940864,43.26834394430466]}},{"type":"Feature","properties":{"id":"el-mdano-canary-islands-spain","name":"El Médano, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.538585923566604,28.04665565421597]}},{"type":"Feature","properties":{"id":"ttouan-morocco","name":"Tétouan, Morocco","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.391816476292676,35.56592071383522]}},{"type":"Feature","properties":{"id":"tulum-mexico","name":"Tulum, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-87.46359671477977,20.212553001324675]}},{"type":"Feature","properties":{"id":"hawksbill-bahamas","name":"Hawksbill, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.73684508439224,26.51690828149035]}},{"type":"Feature","properties":{"id":"belize-city-belize","name":"Belize City, Belize","is_tbd":false},"geometry":{"type":"Point","coordinates":[-88.18161378425482,17.49554695903865]}},{"type":"Feature","properties":{"id":"logi-russia","name":"Logi, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.499858733276664,59.79988465730388]}},{"type":"Feature","properties":{"id":"cartagena-colombia","name":"Cartagena, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.50568282259698,10.386695392812182]}},{"type":"Feature","properties":{"id":"cat-island-bahamas","name":"Cat Island, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.52589765202663,24.403328545640797]}},{"type":"Feature","properties":{"id":"paddington-nsw-australia","name":"Paddington, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.22867804102958,-33.882122576911726]}},{"type":"Feature","properties":{"id":"oxford-falls-nsw-australia","name":"Oxford Falls, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.24508427940717,-33.73738646442723]}},{"type":"Feature","properties":{"id":"tumon-bay-guam","name":"Tumon Bay, Guam","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.80055759477045,13.513588412077038]}},{"type":"Feature","properties":{"id":"chennai-india","name":"Chennai, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[80.24308379664043,13.06348539106232]}},{"type":"Feature","properties":{"id":"puerto-san-jose-guatemala","name":"Puerto San Jose, Guatemala","is_tbd":false},"geometry":{"type":"Point","coordinates":[-90.82221860307868,13.93461171167569]}},{"type":"Feature","properties":{"id":"vero-beach-fl-united-states","name":"Vero Beach, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.39426578526016,27.638389595699074]}},{"type":"Feature","properties":{"id":"eight-mile-rock-bahamas","name":"Eight-Mile Rock, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.80286066262623,26.539625615887893]}},{"type":"Feature","properties":{"id":"mazatln-mexico","name":"Mazatlán, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-106.42186575526726,23.199540284207416]}},{"type":"Feature","properties":{"id":"puerto-cabezas-nicaragua","name":"Puerto Cabezas, Nicaragua","is_tbd":false},"geometry":{"type":"Point","coordinates":[-83.39392186340065,14.021605416550207]}},{"type":"Feature","properties":{"id":"chongming-china","name":"Chongming, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.39520308159317,31.619883221433906]}},{"type":"Feature","properties":{"id":"bandon-or-united-states","name":"Bandon, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.40823607019432,43.11855671756466]}},{"type":"Feature","properties":{"id":"coro-venezuela","name":"Coro, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.67781829876685,11.402807398422437]}},{"type":"Feature","properties":{"id":"puerto-cabello-venezuela","name":"Puerto Cabello, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.00958217587402,10.47812721955833]}},{"type":"Feature","properties":{"id":"puerto-la-cruz-venezuela","name":"Puerto La Cruz, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.64487508680698,10.202538298184441]}},{"type":"Feature","properties":{"id":"cuman-venezuela","name":"Cumaná, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.18211906697175,10.454299429434665]}},{"type":"Feature","properties":{"id":"porlamar-venezuela","name":"Porlamar, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.847610026597096,10.955251673780337]}},{"type":"Feature","properties":{"id":"carpano-venezuela","name":"Carúpano, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.25052793004462,10.66679985529808]}},{"type":"Feature","properties":{"id":"maracaibo-venezuela","name":"Maracaibo, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.5983857858748,10.688212118052798]}},{"type":"Feature","properties":{"id":"cabimas-venezuela","name":"Cabimas, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.45109585115439,10.395952645405428]}},{"type":"Feature","properties":{"id":"chichiriviche-venezuela","name":"Chichiriviche, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.28449653190309,10.928572840410887]}},{"type":"Feature","properties":{"id":"higuerote-venezuela","name":"Higuerote, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.09810892060456,10.480347852296964]}},{"type":"Feature","properties":{"id":"bellport-ny-united-states","name":"Bellport, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.93781354794966,40.75554434597573]}},{"type":"Feature","properties":{"id":"puerto-viejo-venezuela","name":"Puerto Viejo, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-67.02995640500605,10.611204913055875]}},{"type":"Feature","properties":{"id":"skewjack-united-kingdom","name":"Skewjack, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.675068228759502,50.06356023166617]}},{"type":"Feature","properties":{"id":"lena-point-ak-united-states","name":"Lena Point, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-134.74729124591073,58.55094319826626]}},{"type":"Feature","properties":{"id":"whittier-ak-united-states","name":"Whittier, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-148.68473864788308,60.77292972367666]}},{"type":"Feature","properties":{"id":"krdla-estonia","name":"Kärdla, Estonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[22.738046408748538,59.000859927788326]}},{"type":"Feature","properties":{"id":"alta-vista-canary-islands-spain","name":"Alta Vista, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.699963470779627,27.999500527830264]}},{"type":"Feature","properties":{"id":"tirat-carmel-israel","name":"Tirat Carmel, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.97190100000024,32.76170000000019]}},{"type":"Feature","properties":{"id":"istanbul-turkey","name":"Istanbul, Turkey","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.98608885757663,41.040611420515305]}},{"type":"Feature","properties":{"id":"sochi-russia","name":"Sochi, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[39.725827343195164,43.61550412193386]}},{"type":"Feature","properties":{"id":"juneau-ak-united-states","name":"Juneau, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-134.40686179957416,58.29950660150375]}},{"type":"Feature","properties":{"id":"doha-qatar","name":"Doha, Qatar","is_tbd":false},"geometry":{"type":"Point","coordinates":[51.51937367603625,25.294340911551398]}},{"type":"Feature","properties":{"id":"manama-bahrain","name":"Manama, Bahrain","is_tbd":false},"geometry":{"type":"Point","coordinates":[50.57581965695888,26.228971616238493]}},{"type":"Feature","properties":{"id":"lannion-france","name":"Lannion, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.459933079231995,48.73025676356547]}},{"type":"Feature","properties":{"id":"shirley-ny-united-states","name":"Shirley, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.87223742252935,40.800283994912625]}},{"type":"Feature","properties":{"id":"manasquan-nj-united-states","name":"Manasquan, NJ, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.04704127778734,40.12334092150613]}},{"type":"Feature","properties":{"id":"tong-fuk-china","name":"Tong Fuk, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[113.93212243100953,22.22738364829369]}},{"type":"Feature","properties":{"id":"ishikari-japan","name":"Ishikari, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.31540381368595,43.17117674741425]}},{"type":"Feature","properties":{"id":"nevelsk-russia","name":"Nevelsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.85915342848875,46.68444926886588]}},{"type":"Feature","properties":{"id":"kenai-ak-united-states","name":"Kenai, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.2597856518206,60.5529093819705]}},{"type":"Feature","properties":{"id":"kurilsk-russia","name":"Kurilsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[147.88148802939835,45.08668134949964]}},{"type":"Feature","properties":{"id":"yuzhno-kurilsk-russia","name":"Yuzhno Kurilsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[145.85861348585973,44.03452277512195]}},{"type":"Feature","properties":{"id":"krabozavodskoye-russia","name":"Krabozavodskoye, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[146.7472359032252,43.793619741897466]}},{"type":"Feature","properties":{"id":"kodiak-ak-united-states","name":"Kodiak, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-152.39528289429848,57.79413583493922]}},{"type":"Feature","properties":{"id":"seward-ak-united-states","name":"Seward, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.44313654812672,60.11218885428943]}},{"type":"Feature","properties":{"id":"narrow-cape-ak-united-states","name":"Narrow Cape, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-152.32916965988372,57.42683949335291]}},{"type":"Feature","properties":{"id":"vladivostok-russia","name":"Vladivostok, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.91075500000053,43.154616000000395]}},{"type":"Feature","properties":{"id":"teriberka-russia","name":"Teriberka, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.114214552955936,69.18399665130558]}},{"type":"Feature","properties":{"id":"amderma-russia","name":"Amderma, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[61.663700000000304,69.7511999999999]}},{"type":"Feature","properties":{"id":"tiksi-russia","name":"Tiksi, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.8645,71.6375]}},{"type":"Feature","properties":{"id":"pevek-russia","name":"Pevek, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[170.30700000000036,69.7029]}},{"type":"Feature","properties":{"id":"anadyr-russia","name":"Anadyr, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[177.50214600000047,64.727191]}},{"type":"Feature","properties":{"id":"petropavlovsk-kamchatsky-russia","name":"Petropavlovsk-Kamchatsky, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[158.64999999999947,53.016667]}},{"type":"Feature","properties":{"id":"trivandrum-india","name":"Trivandrum, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[76.9702345526576,8.798144205946052]}},{"type":"Feature","properties":{"id":"unqui-costa-rica","name":"Unqui, Costa Rica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-84.45427267473842,9.525855992100668]}},{"type":"Feature","properties":{"id":"noumea-new-caledonia","name":"Noumea, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[166.43921414074313,-22.30332613468035]}},{"type":"Feature","properties":{"id":"asilah-morocco","name":"Asilah, Morocco","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.03576133261609,35.47077689497444]}},{"type":"Feature","properties":{"id":"male-maldives","name":"Male, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.4999245110579,4.166264250014505]}},{"type":"Feature","properties":{"id":"geoje-south-korea","name":"Geoje, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.6211668646306,34.89432230348712]}},{"type":"Feature","properties":{"id":"nedonna-beach-or-united-states","name":"Nedonna Beach, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.94007233934605,45.64373383133319]}},{"type":"Feature","properties":{"id":"siboney-cuba","name":"Siboney, Cuba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.71237212930231,19.9636378462319]}},{"type":"Feature","properties":{"id":"la-guaira-venezuela","name":"La Guaira, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.8896244731685,10.60315396481653]}},{"type":"Feature","properties":{"id":"crown-haven-bahamas","name":"Crown Haven, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.82195315438533,26.912504093122344]}},{"type":"Feature","properties":{"id":"riding-point-bahamas","name":"Riding Point, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.15172399999949,26.70309200000016]}},{"type":"Feature","properties":{"id":"punta-carnero-ecuador","name":"Punta Carnero, Ecuador","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.91443143239492,-2.272915471022624]}},{"type":"Feature","properties":{"id":"keawaula-hi-united-states","name":"Keawaula, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.2420376129735,21.548768815961424]}},{"type":"Feature","properties":{"id":"mancora-peru","name":"Mancora, Peru","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.0537868024245,-4.1540461191663]}},{"type":"Feature","properties":{"id":"ponta-delgada-portugal","name":"Ponta Delgada, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-25.668755236919015,37.73921676257312]}},{"type":"Feature","properties":{"id":"sriracha-thailand","name":"Sriracha, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.93056914143179,13.174368777461584]}},{"type":"Feature","properties":{"id":"vung-tau-vietnam","name":"Vung Tau, Vietnam","is_tbd":false},"geometry":{"type":"Point","coordinates":[107.07919759818566,10.341846070577743]}},{"type":"Feature","properties":{"id":"lantau-island-china","name":"Lantau Island, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[113.94833335702553,22.271491582355683]}},{"type":"Feature","properties":{"id":"ballesteros-philippines","name":"Ballesteros, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.51395299746949,18.40940773757574]}},{"type":"Feature","properties":{"id":"deep-water-bay-china","name":"Deep Water Bay, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.18397772134277,22.24943935172405]}},{"type":"Feature","properties":{"id":"morant-point-jamaica","name":"Morant Point, Jamaica","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.18434445120167,17.918365683335878]}},{"type":"Feature","properties":{"id":"yuzhno-sakhalinsk-russia","name":"Yuzhno-Sakhalinsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[142.7261960000007,46.94897100000021]}},{"type":"Feature","properties":{"id":"dikson-russia","name":"Dikson, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[80.531,73.50769999999989]}},{"type":"Feature","properties":{"id":"nahodka-russia","name":"Nahodka, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[132.89126663453993,42.83453251562785]}},{"type":"Feature","properties":{"id":"joetsu-japan","name":"Joetsu, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[138.23608019999975,37.14784770000004]}},{"type":"Feature","properties":{"id":"dumpton-gap-united-kingdom","name":"Dumpton Gap, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.439331028208309,51.358582140301266]}},{"type":"Feature","properties":{"id":"bredene-belgium","name":"Bredene, Belgium","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.961888543364318,51.24638508954541]}},{"type":"Feature","properties":{"id":"kungsbacka-sweden","name":"Kungsbacka, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.07623755542388,57.48748132890355]}},{"type":"Feature","properties":{"id":"helsingborg-sweden","name":"Helsingborg, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.695866022723388,56.04384398259434]}},{"type":"Feature","properties":{"id":"saeby-denmark","name":"Saeby, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.516570691556621,57.330828814195215]}},{"type":"Feature","properties":{"id":"helsingr-denmark","name":"Helsingør, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.592155158693062,56.030436808568545]}},{"type":"Feature","properties":{"id":"dragor-denmark","name":"Dragor, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.670182447167821,55.59353552411722]}},{"type":"Feature","properties":{"id":"bunkeflostand-sweden","name":"Bunkeflostand, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.918717427353373,55.55680878388793]}},{"type":"Feature","properties":{"id":"tuborg-denmark","name":"Tuborg, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.545573160442244,55.72195316407595]}},{"type":"Feature","properties":{"id":"barsebck-sweden","name":"Barsebäck, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.955436151341473,55.770378890641]}},{"type":"Feature","properties":{"id":"ballygrangans-ireland","name":"Ballygrangans, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.558807837085033,52.18407589401448]}},{"type":"Feature","properties":{"id":"ballinesker-ireland","name":"Ballinesker, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.364862661977602,52.401459561554596]}},{"type":"Feature","properties":{"id":"blackpool-united-kingdom","name":"Blackpool, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.05075368159855,53.80866015617716]}},{"type":"Feature","properties":{"id":"beirut-lebanon","name":"Beirut, Lebanon","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.485205347291476,33.89247448375563]}},{"type":"Feature","properties":{"id":"saida-lebanon","name":"Saida, Lebanon","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.386279636121465,33.4501912731296]}},{"type":"Feature","properties":{"id":"tartous-syria","name":"Tartous, Syria","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.89780271125367,34.891704567154335]}},{"type":"Feature","properties":{"id":"cayman-brac-cayman-islands","name":"Cayman Brac, Cayman Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.87764017468034,19.69033315700396]}},{"type":"Feature","properties":{"id":"zandvoort-netherlands","name":"Zandvoort, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.527219465719253,52.3704061705303]}},{"type":"Feature","properties":{"id":"pevensey-bay-united-kingdom","name":"Pevensey Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[0.366675538087496,50.81901885178741]}},{"type":"Feature","properties":{"id":"cayeux-sur-mer-france","name":"Cayeux-sur-Mer, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.493432552382221,50.17880871289953]}},{"type":"Feature","properties":{"id":"broadstairs-united-kingdom","name":"Broadstairs, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.439428684389187,51.358887043552194]}},{"type":"Feature","properties":{"id":"ostend-belgium","name":"Ostend, Belgium","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.912669828231236,51.23112295648549]}},{"type":"Feature","properties":{"id":"puttgarden-germany","name":"Puttgarden, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.212468636075984,54.49606370712455]}},{"type":"Feature","properties":{"id":"rodbyhavn-denmark","name":"Rodbyhavn, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.3586599387626,54.66307223472263]}},{"type":"Feature","properties":{"id":"balluta-bay-malta","name":"Balluta Bay, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.380044517135529,35.93405994507042]}},{"type":"Feature","properties":{"id":"abu-dhabi-united-arab-emirates","name":"Abu Dhabi, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[54.41888334074638,24.44378591321795]}},{"type":"Feature","properties":{"id":"warrenton-or-united-states","name":"Warrenton, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.92386141332996,46.165128101471126]}},{"type":"Feature","properties":{"id":"toliara-madagascar","name":"Toliara, Madagascar","is_tbd":false},"geometry":{"type":"Point","coordinates":[43.663129241473605,-23.354761383307334]}},{"type":"Feature","properties":{"id":"saint-maarten-sint-maarten","name":"Saint Maarten, Sint Maarten","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.07370920764874,18.031041063586688]}},{"type":"Feature","properties":{"id":"halul-island-qatar","name":"Halul Island, Qatar","is_tbd":false},"geometry":{"type":"Point","coordinates":[52.42025194409558,25.668564866048857]}},{"type":"Feature","properties":{"id":"das-island-united-arab-emirates","name":"Das Island, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[52.86595475335555,25.152635742226693]}},{"type":"Feature","properties":{"id":"jask-iran","name":"Jask, Iran","is_tbd":false},"geometry":{"type":"Point","coordinates":[57.79739657237602,25.681238922769957]}},{"type":"Feature","properties":{"id":"al-safat-kuwait","name":"Al Safat, Kuwait","is_tbd":false},"geometry":{"type":"Point","coordinates":[47.97650509208753,29.3699313067502]}},{"type":"Feature","properties":{"id":"khasab-oman","name":"Khasab, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[56.24681173332482,26.181306905191125]}},{"type":"Feature","properties":{"id":"annaba-algeria","name":"Annaba, Algeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.755439835067562,36.902343529231146]}},{"type":"Feature","properties":{"id":"algiers-algeria","name":"Algiers, Algeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[3.031810368831078,36.76533572626506]}},{"type":"Feature","properties":{"id":"al-ghaydah-yemen","name":"Al Ghaydah, Yemen","is_tbd":false},"geometry":{"type":"Point","coordinates":[52.18236148761941,16.21038241802069]}},{"type":"Feature","properties":{"id":"al-hudaydah-yemen","name":"Al Hudaydah, Yemen","is_tbd":false},"geometry":{"type":"Point","coordinates":[42.954519999999896,14.797809999999796]}},{"type":"Feature","properties":{"id":"kokkini-greece","name":"Kokkini, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.92398590225538,39.753828327850364]}},{"type":"Feature","properties":{"id":"palermo-italy","name":"Palermo, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.358365553402518,38.12150089552133]}},{"type":"Feature","properties":{"id":"bizerte-tunisia","name":"Bizerte, Tunisia","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.867352401468954,37.276349513656555]}},{"type":"Feature","properties":{"id":"coxs-bazar-bangladesh","name":"Cox’s Bazar, Bangladesh","is_tbd":false},"geometry":{"type":"Point","coordinates":[91.99493094027171,21.42917958893072]}},{"type":"Feature","properties":{"id":"tuticorine-india","name":"Tuticorine, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[78.14513606409648,8.802197481673504]}},{"type":"Feature","properties":{"id":"ventspils-latvia","name":"Ventspils, Latvia","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.569980829967154,57.38953114332276]}},{"type":"Feature","properties":{"id":"farosund-sweden","name":"Farosund, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.055334173866473,57.8629804561028]}},{"type":"Feature","properties":{"id":"saint-jean-bay-saint-barthlemy","name":"Saint Jean Bay, Saint Barthélemy","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.83758081999997,17.905680806841318]}},{"type":"Feature","properties":{"id":"cape-jervis-sa-australia","name":"Cape Jervis, SA, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[138.1037266000003,-35.60320283999976]}},{"type":"Feature","properties":{"id":"kingscote-sa-australia","name":"Kingscote, SA, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[137.63263809999978,-35.65230045000021]}},{"type":"Feature","properties":{"id":"aktau-kazakhstan","name":"Aktau, Kazakhstan","is_tbd":false},"geometry":{"type":"Point","coordinates":[51.20000099999987,43.6500019999995]}},{"type":"Feature","properties":{"id":"sumgait-azerbaijan","name":"Sumgait, Azerbaijan","is_tbd":false},"geometry":{"type":"Point","coordinates":[49.668611,40.589722]}},{"type":"Feature","properties":{"id":"wilhelmshaven-germany","name":"Wilhelmshaven, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.10687219999963,53.532340299999966]}},{"type":"Feature","properties":{"id":"leiston-united-kingdom","name":"Leiston, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.574842,52.20525899999987]}},{"type":"Feature","properties":{"id":"macap-brazil","name":"Macapá, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-51.06571400000015,0.03453499999984]}},{"type":"Feature","properties":{"id":"almeirim-brazil","name":"Almeirim, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-52.57775842999971,-1.528422080999817]}},{"type":"Feature","properties":{"id":"santarm-brazil","name":"Santarém, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.700923,-2.450628999999634]}},{"type":"Feature","properties":{"id":"monte-alegre-brazil","name":"Monte Alegre, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.074540760000104,-2.000472714000541]}},{"type":"Feature","properties":{"id":"alenquer-brazil","name":"Alenquer, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.73603937000024,-1.944987034999834]}},{"type":"Feature","properties":{"id":"manaus-brazil","name":"Manaus, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.02064900000021,-3.123895999999749]}},{"type":"Feature","properties":{"id":"bidos-brazil","name":"Óbidos, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-55.51623128999993,-1.913198033000186]}},{"type":"Feature","properties":{"id":"juruti-brazil","name":"Juruti, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.0952176299996,-2.161544228000772]}},{"type":"Feature","properties":{"id":"curu-brazil","name":"Curuá, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-55.12010550000016,-1.890297457000427]}},{"type":"Feature","properties":{"id":"ama-japan","name":"Ama, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.292292,26.230968589999883]}},{"type":"Feature","properties":{"id":"tokashiki-japan","name":"Tokashiki, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.36352570000041,26.19683555999985]}},{"type":"Feature","properties":{"id":"itoman-japan","name":"Itoman, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.68810080000024,26.114886979999657]}},{"type":"Feature","properties":{"id":"minamidaito-japan","name":"Minamidaito, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.24255189999982,25.842984359999694]}},{"type":"Feature","properties":{"id":"yaese-japan","name":"Yaese, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.72859249999958,26.134756180000213]}},{"type":"Feature","properties":{"id":"kitadaito-japan","name":"Kitadaito, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.30497690000038,25.945848989999725]}},{"type":"Feature","properties":{"id":"konstanz-germany","name":"Konstanz, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.173238399999894,47.67794960000021]}},{"type":"Feature","properties":{"id":"meersburg-germany","name":"Meersburg, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.273071818,47.69687193000024]}},{"type":"Feature","properties":{"id":"friedrichshafen-germany","name":"Friedrichshafen, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.480011299999973,47.661764799999965]}},{"type":"Feature","properties":{"id":"hachinohe-japan","name":"Hachinohe, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.50050400000035,40.476710999999796]}},{"type":"Feature","properties":{"id":"muroran-japan","name":"Muroran, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.98140000000038,42.369090999999734]}},{"type":"Feature","properties":{"id":"genoa-italy","name":"Genoa, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.938900000000473,44.410338999999794]}},{"type":"Feature","properties":{"id":"netanya-israel","name":"Netanya, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.87197099999965,32.343948000000225]}},{"type":"Feature","properties":{"id":"ashkelon-israel","name":"Ashkelon, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.55601100000069,31.669509999999626]}},{"type":"Feature","properties":{"id":"singapore-singapore","name":"Singapore, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.85310700000069,1.293873000000592]}},{"type":"Feature","properties":{"id":"alupang-guam","name":"Alupang, Guam","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.776754,13.490037]}},{"type":"Feature","properties":{"id":"dili-timor-leste","name":"Dili, Timor-Leste","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.580711,-8.570689999999674]}},{"type":"Feature","properties":{"id":"parintins-brazil","name":"Parintins, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.73720395000047,-2.633793763999875]}},{"type":"Feature","properties":{"id":"santa-maria-do-boiau-brazil","name":"Santa Maria do Boiaçu, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.78764966000029,-0.508038674000514]}},{"type":"Feature","properties":{"id":"caracara-brazil","name":"Caracaraí, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.13126438999985,1.823914555000229]}},{"type":"Feature","properties":{"id":"moura-brazil","name":"Moura, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.63505656999974,-1.458572190999756]}},{"type":"Feature","properties":{"id":"belm-do-solimes-brazil","name":"Belém do Solimões, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.52181003999964,-4.037852188000214]}},{"type":"Feature","properties":{"id":"ponta-de-pedras-brazil","name":"Ponta de Pedras, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-48.869821749999836,-1.392058164000314]}},{"type":"Feature","properties":{"id":"afu-brazil","name":"Afuá, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-50.388308309999694,-0.157127594999777]}},{"type":"Feature","properties":{"id":"novo-airo-brazil","name":"Novo Airão, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.94388627000021,-2.623928290000122]}},{"type":"Feature","properties":{"id":"manacapuru-brazil","name":"Manacapuru, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.63541789000012,-3.289115312000247]}},{"type":"Feature","properties":{"id":"iranduba-brazil","name":"Iranduba, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.18773608000013,-3.279128219999502]}},{"type":"Feature","properties":{"id":"coari-brazil","name":"Coari, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.14769152,-4.091941809999533]}},{"type":"Feature","properties":{"id":"tef-brazil","name":"Tefé, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.7189821999999,-3.352162610000246]}},{"type":"Feature","properties":{"id":"barcelos-brazil","name":"Barcelos, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.925769709999486,-0.974081207000161]}},{"type":"Feature","properties":{"id":"santa-isabel-do-rio-negro-brazil","name":"Santa Isabel do Rio Negro, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-65.01571916999967,-0.414957876000345]}},{"type":"Feature","properties":{"id":"so-gabriel-da-cachoeira-brazil","name":"São Gabriel da Cachoeira, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-67.08799537999974,-0.119416257999669]}},{"type":"Feature","properties":{"id":"juelsminde-denmark","name":"Juelsminde, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.997208081999977,55.70859648999988]}},{"type":"Feature","properties":{"id":"bogense-denmark","name":"Bogense, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.091399180000112,55.56778259]}},{"type":"Feature","properties":{"id":"oskarshamn-sweden","name":"Oskarshamn, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[16.442537999999736,57.26520999999988]}},{"type":"Feature","properties":{"id":"visby-sweden","name":"Visby, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.30003,57.63842]}},{"type":"Feature","properties":{"id":"vstervik-sweden","name":"Västervik, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[16.636972099999713,57.75601359999992]}},{"type":"Feature","properties":{"id":"urucurituba-brazil","name":"Urucurituba, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-58.154744650000374,-3.129203635000459]}},{"type":"Feature","properties":{"id":"itacoatiara-brazil","name":"Itacoatiara, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-58.43994919999979,-3.136558105000468]}},{"type":"Feature","properties":{"id":"oriximin-brazil","name":"Oriximiná, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-55.8674756800002,-1.76242793600052]}},{"type":"Feature","properties":{"id":"terra-santa-brazil","name":"Terra Santa, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-56.4893347300004,-2.102144401000589]}},{"type":"Feature","properties":{"id":"autazes-brazil","name":"Autazes, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.131660679999904,-3.580329971999896]}},{"type":"Feature","properties":{"id":"alvares-brazil","name":"Alvarães, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.81206968999977,-3.21455230799988]}},{"type":"Feature","properties":{"id":"uarini-brazil","name":"Uarini, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-65.16004126000051,-2.982672618999626]}},{"type":"Feature","properties":{"id":"fonte-boa-brazil","name":"Fonte Boa, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.09530680999958,-2.515185832000585]}},{"type":"Feature","properties":{"id":"juta-brazil","name":"Jutaí, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.77157420000049,-2.750610165999518]}},{"type":"Feature","properties":{"id":"tonantins-brazil","name":"Tonantins, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-67.77536821000035,-2.86172595099949]}},{"type":"Feature","properties":{"id":"santo-antnio-do-i-brazil","name":"Santo Antônio do Içá, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-67.94534099,-3.102393505999825]}},{"type":"Feature","properties":{"id":"so-paulo-de-olivena-brazil","name":"São Paulo de Olivença, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.95252266000007,-3.465503202000312]}},{"type":"Feature","properties":{"id":"tabatinga-brazil","name":"Tabatinga, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.93849640000008,-4.231296995000054]}},{"type":"Feature","properties":{"id":"atalaia-do-norte-brazil","name":"Atalaia do Norte, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.19319400999984,-4.366370093000299]}},{"type":"Feature","properties":{"id":"benjamin-constant-brazil","name":"Benjamin Constant, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.0287800300003,-4.379887185000328]}},{"type":"Feature","properties":{"id":"amatur-brazil","name":"Amaturá, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.19721486000019,-3.362085687000277]}},{"type":"Feature","properties":{"id":"belm-brazil","name":"Belém, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-48.510443,-1.458588999999789]}},{"type":"Feature","properties":{"id":"so-sebastio-da-boa-vista-brazil","name":"São Sebastião da Boa Vista, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-49.52887972,-1.717382211000187]}},{"type":"Feature","properties":{"id":"curralinho-brazil","name":"Curralinho, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-49.7980208799999,-1.812160472999909]}},{"type":"Feature","properties":{"id":"breves-brazil","name":"Breves, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-50.481981010000105,-1.683596191000075]}},{"type":"Feature","properties":{"id":"bagre-brazil","name":"Bagre, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-50.20909264999976,-1.898843353]}},{"type":"Feature","properties":{"id":"boa-vista-brazil","name":"Boa Vista, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.675832999999756,2.8235100000003]}},{"type":"Feature","properties":{"id":"makurazaki-japan","name":"Makurazaki, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.2938686,31.280292019999813]}},{"type":"Feature","properties":{"id":"takeshima-japan","name":"Takeshima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.42661539999997,30.81022492000007]}},{"type":"Feature","properties":{"id":"kuroshima-japan","name":"Kuroshima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[129.93441360000014,30.832460340000207]}},{"type":"Feature","properties":{"id":"capraia-isola-italy","name":"Capraia Isola, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.842201117068242,43.04826179309501]}},{"type":"Feature","properties":{"id":"portoferraio-italy","name":"Portoferraio, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.316441790280782,42.812134545316404]}},{"type":"Feature","properties":{"id":"trapani-italy","name":"Trapani, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.513618000000546,38.01825499999985]}},{"type":"Feature","properties":{"id":"levanzo-italy","name":"Levanzo, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.341014787775245,37.98820811134693]}},{"type":"Feature","properties":{"id":"marettimo-italy","name":"Marettimo, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.073620000000234,37.96852899999978]}},{"type":"Feature","properties":{"id":"lipari-italy","name":"Lipari, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.954325432103394,38.468384375202234]}},{"type":"Feature","properties":{"id":"ditella-italy","name":"Ditella, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.076102109522786,38.642542955425235]}},{"type":"Feature","properties":{"id":"stromboli-italy","name":"Stromboli, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.23351223762506,38.80580384767897]}},{"type":"Feature","properties":{"id":"patti-italy","name":"Patti, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.968438937975494,38.147019524954146]}},{"type":"Feature","properties":{"id":"malfa-italy","name":"Malfa, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.836638463843066,38.578316420050214]}},{"type":"Feature","properties":{"id":"filicudi-porto-italy","name":"Filicudi Porto, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.576656824541493,38.56490397987798]}},{"type":"Feature","properties":{"id":"alicudi-porto-italy","name":"Alicudi Porto, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.358271440312812,38.5358504297281]}},{"type":"Feature","properties":{"id":"marsala-italy","name":"Marsala, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.434917,37.80008800000016]}},{"type":"Feature","properties":{"id":"pantelleria-italy","name":"Pantelleria, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.943459999999734,36.830869]}},{"type":"Feature","properties":{"id":"lampedusa-italy","name":"Lampedusa, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.607558387730421,35.50152744443852]}},{"type":"Feature","properties":{"id":"linosa-italy","name":"Linosa, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.860768932962662,35.8583596049076]}},{"type":"Feature","properties":{"id":"isola-delle-femmine-italy","name":"Isola delle Femmine, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.247603185879443,38.18994270418196]}},{"type":"Feature","properties":{"id":"ustica-italy","name":"Ustica, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.19202258196244,38.7098997397587]}},{"type":"Feature","properties":{"id":"gaeta-italy","name":"Gaeta, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.565445462699188,41.217935235484155]}},{"type":"Feature","properties":{"id":"macoah-bc-canada","name":"Macoah, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.38066196907084,48.99420873918211]}},{"type":"Feature","properties":{"id":"salmon-beach-bc-canada","name":"Salmon Beach, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.43397852487394,48.95979786007525]}},{"type":"Feature","properties":{"id":"ucluelet-bc-canada","name":"Ucluelet, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.54668155348666,48.94183099867011]}},{"type":"Feature","properties":{"id":"tofino-bc-canada","name":"Tofino, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.90621343069186,49.15253759749824]}},{"type":"Feature","properties":{"id":"opitsat-bc-canada","name":"Opitsat, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.90731197101252,49.17350282616127]}},{"type":"Feature","properties":{"id":"ahousat-bc-canada","name":"Ahousat, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.0563412065071,49.27631697591595]}},{"type":"Feature","properties":{"id":"hot-springs-cove-bc-canada","name":"Hot Springs Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.27236909683702,49.36844718167606]}},{"type":"Feature","properties":{"id":"yuquot-bc-canada","name":"Yuquot, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.6189005981881,49.59185602164594]}},{"type":"Feature","properties":{"id":"gold-river-bc-canada","name":"Gold River, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.05444190775022,49.781048172407445]}},{"type":"Feature","properties":{"id":"tahsis-bc-canada","name":"Tahsis, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.65469529196682,49.926304862496394]}},{"type":"Feature","properties":{"id":"esperanza-bc-canada","name":"Esperanza, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.7417876315964,49.87491870003231]}},{"type":"Feature","properties":{"id":"zeballos-bc-canada","name":"Zeballos, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.84543784786564,49.98239050630001]}},{"type":"Feature","properties":{"id":"nuchatlaht-bc-canada","name":"Nuchatlaht, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.94066093761482,49.98933935381993]}},{"type":"Feature","properties":{"id":"kyuquot-bc-canada","name":"Kyuquot, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.37854714503781,50.03085274537101]}},{"type":"Feature","properties":{"id":"queens-cove-bc-canada","name":"Queens Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.98495348663047,49.88497560158473]}},{"type":"Feature","properties":{"id":"natadola-fiji","name":"Natadola, Fiji","is_tbd":false},"geometry":{"type":"Point","coordinates":[177.31890300000032,-18.100389420000354]}},{"type":"Feature","properties":{"id":"melbourne-vic-australia","name":"Melbourne, VIC, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.967148,-37.81753200000024]}},{"type":"Feature","properties":{"id":"gusukube-japan","name":"Gusukube, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.38733299999983,24.751502030000356]}},{"type":"Feature","properties":{"id":"shiraho-japan","name":"Shiraho, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.2450912999995,24.388365950000072]}},{"type":"Feature","properties":{"id":"iojima-japan","name":"Iojima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.2983291000001,30.792985210000303]}},{"type":"Feature","properties":{"id":"ponza-italy","name":"Ponza, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.958679203595063,40.895780106420354]}},{"type":"Feature","properties":{"id":"auckland-new-zealand","name":"Auckland, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.7704190000004,-36.88420899999972]}},{"type":"Feature","properties":{"id":"san-diego-ca-united-states","name":"San Diego, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-117.161719,32.715695]}},{"type":"Feature","properties":{"id":"funafuti-tuvalu","name":"Funafuti, Tuvalu","is_tbd":false},"geometry":{"type":"Point","coordinates":[179.19882450000034,-8.520204506000361]}},{"type":"Feature","properties":{"id":"coffman-cove-ak-united-states","name":"Coffman Cove, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-132.829514,56.015201999999896]}},{"type":"Feature","properties":{"id":"ketchikan-ak-united-states","name":"Ketchikan, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-131.64781899999988,55.342096]}},{"type":"Feature","properties":{"id":"hollis-ak-united-states","name":"Hollis, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-133.02193140000003,55.51384579999992]}},{"type":"Feature","properties":{"id":"wakkanai-japan","name":"Wakkanai, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.69815370000035,45.39401505999994]}},{"type":"Feature","properties":{"id":"rebun-japan","name":"Rebun, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.04706180000002,45.30049874000004]}},{"type":"Feature","properties":{"id":"rishirifuji-japan","name":"Rishirifuji, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.21947430000026,45.245035859999916]}},{"type":"Feature","properties":{"id":"tarama-japan","name":"Tarama, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.7002651000001,24.66870033000032]}},{"type":"Feature","properties":{"id":"yonaguni-japan","name":"Yonaguni, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.99077429999956,24.457215450000316]}},{"type":"Feature","properties":{"id":"hateruma-japan","name":"Hateruma, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.77844360000016,24.06001916000044]}},{"type":"Feature","properties":{"id":"yomitan-japan","name":"Yomitan, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.74376439999966,26.402044689999958]}},{"type":"Feature","properties":{"id":"aguni-japan","name":"Aguni, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.22899780000009,26.587226800000273]}},{"type":"Feature","properties":{"id":"kumejima-japan","name":"Kumejima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.77534649999994,26.353132190000167]}},{"type":"Feature","properties":{"id":"ventotene-italy","name":"Ventotene, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.428232823149918,40.79536923521338]}},{"type":"Feature","properties":{"id":"santo-stefano-italy","name":"Santo Stefano, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.454176273067278,40.78994636471521]}},{"type":"Feature","properties":{"id":"portoscuso-italy","name":"Portoscuso, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.379527706426767,39.20656707933533]}},{"type":"Feature","properties":{"id":"carloforte-italy","name":"Carloforte, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.302684658371321,39.14552546025926]}},{"type":"Feature","properties":{"id":"stintino-italy","name":"Stintino, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.228993742790532,40.948082423763225]}},{"type":"Feature","properties":{"id":"cala-doliva-italy","name":"Cala d'Oliva, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.336105703397353,41.08172316521694]}},{"type":"Feature","properties":{"id":"san-domino-italy","name":"San Domino, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.488973558507714,42.115429833844686]}},{"type":"Feature","properties":{"id":"san-nicola-di-tremiti-italy","name":"San Nicola di Tremiti, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.508871650161664,42.12303309486214]}},{"type":"Feature","properties":{"id":"torre-mileto-italy","name":"Torre Mileto, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.563363144424395,41.91869836444879]}},{"type":"Feature","properties":{"id":"vulcano-bleu-italy","name":"Vulcano Bleu, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.965562762373738,38.42411761228048]}},{"type":"Feature","properties":{"id":"canneto-italy","name":"Canneto, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.963612056874782,38.488436612601895]}},{"type":"Feature","properties":{"id":"espoo-finland","name":"Espoo, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.65578,60.20678]}},{"type":"Feature","properties":{"id":"isle-au-haut-me-united-states","name":"Isle au Haut, ME, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.62497262999955,44.05149724999989]}},{"type":"Feature","properties":{"id":"stonington-me-united-states","name":"Stonington, ME, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.66687301,44.156331730000154]}},{"type":"Feature","properties":{"id":"sidi-kerir-egypt","name":"Sidi Kerir, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[29.672355999999517,31.047639999999845]}},{"type":"Feature","properties":{"id":"neom-saudi-arabia","name":"Neom, Saudi Arabia","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.22315400000011,28.050968790000326]}},{"type":"Feature","properties":{"id":"propriano-france","name":"Propriano, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.90575,41.67415]}},{"type":"Feature","properties":{"id":"ruppione-france","name":"Ruppione, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.785010999999724,41.832657]}},{"type":"Feature","properties":{"id":"licata-italy","name":"Licata, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.93822656670043,37.10250254786433]}},{"type":"Feature","properties":{"id":"le-lavandou-france","name":"Le Lavandou, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.366662207882666,43.13795969557663]}},{"type":"Feature","properties":{"id":"hliopolis-france","name":"Héliopolis, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.440445975376559,43.01927278405207]}},{"type":"Feature","properties":{"id":"port-cros-france","name":"Port-Cros, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.387610296452823,43.00707805731055]}},{"type":"Feature","properties":{"id":"porquerolles-france","name":"Porquerolles, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.203652842011131,42.99989374688527]}},{"type":"Feature","properties":{"id":"la-tour-fondue-france","name":"La Tour Fondue, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.154438781305733,43.030084136463124]}},{"type":"Feature","properties":{"id":"sassnitz-germany","name":"Sassnitz, Germany","is_tbd":false},"geometry":{"type":"Point","coordinates":[13.64868999999983,54.51955]}},{"type":"Feature","properties":{"id":"tejn-denmark","name":"Tejn, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.836285999999832,55.24821199999987]}},{"type":"Feature","properties":{"id":"nsby-sweden","name":"Näsby, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[16.468076609305953,56.24572402102604]}},{"type":"Feature","properties":{"id":"byxelkrok-sweden","name":"Byxelkrok, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[17.008488084544304,57.32475822033841]}},{"type":"Feature","properties":{"id":"hasle-denmark","name":"Hasle, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.708200401335704,55.18257019610301]}},{"type":"Feature","properties":{"id":"uto-sweden","name":"Uto, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.250314000000238,58.936123]}},{"type":"Feature","properties":{"id":"borbby-strandbad-sweden","name":"Borbby Strandbad, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.21575049999975,55.433900600000094]}},{"type":"Feature","properties":{"id":"miyazaki-japan","name":"Miyazaki, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[131.29462400000048,32.09766000000017]}},{"type":"Feature","properties":{"id":"akita-japan","name":"Akita, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.11667000000028,39.71667000000023]}},{"type":"Feature","properties":{"id":"al-bustan-oman","name":"Al Bustan, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[58.60606000000028,23.57609000000019]}},{"type":"Feature","properties":{"id":"cape-daguilar-china","name":"Cape D’Aguilar, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.26028099999986,22.208065]}},{"type":"Feature","properties":{"id":"capri-strand-sweden","name":"Capri Strand, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.118404899999714,58.96833839999996]}},{"type":"Feature","properties":{"id":"moss-norway","name":"Moss, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.700833000000491,59.459167]}},{"type":"Feature","properties":{"id":"drbak-norway","name":"Drøbak, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.630839956892295,59.664530734634965]}},{"type":"Feature","properties":{"id":"larvik-norway","name":"Larvik, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.016389,59.081111]}},{"type":"Feature","properties":{"id":"arendal-norway","name":"Arendal, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.758665999999655,58.470047]}},{"type":"Feature","properties":{"id":"egersund-norway","name":"Egersund, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.988714595834254,58.42414318521949]}},{"type":"Feature","properties":{"id":"stavanger-norway","name":"Stavanger, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.730793999999772,58.970833]}},{"type":"Feature","properties":{"id":"oslo-norway","name":"Oslo, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.749980000000228,59.91228]}},{"type":"Feature","properties":{"id":"calvi-france","name":"Calvi, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.754733,42.56312]}},{"type":"Feature","properties":{"id":"st-florent-france","name":"St. Florent, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.303703999999604,42.68184600000012]}},{"type":"Feature","properties":{"id":"santa-teresa-gallura-italy","name":"Santa Teresa Gallura, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.190426159147735,41.239857198613485]}},{"type":"Feature","properties":{"id":"bonifacio-france","name":"Bonifacio, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.168977271135239,41.39044730433591]}},{"type":"Feature","properties":{"id":"la-maddalena-italy","name":"La Maddalena, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.410541579024889,41.21939730561934]}},{"type":"Feature","properties":{"id":"giglio-italy","name":"Giglio, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.91505260455934,42.35845318350371]}},{"type":"Feature","properties":{"id":"sassari-italy","name":"Sassari, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.554313999999641,40.72681099999979]}},{"type":"Feature","properties":{"id":"hachijo-japan","name":"Hachijo, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.79680232984748,33.11229519278616]}},{"type":"Feature","properties":{"id":"mikurashima-japan","name":"Mikurashima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.597023244309,33.88350991725466]}},{"type":"Feature","properties":{"id":"miyake-japan","name":"Miyake, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.49535639821372,34.09038084354649]}},{"type":"Feature","properties":{"id":"kozushima-japan","name":"Kozushima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.13964077948097,34.20695345476847]}},{"type":"Feature","properties":{"id":"shikinejima-japan","name":"Shikinejima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.21551869844038,34.3308542940764]}},{"type":"Feature","properties":{"id":"oshima-japan","name":"Oshima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.36069278510652,34.750672522776554]}},{"type":"Feature","properties":{"id":"niijima-japan","name":"Niijima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.258350283468,34.373853145806095]}},{"type":"Feature","properties":{"id":"toshima-japan","name":"Toshima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.27888824035568,34.529808064948476]}},{"type":"Feature","properties":{"id":"hilo-hi-united-states","name":"Hilo, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-155.081864,19.719234999999824]}},{"type":"Feature","properties":{"id":"kahului-hi-united-states","name":"Kahului, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.467144,20.890755000000173]}},{"type":"Feature","properties":{"id":"barbers-point-hi-united-states","name":"Barber’s Point, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.09434188207686,21.313832454732772]}},{"type":"Feature","properties":{"id":"miura-japan","name":"Miura, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.6207699999995,35.144171]}},{"type":"Feature","properties":{"id":"casablanca-morocco","name":"Casablanca, Morocco","is_tbd":false},"geometry":{"type":"Point","coordinates":[-7.631940000000245,33.605381]}},{"type":"Feature","properties":{"id":"cayenne-french-guiana","name":"Cayenne, French Guiana","is_tbd":false},"geometry":{"type":"Point","coordinates":[-52.31345310000006,4.922419999999891]}},{"type":"Feature","properties":{"id":"nongsa-indonesia","name":"Nongsa, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.10295358788379,1.196515539159387]}},{"type":"Feature","properties":{"id":"gresik-indonesia","name":"Gresik, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[112.65238763118269,-7.165175579207309]}},{"type":"Feature","properties":{"id":"murakami-japan","name":"Murakami, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.47574369999958,38.22191642000002]}},{"type":"Feature","properties":{"id":"awashimaura-japan","name":"Awashimaura, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.25283649999992,38.464632729999536]}},{"type":"Feature","properties":{"id":"invercargill-new-zealand","name":"Invercargill, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[168.34750000000054,-46.413056000000275]}},{"type":"Feature","properties":{"id":"new-plymouth-new-zealand","name":"New Plymouth, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.08333300000044,-39.06666699999982]}},{"type":"Feature","properties":{"id":"greymouth-new-zealand","name":"Greymouth, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[171.19999999999968,-42.46666700000018]}},{"type":"Feature","properties":{"id":"sendai-japan","name":"Sendai, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.86667000000028,38.26667000000041]}},{"type":"Feature","properties":{"id":"ibaraki-japan","name":"Ibaraki, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.26993600000043,36.34217499999987]}},{"type":"Feature","properties":{"id":"ninomiya-japan","name":"Ninomiya, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.2554019999996,35.299491]}},{"type":"Feature","properties":{"id":"chichijima-japan","name":"Chichijima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[142.20407854982358,27.06647506480611]}},{"type":"Feature","properties":{"id":"hahajima-japan","name":"Hahajima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[142.1599040123993,26.650916758530467]}},{"type":"Feature","properties":{"id":"it-japan","name":"Itō, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.10482828483055,34.96320482218528]}},{"type":"Feature","properties":{"id":"aogashima-japan","name":"Aogashima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.76561090792202,32.45723123281979]}},{"type":"Feature","properties":{"id":"so-miguel-portugal","name":"São Miguel, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-25.676795740000134,37.74037606999961]}},{"type":"Feature","properties":{"id":"dillingham-ak-united-states","name":"Dillingham, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.5087958,59.04498753999991]}},{"type":"Feature","properties":{"id":"platinum-ak-united-states","name":"Platinum, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-161.71068879999993,58.985888869999926]}},{"type":"Feature","properties":{"id":"eek-ak-united-states","name":"Eek, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-162.03247680000007,60.21970496999992]}},{"type":"Feature","properties":{"id":"quinhagak-ak-united-states","name":"Quinhagak, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-161.9124421999999,59.751830769999934]}},{"type":"Feature","properties":{"id":"togiak-ak-united-states","name":"Togiak, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-160.40215859999998,59.07217535000008]}},{"type":"Feature","properties":{"id":"mangawhai-new-zealand","name":"Mangawhai, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.57447399999964,-36.12619000000045]}},{"type":"Feature","properties":{"id":"kapolei-hi-united-states","name":"Kapolei, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.056896,21.335390999999692]}},{"type":"Feature","properties":{"id":"takahagi-japan","name":"Takahagi, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.7182700000002,36.71307999999942]}},{"type":"Feature","properties":{"id":"terceira-portugal","name":"Terceira, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-27.25032671,38.66570477999988]}},{"type":"Feature","properties":{"id":"machico-portugal","name":"Machico, Portugal","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.763180749999524,32.71937525000007]}},{"type":"Feature","properties":{"id":"changi-singapore","name":"Changi, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.00411406347581,1.373499297382436]}},{"type":"Feature","properties":{"id":"benton-harbor-mi-united-states","name":"Benton Harbor, MI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-86.45448807999998,42.11623568999983]}},{"type":"Feature","properties":{"id":"st-joseph-mi-united-states","name":"St. Joseph, MI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-86.49025854999994,42.09494645000002]}},{"type":"Feature","properties":{"id":"chicago-il-united-states","name":"Chicago, IL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-87.632409,41.88415000000034]}},{"type":"Feature","properties":{"id":"charlevoix-mi-united-states","name":"Charlevoix, MI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-85.2584,45.31806299999966]}},{"type":"Feature","properties":{"id":"beaver-island-mi-united-states","name":"Beaver Island, MI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-85.53534242999994,45.740931669999895]}},{"type":"Feature","properties":{"id":"gulliver-mi-united-states","name":"Gulliver, MI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-86.01215480000009,45.99314791]}},{"type":"Feature","properties":{"id":"luna-philippines","name":"Luna, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.35484390000022,16.830712289999493]}},{"type":"Feature","properties":{"id":"bauang-philippines","name":"Bauang, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.35558309999966,16.51402480000008]}},{"type":"Feature","properties":{"id":"kuala-sedili-malaysia","name":"Kuala Sedili, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.11414260000058,1.925879632999907]}},{"type":"Feature","properties":{"id":"lingshui-china","name":"Lingshui, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[110.04937200000029,18.389897000000236]}},{"type":"Feature","properties":{"id":"myrtle-beach-sc-united-states","name":"Myrtle Beach, SC, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.8826750000001,33.69357]}},{"type":"Feature","properties":{"id":"annies-bay-bermuda","name":"Annie's Bay, Bermuda","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.65918272000046,32.36157644999963]}},{"type":"Feature","properties":{"id":"sovetskaya-gavan-russia","name":"Sovetskaya Gavan, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.28333299999971,48.9666670000001]}},{"type":"Feature","properties":{"id":"uglegorsk-russia","name":"Uglegorsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.98018180000005,49.063510200000316]}},{"type":"Feature","properties":{"id":"kampung-tekek-malaysia","name":"Kampung Tekek, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.15702621845527,2.8164262139372]}},{"type":"Feature","properties":{"id":"kuala-rompin-malaysia","name":"Kuala Rompin, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.49149565704641,2.800285607948548]}},{"type":"Feature","properties":{"id":"pantai-teluk-baharu-malaysia","name":"Pantai Teluk Baharu, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.57962452963514,4.193025900179775]}},{"type":"Feature","properties":{"id":"lumut-malaysia","name":"Lumut, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.62921952261566,4.228536922459888]}},{"type":"Feature","properties":{"id":"pulau-perhentian-besar-malaysia","name":"Pulau Perhentian Besar, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[102.75470997931428,5.902883822383411]}},{"type":"Feature","properties":{"id":"pulau-perhentian-kecil-malaysia","name":"Pulau Perhentian Kecil, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[102.72290646910318,5.906566563564761]}},{"type":"Feature","properties":{"id":"kampung-raja-malaysia","name":"Kampung Raja, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[102.57171090634661,5.791616724837154]}},{"type":"Feature","properties":{"id":"mellieha-malta","name":"Mellieha, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.350100000000367,35.95239999999964]}},{"type":"Feature","properties":{"id":"kalba-united-arab-emirates","name":"Kalba, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[56.33997900000023,25.051524]}},{"type":"Feature","properties":{"id":"duba-saudi-arabia","name":"Duba, Saudi Arabia","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.69652899999984,27.354018999999465]}},{"type":"Feature","properties":{"id":"ras-ghareb-egypt","name":"Ras Ghareb, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[33.082788999999806,28.36590799999975]}},{"type":"Feature","properties":{"id":"bejaia-algeria","name":"Bejaia, Algeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.05568370000011,36.75152580000031]}},{"type":"Feature","properties":{"id":"nothamnsbacken-sweden","name":"Nothamnsbacken, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.56540150000036,60.032046400000056]}},{"type":"Feature","properties":{"id":"hamns-finland","name":"Hamnäs, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.804952900000593,60.099262]}},{"type":"Feature","properties":{"id":"lokalahti-finland","name":"Lokalahti, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[21.446235299999714,60.67946870000003]}},{"type":"Feature","properties":{"id":"skatrarna-finland","name":"Skatörarna, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.724814400000394,60.27263870000003]}},{"type":"Feature","properties":{"id":"seman-albania","name":"Seman, Albania","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.376194000000407,40.78671299999985]}},{"type":"Feature","properties":{"id":"lecce-italy","name":"Lecce, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.175016100000146,40.3515155000001]}},{"type":"Feature","properties":{"id":"ocean-city-md-united-states","name":"Ocean City, MD, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.08930636999989,38.33473815706708]}},{"type":"Feature","properties":{"id":"ny-lesund-norway","name":"Ny-Ålesund, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.921007920000019,78.92419333144106]}},{"type":"Feature","properties":{"id":"ryde-united-kingdom","name":"Ryde, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.163284145999637,50.7293040384293]}},{"type":"Feature","properties":{"id":"portsmouth-united-kingdom","name":"Portsmouth, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.087284,50.80401000000017]}},{"type":"Feature","properties":{"id":"lepe-united-kingdom","name":"Lepe, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.367483365000111,50.78676515744321]}},{"type":"Feature","properties":{"id":"gurnard-united-kingdom","name":"Gurnard, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.32144677199977,50.7602504958822]}},{"type":"Feature","properties":{"id":"stoke-fleming-united-kingdom","name":"Stoke Fleming, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.598459602999541,50.32426129232395]}},{"type":"Feature","properties":{"id":"sile-turkey","name":"Sile, Turkey","is_tbd":false},"geometry":{"type":"Point","coordinates":[29.632133841504242,41.18215605694779]}},{"type":"Feature","properties":{"id":"odessa-ukraine","name":"Odessa, Ukraine","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.677494999999645,46.48929000000015]}},{"type":"Feature","properties":{"id":"aheloy-bulgaria","name":"Aheloy, Bulgaria","is_tbd":false},"geometry":{"type":"Point","coordinates":[27.648440999999888,42.649060000000276]}},{"type":"Feature","properties":{"id":"mandurah-wa-australia","name":"Mandurah, WA, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.74022000000038,-32.53623199999988]}},{"type":"Feature","properties":{"id":"panama-city-panama","name":"Panama City, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.53670900000017,8.964826000000414]}},{"type":"Feature","properties":{"id":"alice-town-bahamas","name":"Alice Town, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.29337855999978,25.727000831751454]}},{"type":"Feature","properties":{"id":"little-saint-james-virgin-islands-u-s-","name":"Little Saint James, Virgin Islands (U.S.)","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.82562908000025,18.300118429999443]}},{"type":"Feature","properties":{"id":"sri-vijaya-puram-india","name":"Sri Vijaya Puram, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[92.72648300000046,11.623377000000142]}},{"type":"Feature","properties":{"id":"santander-spain","name":"Santander, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.810009,43.4615]}},{"type":"Feature","properties":{"id":"palm-coast-fl-united-states","name":"Palm Coast, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.22094335999995,29.57693467909633]}},{"type":"Feature","properties":{"id":"esbjerg-denmark","name":"Esbjerg, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.456905000000187,55.46522]}},{"type":"Feature","properties":{"id":"scarborough-united-kingdom","name":"Scarborough, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.411160999999824,54.277662]}},{"type":"Feature","properties":{"id":"zelenogradsk-russia","name":"Zelenogradsk, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.598408891147674,54.97535301478736]}},{"type":"Feature","properties":{"id":"sedili-malaysia","name":"Sedili, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.11205922007841,1.927943348741421]}},{"type":"Feature","properties":{"id":"mahajanga-madagascar","name":"Mahajanga, Madagascar","is_tbd":false},"geometry":{"type":"Point","coordinates":[46.31552100000039,-15.713720000000299]}},{"type":"Feature","properties":{"id":"nacala-mozambique","name":"Nacala, Mozambique","is_tbd":false},"geometry":{"type":"Point","coordinates":[40.685431,-14.565605999999761]}},{"type":"Feature","properties":{"id":"kralendijk-bonaire-sint-eustatius-and-saba","name":"Kralendijk, Bonaire, Sint Eustatius and Saba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.26554560000007,12.144349099999685]}},{"type":"Feature","properties":{"id":"morowali-indonesia","name":"Morowali, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.16745400000028,-2.829852359000335]}},{"type":"Feature","properties":{"id":"labuhan-bajo-indonesia","name":"Labuhan Bajo, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.87853979999959,-8.487081339999845]}},{"type":"Feature","properties":{"id":"selayar-indonesia","name":"Selayar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.46336470000011,-6.109439521000439]}},{"type":"Feature","properties":{"id":"wakatobi-indonesia","name":"Wakatobi, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.53383740000034,-5.321967643999664]}},{"type":"Feature","properties":{"id":"farewell-nl-canada","name":"Farewell, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.479165000000414,49.55587482999968]}},{"type":"Feature","properties":{"id":"fogo-island-nl-canada","name":"Fogo Island, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.395227,49.58377809999993]}},{"type":"Feature","properties":{"id":"stag-harbour-nl-canada","name":"Stag Harbour, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.28367199999955,49.583938690000025]}},{"type":"Feature","properties":{"id":"nouadhibou-mauritania","name":"Nouadhibou, Mauritania","is_tbd":false},"geometry":{"type":"Point","coordinates":[-17.035703999999548,20.947172000000176]}},{"type":"Feature","properties":{"id":"maafushi-maldives","name":"Maafushi, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.48945824000015,3.94089559499997]}},{"type":"Feature","properties":{"id":"ithaafushi-maldives","name":"Ithaafushi, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.39404966999965,4.014321540999611]}},{"type":"Feature","properties":{"id":"mumong-brunei","name":"Mumong, Brunei","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.23759482610686,4.592208713011344]}},{"type":"Feature","properties":{"id":"wujie-taiwan","name":"Wujie, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.83117558189409,24.66043890836769]}},{"type":"Feature","properties":{"id":"gunsan-south-korea","name":"Gunsan, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.73662929999966,35.96767720000027]}},{"type":"Feature","properties":{"id":"san-jos-del-cabo-mexico","name":"San José del Cabo, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-109.709061,23.077049]}},{"type":"Feature","properties":{"id":"baler-philippines","name":"Baler, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.56019,15.76153]}},{"type":"Feature","properties":{"id":"sharm-el-sheikh-egypt","name":"Sharm el-Sheikh, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.329721999999784,27.912221999999666]}},{"type":"Feature","properties":{"id":"camuri-venezuela","name":"Camuri, Venezuela","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.87819200000038,10.60645000000013]}},{"type":"Feature","properties":{"id":"miramar-pr-united-states","name":"Miramar, PR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.0828780000003,18.45378199999968]}},{"type":"Feature","properties":{"id":"mtwara-tanzania","name":"Mtwara, Tanzania","is_tbd":false},"geometry":{"type":"Point","coordinates":[40.180118999999635,-10.260170000000324]}},{"type":"Feature","properties":{"id":"beira-mozambique","name":"Beira, Mozambique","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.851010000000386,-19.82010899999981]}},{"type":"Feature","properties":{"id":"haifa-israel","name":"Haifa, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.998743,32.811596]}},{"type":"Feature","properties":{"id":"emmonak-ak-united-states","name":"Emmonak, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-164.59792190000002,62.77621559999992]}},{"type":"Feature","properties":{"id":"hooper-bay-ak-united-states","name":"Hooper Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-166.1988769,61.51885919999996]}},{"type":"Feature","properties":{"id":"newgale-united-kingdom","name":"Newgale, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.124409999267958,51.859620129895525]}},{"type":"Feature","properties":{"id":"rio-branco-brazil","name":"Rio Branco, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-67.824898,-9.975377]}},{"type":"Feature","properties":{"id":"cruzeiro-do-sul-brazil","name":"Cruzeiro do Sul, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.67642607425898,-7.625022373429889]}},{"type":"Feature","properties":{"id":"nova-olinda-do-norte-brazil","name":"Nova Olinda do Norte, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.09214036361938,-3.891201025333833]}},{"type":"Feature","properties":{"id":"borba-brazil","name":"Borba, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.59452675344915,-4.392520854353163]}},{"type":"Feature","properties":{"id":"novo-aripuan-brazil","name":"Novo Aripuanã, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.376099902415476,-5.120327441572783]}},{"type":"Feature","properties":{"id":"manicor-brazil","name":"Manicoré, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.294561306781766,-5.812875170999313]}},{"type":"Feature","properties":{"id":"auxiliadora-brazil","name":"Auxiliadora, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.83829256374144,-6.249583144669121]}},{"type":"Feature","properties":{"id":"humait-brazil","name":"Humaitá, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.02843195756456,-7.512483097681169]}},{"type":"Feature","properties":{"id":"calama-brazil","name":"Calama, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.87561474613567,-8.028764882726103]}},{"type":"Feature","properties":{"id":"porto-velho-brazil","name":"Porto Velho, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.90199200000045,-8.761671000000462]}},{"type":"Feature","properties":{"id":"lerkil-sweden","name":"Lerkil, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[11.8993793999998,57.45542159999994]}},{"type":"Feature","properties":{"id":"kilauea-hi-united-states","name":"Kilauea, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-159.40532650000003,22.215110945272016]}},{"type":"Feature","properties":{"id":"waialua-hi-united-states","name":"Waialua, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.12307759999996,21.573449992246978]}},{"type":"Feature","properties":{"id":"kailua-hi-united-states","name":"Kailua, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-157.740068,21.396572]}},{"type":"Feature","properties":{"id":"wailuku-hi-united-states","name":"Wailuku, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-156.503135,20.884760102747034]}},{"type":"Feature","properties":{"id":"hana-hi-united-states","name":"Hana, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-155.98674859999997,20.756981028730742]}},{"type":"Feature","properties":{"id":"kohala-hi-united-states","name":"Kohala, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-155.8327436,20.240940704337877]}},{"type":"Feature","properties":{"id":"spencer-beach-hi-united-states","name":"Spencer Beach, HI, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-155.8220871073432,20.02310522788954]}},{"type":"Feature","properties":{"id":"tatilek-ak-united-states","name":"Tatilek, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-146.5804962255995,60.865128606480916]}},{"type":"Feature","properties":{"id":"majuro-marshall-islands","name":"Majuro, Marshall Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[171.38026999999985,7.08971]}},{"type":"Feature","properties":{"id":"tafuna-american-samoa","name":"Tafuna, American Samoa","is_tbd":false},"geometry":{"type":"Point","coordinates":[-170.72687970000007,-14.33155532999987]}},{"type":"Feature","properties":{"id":"faratea-french-polynesia","name":"Faratea, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.30591250000003,-17.71856760999951]}},{"type":"Feature","properties":{"id":"mitirapa-french-polynesia","name":"Mitirapa, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.325189,-17.734063000000265]}},{"type":"Feature","properties":{"id":"milos-greece","name":"Milos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.334805536353347,36.68060148389847]}},{"type":"Feature","properties":{"id":"tanguisson-point-guam","name":"Tanguisson Point, Guam","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.81242151949988,13.543635828763595]}},{"type":"Feature","properties":{"id":"sagunto-spain","name":"Sagunto, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.210385999999687,39.662556]}},{"type":"Feature","properties":{"id":"heraklion-greece","name":"Heraklion, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.1278602660048,35.33839682411487]}},{"type":"Feature","properties":{"id":"luganville-vanuatu","name":"Luganville, Vanuatu","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.20027400000015,-15.5064330000002]}},{"type":"Feature","properties":{"id":"norsup-vanuatu","name":"Norsup, Vanuatu","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.4035,-16.082332000000466]}},{"type":"Feature","properties":{"id":"tanna-vanuatu","name":"Tanna, Vanuatu","is_tbd":false},"geometry":{"type":"Point","coordinates":[169.26791799999978,-19.534210999999807]}},{"type":"Feature","properties":{"id":"frigate-bay-saint-kitts-and-nevis","name":"Frigate Bay, Saint Kitts and Nevis","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.68344543000027,17.29043440784797]}},{"type":"Feature","properties":{"id":"paget-bermuda","name":"Paget, Bermuda","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.78869199999986,32.28085199999989]}},{"type":"Feature","properties":{"id":"singaraja-indonesia","name":"Singaraja, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.07594712344931,-8.115525289526817]}},{"type":"Feature","properties":{"id":"bali-indonesia","name":"Bali, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.69240000000046,-8.410099999999819]}},{"type":"Feature","properties":{"id":"tomakomai-japan","name":"Tomakomai, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.60319903282527,42.63611084823067]}},{"type":"Feature","properties":{"id":"itoshima-japan","name":"Itoshima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.1505039999998,33.59754900000024]}},{"type":"Feature","properties":{"id":"fauske-norway","name":"Fauske, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[15.392073040652047,67.25991977910047]}},{"type":"Feature","properties":{"id":"pantai-mutiara-indonesia","name":"Pantai Mutiara, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[106.791457,-6.107725600000419]}},{"type":"Feature","properties":{"id":"semarang-indonesia","name":"Semarang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[110.42549900000049,-6.971419999999669]}},{"type":"Feature","properties":{"id":"jeneponto-indonesia","name":"Jeneponto, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.6417350000004,-5.672058199999808]}},{"type":"Feature","properties":{"id":"kaiete-point-bc-canada","name":"Kaiete Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.9514675707427,52.06367943450714]}},{"type":"Feature","properties":{"id":"cousins-inlet-bc-canada","name":"Cousins Inlet, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.79057362556645,52.26794328251682]}},{"type":"Feature","properties":{"id":"ocean-falls-bc-canada","name":"Ocean Falls, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.69350873628818,52.353358604562786]}},{"type":"Feature","properties":{"id":"martin-valley-bc-canada","name":"Martin Valley, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.72202270694095,52.36014436999047]}},{"type":"Feature","properties":{"id":"bella-coola-bc-canada","name":"Bella Coola, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.75276468552713,52.37214793561003]}},{"type":"Feature","properties":{"id":"gabriola-bc-canada","name":"Gabriola, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.8440093857028,49.17330175420969]}},{"type":"Feature","properties":{"id":"snaw-naw-as-bc-canada","name":"Snaw-naw-as, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.12351458051008,49.25190624440014]}},{"type":"Feature","properties":{"id":"qualicum-beach-bc-canada","name":"Qualicum Beach, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.44320399853738,49.3494347121997]}},{"type":"Feature","properties":{"id":"bowser-bc-canada","name":"Bowser, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.68672835476215,49.44353602704172]}},{"type":"Feature","properties":{"id":"denman-island-bc-canada","name":"Denman Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.71356875282478,49.49345509252578]}},{"type":"Feature","properties":{"id":"hornby-island-bc-canada","name":"Hornby Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.69712586649928,49.5134805257975]}},{"type":"Feature","properties":{"id":"comox-bc-canada","name":"Comox, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.928266,49.67351299999971]}},{"type":"Feature","properties":{"id":"williams-beach-bc-canada","name":"Williams Beach, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.04910592224829,49.8242225821597]}},{"type":"Feature","properties":{"id":"stories-beach-bc-canada","name":"Stories Beach, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.1861969427291,49.91955265840255]}},{"type":"Feature","properties":{"id":"campbell-river-bc-canada","name":"Campbell River, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.24817,50.02461]}},{"type":"Feature","properties":{"id":"ridley-island-bc-canada","name":"Ridley Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.32127422826034,54.22339215106253]}},{"type":"Feature","properties":{"id":"mansons-landing-bc-canada","name":"Mansons Landing, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.98642332019199,50.06310304527359]}},{"type":"Feature","properties":{"id":"whaletown-bc-canada","name":"Whaletown, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.04927488516667,50.11121430288389]}},{"type":"Feature","properties":{"id":"heriot-bay-bc-canada","name":"Heriot Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.21592300972176,50.10125851949136]}},{"type":"Feature","properties":{"id":"open-bay-bc-canada","name":"Open Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.19595568350933,50.137057106101715]}},{"type":"Feature","properties":{"id":"bold-point-bc-canada","name":"Bold Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.1607065082164,50.172390288106364]}},{"type":"Feature","properties":{"id":"surge-narrows-bc-canada","name":"Surge Narrows, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.10181487720119,50.2314795270948]}},{"type":"Feature","properties":{"id":"bliss-landing-bc-canada","name":"Bliss Landing, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.81640872292657,50.0357787156605]}},{"type":"Feature","properties":{"id":"lund-bc-canada","name":"Lund, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.76128055950434,49.981964265539936]}},{"type":"Feature","properties":{"id":"vancouver-bc-canada","name":"Vancouver, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.114034,49.260440000000195]}},{"type":"Feature","properties":{"id":"lax-kwalaams-bc-canada","name":"Lax Kw'alaams, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.4340530313084,54.55439491921293]}},{"type":"Feature","properties":{"id":"metlakatla-bc-canada","name":"Metlakatla, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.44441632420526,54.33705541814711]}},{"type":"Feature","properties":{"id":"prince-rupert-bc-canada","name":"Prince Rupert, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.3263239999999,54.313075]}},{"type":"Feature","properties":{"id":"dodge-cove-bc-canada","name":"Dodge Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.38751116964698,54.287784565961346]}},{"type":"Feature","properties":{"id":"oona-river-bc-canada","name":"Oona River, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.25851066313285,53.94951651353444]}},{"type":"Feature","properties":{"id":"kitkatla-bc-canada","name":"Kitkatla, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.43326723585187,53.794671349185506]}},{"type":"Feature","properties":{"id":"bonilla-island-bc-canada","name":"Bonilla Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.6144950742074,53.49227407843297]}},{"type":"Feature","properties":{"id":"tlell-bc-canada","name":"Tlell, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-131.9297996600297,53.56252710216991]}},{"type":"Feature","properties":{"id":"tom-island-bc-canada","name":"Tom Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-129.605671704404,53.54320510255879]}},{"type":"Feature","properties":{"id":"hartley-bay-bc-canada","name":"Hartley Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-129.25478363865886,53.4252931058726]}},{"type":"Feature","properties":{"id":"butedale-bc-canada","name":"Butedale, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.70071345684704,53.149832031963186]}},{"type":"Feature","properties":{"id":"klemtu-bc-canada","name":"Klemtu, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.52486851719846,52.591778817615186]}},{"type":"Feature","properties":{"id":"boat-bluff-bc-canada","name":"Boat Bluff, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.5238304427228,52.643028264222046]}},{"type":"Feature","properties":{"id":"ivory-island-bc-canada","name":"Ivory Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.4053647037356,52.271593097452715]}},{"type":"Feature","properties":{"id":"mcinnes-island-bc-canada","name":"McInnes Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.72301880712095,52.26232295213411]}},{"type":"Feature","properties":{"id":"dryad-point-bc-canada","name":"Dryad Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.11186385086688,52.18517417339168]}},{"type":"Feature","properties":{"id":"bella-bella-bc-canada","name":"Bella Bella, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.14469976604073,52.16114984088366]}},{"type":"Feature","properties":{"id":"old-bella-bella-bc-canada","name":"Old Bella Bella, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.1223080012769,52.15394371648719]}},{"type":"Feature","properties":{"id":"shearwater-bc-canada","name":"Shearwater, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.0906675047527,52.14792026119243]}},{"type":"Feature","properties":{"id":"seaford-bc-canada","name":"Seaford, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.90102912163324,50.08449796406866]}},{"type":"Feature","properties":{"id":"chatham-point-bc-canada","name":"Chatham Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.44561591823906,50.33139503733066]}},{"type":"Feature","properties":{"id":"elk-bay-bc-canada","name":"Elk Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.44214123814987,50.27742985648948]}},{"type":"Feature","properties":{"id":"granite-bay-bc-canada","name":"Granite Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.30261850538005,50.23583903062007]}},{"type":"Feature","properties":{"id":"kitamaat-village-bc-canada","name":"Kitamaat Village, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.64759513576314,53.97442959892598]}},{"type":"Feature","properties":{"id":"holberg-bc-canada","name":"Holberg, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.02407256829633,50.652273113310905]}},{"type":"Feature","properties":{"id":"kitimat-bc-canada","name":"Kitimat, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.64088898371784,54.059548420737194]}},{"type":"Feature","properties":{"id":"coal-harbour-bc-canada","name":"Coal Harbour, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.58161843079546,50.599384789246784]}},{"type":"Feature","properties":{"id":"quatsino-bc-canada","name":"Quatsino, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.65441778152956,50.5352978103679]}},{"type":"Feature","properties":{"id":"port-alice-bc-canada","name":"Port Alice, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.488056,50.42666700000024]}},{"type":"Feature","properties":{"id":"winter-harbour-bc-canada","name":"Winter Harbour, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.02813608589068,50.52390510516052]}},{"type":"Feature","properties":{"id":"kains-island-bc-canada","name":"Kains Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-128.03325675646408,50.442702128001244]}},{"type":"Feature","properties":{"id":"kingcome-inlet-bc-canada","name":"Kingcome Inlet, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.20021409562437,50.94987262516856]}},{"type":"Feature","properties":{"id":"gillies-bay-bc-canada","name":"Gillies Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.48885463490913,49.677892319989546]}},{"type":"Feature","properties":{"id":"powell-river-bc-canada","name":"Powell River, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.523809,49.8358899999998]}},{"type":"Feature","properties":{"id":"van-anda-bc-canada","name":"Van Anda, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.55654754654743,49.757726280018474]}},{"type":"Feature","properties":{"id":"gambier-harbour-bc-canada","name":"Gambier Harbour, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.43887940875001,49.43963951992595]}},{"type":"Feature","properties":{"id":"eastbourne-bc-canada","name":"Eastbourne, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.43478847783001,49.39615688202526]}},{"type":"Feature","properties":{"id":"gibsons-bc-canada","name":"Gibsons, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.51457762609738,49.401617050219066]}},{"type":"Feature","properties":{"id":"saltery-bay-bc-canada","name":"Saltery Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.1798859186916,49.78326803917783]}},{"type":"Feature","properties":{"id":"bamfield-bc-canada","name":"Bamfield, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.14150866980336,48.832827880049535]}},{"type":"Feature","properties":{"id":"haggards-cove-bc-canada","name":"Haggard's Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.02289127964777,48.964512091916774]}},{"type":"Feature","properties":{"id":"sarita-bc-canada","name":"Sarita, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.03336159095791,48.883163081656456]}},{"type":"Feature","properties":{"id":"uchucklesaht-bc-canada","name":"Uchucklesaht, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.04228312375423,49.021056362378445]}},{"type":"Feature","properties":{"id":"toquaht-bay-bc-canada","name":"Toquaht Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.36427438896436,49.00725234555052]}},{"type":"Feature","properties":{"id":"refuge-cove-bc-canada","name":"Refuge Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.83905851560102,50.1237481500032]}},{"type":"Feature","properties":{"id":"squirrel-cove-bc-canada","name":"Squirrel Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.91752541843128,50.117380658006994]}},{"type":"Feature","properties":{"id":"port-neville-bc-canada","name":"Port Neville, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.08555801841572,50.49276847686975]}},{"type":"Feature","properties":{"id":"sayward-bc-canada","name":"Sayward, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.9590121293913,50.38434418820626]}},{"type":"Feature","properties":{"id":"smith-island-bc-canada","name":"Smith Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-130.27804103434923,54.142314780564476]}},{"type":"Feature","properties":{"id":"addenbroke-island-bc-canada","name":"Addenbroke Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.86370028877155,51.60320130299947]}},{"type":"Feature","properties":{"id":"wuikinuxv-bc-canada","name":"Wuikinuxv, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.2105123320581,51.680119439312605]}},{"type":"Feature","properties":{"id":"duncanby-bc-canada","name":"Duncanby, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.64481414210549,51.40557093447968]}},{"type":"Feature","properties":{"id":"egg-island-bc-canada","name":"Egg Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.83443834465406,51.24964662436544]}},{"type":"Feature","properties":{"id":"pine-island-bc-canada","name":"Pine Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.72464476418678,50.97750112024519]}},{"type":"Feature","properties":{"id":"scarlett-point-bc-canada","name":"Scarlett Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.61277278412608,50.860359994026965]}},{"type":"Feature","properties":{"id":"port-hardy-bc-canada","name":"Port Hardy, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.49580498210025,50.720878251368546]}},{"type":"Feature","properties":{"id":"kwakiutl-cluxewe-bc-canada","name":"Kwakiutl (Cluxewe), BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.1897520459016,50.612145899404105]}},{"type":"Feature","properties":{"id":"pulteney-point-bc-canada","name":"Pulteney Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.15484280035233,50.63120042038277]}},{"type":"Feature","properties":{"id":"alert-bay-bc-canada","name":"Alert Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.92634115400956,50.588350919856595]}},{"type":"Feature","properties":{"id":"hyde-creek-bc-canada","name":"Hyde Creek, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-127.00083983464391,50.582552529196676]}},{"type":"Feature","properties":{"id":"telegraph-cove-bc-canada","name":"Telegraph Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.83111521847611,50.54768561590023]}},{"type":"Feature","properties":{"id":"mitchell-bay-bc-canada","name":"Mitchell Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.8494857533072,50.63365191110994]}},{"type":"Feature","properties":{"id":"harbledown-island-bc-canada","name":"Harbledown Island, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.61076411697788,50.573835184307484]}},{"type":"Feature","properties":{"id":"kwikwasutinuxw-haxwamis-bc-canada","name":"Kwikwasut'inuxw Haxwa’mis, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.59874559746683,50.70054017294747]}},{"type":"Feature","properties":{"id":"echo-bay-bc-canada","name":"Echo Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.49734823073759,50.74991847293468]}},{"type":"Feature","properties":{"id":"shawl-bay-bc-canada","name":"Shawl Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-126.55858719004513,50.848866325733916]}},{"type":"Feature","properties":{"id":"edith-point-bc-canada","name":"Edith Point, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.54674486141779,50.37733322590891]}},{"type":"Feature","properties":{"id":"blind-channel-bc-canada","name":"Blind Channel, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-125.50343684333376,50.412765239933556]}},{"type":"Feature","properties":{"id":"san-blas-fl-united-states","name":"San Blas, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-84.12070411101475,29.953701800771658]}},{"type":"Feature","properties":{"id":"al-ghariya-qatar","name":"Al Ghariya, Qatar","is_tbd":false},"geometry":{"type":"Point","coordinates":[51.212749,26.129239999999825]}},{"type":"Feature","properties":{"id":"kingisepp-russia","name":"Kingisepp, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.669815,59.445881]}},{"type":"Feature","properties":{"id":"ygarden-norway","name":"Øygarden, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.830229999999557,60.58733799999982]}},{"type":"Feature","properties":{"id":"numbulwar-nt-australia","name":"Numbulwar, NT, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[135.7216373801135,-14.277517519622181]}},{"type":"Feature","properties":{"id":"alyangula-nt-australia","name":"Alyangula, NT, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[136.4202931616224,-13.851199136976314]}},{"type":"Feature","properties":{"id":"ilyinskoye-russia","name":"Ilyinskoye, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[142.2012633023388,47.989427189095984]}},{"type":"Feature","properties":{"id":"aberdeen-united-kingdom","name":"Aberdeen, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.106789,57.15381999999989]}},{"type":"Feature","properties":{"id":"dongyin-taiwan","name":"Dongyin, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.4929700000004,26.367330000000443]}},{"type":"Feature","properties":{"id":"nangan-taiwan","name":"Nangan, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.93435,26.15516]}},{"type":"Feature","properties":{"id":"xiju-taiwan","name":"Xiju, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.93907578761032,25.973144107820715]}},{"type":"Feature","properties":{"id":"ballyhornan-united-kingdom","name":"Ballyhornan, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.559439999999554,54.3021]}},{"type":"Feature","properties":{"id":"porto-alegre-brazil","name":"Porto Alegre, Brazil","is_tbd":false},"geometry":{"type":"Point","coordinates":[-51.22802000000015,-30.034259]}},{"type":"Feature","properties":{"id":"sthammar-sweden","name":"Östhammar, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.365714700630434,60.26022222737571]}},{"type":"Feature","properties":{"id":"kihelkonna-estonia","name":"Kihelkonna, Estonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[22.03810158448305,58.36002823118932]}},{"type":"Feature","properties":{"id":"digha-india","name":"Digha, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[87.50654093847432,21.621856500843982]}},{"type":"Feature","properties":{"id":"machilipatnam-india","name":"Machilipatnam, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[81.13951857354486,16.175049115204825]}},{"type":"Feature","properties":{"id":"manilva-spain","name":"Manilva, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.250523729785807,36.37610614625084]}},{"type":"Feature","properties":{"id":"st-martins-nb-canada","name":"St. Martins, NB, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-65.55582811045441,45.34801402608026]}},{"type":"Feature","properties":{"id":"joss-bay-united-kingdom","name":"Joss Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.446395930147426,51.38002318563373]}},{"type":"Feature","properties":{"id":"newhaven-united-kingdom","name":"Newhaven, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[0.046277779436353,50.79292282976606]}},{"type":"Feature","properties":{"id":"koh-samui-thailand","name":"Koh Samui, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.0408898084748,9.526934715081014]}},{"type":"Feature","properties":{"id":"maroubra-nsw-australia","name":"Maroubra, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.24281300000027,-33.946121000000275]}},{"type":"Feature","properties":{"id":"morris-bay-antigua-and-barbuda","name":"Morris Bay, Antigua and Barbuda","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.84691746019447,17.01759004073784]}},{"type":"Feature","properties":{"id":"manchester-ca-united-states","name":"Manchester, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.687,38.96962000000024]}},{"type":"Feature","properties":{"id":"lavrio-greece","name":"Lavrio, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.053807052931386,37.711082576559505]}},{"type":"Feature","properties":{"id":"ermoupoli-greece","name":"Ermoupoli, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.939288762213785,37.43946272240985]}},{"type":"Feature","properties":{"id":"marlas-greece","name":"Marlas, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.019204911285403,37.65232235984693]}},{"type":"Feature","properties":{"id":"mykonos-greece","name":"Mykonos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.32858123375337,37.44688214068393]}},{"type":"Feature","properties":{"id":"naousa-greece","name":"Naousa, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.238146034548574,37.1222334145154]}},{"type":"Feature","properties":{"id":"naxos-greece","name":"Naxos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.375974548484432,37.101840262262826]}},{"type":"Feature","properties":{"id":"cape-roger-curtis-bc-canada","name":"Cape Roger Curtis, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.42890269999995,49.34328349000002]}},{"type":"Feature","properties":{"id":"snug-cove-bc-canada","name":"Snug Cove, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.33801289999992,49.38007937000012]}},{"type":"Feature","properties":{"id":"horseshoe-bay-bc-canada","name":"Horseshoe Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.27652539999987,49.37481604000023]}},{"type":"Feature","properties":{"id":"french-creek-bc-canada","name":"French Creek, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.35616409999997,49.34214441999988]}},{"type":"Feature","properties":{"id":"tchoima-congo-dem-rep-","name":"Tchoima, Congo, Dem. Rep.","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.48106013999982,1.439963724999737]}},{"type":"Feature","properties":{"id":"nkusi-uganda","name":"Nkusi, Uganda","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.66358884999985,1.115023672000301]}},{"type":"Feature","properties":{"id":"mpeefu-uganda","name":"Mpeefu, Uganda","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.648445049999875,1.101604128999433]}},{"type":"Feature","properties":{"id":"kasenyi-congo-dem-rep-","name":"Kasenyi, Congo, Dem. Rep.","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.438399210000323,1.39338882199983]}},{"type":"Feature","properties":{"id":"uvira-congo-dem-rep-","name":"Uvira, Congo, Dem. Rep.","is_tbd":false},"geometry":{"type":"Point","coordinates":[29.149937199999965,-3.377679800000496]}},{"type":"Feature","properties":{"id":"kalemie-congo-dem-rep-","name":"Kalemie, Congo, Dem. Rep.","is_tbd":false},"geometry":{"type":"Point","coordinates":[29.203626000000206,-5.913414799999944]}},{"type":"Feature","properties":{"id":"the-hague-netherlands","name":"The Hague, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.317414999999649,52.08399199999982]}},{"type":"Feature","properties":{"id":"okhotskoe-russia","name":"Okhotskoe, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[143.14553369999982,46.85925]}},{"type":"Feature","properties":{"id":"st-georges-bay-malta","name":"St. George's Bay, Malta","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.485430000000347,35.92587]}},{"type":"Feature","properties":{"id":"dzhubga-russia","name":"Dzhubga, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[38.660832300000735,44.32520489999982]}},{"type":"Feature","properties":{"id":"clovelly-nsw-australia","name":"Clovelly, NSW, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[151.2577588980582,-33.90954432999976]}},{"type":"Feature","properties":{"id":"olonkinbyen-norway","name":"Olonkinbyen, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[-8.73434999999954,70.909133]}},{"type":"Feature","properties":{"id":"padang-indonesia","name":"Padang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[100.3616870000004,-0.943890000000324]}},{"type":"Feature","properties":{"id":"tua-pejat-indonesia","name":"Tua Pejat, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[99.58896436183319,-2.028191372999979]}},{"type":"Feature","properties":{"id":"puerto-del-rosario-canary-islands-spain","name":"Puerto del Rosario, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-13.862209999999449,28.496500000000346]}},{"type":"Feature","properties":{"id":"arrecife-canary-islands-spain","name":"Arrecife, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-13.547600000000134,28.959510000000208]}},{"type":"Feature","properties":{"id":"corralejo-canary-islands-spain","name":"Corralejo, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-13.86482676999976,28.728626550000264]}},{"type":"Feature","properties":{"id":"playa-blanca-canary-islands-spain","name":"Playa Blanca, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-13.827319999999823,28.86341999999969]}},{"type":"Feature","properties":{"id":"las-palmas-spain","name":"Las Palmas, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.439709999999666,28.13022]}},{"type":"Feature","properties":{"id":"telde-spain","name":"Telde, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.417372599999679,27.995531299999534]}},{"type":"Feature","properties":{"id":"phetchaburi-thailand","name":"Phetchaburi, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[99.95079000000044,13.09397]}},{"type":"Feature","properties":{"id":"chumphon-thailand","name":"Chumphon, Thailand","is_tbd":false},"geometry":{"type":"Point","coordinates":[99.17812300000011,10.497659999999804]}},{"type":"Feature","properties":{"id":"plataria-greece","name":"Plataria, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.27741130974863,39.44998887609635]}},{"type":"Feature","properties":{"id":"filizi-greece","name":"Filizi, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.289696105851924,37.12525060559689]}},{"type":"Feature","properties":{"id":"preveza-greece","name":"Preveza, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.7517150000002,38.95926699999962]}},{"type":"Feature","properties":{"id":"crotone-italy","name":"Crotone, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[17.12715000000025,39.080669]}},{"type":"Feature","properties":{"id":"dakhla-morocco","name":"Dakhla, Morocco","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.934426000000126,23.721081]}},{"type":"Feature","properties":{"id":"lombok-indonesia","name":"Lombok, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.07251999999959,-8.561430000000504]}},{"type":"Feature","properties":{"id":"padang-galak-indonesia","name":"Padang Galak, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.26056999999864,-8.6571]}},{"type":"Feature","properties":{"id":"agat-guam","name":"Agat, Guam","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.65753000000052,13.385309999999615]}},{"type":"Feature","properties":{"id":"eureka-ca-united-states","name":"Eureka, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.159554,40.803255000000355]}},{"type":"Feature","properties":{"id":"tebingtinggi-island-indonesia","name":"Tebingtinggi Island, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[102.66701999999972,0.932559999999773]}},{"type":"Feature","properties":{"id":"igneada-turkey","name":"Igneada, Turkey","is_tbd":false},"geometry":{"type":"Point","coordinates":[27.985308316539054,41.88417700854294]}},{"type":"Feature","properties":{"id":"mangalia-romania","name":"Mangalia, Romania","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.582768830792254,43.81720342977988]}},{"type":"Feature","properties":{"id":"varna-bulgaria","name":"Varna, Bulgaria","is_tbd":false},"geometry":{"type":"Point","coordinates":[27.91284743037091,43.2083788593982]}},{"type":"Feature","properties":{"id":"denpasar-indonesia","name":"Denpasar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.22151899999977,-8.65666]}},{"type":"Feature","properties":{"id":"pringgabaya-indonesia","name":"Pringgabaya, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[116.65492000000025,-8.537099]}},{"type":"Feature","properties":{"id":"jdaide-lebanon","name":"Jdaide, Lebanon","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.56304299999949,33.8919]}},{"type":"Feature","properties":{"id":"rock-sound-bahamas","name":"Rock Sound, Bahamas","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.57444682539156,24.424987000000485]}},{"type":"Feature","properties":{"id":"west-island-cocos-keeling-islands","name":"West Island, Cocos (Keeling) Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[96.8323150000006,-12.193114000000145]}},{"type":"Feature","properties":{"id":"sitia-greece","name":"Sitia, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[26.10717013481371,35.20695416056713]}},{"type":"Feature","properties":{"id":"plimmiri-greece","name":"Plimmiri, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[27.851088976705316,35.92785157537484]}},{"type":"Feature","properties":{"id":"kremasti-greece","name":"Kremasti, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[28.12005578044264,36.41157986414525]}},{"type":"Feature","properties":{"id":"kardamena-greece","name":"Kardamena, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[27.14344509395184,36.782900607708115]}},{"type":"Feature","properties":{"id":"kochilari-greece","name":"Kochilari, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[26.995074014609276,36.77157655568938]}},{"type":"Feature","properties":{"id":"perivolos-greece","name":"Perivolos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.464805590265694,36.34542571389266]}},{"type":"Feature","properties":{"id":"baxedes-greece","name":"Baxedes, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.40234207588245,36.47742641187417]}},{"type":"Feature","properties":{"id":"pirgaki-greece","name":"Pirgaki, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.403637339896882,36.97726017314542]}},{"type":"Feature","properties":{"id":"kalafati-greece","name":"Kalafati, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.419567987656546,37.43906885207819]}},{"type":"Feature","properties":{"id":"agios-sostis-greece","name":"Agios Sostis, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.20710136390776,37.53133917516844]}},{"type":"Feature","properties":{"id":"tinos-greece","name":"Tinos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.16052574121449,37.538715782011]}},{"type":"Feature","properties":{"id":"kavos-greece","name":"Kavos, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.112871838702866,39.3853679909665]}},{"type":"Feature","properties":{"id":"kontokali-greece","name":"Kontokali, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[19.858511225015423,39.64153896264032]}},{"type":"Feature","properties":{"id":"rurutu-french-polynesia","name":"Rurutu, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-151.3428793820876,-22.451280119948656]}},{"type":"Feature","properties":{"id":"tubuai-french-polynesia","name":"Tubuai, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.48591885045488,-23.34695854916176]}},{"type":"Feature","properties":{"id":"les-les-de-la-madeleine-qc-canada","name":"Les Îles-de-la-Madeleine, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.955700101961796,47.38258754393819]}},{"type":"Feature","properties":{"id":"lanse--beaufils-qc-canada","name":"L'Anse-à-Beaufils, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.30896411288761,48.471769972174684]}},{"type":"Feature","properties":{"id":"morib-malaysia","name":"Morib, Malaysia","is_tbd":false},"geometry":{"type":"Point","coordinates":[101.4436141980139,2.751191204441439]}},{"type":"Feature","properties":{"id":"false-pass-ak-united-states","name":"False Pass, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-163.415,54.85083300000045]}},{"type":"Feature","properties":{"id":"akutan-ak-united-states","name":"Akutan, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-165.773056,54.135556]}},{"type":"Feature","properties":{"id":"king-cove-ak-united-states","name":"King Cove, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-162.30442,55.04913]}},{"type":"Feature","properties":{"id":"cold-bay-ak-united-states","name":"Cold Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-162.70403,55.20405000000046]}},{"type":"Feature","properties":{"id":"sand-point-ak-united-states","name":"Sand Point, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-160.50071,55.3359700000002]}},{"type":"Feature","properties":{"id":"chignik-bay-ak-united-states","name":"Chignik Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.4088100000004,56.29443999999985]}},{"type":"Feature","properties":{"id":"chignik-lagoon-ak-united-states","name":"Chignik Lagoon, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.50723,56.32126]}},{"type":"Feature","properties":{"id":"chignik-lake-ak-united-states","name":"Chignik Lake, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-158.77209,56.25489]}},{"type":"Feature","properties":{"id":"larsen-bay-ak-united-states","name":"Larsen Bay, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-153.98597,57.53723399999983]}},{"type":"Feature","properties":{"id":"unalaska-ak-united-states","name":"Unalaska, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-166.533243,53.88443800000053]}},{"type":"Feature","properties":{"id":"port-lions-ak-united-states","name":"Port Lions, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-152.88193613277352,57.86944189496645]}},{"type":"Feature","properties":{"id":"ouzinkie-ak-united-states","name":"Ouzinkie, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-152.501736442955,57.925201621995306]}},{"type":"Feature","properties":{"id":"perryville-ak-united-states","name":"Perryville, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-159.14479135751247,55.91750617656806]}},{"type":"Feature","properties":{"id":"ustupo-panama","name":"Ustupo, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.9334559999996,9.125440000000225]}},{"type":"Feature","properties":{"id":"santa-marta-colombia","name":"Santa Marta, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.20528091178292,11.241950014956515]}},{"type":"Feature","properties":{"id":"puerto-colombia-colombia","name":"Puerto Colombia, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.952777940841,11.005175136687189]}},{"type":"Feature","properties":{"id":"natuna-indonesia","name":"Natuna, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[108.14286871967111,3.945663654321878]}},{"type":"Feature","properties":{"id":"lingga-indonesia","name":"Lingga, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.63544932935999,-0.162758734486483]}},{"type":"Feature","properties":{"id":"singkawang-indonesia","name":"Singkawang, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[108.98720405903603,0.90601356437975]}},{"type":"Feature","properties":{"id":"bengkalis-indonesia","name":"Bengkalis, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[102.08010445990314,1.489196199854866]}},{"type":"Feature","properties":{"id":"karimun-indonesia","name":"Karimun, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.40488379485406,0.769809997522144]}},{"type":"Feature","properties":{"id":"ranai-indonesia","name":"Ranai, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[108.37748769408987,3.940902007893895]}},{"type":"Feature","properties":{"id":"bintan-indonesia","name":"Bintan, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[104.42580634037192,1.136696382474185]}},{"type":"Feature","properties":{"id":"kitaibaraki-japan","name":"Kitaibaraki, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[140.75095108854964,36.80178305286783]}},{"type":"Feature","properties":{"id":"katong-singapore","name":"Katong, Singapore","is_tbd":false},"geometry":{"type":"Point","coordinates":[103.90468812828793,1.309281803574792]}},{"type":"Feature","properties":{"id":"sizewell-united-kingdom","name":"Sizewell, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.620287931266729,52.20712950818346]}},{"type":"Feature","properties":{"id":"cristbal-panama","name":"Cristóbal, Panama","is_tbd":false},"geometry":{"type":"Point","coordinates":[-79.90280507171931,9.350855245143212]}},{"type":"Feature","properties":{"id":"naples-fl-united-states","name":"Naples, FL, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.795793,26.13909399999979]}},{"type":"Feature","properties":{"id":"fano-denmark","name":"Fano, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.40694600000052,55.44848000000027]}},{"type":"Feature","properties":{"id":"totalenergies-halfdan-denmark","name":"TotalEnergies Halfdan, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.1805,55.32215000000013]}},{"type":"Feature","properties":{"id":"totalenergies-tyra-denmark","name":"TotalEnergies Tyra, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.51313000000128,55.41866999999957]}},{"type":"Feature","properties":{"id":"nopigeia-greece","name":"Nopigeia, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[23.722500000000338,35.51233333000104]}},{"type":"Feature","properties":{"id":"neapoli-greece","name":"Neapoli, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[23.03574722000064,36.523222220000235]}},{"type":"Feature","properties":{"id":"korakia-greece","name":"Korakia, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[24.931604989680174,35.40468699999967]}},{"type":"Feature","properties":{"id":"pachi-greece","name":"Pachi, Greece","is_tbd":false},"geometry":{"type":"Point","coordinates":[23.36323941535897,37.973952114992564]}},{"type":"Feature","properties":{"id":"loughshinny-ireland","name":"LoughShinny, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.08547,53.54969]}},{"type":"Feature","properties":{"id":"port-alberni-bc-canada","name":"Port Alberni, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-124.80757399999989,49.23398500000061]}},{"type":"Feature","properties":{"id":"dingwall-ns-canada","name":"Dingwall, NS, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.469309999999496,46.896659999999684]}},{"type":"Feature","properties":{"id":"codroy-nl-canada","name":"Codroy, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.3919299999996,47.88156899999932]}},{"type":"Feature","properties":{"id":"aylesford-ns-canada","name":"Aylesford, NS, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-64.94827799999959,45.089458]}},{"type":"Feature","properties":{"id":"sydney-mines-ns-canada","name":"Sydney Mines, NS, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.224124999999866,46.22928400000065]}},{"type":"Feature","properties":{"id":"cape-ray-nl-canada","name":"Cape Ray, NL, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-59.284726,47.636672999999746]}},{"type":"Feature","properties":{"id":"nzeto-angola","name":"N'zeto, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.866666670000518,-7.233333333000319]}},{"type":"Feature","properties":{"id":"cacongo-angola","name":"Cacongo, Angola","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.140879999999665,-5.23096999999984]}},{"type":"Feature","properties":{"id":"sept-les-qc-canada","name":"Sept-Îles, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.40694665025708,50.230913957960496]}},{"type":"Feature","properties":{"id":"sainte-anne-des-monts-qc-canada","name":"Sainte-Anne-des-Monts, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.49011752907197,49.12383836036551]}},{"type":"Feature","properties":{"id":"santa-ponsa-spain","name":"Santa Ponsa, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.462767999999868,39.499953999999775]}},{"type":"Feature","properties":{"id":"mallorca-spain","name":"Mallorca, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.911560000000498,39.613535]}},{"type":"Feature","properties":{"id":"ibiza-spain","name":"Ibiza, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.418890000000836,38.90611499999917]}},{"type":"Feature","properties":{"id":"san-foca-italy","name":"San Foca, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[18.405157,40.30200700000034]}},{"type":"Feature","properties":{"id":"boracay-philippines","name":"Boracay, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.94481099999972,11.949245]}},{"type":"Feature","properties":{"id":"caticlan-philippines","name":"Caticlan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.95077700000043,11.93092899999979]}},{"type":"Feature","properties":{"id":"ancon-ecuador","name":"Ancon, Ecuador","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.85594945632162,-2.329805834324001]}},{"type":"Feature","properties":{"id":"sapporo-japan","name":"Sapporo, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[141.3543759999998,43.06209599999981]}},{"type":"Feature","properties":{"id":"thorlakshofn-iceland","name":"Thorlakshofn, Iceland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-21.378120000000322,63.85625800000013]}},{"type":"Feature","properties":{"id":"kaikoura-new-zealand","name":"Kaikoura, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[173.68299899999988,-42.402699]}},{"type":"Feature","properties":{"id":"wellington-new-zealand","name":"Wellington, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.76712099999978,-41.280515]}},{"type":"Feature","properties":{"id":"christchurch-new-zealand","name":"Christchurch, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[172.63622540000023,-43.5320544000003]}},{"type":"Feature","properties":{"id":"paraparaumu-new-zealand","name":"Paraparaumu, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.99746700000145,-40.91911600000018]}},{"type":"Feature","properties":{"id":"whanganui-new-zealand","name":"Whanganui, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[175.05000000000058,-39.93333300000045]}},{"type":"Feature","properties":{"id":"waikanae-new-zealand","name":"Waikanae, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[175.051956,-40.862789]}},{"type":"Feature","properties":{"id":"oteranga-bay-new-zealand","name":"Oteranga Bay, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.61337069999985,-41.30162909999993]}},{"type":"Feature","properties":{"id":"fighting-bay-new-zealand","name":"Fighting Bay, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.23596710000012,-41.33902520000029]}},{"type":"Feature","properties":{"id":"titahi-bay-new-zealand","name":"Titahi Bay, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[174.83800000000144,-41.1058]}},{"type":"Feature","properties":{"id":"oara-new-zealand","name":"Oara, New Zealand","is_tbd":false},"geometry":{"type":"Point","coordinates":[173.50613300000037,-42.51605999999973]}},{"type":"Feature","properties":{"id":"punta-del-este-uruguay","name":"Punta del Este, Uruguay","is_tbd":false},"geometry":{"type":"Point","coordinates":[-54.94999999999955,-34.96666699999891]}},{"type":"Feature","properties":{"id":"gianyar-indonesia","name":"Gianyar, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[115.33144100000015,-8.536715000000196]}},{"type":"Feature","properties":{"id":"portpatrick-united-kingdom","name":"Portpatrick, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.115560000000343,54.8437189999997]}},{"type":"Feature","properties":{"id":"donaghadee-united-kingdom","name":"Donaghadee, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.538752000000191,54.642754000000195]}},{"type":"Feature","properties":{"id":"girvan-united-kingdom","name":"Girvan, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.854218000000534,55.24016399999987]}},{"type":"Feature","properties":{"id":"larne-united-kingdom","name":"Larne, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.809859999999766,54.85750000000026]}},{"type":"Feature","properties":{"id":"paramaribo-suriname","name":"Paramaribo, Suriname","is_tbd":false},"geometry":{"type":"Point","coordinates":[-55.17385100000029,5.82403]}},{"type":"Feature","properties":{"id":"rockly-bay-trinidad-and-tobago","name":"Rockly Bay, Trinidad and Tobago","is_tbd":false},"geometry":{"type":"Point","coordinates":[-60.73534000000042,11.182456999999468]}},{"type":"Feature","properties":{"id":"parque-isla-de-salamanca-colombia","name":"Parque Isla de Salamanca, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.61194566275975,11.012160871628799]}},{"type":"Feature","properties":{"id":"ciudad-lzaro-crdenas-mexico","name":"Ciudad Lázaro Cárdenas, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-102.19434697958006,17.956770832775955]}},{"type":"Feature","properties":{"id":"manzanillo-mexico","name":"Manzanillo, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-104.30817604853,19.085820767886215]}},{"type":"Feature","properties":{"id":"ilo-peru","name":"Ilo, Peru","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.32370719040864,-17.641170392665394]}},{"type":"Feature","properties":{"id":"toahotu-french-polynesia","name":"To'ahotu, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.32336417902883,-17.75045844443347]}},{"type":"Feature","properties":{"id":"iskele-cyprus","name":"Iskele, Cyprus","is_tbd":false},"geometry":{"type":"Point","coordinates":[33.9194747474867,35.28438782609304]}},{"type":"Feature","properties":{"id":"ilijan-philippines","name":"Ilijan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.0781499071834,13.635709425447143]}},{"type":"Feature","properties":{"id":"boac-philippines","name":"Boac, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.88473418104378,13.42908313305217]}},{"type":"Feature","properties":{"id":"calatrava-philippines","name":"Calatrava, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.08171170471684,12.602955744095647]}},{"type":"Feature","properties":{"id":"placer-philippines","name":"Placer, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.86154340165245,11.940899155789175]}},{"type":"Feature","properties":{"id":"bacolod-philippines","name":"Bacolod, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.968957,10.640738999999655]}},{"type":"Feature","properties":{"id":"san-carlos-philippines","name":"San Carlos, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.41289500000015,10.483733999998389]}},{"type":"Feature","properties":{"id":"toledo-philippines","name":"Toledo, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.63525999999986,10.376260000000324]}},{"type":"Feature","properties":{"id":"zamboanguita-philippines","name":"Zamboanguita, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.16748732333238,9.146219690585646]}},{"type":"Feature","properties":{"id":"great-level-bay-bonaire-sint-eustatius-and-saba","name":"Great Level Bay, Bonaire, Sint Eustatius and Saba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.244216899359444,17.615120819465385]}},{"type":"Feature","properties":{"id":"gallows-bay-bonaire-sint-eustatius-and-saba","name":"Gallows Bay, Bonaire, Sint Eustatius and Saba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.98552567636872,17.475916931774574]}},{"type":"Feature","properties":{"id":"nago-japan","name":"Nago, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.97732749763631,26.591537746166992]}},{"type":"Feature","properties":{"id":"kagoshima-japan","name":"Kagoshima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.5571108263436,31.596550387212982]}},{"type":"Feature","properties":{"id":"sal-rei-cape-verde","name":"Sal Rei, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-22.919037946563574,16.177172019271524]}},{"type":"Feature","properties":{"id":"murdeira-cape-verde","name":"Murdeira, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-22.93530990769235,16.6771096578609]}},{"type":"Feature","properties":{"id":"tarrafal-de-so-nicolau-cape-verde","name":"Tarrafal de São Nicolau, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-24.35715948637768,16.565883323041565]}},{"type":"Feature","properties":{"id":"sao-pedro-cape-verde","name":"Sao Pedro, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-25.060808890249906,16.823421811849204]}},{"type":"Feature","properties":{"id":"tarrafal-de-santiago-cape-verde","name":"Tarrafal de Santiago, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-23.75106860714526,15.276847576817358]}},{"type":"Feature","properties":{"id":"porto-novo-cape-verde","name":"Porto Novo, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-25.059441703718424,17.019200480931225]}},{"type":"Feature","properties":{"id":"nova-sintra-cape-verde","name":"Nova Sintra, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-24.695403875669296,14.872992709660643]}},{"type":"Feature","properties":{"id":"sao-filipe-cape-verde","name":"Sao Filipe, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-24.5009215915674,14.897141971487132]}},{"type":"Feature","properties":{"id":"vila-do-maio-cape-verde","name":"Vila do Maio, Cape Verde","is_tbd":false},"geometry":{"type":"Point","coordinates":[-23.209784810907728,15.138355405768996]}},{"type":"Feature","properties":{"id":"dipolog-city-philippines","name":"Dipolog City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.33503132573671,8.564097021577123]}},{"type":"Feature","properties":{"id":"alofi-niue","name":"Alofi, Niue","is_tbd":false},"geometry":{"type":"Point","coordinates":[-169.9167037400163,-19.016700578491267]}},{"type":"Feature","properties":{"id":"marina-di-ragusa-italy","name":"Marina di Ragusa, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[14.550291964996664,36.784806017807185]}},{"type":"Feature","properties":{"id":"chateaubelair-saint-vincent-and-the-grenadines","name":"Chateaubelair, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.24083697091661,13.290916333074358]}},{"type":"Feature","properties":{"id":"owia-saint-vincent-and-the-grenadines","name":"Owia, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.14277795835044,13.373100524281316]}},{"type":"Feature","properties":{"id":"conference-grenada","name":"Conference, Grenada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.60638846976845,12.161209900388293]}},{"type":"Feature","properties":{"id":"bequia-saint-vincent-and-the-grenadines","name":"Bequia, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.24470659708128,12.99756419905372]}},{"type":"Feature","properties":{"id":"mustique-saint-vincent-and-the-grenadines","name":"Mustique, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.18712607146594,12.877712443605427]}},{"type":"Feature","properties":{"id":"canouan-saint-vincent-and-the-grenadines","name":"Canouan, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.33895701859438,12.699637527038245]}},{"type":"Feature","properties":{"id":"union-island-saint-vincent-and-the-grenadines","name":"Union Island, Saint Vincent and the Grenadines","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.443180577574495,12.611404908417443]}},{"type":"Feature","properties":{"id":"carriacou-grenada","name":"Carriacou, Grenada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.47861756418857,12.473707095397195]}},{"type":"Feature","properties":{"id":"varberg-sweden","name":"Varberg, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.251276956833422,57.10530906897646]}},{"type":"Feature","properties":{"id":"laeso-denmark","name":"Laeso, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[10.887135086818242,57.2569955538346]}},{"type":"Feature","properties":{"id":"saint-hilaire-de-riez-france","name":"Saint-Hilaire-de-Riez, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.968311908440482,46.693996052542715]}},{"type":"Feature","properties":{"id":"hirtshals-denmark","name":"Hirtshals, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.959261211922845,57.588193620275256]}},{"type":"Feature","properties":{"id":"port-erin-isle-of-man","name":"Port Erin, Isle of Man","is_tbd":false},"geometry":{"type":"Point","coordinates":[-4.760450951012976,54.08720156100938]}},{"type":"Feature","properties":{"id":"bulobulo-indonesia","name":"Bulobulo, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.80926998945385,-5.669066725303847]}},{"type":"Feature","properties":{"id":"sangatta-indonesia","name":"Sangatta, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[117.53548901897571,0.32451923974587]}},{"type":"Feature","properties":{"id":"towale-indonesia","name":"Towale, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.66607832995938,-0.711934579631533]}},{"type":"Feature","properties":{"id":"surigao-city-philippines","name":"Surigao City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.48676677437311,9.782713534000724]}},{"type":"Feature","properties":{"id":"maasin-philippines","name":"Maasin, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.84217394836772,10.178582995816972]}},{"type":"Feature","properties":{"id":"liloan-philippines","name":"Liloan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.98834884332426,10.406420283136939]}},{"type":"Feature","properties":{"id":"palompon-philippines","name":"Palompon, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.39720203273188,11.054861343165987]}},{"type":"Feature","properties":{"id":"palanas-philippines","name":"Palanas, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.90123074088875,12.105980429992167]}},{"type":"Feature","properties":{"id":"bulan-philippines","name":"Bulan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.89612042234297,12.683687101726003]}},{"type":"Feature","properties":{"id":"cagdianao-philippines","name":"Cagdianao, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.86972003454434,9.498333545906151]}},{"type":"Feature","properties":{"id":"siargao-island-philippines","name":"Siargao Island, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.0525203648189,9.855207400456655]}},{"type":"Feature","properties":{"id":"kinoguitan-philippines","name":"Kinoguitan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.81649461015922,8.9828059334126]}},{"type":"Feature","properties":{"id":"camiguin-island-philippines","name":"Camiguin Island, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.72892524992008,9.172531794727917]}},{"type":"Feature","properties":{"id":"talisay-philippines","name":"Talisay, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.83892480474371,10.252014943908712]}},{"type":"Feature","properties":{"id":"tagbilaran-philippines","name":"Tagbilaran, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.87815100000043,9.675430000000153]}},{"type":"Feature","properties":{"id":"baclayon-philippines","name":"Baclayon, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.9135399999997,9.622559999999629]}},{"type":"Feature","properties":{"id":"liloy-philippines","name":"Liloy, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.67847669449696,8.07385810571817]}},{"type":"Feature","properties":{"id":"zamboanga-philippines","name":"Zamboanga, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.06327100000034,6.91136]}},{"type":"Feature","properties":{"id":"pasacao-philippines","name":"Pasacao, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.95065829999993,13.547781999999668]}},{"type":"Feature","properties":{"id":"allen-philippines","name":"Allen, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.28234656591367,12.501379842633215]}},{"type":"Feature","properties":{"id":"santa-magdalena-philippines","name":"Santa Magdalena, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.1070909815363,12.645301175945399]}},{"type":"Feature","properties":{"id":"rarotonga-cook-islands","name":"Rarotonga, Cook Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-159.76971462086547,-21.224368501582408]}},{"type":"Feature","properties":{"id":"aitutaki-cook-islands","name":"Aitutaki, Cook Islands","is_tbd":false},"geometry":{"type":"Point","coordinates":[-159.7748995537159,-18.825717893638707]}},{"type":"Feature","properties":{"id":"yate-new-caledonia","name":"Yate, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[166.94504874334316,-22.15896231236258]}},{"type":"Feature","properties":{"id":"mont-dore-new-caledonia","name":"Mont-Dore, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[166.56362811510715,-22.26540774849468]}},{"type":"Feature","properties":{"id":"aeng-batu-batu-indonesia","name":"Aeng Batu Batu, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.3846441249859,-5.343255863481059]}},{"type":"Feature","properties":{"id":"isla-de-cozumel-mexico","name":"Isla de Cozumel, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-86.87916551272744,20.42864372396143]}},{"type":"Feature","properties":{"id":"playa-del-carmen-mexico","name":"Playa del Carmen, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-87.07021762347809,20.62967182247337]}},{"type":"Feature","properties":{"id":"hanstholm-denmark","name":"Hanstholm, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.616176544405644,57.11164198902862]}},{"type":"Feature","properties":{"id":"la-lnea-spain","name":"La Línea, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.325190374296273,36.21032161368718]}},{"type":"Feature","properties":{"id":"playa-de-la-ribera-spain","name":"Playa de la Ribera, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.313666944959621,35.88680676460573]}},{"type":"Feature","properties":{"id":"tarifa-spain","name":"Tarifa, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.604450430371786,36.01431256226247]}},{"type":"Feature","properties":{"id":"playa-de-benitez-spain","name":"Playa de Benitez, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.334747036874195,35.89387536092839]}},{"type":"Feature","properties":{"id":"veules-les-roses-france","name":"Veules-les-Roses, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[0.797804107936906,49.877294755008414]}},{"type":"Feature","properties":{"id":"brighton-united-kingdom","name":"Brighton, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.134434774132254,50.828477682894714]}},{"type":"Feature","properties":{"id":"ixtapa-zihuatanejo-mexico","name":"Ixtapa-Zihuatanejo, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-101.61050704707995,17.664141640213042]}},{"type":"Feature","properties":{"id":"atafu-tokelau","name":"Atafu, Tokelau","is_tbd":false},"geometry":{"type":"Point","coordinates":[-172.5108858421898,-8.559089911025799]}},{"type":"Feature","properties":{"id":"fakaofo-tokelau","name":"Fakaofo, Tokelau","is_tbd":false},"geometry":{"type":"Point","coordinates":[-171.2614703759693,-9.383815953134352]}},{"type":"Feature","properties":{"id":"umbogintwini-south-africa","name":"Umbogintwini, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.901573844940014,-30.021650031238458]}},{"type":"Feature","properties":{"id":"bacong-philippines","name":"Bacong, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.29495595749427,9.246330876791975]}},{"type":"Feature","properties":{"id":"valverde-canary-islands-spain","name":"Valverde, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-17.890887852846195,27.820221110808298]}},{"type":"Feature","properties":{"id":"san-sebastian-de-la-gomera-canary-islands-spain","name":"San Sebastian de la Gomera, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-17.108172720353956,28.087965459862172]}},{"type":"Feature","properties":{"id":"galway-ireland","name":"Galway, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-9.048344475059972,53.27388633164341]}},{"type":"Feature","properties":{"id":"le-porge-france","name":"Le Porge, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.211874000599161,44.893828011372406]}},{"type":"Feature","properties":{"id":"pascagoula-ms-united-states","name":"Pascagoula, MS, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-88.55612365850797,30.36575713388018]}},{"type":"Feature","properties":{"id":"freeport-tx-united-states","name":"Freeport, TX, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-95.34436958207267,28.949570369461807]}},{"type":"Feature","properties":{"id":"houstrup-denmark","name":"Houstrup, Denmark","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.193131486241771,55.76459980196038]}},{"type":"Feature","properties":{"id":"quy-nhon-vietnam","name":"Quy Nhon, Vietnam","is_tbd":false},"geometry":{"type":"Point","coordinates":[109.21965018343205,13.782957863531687]}},{"type":"Feature","properties":{"id":"sharjah-united-arab-emirates","name":"Sharjah, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.392191667197615,25.35233329692222]}},{"type":"Feature","properties":{"id":"sir-abu-nuayr-island-united-arab-emirates","name":"Sir Abu Nu'Ayr Island, United Arab Emirates","is_tbd":false},"geometry":{"type":"Point","coordinates":[54.22111935518823,25.240836041547766]}},{"type":"Feature","properties":{"id":"bunkum-bay-montserrat","name":"Bunkum Bay, Montserrat","is_tbd":false},"geometry":{"type":"Point","coordinates":[-62.2201696006092,16.772302184628998]}},{"type":"Feature","properties":{"id":"we-new-caledonia","name":"We, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.2604537933443,-20.937043135848924]}},{"type":"Feature","properties":{"id":"tadine-new-caledonia","name":"Tadine, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.87952073760448,-21.548051505206985]}},{"type":"Feature","properties":{"id":"vao-new-caledonia","name":"Vao, New Caledonia","is_tbd":false},"geometry":{"type":"Point","coordinates":[167.49424269022595,-22.671928620931553]}},{"type":"Feature","properties":{"id":"los-realejos-canary-islands-spain","name":"Los Realejos, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-16.586438673353253,28.397551777869676]}},{"type":"Feature","properties":{"id":"beausejour-guadeloupe","name":"Beausejour, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.07386931576003,16.303571371032675]}},{"type":"Feature","properties":{"id":"saint-louis-guadeloupe","name":"Saint-Louis, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.319096192819046,15.953416689647044]}},{"type":"Feature","properties":{"id":"capesterre-belle-eau-guadeloupe","name":"Capesterre-Belle-Eau, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.56468928055855,16.04242108270618]}},{"type":"Feature","properties":{"id":"terre-de-haut-guadeloupe","name":"Terre-de-Haut, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.57883721975504,15.873014736939519]}},{"type":"Feature","properties":{"id":"portrane-ireland","name":"Portrane, Ireland","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.114621764040638,53.493201258680585]}},{"type":"Feature","properties":{"id":"zhuhai-china","name":"Zhuhai, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[113.57672717496287,22.270712131393918]}},{"type":"Feature","properties":{"id":"wenchang-china","name":"Wenchang, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[110.76181217688703,20.045319429452615]}},{"type":"Feature","properties":{"id":"salinas-ecuador","name":"Salinas, Ecuador","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.00906207423138,-2.228488012519777]}},{"type":"Feature","properties":{"id":"bergen-norway","name":"Bergen, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.332751777721427,60.3907070886836]}},{"type":"Feature","properties":{"id":"nakadomari-japan","name":"Nakadomari, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.74738407138204,26.34876348107905]}},{"type":"Feature","properties":{"id":"hirara-japan","name":"Hirara, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.30132346307869,24.794621700913318]}},{"type":"Feature","properties":{"id":"komesu-japan","name":"Komesu, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.70079480862088,26.087758925965506]}},{"type":"Feature","properties":{"id":"great-bay-beach-sint-maarten","name":"Great Bay Beach, Sint Maarten","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.055056877112236,18.02447108294624]}},{"type":"Feature","properties":{"id":"sardina-canary-islands-spain","name":"Sardina, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.694032078979493,28.149917514296433]}},{"type":"Feature","properties":{"id":"morrojable-canary-islands-spain","name":"Morrojable, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-14.35841999999965,28.04872000000018]}},{"type":"Feature","properties":{"id":"aguimes-canary-islands-spain","name":"Aguimes, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.390735174214871,27.895462213161103]}},{"type":"Feature","properties":{"id":"bogo-philippines","name":"Bogo, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.00765240278447,11.045876992172815]}},{"type":"Feature","properties":{"id":"naga-philippines","name":"Naga, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.6914416892911,10.238241908341099]}},{"type":"Feature","properties":{"id":"buenavista-philippines","name":"Buenavista, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[125.42073733924197,8.968922103740555]}},{"type":"Feature","properties":{"id":"san-remigio-philippines","name":"San Remigio, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.93633897674165,11.083326819623748]}},{"type":"Feature","properties":{"id":"talisay-city-philippines","name":"Talisay City, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.96776056132873,10.739403490192835]}},{"type":"Feature","properties":{"id":"leganes-philippines","name":"Leganes, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.58944051683415,10.786581108825084]}},{"type":"Feature","properties":{"id":"milagros-philippines","name":"Milagros, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[123.50909318565661,12.218124597827089]}},{"type":"Feature","properties":{"id":"roxas-philippines","name":"Roxas, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.52774693301166,12.586435075844276]}},{"type":"Feature","properties":{"id":"san-juan-philippines","name":"San Juan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.44886515295349,13.809927621665178]}},{"type":"Feature","properties":{"id":"saint-franois-guadeloupe","name":"Saint-François, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.274455111163185,16.2510994263895]}},{"type":"Feature","properties":{"id":"port-said-egypt","name":"Port Said, Egypt","is_tbd":false},"geometry":{"type":"Point","coordinates":[32.28445799999981,31.259279]}},{"type":"Feature","properties":{"id":"muscat-oman","name":"Muscat, Oman","is_tbd":false},"geometry":{"type":"Point","coordinates":[58.407779999999775,23.584129999998922]}},{"type":"Feature","properties":{"id":"cacique-dominican-republic","name":"Cacique, Dominican Republic","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.161736,18.69957399999976]}},{"type":"Feature","properties":{"id":"claveria-philippines","name":"Claveria, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.08238200000135,18.606230000000362]}},{"type":"Feature","properties":{"id":"cordova-ak-united-states","name":"Cordova, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-145.75467386865444,60.54274832427757]}},{"type":"Feature","properties":{"id":"torquay-vic-australia","name":"Torquay, VIC, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[144.3269093150513,-38.32915647171181]}},{"type":"Feature","properties":{"id":"adelaide-sa-australia","name":"Adelaide, SA, Australia","is_tbd":false},"geometry":{"type":"Point","coordinates":[138.5998839999997,-34.926102000000434]}},{"type":"Feature","properties":{"id":"ulleung-south-korea","name":"Ulleung, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[130.89327660932778,37.48932062641182]}},{"type":"Feature","properties":{"id":"hosan-ri-south-korea","name":"Hosan-ri, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[129.33873337935873,37.17514326596579]}},{"type":"Feature","properties":{"id":"goseong-ri-south-korea","name":"Goseong-ri, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.90930752942877,33.4415685056695]}},{"type":"Feature","properties":{"id":"mijo-myeon-south-korea","name":"Mijo-myeon, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[128.0274354936125,34.72835854992582]}},{"type":"Feature","properties":{"id":"goheung-south-korea","name":"Goheung, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[127.28599296347542,34.60940175186309]}},{"type":"Feature","properties":{"id":"tobishima-japan","name":"Tobishima, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.54899503294556,39.19500825244256]}},{"type":"Feature","properties":{"id":"yuza-japan","name":"Yuza, Japan","is_tbd":false},"geometry":{"type":"Point","coordinates":[139.909631900725,39.020994646733485]}},{"type":"Feature","properties":{"id":"rome-italy","name":"Rome, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.495760000000327,41.90311]}},{"type":"Feature","properties":{"id":"bastia-france","name":"Bastia, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.450881000001129,42.69728299999956]}},{"type":"Feature","properties":{"id":"golfo-aranci-italy","name":"Golfo Aranci, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.613161999999766,41.00477599999973]}},{"type":"Feature","properties":{"id":"puerto-saavedra-chile","name":"Puerto Saavedra, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.3967699999996,-38.78713000000029]}},{"type":"Feature","properties":{"id":"caldera-chile","name":"Caldera, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.812357,-27.06199200000027]}},{"type":"Feature","properties":{"id":"constitucin-chile","name":"Constitución, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.416068,-35.31837099999989]}},{"type":"Feature","properties":{"id":"cartagena-chile","name":"Cartagena, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.6000943975144,-33.54688294154119]}},{"type":"Feature","properties":{"id":"san-pedro-de-la-paz-chile","name":"San Pedro de la Paz, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-73.1089741201329,-36.83168324437438]}},{"type":"Feature","properties":{"id":"johnstone-point-ak-united-states","name":"Johnstone Point, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-146.6118661862618,60.48248023184166]}},{"type":"Feature","properties":{"id":"chenega-ak-united-states","name":"Chenega, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-148.01078611085993,60.065087981861794]}},{"type":"Feature","properties":{"id":"barcelona-spain","name":"Barcelona, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[2.168764,41.38562799999929]}},{"type":"Feature","properties":{"id":"schooner-bight-colombia","name":"Schooner Bight, Colombia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-81.73000254138753,12.551128558504994]}},{"type":"Feature","properties":{"id":"ponce-pr-united-states","name":"Ponce, PR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-66.626612,17.982659]}},{"type":"Feature","properties":{"id":"santo-domingo-dominican-republic","name":"Santo Domingo, Dominican Republic","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.940539,18.48681]}},{"type":"Feature","properties":{"id":"point-roberts-wa-united-states","name":"Point Roberts, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.056754,48.988680000000116]}},{"type":"Feature","properties":{"id":"seattle-wa-united-states","name":"Seattle, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.329439,47.603559999999284]}},{"type":"Feature","properties":{"id":"cordova-bay-bc-canada","name":"Cordova Bay, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.36724700802326,48.520397324657175]}},{"type":"Feature","properties":{"id":"oak-harbor-wa-united-states","name":"Oak Harbor, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.647147,48.290598]}},{"type":"Feature","properties":{"id":"esquimalt-bc-canada","name":"Esquimalt, BC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.414634,48.43011999999963]}},{"type":"Feature","properties":{"id":"pointe-au-pre-qc-canada","name":"Pointe-au-Père, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.45944949622975,48.50325927098271]}},{"type":"Feature","properties":{"id":"baie-comeau-qc-canada","name":"Baie-Comeau, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.15247899999949,49.22103999999976]}},{"type":"Feature","properties":{"id":"bic-qc-canada","name":"Bic, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.70931561967622,48.37278902244084]}},{"type":"Feature","properties":{"id":"forestville-qc-canada","name":"Forestville, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.08360294628653,48.73935708855762]}},{"type":"Feature","properties":{"id":"iquique-chile","name":"Iquique, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.14222300000027,-20.2166999999998]}},{"type":"Feature","properties":{"id":"antofagasta-chile","name":"Antofagasta, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.39999999999955,-23.65]}},{"type":"Feature","properties":{"id":"la-serena-chile","name":"La Serena, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.250204,-29.906301000000266]}},{"type":"Feature","properties":{"id":"tocopilla-chile","name":"Tocopilla, Chile","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.19765799999958,-22.08837799999976]}},{"type":"Feature","properties":{"id":"chisasibi-qc-canada","name":"Chisasibi, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.89346699999984,53.773609]}},{"type":"Feature","properties":{"id":"puvirnituq-qc-canada","name":"Puvirnituq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.26922999999955,60.037118]}},{"type":"Feature","properties":{"id":"umiujaq-qc-canada","name":"Umiujaq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-76.54711100000047,56.551563]}},{"type":"Feature","properties":{"id":"kuujjuarapik-qc-canada","name":"Kuujjuarapik, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.76243,55.275899999999545]}},{"type":"Feature","properties":{"id":"inukjuak-qc-canada","name":"Inukjuak, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.10510299999929,58.455121]}},{"type":"Feature","properties":{"id":"ivujivik-qc-canada","name":"Ivujivik, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-77.91666700000013,62.416666999999556]}},{"type":"Feature","properties":{"id":"salluit-qc-canada","name":"Salluit, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-75.64685600000062,62.20128499999978]}},{"type":"Feature","properties":{"id":"kangiqsujuaq-qc-canada","name":"Kangiqsujuaq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-71.95388599999907,61.59626]}},{"type":"Feature","properties":{"id":"akulivik-qc-canada","name":"Akulivik, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-78.14424100000058,60.81768099999956]}},{"type":"Feature","properties":{"id":"deception-qc-canada","name":"Deception, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-74.6301440000009,62.11487599999987]}},{"type":"Feature","properties":{"id":"quaqtaq-qc-canada","name":"Quaqtaq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.63992300000032,61.041723999999675]}},{"type":"Feature","properties":{"id":"kangirsuk-qc-canada","name":"Kangirsuk, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-70.02623500000018,60.02341500000016]}},{"type":"Feature","properties":{"id":"aupaluk-qc-canada","name":"Aupaluk, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.59748899999985,59.30574000000011]}},{"type":"Feature","properties":{"id":"tasiujaq-qc-canada","name":"Tasiujaq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-69.9373930000007,58.69740699999988]}},{"type":"Feature","properties":{"id":"kuujjuaq-qc-canada","name":"Kuujjuaq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-68.4188390000006,58.10299600000016]}},{"type":"Feature","properties":{"id":"kangiqsualujjuaq-qc-canada","name":"Kangiqsualujjuaq, QC, Canada","is_tbd":false},"geometry":{"type":"Point","coordinates":[-65.99511599999971,58.71015500000032]}},{"type":"Feature","properties":{"id":"winterton-on-sea-united-kingdom","name":"Winterton-on-Sea, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[1.693546999999342,52.715211000000465]}},{"type":"Feature","properties":{"id":"callantsoog-netherlands","name":"Callantsoog, Netherlands","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.7007499999996,52.83692899999963]}},{"type":"Feature","properties":{"id":"shoreham-ny-united-states","name":"Shoreham, NY, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.9092139999998,40.96081999999948]}},{"type":"Feature","properties":{"id":"udo-south-korea","name":"Udo, South Korea","is_tbd":false},"geometry":{"type":"Point","coordinates":[126.95575023131646,33.505333014430036]}},{"type":"Feature","properties":{"id":"dhuvaafaru-maldives","name":"Dhuvaafaru, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.04136330700179,5.629270004148423]}},{"type":"Feature","properties":{"id":"velidhoo-maldives","name":"Velidhoo, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.27506588125877,5.662178353024311]}},{"type":"Feature","properties":{"id":"maamigili-maldives","name":"Maamigili, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.8363098097716,3.472925055920153]}},{"type":"Feature","properties":{"id":"kudahuvadhoo-maldives","name":"Kudahuvadhoo, Maldives","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.89329539222669,2.67085379439719]}},{"type":"Feature","properties":{"id":"naknek-ak-united-states","name":"Naknek, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-157.0126665422281,58.73211899012127]}},{"type":"Feature","properties":{"id":"veracruz-mexico","name":"Veracruz, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-96.140754,19.19545999999957]}},{"type":"Feature","properties":{"id":"fiumicino-italy","name":"Fiumicino, Italy","is_tbd":false},"geometry":{"type":"Point","coordinates":[12.226913000000101,41.769718]}},{"type":"Feature","properties":{"id":"new-haven-ct-united-states","name":"New Haven, CT, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-72.92497899999981,41.30713000000013]}},{"type":"Feature","properties":{"id":"san-luis-obispo-ca-united-states","name":"San Luis Obispo, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-120.662548,35.285427000000354]}},{"type":"Feature","properties":{"id":"santa-barbara-ca-united-states","name":"Santa Barbara, CA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-119.69886900000027,34.41925499999979]}},{"type":"Feature","properties":{"id":"yakutat-ak-united-states","name":"Yakutat, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-139.67348595915,59.545761772458]}},{"type":"Feature","properties":{"id":"pelican-ak-united-states","name":"Pelican, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-136.22856619478605,57.96074065944409]}},{"type":"Feature","properties":{"id":"gustavus-ak-united-states","name":"Gustavus, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-135.72082551682627,58.41785832955816]}},{"type":"Feature","properties":{"id":"hoonah-ak-united-states","name":"Hoonah, AK, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-135.43380535882494,58.111922470063796]}},{"type":"Feature","properties":{"id":"chai-wan-china","name":"Chai Wan, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.23935699999967,22.26885000000032]}},{"type":"Feature","properties":{"id":"bandar-lampung-indonesia","name":"Bandar Lampung, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[105.2540970000002,-5.40921]}},{"type":"Feature","properties":{"id":"benculuk-indonesia","name":"Benculuk, Indonesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[114.09706372041353,-8.615634129813643]}},{"type":"Feature","properties":{"id":"jarry-guadeloupe","name":"Jarry, Guadeloupe","is_tbd":false},"geometry":{"type":"Point","coordinates":[-61.57108469999998,16.240111599999842]}},{"type":"Feature","properties":{"id":"marigot-saint-martin","name":"Marigot, Saint Martin","is_tbd":false},"geometry":{"type":"Point","coordinates":[-63.08246600000027,18.06751899999886]}},{"type":"Feature","properties":{"id":"teahupoo-french-polynesia","name":"Teahupo'o, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.24856523377207,-17.84943323159532]}},{"type":"Feature","properties":{"id":"tautira-french-polynesia","name":"Tautira, French Polynesia","is_tbd":false},"geometry":{"type":"Point","coordinates":[-149.1770351107709,-17.771815724224076]}},{"type":"Feature","properties":{"id":"clinton-wa-united-states","name":"Clinton, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.357431,47.979469999999125]}},{"type":"Feature","properties":{"id":"hat-island-wa-united-states","name":"Hat Island, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.31980253408008,48.013589714609076]}},{"type":"Feature","properties":{"id":"maxwelton-wa-united-states","name":"Maxwelton, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.4410914974422,47.940942198891804]}},{"type":"Feature","properties":{"id":"everett-wa-united-states","name":"Everett, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.206419,47.976575]}},{"type":"Feature","properties":{"id":"greenbank-wa-united-states","name":"Greenbank, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.57371036922427,48.09865442899575]}},{"type":"Feature","properties":{"id":"cama-beach-wa-united-states","name":"Cama Beach, WA, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-122.50972582333569,48.14223038529169]}},{"type":"Feature","properties":{"id":"nahariyya-israel","name":"Nahariyya, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[35.106357999999446,33.03646299999986]}},{"type":"Feature","properties":{"id":"herzeliyya-israel","name":"Herzeliyya, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.84467500000032,32.16241300000017]}},{"type":"Feature","properties":{"id":"rishon-lezion-israel","name":"Rishon Le’Zion, Israel","is_tbd":false},"geometry":{"type":"Point","coordinates":[34.78510718142765,31.97782599999984]}},{"type":"Feature","properties":{"id":"skelberry-united-kingdom","name":"Skelberry, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.14147,60.35143999999963]}},{"type":"Feature","properties":{"id":"sumburgh-united-kingdom","name":"Sumburgh, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.28710000000038,59.86913]}},{"type":"Feature","properties":{"id":"fair-isle-united-kingdom","name":"Fair Isle, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.61797,59.52786]}},{"type":"Feature","properties":{"id":"scuthvie-bay-united-kingdom","name":"Scuthvie Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.419070000000211,59.28984]}},{"type":"Feature","properties":{"id":"odie-united-kingdom","name":"Odie, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.653650000000509,59.148940000000316]}},{"type":"Feature","properties":{"id":"stove-united-kingdom","name":"Stove, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.653650000000509,59.148940000000316]}},{"type":"Feature","properties":{"id":"bay-of-london-united-kingdom","name":"Bay of London, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.766219999999832,59.19229999999987]}},{"type":"Feature","properties":{"id":"gump-of-spurness-united-kingdom","name":"Gump of Spurness, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.701490000000198,59.20632000000029]}},{"type":"Feature","properties":{"id":"rapness-united-kingdom","name":"Rapness, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.857569999999607,59.25540999999936]}},{"type":"Feature","properties":{"id":"cusbay-united-kingdom","name":"Cusbay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.783989999999398,59.22463999999973]}},{"type":"Feature","properties":{"id":"evie-united-kingdom","name":"Evie, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.108369999999561,59.113460000000345]}},{"type":"Feature","properties":{"id":"westness-united-kingdom","name":"Westness, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.078049999999543,59.14384000000025]}},{"type":"Feature","properties":{"id":"linksness-united-kingdom","name":"Linksness, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.817719999999835,58.97922]}},{"type":"Feature","properties":{"id":"sandgarth-united-kingdom","name":"Sandgarth, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.836200000000433,59.02518999999988]}},{"type":"Feature","properties":{"id":"weddel-united-kingdom","name":"Weddel, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.145119999999605,58.82968000000027]}},{"type":"Feature","properties":{"id":"crockness-united-kingdom","name":"Crockness, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.172020000000312,58.82273999999966]}},{"type":"Feature","properties":{"id":"hoxa-united-kingdom","name":"Hoxa, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.991359999999569,58.82640000000025]}},{"type":"Feature","properties":{"id":"quoyness-united-kingdom","name":"Quoyness, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.085600000000104,58.83105]}},{"type":"Feature","properties":{"id":"laig-united-kingdom","name":"Laig, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.160689999999481,56.91203000000021]}},{"type":"Feature","properties":{"id":"morar-united-kingdom","name":"Morar, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.850810000000384,56.94649999999944]}},{"type":"Feature","properties":{"id":"port-appin-united-kingdom","name":"Port Appin, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.41241,56.55229999999983]}},{"type":"Feature","properties":{"id":"port-ramsay-united-kingdom","name":"Port Ramsay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.442399999999799,56.55241000000044]}},{"type":"Feature","properties":{"id":"fionnaphort-united-kingdom","name":"Fionnaphort, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.368079999997523,56.32302]}},{"type":"Feature","properties":{"id":"baile-mr-united-kingdom","name":"Baile Mòr, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.394689999999684,56.329009999999805]}},{"type":"Feature","properties":{"id":"scoor-united-kingdom","name":"Scoor, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.177799999999649,56.29173000000012]}},{"type":"Feature","properties":{"id":"lesund-norway","name":"Ålesund, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.174380000000262,62.47148500000043]}},{"type":"Feature","properties":{"id":"molde-norway","name":"Molde, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.160730600000246,62.737235199999844]}},{"type":"Feature","properties":{"id":"sture-norway","name":"Sture, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.85548799999971,60.621982]}},{"type":"Feature","properties":{"id":"hyllestad-norway","name":"Hyllestad, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.293384,61.17225099999944]}},{"type":"Feature","properties":{"id":"herlandsvika-norway","name":"Herlandsvika, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.465751000000408,62.614440999999644]}},{"type":"Feature","properties":{"id":"andalsnes-norway","name":"Andalsnes, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.681580000000571,62.56581899999933]}},{"type":"Feature","properties":{"id":"brekstad-norway","name":"Brekstad, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[9.66311,63.68841000000035]}},{"type":"Feature","properties":{"id":"kristiansund-norway","name":"Kristiansund, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.72968,63.11078500000032]}},{"type":"Feature","properties":{"id":"heim-norway","name":"Åheim, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.522346499999918,62.035985699999486]}},{"type":"Feature","properties":{"id":"lefdal-norway","name":"Lefdal, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[5.498518699999691,61.93554279999944]}},{"type":"Feature","properties":{"id":"flor-norway","name":"Florø, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[4.975850599999511,61.5963114999995]}},{"type":"Feature","properties":{"id":"tjeldbergodden-norway","name":"Tjeldbergodden, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.693961500000043,63.40817519999965]}},{"type":"Feature","properties":{"id":"hitra-norway","name":"Hitra, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.975251599999408,63.504622699999835]}},{"type":"Feature","properties":{"id":"edya-norway","name":"Edøya, Norway","is_tbd":false},"geometry":{"type":"Point","coordinates":[8.093379399999966,63.30103670000029]}},{"type":"Feature","properties":{"id":"belmont-united-kingdom","name":"Belmont, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-0.966809999999724,60.6873599999995]}},{"type":"Feature","properties":{"id":"gutcher-united-kingdom","name":"Gutcher, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.00722,60.669439999999305]}},{"type":"Feature","properties":{"id":"burravoe-united-kingdom","name":"Burravoe, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.055590000000232,60.49937]}},{"type":"Feature","properties":{"id":"mossbank-united-kingdom","name":"Mossbank, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.182159999999831,60.45909]}},{"type":"Feature","properties":{"id":"symbister-united-kingdom","name":"Symbister, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-1.024920000000143,60.341]}},{"type":"Feature","properties":{"id":"kalpeni-india","name":"Kalpeni, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.64410938214787,10.069817641044033]}},{"type":"Feature","properties":{"id":"minicoy-india","name":"Minicoy, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.0512024994037,8.27464880388296]}},{"type":"Feature","properties":{"id":"andrott-india","name":"Andrott, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.67409529270167,10.810878179169102]}},{"type":"Feature","properties":{"id":"kavaratti-india","name":"Kavaratti, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.64071499772183,10.564728356964638]}},{"type":"Feature","properties":{"id":"agatti-india","name":"Agatti, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.19544560983998,10.862867747435985]}},{"type":"Feature","properties":{"id":"bangaram-india","name":"Bangaram, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.28722656010738,10.939880964178196]}},{"type":"Feature","properties":{"id":"kadmat-india","name":"Kadmat, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.77758430201857,11.22718249121781]}},{"type":"Feature","properties":{"id":"bitra-india","name":"Bitra, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.18593318270166,11.59843321448516]}},{"type":"Feature","properties":{"id":"chetlat-india","name":"Chetlat, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.71064539702743,11.689816748289662]}},{"type":"Feature","properties":{"id":"kiltan-india","name":"Kiltan, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[73.00644623627844,11.48521804285916]}},{"type":"Feature","properties":{"id":"amini-india","name":"Amini, India","is_tbd":false},"geometry":{"type":"Point","coordinates":[72.72286795461697,11.124258631805647]}},{"type":"Feature","properties":{"id":"almera-spain","name":"Almería, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.463795000000609,36.84186500000091]}},{"type":"Feature","properties":{"id":"melilla-spain","name":"Melilla, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.938097300000332,35.292277500000246]}},{"type":"Feature","properties":{"id":"roquetas-de-mar-spain","name":"Roquetas de Mar, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.612499000000314,36.76384499999967]}},{"type":"Feature","properties":{"id":"rosarito-mexico","name":"Rosarito, Mexico","is_tbd":false},"geometry":{"type":"Point","coordinates":[-117.06377809999996,32.357601899999985]}},{"type":"Feature","properties":{"id":"winema-or-united-states","name":"Winema, OR, United States","is_tbd":false},"geometry":{"type":"Point","coordinates":[-123.97340470108611,45.146590041565254]}},{"type":"Feature","properties":{"id":"port-nl-france","name":"Port Nâl, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.482272326026668,47.65023770959263]}},{"type":"Feature","properties":{"id":"petit-perello-france","name":"Petit Perello, France","is_tbd":false},"geometry":{"type":"Point","coordinates":[-3.445566038986786,47.69743263943637]}},{"type":"Feature","properties":{"id":"kiloran-bay-united-kingdom","name":"Kiloran Bay, United Kingdom","is_tbd":false},"geometry":{"type":"Point","coordinates":[-6.180179999999638,56.10364999999975]}},{"type":"Feature","properties":{"id":"osoviny-ukraine","name":"Osoviny, Ukraine","is_tbd":false},"geometry":{"type":"Point","coordinates":[36.59112538599644,45.43102598053321]}},{"type":"Feature","properties":{"id":"beihai-china","name":"Beihai, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[109.10530900000046,21.484500999999632]}},{"type":"Feature","properties":{"id":"lingao-china","name":"Lingao, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[109.67762000000093,19.9048]}},{"type":"Feature","properties":{"id":"mamu-china","name":"Mamu, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.94569495659735,30.17189746945603]}},{"type":"Feature","properties":{"id":"xiepu-china","name":"Xiepu, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.63985462881675,30.043111146660067]}},{"type":"Feature","properties":{"id":"dalian-china","name":"Dalian, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.57652300000039,38.94381]}},{"type":"Feature","properties":{"id":"yantai-china","name":"Yantai, China","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.4,37.53]}},{"type":"Feature","properties":{"id":"ugolnye-kopi-russia","name":"Ugolnye Kopi, Russia","is_tbd":false},"geometry":{"type":"Point","coordinates":[177.6402750000004,64.73783899999947]}},{"type":"Feature","properties":{"id":"cienfuegos-cuba","name":"Cienfuegos, Cuba","is_tbd":false},"geometry":{"type":"Point","coordinates":[-80.44896345712418,22.145949778587273]}},{"type":"Feature","properties":{"id":"kista-sweden","name":"Kista, Sweden","is_tbd":false},"geometry":{"type":"Point","coordinates":[17.943569000000302,59.40288899999986]}},{"type":"Feature","properties":{"id":"amanzimtoti-south-africa","name":"Amanzimtoti, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[30.88039000000108,-30.057720000000288]}},{"type":"Feature","properties":{"id":"mtwapa-kenya","name":"Mtwapa, Kenya","is_tbd":false},"geometry":{"type":"Point","coordinates":[39.74507100000067,-3.946130000001213]}},{"type":"Feature","properties":{"id":"kkar-finland","name":"Kökar, Finland","is_tbd":false},"geometry":{"type":"Point","coordinates":[20.907994618212367,59.92096528426693]}},{"type":"Feature","properties":{"id":"zahara-de-los-atunes-spain","name":"Zahara de los Atunes, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-5.843848195988094,36.13475691089309]}},{"type":"Feature","properties":{"id":"nador-morocco","name":"Nador, Morocco","is_tbd":false},"geometry":{"type":"Point","coordinates":[-2.933034999999599,35.170020000000214]}},{"type":"Feature","properties":{"id":"collo-algeria","name":"Collo, Algeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[6.557241714400392,37.00296280298153]}},{"type":"Feature","properties":{"id":"nabas-philippines","name":"Nabas, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[122.03325741497643,11.86790448093766]}},{"type":"Feature","properties":{"id":"daanbantayan-philippines","name":"Daanbantayan, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.01730899999959,11.246494999999399]}},{"type":"Feature","properties":{"id":"gqeberha-south-africa","name":"Gqeberha, South Africa","is_tbd":false},"geometry":{"type":"Point","coordinates":[25.623280000000147,-33.962498999999816]}},{"type":"Feature","properties":{"id":"kwa-ibo-nigeria","name":"Kwa Ibo, Nigeria","is_tbd":false},"geometry":{"type":"Point","coordinates":[7.997436999999589,4.543802999999177]}},{"type":"Feature","properties":{"id":"gran-canaria-canary-islands-spain","name":"Gran Canaria, Canary Islands, Spain","is_tbd":false},"geometry":{"type":"Point","coordinates":[-15.596565000000123,27.957734999999765]}},{"type":"Feature","properties":{"id":"carana-seychelles","name":"Carana, Seychelles","is_tbd":false},"geometry":{"type":"Point","coordinates":[55.45302899999983,-4.565748999999809]}},{"type":"Feature","properties":{"id":"yuanli-taiwan","name":"Yuanli, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.64548999999985,24.432460000000326]}},{"type":"Feature","properties":{"id":"jinhu-township-taiwan","name":"Jinhu Township, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.43943999999946,24.437479999999816]}},{"type":"Feature","properties":{"id":"budai-taiwan","name":"Budai, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.17046999999953,23.362789999999872]}},{"type":"Feature","properties":{"id":"huxi-township-taiwan","name":"Huxi Township, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.65616000000064,23.573629999999714]}},{"type":"Feature","properties":{"id":"jincheng-township-taiwan","name":"Jincheng Township, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[118.31584,24.413410000000344]}},{"type":"Feature","properties":{"id":"tainan-taiwan","name":"Tainan, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[120.18086199999875,22.99721]}},{"type":"Feature","properties":{"id":"taoyuan-taiwan","name":"Taoyuan, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[121.31111109999966,24.98888889999996]}},{"type":"Feature","properties":{"id":"magong-taiwan","name":"Magong, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.5745100000003,23.571549999999434]}},{"type":"Feature","properties":{"id":"xiyu-township-taiwan","name":"Xiyu Township, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.51201999999984,23.60192]}},{"type":"Feature","properties":{"id":"beigan-taiwan","name":"Beigan, Taiwan","is_tbd":false},"geometry":{"type":"Point","coordinates":[119.98859,26.225399999999755]}},{"type":"Feature","properties":{"id":"matnog-philippines","name":"Matnog, Philippines","is_tbd":false},"geometry":{"type":"Point","coordinates":[124.08471721303704,12.585260603443063]}},{"type":"Feature","properties":{"id":"cape-town-south-africa","name":"Cape Town, South Africa","is_tbd":true},"geometry":{"type":"Point","coordinates":[18.421980999999718,-33.91908600000014]}},{"type":"Feature","properties":{"id":"castlefreke-ireland","name":"Castlefreke, Ireland","is_tbd":true},"geometry":{"type":"Point","coordinates":[-8.963843834000034,51.57267338201398]}}]} diff --git a/assets/dams.geojson b/assets/dams.geojson new file mode 100644 index 0000000..3f10014 --- /dev/null +++ b/assets/dams.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HE Podlubnik - Centrala","output":"330KW","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.29267,46.16913]}},{"type":"Feature","properties":{"name":"\u0646\u063a\u0644\u0648 \u0628\u0631\u06d0\u069a\u0646\u0627\u06a9\u0648\u067c","output":"100 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[69.71699,34.64104]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica de Itaipu","output":"14000 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-54.58375,-25.41357]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp gi\u1eef n\u01b0\u1edbc th\u00e0nh ph\u1ed1 Cao B\u1eb1ng","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.26761,22.65467]}},{"type":"Feature","properties":{"name":"\u10dd\u10e0\u10d7\u10d0\u10ed\u10d0\u10da\u10d8\u10e1 \u10f0\u10d4\u10e1\u10d8","output":"18 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[44.82632,41.68301]}},{"type":"Feature","properties":{"name":"Barragem Pimental","output":"233.1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-51.93408,-3.4353]}},{"type":"Feature","properties":{"name":"Salakovac Hydroelectric Power Station","output":"210 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[17.83717,43.44763]}},{"type":"Feature","properties":{"name":"\u03a6\u03c1\u03ac\u03b3\u03bc\u03b1 \u0391\u03c3\u03c9\u03bc\u03ac\u03c4\u03c9\u03bd","output":"108 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.24373,40.47453]}},{"type":"Feature","properties":{"name":"Barrage de Mobayi-Mbongo","output":"11.37 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.18525,4.30647]}},{"type":"Feature","properties":{"name":"Kraftwerk Weyer","output":"36.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.63864,47.84849]}},{"type":"Feature","properties":{"name":"Smith Mountain Dam","output":"547.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-79.53556,37.04105]}},{"type":"Feature","properties":{"name":"Fels\u0151dobszai v\u00edzer\u0151m\u0171","output":"948 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.08154,48.26169]}},{"type":"Feature","properties":{"name":"\u0412\u043e\u043b\u0445\u043e\u0432\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"86 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[32.33918,59.91259]}},{"type":"Feature","properties":{"name":"Arsenal Power Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-90.5393,41.51481]}},{"type":"Feature","properties":{"name":"Moline Power Dam","output":"3.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-90.5314,41.51062]}},{"type":"Feature","properties":{"name":"Central hidroel\u00e9ctrica Miel I","output":"396 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-74.88653,5.56063]}},{"type":"Feature","properties":{"name":"\u042e\u043c\u0430\u0433\u0443\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"45 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[56.55606,53.0044]}},{"type":"Feature","properties":{"name":"\u0412\u0415\u0426 \"\u0418\u0432\u0430\u0439\u043b\u043e\u0432\u0433\u0440\u0430\u0434\"","output":"120 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[26.10722,41.584]}},{"type":"Feature","properties":{"name":"HE La\u0161va","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[17.77606,44.16507]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica Governador Jos\u00e9 Richa","output":"1240 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-53.49599,-25.54305]}},{"type":"Feature","properties":{"name":"\u0421\u0432\u0435\u0442\u043b\u0438\u043d\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"277.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[113.49092,63.07188]}},{"type":"Feature","properties":{"name":"Centrale de Drummondville - Barrage de Drummondville","output":"16 MW;yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-72.48388,45.88684]}},{"type":"Feature","properties":{"name":"\u041e\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u0456\u0432\u0441\u044c\u043a\u0430 \u0413\u0415\u0421","output":"10.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[31.25308,47.70233]}},{"type":"Feature","properties":{"name":"UHE Santo Antonio","output":"3580 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-63.95164,-8.80038]}},{"type":"Feature","properties":{"name":"Pelton Dam","output":"109.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-121.2313,44.69439]}},{"type":"Feature","properties":{"name":"Hells Canyon Dam","output":"391.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-116.70112,45.24291]}},{"type":"Feature","properties":{"name":"Upriver Dam Hydro Plant","output":"17.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-117.3318,47.68253]}},{"type":"Feature","properties":{"name":"Little Falls Power Plant","output":"43.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-117.91851,47.83031]}},{"type":"Feature","properties":{"name":"\u0411\u0443\u0440\u0435\u0439\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"2010 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[130.30894,50.26928]}},{"type":"Feature","properties":{"name":"UHE Ney Braga","output":"1260 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-52.11351,-25.79065]}},{"type":"Feature","properties":{"name":"HE Vuzenica","output":"55.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[15.15216,46.59323]}},{"type":"Feature","properties":{"name":"HE Dravograd","output":"26.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[15.01864,46.5866]}},{"type":"Feature","properties":{"name":"Hidroelektrikarna Fala","output":"58 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[15.45614,46.5584]}},{"type":"Feature","properties":{"name":"Dam","output":"60 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.39456,39.1394]}},{"type":"Feature","properties":{"name":"\u0412\u0435\u0440\u0445\u043d\u0435\u0441\u0432\u0438\u0440\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"160 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[34.19093,60.9189]}},{"type":"Feature","properties":{"name":"\u041d\u0438\u0436\u043d\u0435-\u0421\u0432\u0438\u0440\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"99 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[33.70289,60.80711]}},{"type":"Feature","properties":{"name":"Pisgah Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-96.10317,46.27958]}},{"type":"Feature","properties":{"name":"Barrage de Verbois","output":"98 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[6.0287,46.19285]}},{"type":"Feature","properties":{"name":"Ice Harbor Dam","output":"603 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-118.88054,46.249]}},{"type":"Feature","properties":{"name":"Pont-Barrage hydro\u00e9lectrique de Saint-\u00c9gr\u00e8ve Noyarey","output":"46 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.65842,45.23614]}},{"type":"Feature","properties":{"name":"Grand Coulee Dam","output":"6809 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-118.98322,47.95639]}},{"type":"Feature","properties":{"name":"Centrale Hydro\u00e9lectrique de Br\u00e9gnier-Cordon","output":"70.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.60408,45.65383]}},{"type":"Feature","properties":{"name":"Elektrownia Wodna D\u0119be","output":"21.18 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[20.92369,52.48846]}},{"type":"Feature","properties":{"name":"\u10d6\u10d0\u10f0\u10d4\u10e1\u10d8","output":"36.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[44.75976,41.82264]}},{"type":"Feature","properties":{"name":"Wylie Dam","output":"60 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-81.00747,35.02053]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[26.77126,60.76685]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica de Jaguara","output":"424 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-47.43445,-20.02262]}},{"type":"Feature","properties":{"name":"Lockport Powerhouse","output":"16 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-88.07891,41.56954]}},{"type":"Feature","properties":{"name":"Barrage de Chezelles","output":"6.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.83472,46.28169]}},{"type":"Feature","properties":{"name":"Barrage de Champsanglard","output":"6.281 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.87694,46.26069]}},{"type":"Feature","properties":{"name":"Puente Mulas","output":"","source":""},"geometry":{"type":"Point","coordinates":[-84.18361,9.97224]}},{"type":"Feature","properties":{"name":"\ub300\uccad\ub310","output":"90 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.48047,36.47788]}},{"type":"Feature","properties":{"name":"N\u00f6bbel\u00f6v Kraftstationen","output":"4.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.07505,56.23555]}},{"type":"Feature","properties":{"name":"Lechstaustufe 19 Schwabstadl","output":"12 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.86653,48.14842]}},{"type":"Feature","properties":{"name":"Laufwasserkraftwerk Unterbergen","output":"12.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.92662,48.23735]}},{"type":"Feature","properties":{"name":"Laufwasserkraftwerk Merching","output":"12 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.93682,48.26592]}},{"type":"Feature","properties":{"name":"\uc704\uc6d0\ub310","output":"390 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[125.97261,40.90179]}},{"type":"Feature","properties":{"name":"\u51e4\u6ee9\u6c34\u7535\u7ad9","output":"800 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.27518,28.71952]}},{"type":"Feature","properties":{"name":"Barrage des Monts d'Orb","output":"1.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[3.09315,43.76538]}},{"type":"Feature","properties":{"name":"\u0421\u0430\u0440\u0430\u0442\u043e\u0432\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"1391 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[47.75964,52.04965]}},{"type":"Feature","properties":{"name":"Barrage de Chardes","output":"4.83 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.6839,46.2431]}},{"type":"Feature","properties":{"name":"Barrage de la Roche","output":"8.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.67888,46.22589]}},{"type":"Feature","properties":{"name":"Barrage de Jousseau","output":"5.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.67261,46.16968]}},{"type":"Feature","properties":{"name":"Mitchell Dam","output":"170 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-86.44507,32.80552]}},{"type":"Feature","properties":{"name":"\u0423\u0433\u043b\u0438\u0447\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"120 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[38.2996,57.52526]}},{"type":"Feature","properties":{"name":"Centrale des C\u00e8dres","output":"122 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-74.02726,45.30873]}},{"type":"Feature","properties":{"name":"\u0423\u0441\u0442\u044c-\u041a\u0430\u043c\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"367.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[82.71925,49.90137]}},{"type":"Feature","properties":{"name":"Presa de B\u00e1rcena","output":"61.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-6.56091,42.57763]}},{"type":"Feature","properties":{"name":"Chute de Pierre B\u00e9nite","output":"80.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.84201,45.70183]}},{"type":"Feature","properties":{"name":"Wells Dam","output":"774 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-119.86515,47.94708]}},{"type":"Feature","properties":{"name":"Barrage de Monteynard","output":"366 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.68853,44.96145]}},{"type":"Feature","properties":{"name":"\u04ae\u0447-\u041a\u043e\u0440\u0433\u043e\u043d \u0413\u042d\u0421\u0438","output":"180 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[72.1604,41.18793]}},{"type":"Feature","properties":{"name":"Centrale des Rapides-Farmer","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-75.76316,45.49888]}},{"type":"Feature","properties":{"name":"\u00c4ets\u00e4n voimalaitos","output":"16 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.69557,61.27885]}},{"type":"Feature","properties":{"name":"Barrage de l'Artige","output":"2.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.53177,45.80726]}},{"type":"Feature","properties":{"name":"\u6c34\u4e30\u6c34\u5e93 / \uc218\ud48d\uc5b8\uc81c","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[124.96211,40.46095]}},{"type":"Feature","properties":{"name":"Big Creek Number 7 104-022 Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-119.45164,37.14504]}},{"type":"Feature","properties":{"name":"\u041d\u0438\u0432\u0430 \u0413\u042d\u0421-1","output":"24.9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[32.527,67.38114]}},{"type":"Feature","properties":{"name":"Barrage de G\u00e9nissiat","output":"420 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.81273,46.05251]}},{"type":"Feature","properties":{"name":"Barrage du Saillant","output":"0.42 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.46753,45.28732]}},{"type":"Feature","properties":{"name":"Usine-Barrage de Sauveterre","output":"52 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.82845,44.01368]}},{"type":"Feature","properties":{"name":"Rheinkraftwerk Albbruck-Dogern","output":"79.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[8.13299,47.58595]}},{"type":"Feature","properties":{"name":"\u0422\u043e\u043a\u0442\u043e\u0433\u0443\u043b\u044c\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"1200 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[72.63577,41.65659]}},{"type":"Feature","properties":{"name":"Presa de Salime","output":"78.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-6.8474,43.23638]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[25.88745,62.24477]}},{"type":"Feature","properties":{"name":"River Mill Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-122.35084,45.29938]}},{"type":"Feature","properties":{"name":"Presa de Valdeca\u00f1as","output":"249 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-5.61232,39.77748]}},{"type":"Feature","properties":{"name":"Centrale Hydro\u00e9lectrique de Mauzac","output":"13.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.80633,44.85395]}},{"type":"Feature","properties":{"name":"Hydraulisches Kraftwerk Beznau","output":"19.25 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[8.23669,47.55784]}},{"type":"Feature","properties":{"name":"Lechstaustufe 8a - Kinsau","output":"8.1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.92266,47.87551]}},{"type":"Feature","properties":{"name":"Usina Hidroeletrica Castro Alves","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-51.38401,-29.00555]}},{"type":"Feature","properties":{"name":"Dique El Tigre","output":"14 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-68.61363,-34.60846]}},{"type":"Feature","properties":{"name":"Wasserkraftanlage Talsperre Eibenstock","output":"1.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[12.59906,50.52989]}},{"type":"Feature","properties":{"name":"Lewiston Pump-Generating Plant","output":"240 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-79.02188,43.14252]}},{"type":"Feature","properties":{"name":"Robert Moses Power Plant","output":"2429.1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-79.03985,43.14233]}},{"type":"Feature","properties":{"name":"\u0414\u043d\u0456\u043f\u0440\u043e\u0432\u0441\u044c\u043a\u0430 \u0413\u0415\u0421","output":"1578,6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[35.08632,47.86863]}},{"type":"Feature","properties":{"name":"\u0411\u0440\u0430\u0442\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"4500 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.78638,56.286]}},{"type":"Feature","properties":{"name":"Phewa dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[83.9678,28.19547]}},{"type":"Feature","properties":{"name":"Lechstaustufe 4 - Dessau","output":"10.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.82495,47.73959]}},{"type":"Feature","properties":{"name":"Barrage de Villebois","output":"1.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.41754,45.84576]}},{"type":"Feature","properties":{"name":"P\u013cavi\u0146u HES","output":"908 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[25.23847,56.58265]}},{"type":"Feature","properties":{"name":"Oliver Dam","output":"60 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.99903,32.5156]}},{"type":"Feature","properties":{"name":"North Highlands Dam","output":"26.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.99539,32.49867]}},{"type":"Feature","properties":{"name":"Barrage de Beauvoir","output":"39 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.31808,45.12108]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-54.40819,-27.72997]}},{"type":"Feature","properties":{"name":"Elk Rapids Hydroelectric Power","output":"0.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-85.41272,44.90099]}},{"type":"Feature","properties":{"name":"Barrage de Puylaurent","output":"3.69 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[3.88702,44.53012]}},{"type":"Feature","properties":{"name":"\u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0430 \u0413\u0415\u0421","output":"440 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[30.51225,50.58838]}},{"type":"Feature","properties":{"name":"Usine Hydro\u00e9lectrique de Porcieu Amblagnieu","output":"40 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[5.4058,45.85311]}},{"type":"Feature","properties":{"name":"\u041d\u0438\u0436\u043d\u0435\u043a\u0430\u043c\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"1205 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[52.27845,55.70012]}},{"type":"Feature","properties":{"name":"Kelsey Generating Station","output":"250 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-96.53804,56.04062]}},{"type":"Feature","properties":{"name":"Bearspaw Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-114.28264,51.10093]}},{"type":"Feature","properties":{"name":"\u062a\u0627\u062c \u0633\u062f \u0632\u0627\u06cc\u0646\u062f\u0647 \u0631\u0648\u062f","output":"55.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[50.73727,32.73392]}},{"type":"Feature","properties":{"name":"Barrage du Sablier","output":"46 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.95376,45.10421]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica Engenheiro Souza Dias","output":"1551.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-51.62853,-20.77758]}},{"type":"Feature","properties":{"name":"Goodyear Lake Plant","output":"1.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-74.98355,42.50242]}},{"type":"Feature","properties":{"name":"\u0421\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0434\u043d\u0456\u043f\u0440\u043e\u0432\u0441\u044c\u043a\u0430 \u0413\u0415\u0421","output":"352 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[34.54139,48.54879]}},{"type":"Feature","properties":{"name":"Barrage de Villerest","output":"65.76 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.04764,45.98663]}},{"type":"Feature","properties":{"name":"Jebel Aulia Dam","output":"30.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[32.48657,15.2387]}},{"type":"Feature","properties":{"name":"Sir Adam Beck Pump Generating Station","output":"174 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-79.06062,43.14433]}},{"type":"Feature","properties":{"name":"Keltin voimalaitos","output":"17 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[26.61396,60.87381]}},{"type":"Feature","properties":{"name":"NATHPA JHAKRI","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[77.98004,31.56391]}},{"type":"Feature","properties":{"name":"Pequena Central Hidroel\u00e9trica Rasg\u00e3o","output":"22 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-47.0317,-23.38085]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[45.13551,41.84673]}},{"type":"Feature","properties":{"name":"Kiira Power Station","output":"200 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[33.18565,0.45031]}},{"type":"Feature","properties":{"name":"Nimoo Bazgo Hydroelectric Plant","output":"45 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[77.18478,34.2152]}},{"type":"Feature","properties":{"name":"Tiszal\u00f6ki v\u00edzer\u0151m\u0171","output":"12.9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.30802,48.02609]}},{"type":"Feature","properties":{"name":"Kisk\u00f6rei v\u00edzer\u0151m\u0171","output":"28 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[20.51587,47.49332]}},{"type":"Feature","properties":{"name":"Barrage Sidi Salem","output":"33 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[9.39634,36.58968]}},{"type":"Feature","properties":{"name":"Presa y Bocatoma Huallamayo","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-75.70317,-10.7582]}},{"type":"Feature","properties":{"name":"Noxon Rapids Dam","output":"487.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-115.73381,47.96095]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp th\u1ee7y \u0111i\u1ec7n \u0110\u0103k \u0110rinh","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.30131,14.97894]}},{"type":"Feature","properties":{"name":"\u0411\u0443\u0445\u0442\u0430\u0440\u043c\u0438\u043d\u0441\u043a\u0430\u044f-\u0413\u042d\u0421","output":"675 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[83.34702,49.65881]}},{"type":"Feature","properties":{"name":"Centrala Hidroelectric\u0103 Rus\u0103ne\u0219ti","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.62678,43.91615]}},{"type":"Feature","properties":{"name":"Ipotesti","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.40354,44.26393]}},{"type":"Feature","properties":{"name":"\u65b0\u5b89\u6c5f\u6c34\u7535\u7ad9","output":"845 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[119.21381,29.48353]}},{"type":"Feature","properties":{"name":"Hidrocentrala Babeni","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.24653,44.91674]}},{"type":"Feature","properties":{"name":"Hidrocentrala Govora","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.29728,45.0092]}},{"type":"Feature","properties":{"name":"Lake Glenmaggie","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[146.80042,-37.90442]}},{"type":"Feature","properties":{"name":"Presa Aguamilpa","output":"960 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-104.8027,21.8383]}},{"type":"Feature","properties":{"name":"HES","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[35.33437,36.97967]}},{"type":"Feature","properties":{"name":"Presa El Platanal","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-75.96052,-12.71467]}},{"type":"Feature","properties":{"name":"\ud314\ub2f9\ub310","output":"120 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.27866,37.52592]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica de Ita\u00faba","output":"500 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-53.23635,-29.26137]}},{"type":"Feature","properties":{"name":"\u042f\u0432\u043e\u0440\u0441\u044c\u043a\u0430 \u041c\u0413\u0415\u0421","output":"450 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[23.05829,49.17842]}},{"type":"Feature","properties":{"name":"Chippewa Falls WP304 Dam","output":"21.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-91.38903,44.93221]}},{"type":"Feature","properties":{"name":"Yunnan Yongde Damengtong","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.47121,24.2592]}},{"type":"Feature","properties":{"name":"\u10e0\u10d8\u10dd\u10dc\u10d8\u10e1 \u10f0\u10d8\u10d3\u10e0\u10dd\u10d4\u10da\u10d4\u10e5\u10e2\u10e0\u10dd\u10e1\u10d0\u10d3\u10d2\u10e3\u10e0\u10d8","output":"51 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[42.72577,42.2006]}},{"type":"Feature","properties":{"name":"Port Edwards Mill","output":"6.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-89.85622,44.33771]}},{"type":"Feature","properties":{"name":"\u10d2\u10e3\u10db\u10d0\u10d7\u10f0\u10d4\u10e1\u10d8 II","output":"22.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[42.71795,42.30743]}},{"type":"Feature","properties":{"name":"Barrage de Fleix","output":"3.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.65224,45.81522]}},{"type":"Feature","properties":{"name":"\u0633\u062f \u06af\u0627\u0648\u0634\u0627\u0646","output":"11 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[46.99294,34.96292]}},{"type":"Feature","properties":{"name":"Barrage de Villejoubert","output":"3.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.56903,45.79551]}},{"type":"Feature","properties":{"name":"Barrage de Bujaleuf","output":"3.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.61432,45.80255]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica de Tucuru\u00ed","output":"8370 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-49.64684,-3.83184]}},{"type":"Feature","properties":{"name":"\u041e\u043d\u043e\u043a\u0456\u0432\u0441\u044c\u043a\u0430 \u0413\u0415\u0421","output":"2650 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.35745,48.66266]}},{"type":"Feature","properties":{"name":"\u7011\u5e03\u6c9f\u5927\u575d","output":"3300 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.83883,29.20893]}},{"type":"Feature","properties":{"name":"Central Hidroel\u00e9ctrica Los Quiroga","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-64.30841,-27.69186]}},{"type":"Feature","properties":{"name":"Pequena Central Hidroel\u00e9trica Porto G\u00f3es","output":"24.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-47.29975,-23.20902]}},{"type":"Feature","properties":{"name":"Lechstaustufe 3 - Urspring","output":"10.1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.82559,47.71609]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-64.56667,-32.22356]}},{"type":"Feature","properties":{"name":"Presa El Caj\u00f3n","output":"750 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-104.45313,21.42919]}},{"type":"Feature","properties":{"name":"Presa La Yesca","output":"750 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-104.1067,21.19533]}},{"type":"Feature","properties":{"name":"Sichuan Xiaolongmen","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.12385,30.81626]}},{"type":"Feature","properties":{"name":"Elektrownia wodna Otmuch\u00f3w","output":"4.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[17.15057,50.4589]}},{"type":"Feature","properties":{"name":"Chamera Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[75.98561,32.59692]}},{"type":"Feature","properties":{"name":"Sichuan Niangyong","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.8969,29.06019]}},{"type":"Feature","properties":{"name":"\u03a6\u03c1\u03ac\u03b3\u03bc\u03b1 \u0395\u03c5\u03ae\u03bd\u03bf\u03c5","output":"0.82 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.83725,38.66886]}},{"type":"Feature","properties":{"name":"Barrage de Caderousse","output":"156 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.72281,44.09589]}},{"type":"Feature","properties":{"name":"Barrage de Bergerac","output":"1.54 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.45504,44.84665]}},{"type":"Feature","properties":{"name":"URI II","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[74.03148,34.09187]}},{"type":"Feature","properties":{"name":"Tyrv\u00e4\u00e4n voimalaitos","output":"16.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.84637,61.32856]}},{"type":"Feature","properties":{"name":"Shanxi Zezhou Dongjiaohe","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[113.0034,35.45431]}},{"type":"Feature","properties":{"name":"Vatnsfellsvirkjun","output":"90 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-19.03297,64.19657]}},{"type":"Feature","properties":{"name":"\u0416\u0438\u0433\u0443\u043b\u0451\u0432\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"2488 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[49.47933,53.42706]}},{"type":"Feature","properties":{"name":"Usina Paulo Afonso IV","output":"2462.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-38.20666,-9.41599]}},{"type":"Feature","properties":{"name":"Bagnell Dam","output":"208 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-92.62584,38.20289]}},{"type":"Feature","properties":{"name":"Presa La Angostura","output":"900 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-92.77941,16.40224]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica de Aimor\u00e9s","output":"330 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-41.02359,-19.4984]}},{"type":"Feature","properties":{"name":"Stewartville Generating Station","output":"182 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-76.50677,45.40727]}},{"type":"Feature","properties":{"name":"\u5927\u671d\u5c71\u5927\u575d","output":"1350 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.36935,24.02483]}},{"type":"Feature","properties":{"name":"\u5c0f\u6e7e\u575d","output":"4200 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.09096,24.70457]}},{"type":"Feature","properties":{"name":"\u6f2b\u7063\u5927\u58e9","output":"1750 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.44817,24.62176]}},{"type":"Feature","properties":{"name":"Presa Palomino","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-71.01001,18.9228]}},{"type":"Feature","properties":{"name":"Presa de Jig\u00fcey","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-70.37698,18.54615]}},{"type":"Feature","properties":{"name":"Represa Yguaz\u00fa","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-54.96567,-25.37517]}},{"type":"Feature","properties":{"name":"Manitou Station","output":"73 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-93.45441,50.58313]}},{"type":"Feature","properties":{"name":"Ear Falls Generating Station","output":"22 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-93.2207,50.63105]}},{"type":"Feature","properties":{"name":"Central hidroel\u00e8ctrica de Riba-roja","output":"261.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.43282,41.24354]}},{"type":"Feature","properties":{"name":"Centrale Hydro\u00e9lectrique de Rhinau","output":"150 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[7.6774,48.28402]}},{"type":"Feature","properties":{"name":"UMIAM I II &IV","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[91.9005,25.65928]}},{"type":"Feature","properties":{"name":"Sichuan Heishui Zumu","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.87344,32.12069]}},{"type":"Feature","properties":{"name":"Chongqing Qijiang Zhutan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.68309,28.92408]}},{"type":"Feature","properties":{"name":"Yutan Hydroelectric","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.74869,29.17501]}},{"type":"Feature","properties":{"name":"Lower Periyar Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.9569,9.96232]}},{"type":"Feature","properties":{"name":"Bellows Falls Power Plant","output":"40.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-72.442,43.13337]}},{"type":"Feature","properties":{"name":"BROADWATER POWER PROJECT","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-111.40809,46.1201]}},{"type":"Feature","properties":{"name":"Oued El Makhazine \u0648\u0627\u062f\u064a \u0627\u0644\u0645\u062e\u0627\u0632\u0646","output":"36 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-5.83991,34.94179]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp B\u00ecnh \u0110i\u1ec1n","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.50241,16.31727]}},{"type":"Feature","properties":{"name":"\u041c\u0430\u043c\u0430\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"86 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[114.03175,57.80924]}},{"type":"Feature","properties":{"name":"Central Hidroel\u00e9ctrica Los Coroneles","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-68.52855,-34.59979]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica Isamu Ikeda","output":"30 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-47.7932,-10.69872]}},{"type":"Feature","properties":{"name":"Keszny\u00e9teni v\u00edzer\u0151m\u0171","output":"4.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.03304,47.99603]}},{"type":"Feature","properties":{"name":"Lairg Power Station","output":"3.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-4.41471,58.02869]}},{"type":"Feature","properties":{"name":"Shin Diversion Weir","output":"18.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-4.40205,58.01277]}},{"type":"Feature","properties":{"name":"Yunnan Tianhuaban","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.29099,27.02891]}},{"type":"Feature","properties":{"name":"Alashan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.62734,34.5433]}},{"type":"Feature","properties":{"name":"URI I","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[74.18567,34.14457]}},{"type":"Feature","properties":{"name":"Zhejiang Tonglu Bipu","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[119.51316,29.92185]}},{"type":"Feature","properties":{"name":"Bhatsa Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[73.41732,19.51356]}},{"type":"Feature","properties":{"name":"Barrage de l'Age","output":"6.9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.8056,46.30209]}},{"type":"Feature","properties":{"name":"Barrage de Brugale","output":"5.1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.91839,44.94124]}},{"type":"Feature","properties":{"name":"Cedar Falls 1883C3 Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-91.8892,44.93552]}},{"type":"Feature","properties":{"name":"\u76f4\u5c97\u62c9\u5361\u575d","output":"152 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.87338,36.11194]}},{"type":"Feature","properties":{"name":"\u674e\u5bb6\u5ce1\u6c34\u575d","output":"2000 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.80854,36.1186]}},{"type":"Feature","properties":{"name":"\u70b3\u7075\u5927\u575d","output":"240 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.00852,35.80522]}},{"type":"Feature","properties":{"name":"Dam","output":"74 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.47434,36.17088]}},{"type":"Feature","properties":{"name":"Taipingyi Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.486,31.22586]}},{"type":"Feature","properties":{"name":"Lajiaogou First Stage","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.27448,30.36381]}},{"type":"Feature","properties":{"name":"Yanguoxia Dam","output":"471 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.27307,36.05867]}},{"type":"Feature","properties":{"name":"CHAMERA II","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.2533,32.47284]}},{"type":"Feature","properties":{"name":"\u82cf\u53ea\u6c34\u5e93","output":"225 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.33752,35.87223]}},{"type":"Feature","properties":{"name":"Usina Hidroel\u00e9trica Santa Clara","output":"60 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-40.2013,-17.89612]}},{"type":"Feature","properties":{"name":"Melon vesivoimala","output":"67.9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[23.43684,61.46331]}},{"type":"Feature","properties":{"name":"Baspa 2","output":"300 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.18875,31.49586]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-75.16552,6.32045]}},{"type":"Feature","properties":{"name":"Presa Pangue","output":"467 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-71.61229,-37.9109]}},{"type":"Feature","properties":{"name":"Whitedog Falls Generating Station","output":"68 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-94.86892,50.11483]}},{"type":"Feature","properties":{"name":"Hidroelektrarna Medvode","output":"25 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.4143,46.14568]}},{"type":"Feature","properties":{"name":"Presa Chicoas\u00e9n","output":"2400 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-93.09977,16.94226]}},{"type":"Feature","properties":{"name":"Merwin Dam","output":"136 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-122.55629,45.95681]}},{"type":"Feature","properties":{"name":"\u062a\u0627\u062c \u0633\u062f \u0633\u0641\u06cc\u062f\u0631\u0648\u062f","output":"87.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[49.38757,36.75936]}},{"type":"Feature","properties":{"name":"Wangyuan Minhou County","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[119.03228,26.55472]}},{"type":"Feature","properties":{"name":"Sig\u00f6lduvirkjun","output":"150 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-19.12546,64.17297]}},{"type":"Feature","properties":{"name":"\u0412\u0438\u043b\u044e\u0439\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"680 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[112.47553,63.03172]}},{"type":"Feature","properties":{"name":"\u9ad8\u575d\u6d32\u6c34\u7535\u7ad9","output":"252 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[111.34203,30.3989]}},{"type":"Feature","properties":{"name":"Micro-Centrale de Ranc","output":"1.046 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.10326,45.2397]}},{"type":"Feature","properties":{"name":"Dam","output":"0.36 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[3.97588,45.20108]}},{"type":"Feature","properties":{"name":"\u91cc\u5e95\u6c34\u7535\u7ad9","output":"420 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.03514,27.8336]}},{"type":"Feature","properties":{"name":"\u4e4c\u5f04\u9f99\u6c34\u7535\u7ad9","output":"990 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.92371,27.93832]}},{"type":"Feature","properties":{"name":"Kidatu Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[36.88638,-7.63522]}},{"type":"Feature","properties":{"name":"Cloverland Hydroelectric Plant","output":"41.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.33333,46.4979]}},{"type":"Feature","properties":{"name":"Saint Marys Falls Power Plant","output":"23.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.3493,46.50611]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.7395,29.54083]}},{"type":"Feature","properties":{"name":"Zhoubai Hydroelectric","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.83224,29.50069]}},{"type":"Feature","properties":{"name":"\u751f\u898b\u5ddd\u30c0\u30e0","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[132.04501,34.20118]}},{"type":"Feature","properties":{"name":"Band-i Mahipar Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[69.47925,34.55611]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"waste"},"geometry":{"type":"Point","coordinates":[110.69033,26.72814]}},{"type":"Feature","properties":{"name":"\u7b4f\u6d25\u30c0\u30e0","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[133.21217,33.56244]}},{"type":"Feature","properties":{"name":"\u9526\u5c4f\u4e8c\u7ea7\u6c34\u7535\u7ad9","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.64481,28.24846]}},{"type":"Feature","properties":{"name":"Harjavallan vesivoimalaitos","output":"105 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.11433,61.3382]}},{"type":"Feature","properties":{"name":"Chhukha Hydroelectric Power Plant Bhutan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[89.53112,27.11034]}},{"type":"Feature","properties":{"name":"Tala Hydroelectric Power Plant Bhutan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[89.59552,27.03598]}},{"type":"Feature","properties":{"name":"Centrale Hydro\u00e9lectrique de Beaucaire","output":"210 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.64349,43.82445]}},{"type":"Feature","properties":{"name":"\u6795\u5934\u575d\u4e00\u7ea7\u6c34\u7535\u7ad9","output":"720 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.04501,29.23587]}},{"type":"Feature","properties":{"name":"Luodu Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.83503,28.08877]}},{"type":"Feature","properties":{"name":"Brazeau Rubber Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-115.58922,52.96268]}},{"type":"Feature","properties":{"name":"Sichuan Pingwu County Sancha","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.07018,32.52334]}},{"type":"Feature","properties":{"name":"Dam","output":"96 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.53484,36.12087]}},{"type":"Feature","properties":{"name":"La Hieng 2","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.84829,13.50162]}},{"type":"Feature","properties":{"name":"\u5c0f\u5ce1\u6c34\u7535\u7ad9","output":"230 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.01375,36.14682]}},{"type":"Feature","properties":{"name":"\ub0a8\uac15\ubc1c\uc804\uc18c","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[126.3374,38.94823]}},{"type":"Feature","properties":{"name":"\u77f3\u864e\u5858\u822a\u7535\u67a2\u7ebd","output":"120 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.00282,26.90717]}},{"type":"Feature","properties":{"name":"Sichuan Longdong","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.71532,30.4668]}},{"type":"Feature","properties":{"name":"\uc2dc\ud654\ud638\uc870\ub825\ubc1c\uc804\uc18c","output":"254 MW","source":"tidal"},"geometry":{"type":"Point","coordinates":[126.61275,37.31347]}},{"type":"Feature","properties":{"name":"\u516b\u76d8\u5ce1\u6c34\u7535\u7ad9","output":"226.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.40861,36.13818]}},{"type":"Feature","properties":{"name":"Pend Oreille County Pud Dam","output":"90 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-117.41327,48.78031]}},{"type":"Feature","properties":{"name":"Clam River 2WP516 Dam","output":"1.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-92.53847,45.9465]}},{"type":"Feature","properties":{"name":"Lianbu Hydroelectric","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.99187,27.81946]}},{"type":"Feature","properties":{"name":"Sinanjiang Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.87203,23.0944]}},{"type":"Feature","properties":{"name":"Barrage de Langleret","output":"3.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.59854,45.7963]}},{"type":"Feature","properties":{"name":"Barrage du Martineix","output":"3.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[1.67533,45.81647]}},{"type":"Feature","properties":{"name":"Centrale Hydraulique de Golfech","output":"69 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[0.85403,44.10948]}},{"type":"Feature","properties":{"name":"\u5927\u5ce1\u6c34\u7535\u7ad9","output":"324.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.16049,36.30644]}},{"type":"Feature","properties":{"name":"HE Solkan","output":"32 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[13.65482,45.98431]}},{"type":"Feature","properties":{"name":"CGH Rio das Cinzas","output":"1.4 MW","source":""},"geometry":{"type":"Point","coordinates":[-49.94708,-24.15929]}},{"type":"Feature","properties":{"name":"SEWA-II","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[75.82138,32.67651]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.17833,31.49949]}},{"type":"Feature","properties":{"name":"Usina Paulo Afonso I, II e III","output":"1417.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-38.2025,-9.39704]}},{"type":"Feature","properties":{"name":"Centrale Hydro\u00e9lectrique de Cusset","output":"63 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.91371,45.76799]}},{"type":"Feature","properties":{"name":"\u94dc\u8857\u5b50\u6c34\u7535\u7ad9","output":"600 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.63299,29.25677]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.9407,49.45004]}},{"type":"Feature","properties":{"name":"\u68c9\u82b1\u7cd6\u6c34\u5e93","output":"600 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.59596,24.66105]}},{"type":"Feature","properties":{"name":"\u5cfb\u5c71\u6c34\u7535\u7ad9","output":"9.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.76368,24.9755]}},{"type":"Feature","properties":{"name":"Guangxi Bajiangkou","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.73547,24.3745]}},{"type":"Feature","properties":{"name":"Sichuan Jialingjiang River Cangxi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[105.92492,31.76005]}},{"type":"Feature","properties":{"name":"\u6c99\u6e7e\u6c34\u7535\u7ad9","output":"480 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.60964,29.33479]}},{"type":"Feature","properties":{"name":"\u5b89\u8c37\u6c34\u7535\u7ad9","output":"772 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.63122,29.5015]}},{"type":"Feature","properties":{"name":"\u0633\u062f \u062a\u0627\u0631\u06cc\u06a9","output":"2.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[49.56702,36.99059]}},{"type":"Feature","properties":{"name":"\u5cb7\u53bf\u9f99\u671b\u53f0\u6c34\u7535\u96c6\u56e2\u6709\u9650\u8d23\u4efb\u516c\u53f8","output":"20.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.0836,34.47289]}},{"type":"Feature","properties":{"name":"\u9ec4\u767b\u6c34\u7535\u7ad9","output":"1900 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.11626,26.55931]}},{"type":"Feature","properties":{"name":"\u0ec0\u0e82\u0eb7\u0ec8\u0ead\u0e99\u0ec4\u0e9f\u0e9f\u0ec9\u0eb2 \u0e99\u0ec9\u0eb3\u0ead\u0eb9 5","output":"240 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.34458,21.41114]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.00385,23.87882]}},{"type":"Feature","properties":{"name":"Barrage hydro\u00e9lectrique d'\u00c9d\u00e9a","output":"276 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.12791,3.8132]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp Thu\u1ef7 \u0111i\u1ec7n A V\u01b0\u01a1ng","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.61718,15.79973]}},{"type":"Feature","properties":{"name":"\u6d77\u52c3\u6e7e\u6c34\u5229\u67a2\u7ebd","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.7787,39.66901]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp th\u1ee7y \u0111i\u1ec7n Kr\u00f4ng H'N\u0103ng","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.71301,12.9399]}},{"type":"Feature","properties":{"name":"Nh\u00e0 m\u00e1y th\u1ee7y \u0111i\u1ec7n S\u01a1n La","output":"2400 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.99642,21.49632]}},{"type":"Feature","properties":{"name":"Barajul Racovi\u021b\u0103","output":"","source":""},"geometry":{"type":"Point","coordinates":[24.31881,45.684]}},{"type":"Feature","properties":{"name":"Allain Duhangan Hydro Project","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[77.24028,32.26014]}},{"type":"Feature","properties":{"name":"\u101b\u103d\u103e\u1031\u101c\u102e \u1041 \u1010\u102c\u1010\u1019\u1036","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[97.50626,23.69826]}},{"type":"Feature","properties":{"name":"Comerford Station Dam","output":"167.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-72.00047,44.32562]}},{"type":"Feature","properties":{"name":"Moore Dam","output":"190.8 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-71.87348,44.33693]}},{"type":"Feature","properties":{"name":"Tadi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[118.92799,28.98172]}},{"type":"Feature","properties":{"name":"Lower Idaho Falls Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-112.0616,43.46974]}},{"type":"Feature","properties":{"name":"Barrage Bin el Ouidane","output":"135 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-6.46407,32.10667]}},{"type":"Feature","properties":{"name":"Barrage Moulay Youssef","output":"24 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-7.26125,31.64638]}},{"type":"Feature","properties":{"name":"Lechstaustufe 2 - Premer Lechsee","output":"19.2 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.78993,47.67646]}},{"type":"Feature","properties":{"name":"Nalubaale Power Station","output":"180 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[33.18462,0.44355]}},{"type":"Feature","properties":{"name":"Barrage d'Andekaleka","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[48.61902,-18.794]}},{"type":"Feature","properties":{"name":"Centrale hydro\u00e9lectrique de Sotuba","output":"5.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-7.92537,12.63797]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.61658,26.95639]}},{"type":"Feature","properties":{"name":"Baira Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.1419,32.80693]}},{"type":"Feature","properties":{"name":"Elkhart Hydro Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-85.96524,41.69311]}},{"type":"Feature","properties":{"name":"Dul Hasti Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[75.79844,33.36917]}},{"type":"Feature","properties":{"name":"Yunnan Yanjin Hengjiang Wannianqiao","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.17916,28.23489]}},{"type":"Feature","properties":{"name":"Yunnan Sayutuo Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.23838,28.14093]}},{"type":"Feature","properties":{"name":"\u0428\u0430\u0448\u0430\u0446\u044c\u043a\u0430 \u0413\u0415\u0421","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[33.97146,49.8719]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.77446,31.91665]}},{"type":"Feature","properties":{"name":"Luoning Yumenhechina","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[111.40891,34.30948]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.24509,28.51556]}},{"type":"Feature","properties":{"name":"\u89d2\u6728\u5858\u6c34\u7535\u7ad9","output":"70 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.73444,28.89245]}},{"type":"Feature","properties":{"name":"\u6c99\u6cb1\u5927\u575d","output":"1120 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.47131,28.49627]}},{"type":"Feature","properties":{"name":"\u6258\u53e3\u6c34\u7535\u7ad9","output":"830 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.68184,27.11361]}},{"type":"Feature","properties":{"name":"Delta Creek Hydroelectric Plant","output":"375 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-162.27229,55.13992]}},{"type":"Feature","properties":{"name":"Clear Creek Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-162.27008,55.13962]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.52161,24.65943]}},{"type":"Feature","properties":{"name":"Rocky Gorge Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-76.87528,39.1168]}},{"type":"Feature","properties":{"name":"Nanjiangkou Small Yunan County","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[111.81895,23.06774]}},{"type":"Feature","properties":{"name":"\u041c\u0425\u0415 \u0412\u0440\u0433\u0443\u0434\u0438\u043d\u0430\u0446","output":"1.52 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.27384,43.23608]}},{"type":"Feature","properties":{"name":"Jiangxi Lean County Dongan Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.80163,27.23837]}},{"type":"Feature","properties":{"name":"\u5e84\u5ddd\u5408\u53e3\u30c0\u30e0","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[136.99533,36.57503]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[128.39792,36.01564]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-44.75457,-20.23786]}},{"type":"Feature","properties":{"name":"Myntdu-Leshka Hydro Project Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[92.20099,25.26293]}},{"type":"Feature","properties":{"name":"Hongyuan Small","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.89504,34.45391]}},{"type":"Feature","properties":{"name":"Sichuan Keguang 1st Level","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.75181,31.79451]}},{"type":"Feature","properties":{"name":"\u0422\u0430\u0432\u0430\u043a\u0441\u0430\u0439\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"73.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[69.66728,41.55074]}},{"type":"Feature","properties":{"name":"Pingbian Guanyintuo Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.7018,28.57586]}},{"type":"Feature","properties":{"name":"Yiliang County Xionggou Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.01375,27.43343]}},{"type":"Feature","properties":{"name":"Guizhou Louxiahe Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.88483,25.47437]}},{"type":"Feature","properties":{"name":"Yunnan Youfanggou","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.74703,27.8222]}},{"type":"Feature","properties":{"name":"Ipo","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.54008,37.40467]}},{"type":"Feature","properties":{"name":"Niudu On Furong River","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.4065,28.33487]}},{"type":"Feature","properties":{"name":"Barrage du Chastang","output":"293 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[2.00984,45.15164]}},{"type":"Feature","properties":{"name":"\uac15\ucc9c\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.68322,37.27746]}},{"type":"Feature","properties":{"name":"\uc5ec\uc8fc\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.60707,37.3276]}},{"type":"Feature","properties":{"name":"\uccad\ud3c9\ub310","output":"139.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.42093,37.72455]}},{"type":"Feature","properties":{"name":"Vodn\u00e9 dielo Tren\u010dianske Biskupice 2","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[18.00986,48.88099]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.48957,25.26419]}},{"type":"Feature","properties":{"name":"Panan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-91.36417,14.56276]}},{"type":"Feature","properties":{"name":"\u4e8c\u6ee9\u6c34\u7535\u7ad9","output":"3300 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.78533,26.8231]}},{"type":"Feature","properties":{"name":"\u7897\u7c73\u5761\u6c34\u7535\u7ad9","output":"240 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.50573,28.76028]}},{"type":"Feature","properties":{"name":"Weiss Dam","output":"87.6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-85.79398,34.13231]}},{"type":"Feature","properties":{"name":"Yunnan Qianchang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.71666,25.8884]}},{"type":"Feature","properties":{"name":"Sichuan Keguang 3rd Level","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.72669,31.73721]}},{"type":"Feature","properties":{"name":"\u94f6\u76d8\u6c34\u7535\u7ad9","output":"600 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.88991,29.27481]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp Thu\u1ef7 \u0111i\u1ec7n Za Hung","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.65362,15.85989]}},{"type":"Feature","properties":{"name":"\ucc3d\ub155\ud568\uc548\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[128.55199,35.37956]}},{"type":"Feature","properties":{"name":"\ub2ec\uc131\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[128.41695,35.73397]}},{"type":"Feature","properties":{"name":"\uacf5\uc8fc\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.09888,36.46245]}},{"type":"Feature","properties":{"name":"\uc138\uc885\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[127.26037,36.47231]}},{"type":"Feature","properties":{"name":"\ud569\ucc9c\ucc3d\ub155\ubcf4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[128.35628,35.59103]}},{"type":"Feature","properties":{"name":"Shapotou Dam","output":"120.3 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[105.02036,37.44619]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp th\u1ee7y \u0111i\u1ec7n \u0110ak \u0110oa","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.10667,14.185]}},{"type":"Feature","properties":{"name":"Fujian Niutoushan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[119.43046,27.3652]}},{"type":"Feature","properties":{"name":"Dique Barro Blanco","output":"28.56 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-81.59407,8.2145]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.10855,25.80812]}},{"type":"Feature","properties":{"name":"Hunan Lengshuijiang Langshitan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[111.43321,27.67877]}},{"type":"Feature","properties":{"name":"Fengshuba Dam","output":"160 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.35982,24.41237]}},{"type":"Feature","properties":{"name":"\u4e4c\u4e1c\u5fb7\u5927\u575d","output":"10200 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.634,26.32453]}},{"type":"Feature","properties":{"name":"\ub0b4\uc815\ub310","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[128.27022,40.72372]}},{"type":"Feature","properties":{"name":"\u91d1\u6c99\u6c34\u7535\u7ad9","output":"560 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.64235,26.57386]}},{"type":"Feature","properties":{"name":"\u9526\u5c4f\u4e00\u7ea7\u6c34\u7535\u7ad9","output":"3600 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.63086,28.18295]}},{"type":"Feature","properties":{"name":"Massanjore Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[87.30874,24.10693]}},{"type":"Feature","properties":{"name":"\u51e4\u51f0\u8c37\u6c34\u7535\u7ad9","output":"100 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.1623,24.48026]}},{"type":"Feature","properties":{"name":"KARBI LANGPI","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[92.49953,25.91324]}},{"type":"Feature","properties":{"name":"Oxec","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-89.72949,15.58967]}},{"type":"Feature","properties":{"name":"Lower Periyar Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.87971,9.32952]}},{"type":"Feature","properties":{"name":"Umtru Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[91.8114,26.00682]}},{"type":"Feature","properties":{"name":"\u68ee\u5409\u30c0\u30e0","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[140.60617,40.04762]}},{"type":"Feature","properties":{"name":"Lloyd Shoals Dam","output":"14.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-83.84121,33.32059]}},{"type":"Feature","properties":{"name":"\u4e07\u5b89\u6c34\u7535\u7ad9","output":"500 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[114.79407,26.44535]}},{"type":"Feature","properties":{"name":"\u5927\u53e4\u6c34\u7535\u7ad9","output":"640 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[92.39709,29.24648]}},{"type":"Feature","properties":{"name":"\u0418\u0440\u0438\u043a\u043b\u0438\u043d\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"30 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[58.6273,51.67145]}},{"type":"Feature","properties":{"name":"Rockton Dam","output":"1.1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-89.07558,42.45114]}},{"type":"Feature","properties":{"name":"Buchanan Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-86.35134,41.83897]}},{"type":"Feature","properties":{"name":"\u6c5f\u897f\u9f99\u5934\u5c71\u6c34\u7535\u7ad9\u67a2\u7ebd\u5de5\u7a0b","output":"240 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.79644,28.2322]}},{"type":"Feature","properties":{"name":"\u8d63\u6c5f\u65b0\u5e72\u822a\u7535\u67a2\u7ebd","output":"112 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.43701,27.91121]}},{"type":"Feature","properties":{"name":"Hejiang County Yuanxing Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.16944,28.69851]}},{"type":"Feature","properties":{"name":"Mount Coffee Hydropower Plant","output":"88 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-10.65144,6.49618]}},{"type":"Feature","properties":{"name":"\u957f\u6cb3\u575d\u6c34\u7535\u7ad9","output":"2600 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.19553,30.26126]}},{"type":"Feature","properties":{"name":"\u5927\u5316\u6c34\u7535\u7ad9","output":"566 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.97915,23.72893]}},{"type":"Feature","properties":{"name":"Usina Hidrel\u00e9trica S\u00e3o Manoel","output":"700 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-57.05176,-9.18863]}},{"type":"Feature","properties":{"name":"Pequena Central Hidrel\u00e9trica S\u00e3o Jo\u00e3o II","output":"664 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-55.43922,-22.41411]}},{"type":"Feature","properties":{"name":"Jiangxi Yudu Yuezhou","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.36243,25.94586]}},{"type":"Feature","properties":{"name":"\u0633\u062f \u062c\u06af\u06cc\u0646","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[57.89641,26.1641]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[47.92944,-18.9213]}},{"type":"Feature","properties":{"name":"Delsitanisagua hidroelectrica","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-79.01731,-3.9805]}},{"type":"Feature","properties":{"name":"PCH Anhanguera","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-47.85922,-20.49394]}},{"type":"Feature","properties":{"name":"Teesta Stage III Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[88.65018,27.59733]}},{"type":"Feature","properties":{"name":"\u571f\u5361\u6cb3\u6c34\u7535\u7ad9","output":"165 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.25627,22.60821]}},{"type":"Feature","properties":{"name":"Hidroel\u00e9ctrica Laja","output":"34.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-72.5298,-37.24401]}},{"type":"Feature","properties":{"name":"\u6c99\u576a\u4e8c\u7ea7\u6c34\u7535\u7ad9","output":"348 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.20836,29.23705]}},{"type":"Feature","properties":{"name":"Sichuan Leshan Ebian Jinyan Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.08153,29.01992]}},{"type":"Feature","properties":{"name":"Kraftwerk R\u00fcchlig","output":"11 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[8.04969,47.3998]}},{"type":"Feature","properties":{"name":"Yunnan Whitewaters Development","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.23413,27.98967]}},{"type":"Feature","properties":{"name":"Yunnan Dali Tiechuanqiao Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.95069,26.01838]}},{"type":"Feature","properties":{"name":"Sichuan Gongdefang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.56145,27.35014]}},{"type":"Feature","properties":{"name":"Sichuan Province Yingxiongpo","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.62156,27.54815]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-6.65589,5.80271]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-90.16337,15.29976]}},{"type":"Feature","properties":{"name":"CALIMANESTI (Olt)","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.34625,45.24014]}},{"type":"Feature","properties":{"name":"\u4e1c\u897f\u5173\u6c34\u7535\u7ad9","output":"210 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.14446,30.46675]}},{"type":"Feature","properties":{"name":"Nizhne-Baskansk HPP-1","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[80.04892,45.42825]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[114.99887,25.48414]}},{"type":"Feature","properties":{"name":"\u8349\u8857\u7535\u7ad9\u5927\u575d","output":"500 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.3905,29.90254]}},{"type":"Feature","properties":{"name":"\u4e50\u660c\u5ce1\u6c34\u5229\u5de5\u7a0b","output":"132 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[113.27582,25.21041]}},{"type":"Feature","properties":{"name":"Karikayam Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.89951,9.33505]}},{"type":"Feature","properties":{"name":"Middle Vaitarna Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[73.43239,19.70662]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp th\u1ee7y \u0111i\u1ec7n Kr\u00f4ng Kmar","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.33739,12.45204]}},{"type":"Feature","properties":{"name":"\u0413\u0415\u0421","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[24.92564,48.03479]}},{"type":"Feature","properties":{"name":"Jiangxi Yudu Xiashan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.19316,25.92007]}},{"type":"Feature","properties":{"name":"Yingjiang County Gulikahe","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[97.67293,24.45727]}},{"type":"Feature","properties":{"name":"Shrinagar Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.83163,30.24053]}},{"type":"Feature","properties":{"name":"Yiliang Baishuijiang Liuxi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.51654,27.80886]}},{"type":"Feature","properties":{"name":"Hateg","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.9611,45.5922]}},{"type":"Feature","properties":{"name":"Shaanxi Juting","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.08031,33.08207]}},{"type":"Feature","properties":{"name":"\u666f\u6d2a\u5927\u575d","output":"1750 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.76666,22.05275]}},{"type":"Feature","properties":{"name":"\u52a0\u67e5\u6c34\u7535\u7ad9","output":"360 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[92.5479,29.14039]}},{"type":"Feature","properties":{"name":"\u82cf\u96c4\u7535\u7ad9","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.80157,29.04281]}},{"type":"Feature","properties":{"name":"Sichuan Jiuzhaigou County Songbai","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.26214,33.16854]}},{"type":"Feature","properties":{"name":"Cavendish Dam","output":"1.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-72.59835,43.38122]}},{"type":"Feature","properties":{"name":"Lockhart Dam","output":"18 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-81.45621,34.77866]}},{"type":"Feature","properties":{"name":"\u0ec0\u0e82\u0eb7\u0ec8\u0ead\u0e99\u0ec4\u0e9f\u0e9f\u0ec9\u0eb2\u0e99\u0ec9\u0eb3\u0ea5\u0eb5\u0e81 1","output":"64 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.38752,18.6191]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[144.12669,-6.09253]}},{"type":"Feature","properties":{"name":"Kraftwerk Gries","output":"9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[12.88006,47.28556]}},{"type":"Feature","properties":{"name":"Gansu Jingtieshan Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.28048,38.55492]}},{"type":"Feature","properties":{"name":"\u0425\u043e\u0434\u0436\u0438\u043a\u0435\u043d\u0441\u043a\u0430\u044f \u043f\u043b\u043e\u0442\u0438\u043d\u0430","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[69.86453,41.59951]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.14997,16.31198]}},{"type":"Feature","properties":{"name":"Barragem da Usina Hidrel\u00e9trica Ponte de Pedra","output":"176,1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-54.82606,-17.60849]}},{"type":"Feature","properties":{"name":"Cs\u00f6r\u00f6tneki v\u00edzer\u0151m\u0171","output":"485 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[16.34823,46.95592]}},{"type":"Feature","properties":{"name":"Kashimbila Dam","output":"40 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[9.76171,6.87113]}},{"type":"Feature","properties":{"name":"Porn\u00f3ap\u00e1ti v\u00edzer\u0151m\u0171","output":"113 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[16.46317,47.15852]}},{"type":"Feature","properties":{"name":"Jiaojiping Hydroelectric","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.71552,30.0879]}},{"type":"Feature","properties":{"name":"Kishenganga Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[74.75143,34.649]}},{"type":"Feature","properties":{"name":"Fuan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[119.67766,27.17974]}},{"type":"Feature","properties":{"name":"Changtan Dam","output":"64 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.13299,24.70111]}},{"type":"Feature","properties":{"name":"\u03a6\u03c1\u03ac\u03b3\u03bc\u03b1 \u03a4\u03b5\u03c7\u03bd\u03b7\u03c4\u03ae\u03c2 \u039b\u03af\u03bc\u03bd\u03b7\u03c2 \u03a3\u03bc\u03bf\u03ba\u03cc\u03b2\u03bf\u03c5","output":"10.37 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.06257,39.14764]}},{"type":"Feature","properties":{"name":"Fengguang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[114.67186,23.64528]}},{"type":"Feature","properties":{"name":"Laurie River Generating Station Two","output":"5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-101.11747,56.25079]}},{"type":"Feature","properties":{"name":"Laurie River Generating Station","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-101.01031,56.22482]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.55204,25.63678]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.52174,25.58939]}},{"type":"Feature","properties":{"name":"Shangbao Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[112.97212,26.23354]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[106.52474,15.0915]}},{"type":"Feature","properties":{"name":"John Hollis Bankhead Lock and Dam","output":"53.9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-87.35689,33.45862]}},{"type":"Feature","properties":{"name":"\u4e24\u6cb3\u53e3\u5927\u575d","output":"3000 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.01148,30.19341]}},{"type":"Feature","properties":{"name":"\u6df1\u6eaa\u6c9f\u6c34\u7535\u7ad9","output":"660 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.93349,29.30091]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.77692,47.96049]}},{"type":"Feature","properties":{"name":"Jiangxi Gongge","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[114.54688,26.9478]}},{"type":"Feature","properties":{"name":"Boone Dam","output":"105.9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-82.43765,36.4403]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[38.00525,12.03427]}},{"type":"Feature","properties":{"name":"Xinjiang Kashi River Taledesayi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[83.66954,43.70383]}},{"type":"Feature","properties":{"name":"Xinjiang Kashi River Wenquan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[81.94379,43.82092]}},{"type":"Feature","properties":{"name":"\u9f99\u4e0a\u6c34\u7535\u7ad9","output":"25 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.05705,24.13134]}},{"type":"Feature","properties":{"name":"\u4e09\u9f99\u6c34\u7535\u7ad9","output":"24 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.10269,24.24159]}},{"type":"Feature","properties":{"name":"\u897f\u9633\u6c34\u7535\u7ad9","output":"20 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.18027,24.28167]}},{"type":"Feature","properties":{"name":"\u4e19\u6751\u6c34\u7535\u7ad9","output":"20 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.25153,24.34211]}},{"type":"Feature","properties":{"name":"\u5355\u7af9\u7a9d\u6c34\u7535\u7ad9","output":"34 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.36163,24.47288]}},{"type":"Feature","properties":{"name":"\u9f99\u6e56\u6c34\u7535\u7ad9","output":"100 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.60317,24.23864]}},{"type":"Feature","properties":{"name":"Qingxi Dam","output":"144 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.61861,24.56192]}},{"type":"Feature","properties":{"name":"\u6850\u5b50\u6797\u6c34\u7535\u7ad9","output":"600 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.85012,26.70754]}},{"type":"Feature","properties":{"name":"Zhenkang Quanqiaohe","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.02858,23.78255]}},{"type":"Feature","properties":{"name":"Jiangxi Huichang Yingnaogang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.69693,25.63427]}},{"type":"Feature","properties":{"name":"\u767d\u9e45\u5ce1\u6c34\u7535\u7ad9","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.59473,25.83824]}},{"type":"Feature","properties":{"name":"RANGANADI","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[93.81682,27.34172]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[94.79852,39.62602]}},{"type":"Feature","properties":{"name":"Kashgar Tarim River Xiabandi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[75.52529,37.83159]}},{"type":"Feature","properties":{"name":"Genale\u2013Dawa III Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[39.69274,5.61118]}},{"type":"Feature","properties":{"name":"\uc0bc\uc218\ub310","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[128.15563,41.31829]}},{"type":"Feature","properties":{"name":"\u5927\u578c\u6c34\u5e93\u6c34\u7535\u7ad9","output":"1600 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.94361,21.83281]}},{"type":"Feature","properties":{"name":"\u4fe3\u91ce\u5ddd\u30c0\u30e0","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[133.4915,35.2624]}},{"type":"Feature","properties":{"name":"\u0628\u06d5\u0646\u062f\u0627\u0648\u06cc \u06af\u06c6\u0645\u06d5\u0633\u067e\u0627\u0646","output":"2.4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[44.33296,36.27917]}},{"type":"Feature","properties":{"name":"Jiangxi Longyuan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[114.78921,25.06413]}},{"type":"Feature","properties":{"name":"Gib\u00e1rti v\u00edzer\u0151m\u0171","output":"1 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[21.1634,48.31782]}},{"type":"Feature","properties":{"name":"Szentp\u00e9terfai v\u00edzer\u0151m\u0171","output":"50 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[16.47697,47.09891]}},{"type":"Feature","properties":{"name":"Qinghai Qingshizui Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.33888,37.49455]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.18873,25.20696]}},{"type":"Feature","properties":{"name":"Shannipo On Beipan River","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.824,26.2368]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[105.43323,24.35449]}},{"type":"Feature","properties":{"name":"Th\u1ee7y \u0111i\u1ec7n B\u1ea3n Ch\u00e1t","output":"220 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.82791,21.86096]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp th\u1ee7y \u0111i\u1ec7n Hu\u1ed9i Qu\u1ea3ng","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.87773,21.69648]}},{"type":"Feature","properties":{"name":"Pequena Central Hidrel\u00e9trica Lambari","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-52.90774,-26.75687]}},{"type":"Feature","properties":{"name":"West Kiewa (Mount Beauty Hydro Scheme)","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.31993,26.45316]}},{"type":"Feature","properties":{"name":"Torsebro kraftverk","output":"6 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.1327,56.10535]}},{"type":"Feature","properties":{"name":"Suki Kinari Hydropower Project","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[73.55495,34.84618]}},{"type":"Feature","properties":{"name":"Madushan Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.28423,23.04603]}},{"type":"Feature","properties":{"name":"Mikro hidroelektrana Bujan","output":"45 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[15.60557,45.61172]}},{"type":"Feature","properties":{"name":"Embalse La Garita","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.34104,9.98712]}},{"type":"Feature","properties":{"name":"\u041c\u0425\u0415 \u0426\u0440\u0432\u0435\u043d\u0438 \u0411\u0440\u0435\u0433","output":"1.52 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.22273,43.28495]}},{"type":"Feature","properties":{"name":"Drop 5","output":"4 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-115.39204,32.67312]}},{"type":"Feature","properties":{"name":"BUDHIL","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.53437,32.45402]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[67.43311,53.87271]}},{"type":"Feature","properties":{"name":"Las Vacas","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-90.50316,14.76125]}},{"type":"Feature","properties":{"name":"San Gaban II","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-70.4534,-13.72177]}},{"type":"Feature","properties":{"name":"Irving Dam","output":"600 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-85.41763,42.69036]}},{"type":"Feature","properties":{"name":"Middleville Dam","output":"0.35 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-85.46564,42.71127]}},{"type":"Feature","properties":{"name":"K\u00e4ppesj\u00f6ns kraftverk","output":"75 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[12.53711,58.99561]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.04145,24.59921]}},{"type":"Feature","properties":{"name":"\u65b0\u7586\u933e\u9ad8\u6c34\u7535\u7ad9","output":"185MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.55985,37.92642]}},{"type":"Feature","properties":{"name":"Karatal HPP-3","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.69881,44.88853]}},{"type":"Feature","properties":{"name":"Karatal HPP-2","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.7154,44.88109]}},{"type":"Feature","properties":{"name":"\u5927\u6e7e\u6c34\u7535\u7ad9\u5927\u575d","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.30887,24.5256]}},{"type":"Feature","properties":{"name":"Sartell Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-94.20366,45.6208]}},{"type":"Feature","properties":{"name":"Bajoli Holi Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.66919,32.28037]}},{"type":"Feature","properties":{"name":"HE Ajba","output":"250kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[13.64232,46.09933]}},{"type":"Feature","properties":{"name":"Baimianxia Shaanxi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.96241,33.05277]}},{"type":"Feature","properties":{"name":"Niululing","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.19567,19.00725]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp Thu\u1ef7 \u0111i\u1ec7n \u0110\u1ed3ng Nai 4","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.72796,11.88509]}},{"type":"Feature","properties":{"name":"KANHER","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[73.91664,17.73574]}},{"type":"Feature","properties":{"name":"\u575d\u5934\u6c34\u7535\u7ad9","output":"18 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[116.27067,24.40204]}},{"type":"Feature","properties":{"name":"Central Hidroel\u00e9trica de Canedo","output":"10 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-7.73954,41.62065]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.25625,40.49074]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.26714,40.49854]}},{"type":"Feature","properties":{"name":"\u10d1\u10dd\u10d3\u10dd\u10e0\u10dc\u10d0 \u10f0\u10d4\u10e1\u10d8","output":"2.5 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[44.74752,42.04211]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[22.24317,40.47503]}},{"type":"Feature","properties":{"name":"Huadian Sichuan Egongbao","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.83855,29.12185]}},{"type":"Feature","properties":{"name":"Jiulong Xigu","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.6273,28.82514]}},{"type":"Feature","properties":{"name":"RANGIT-III","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[88.29205,27.29444]}},{"type":"Feature","properties":{"name":"TEESTA -V","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[88.47775,27.24204]}},{"type":"Feature","properties":{"name":"\u6258\u5df4\u6c34\u7535\u7ad9","output":"350 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.1075,27.19353]}},{"type":"Feature","properties":{"name":"Centrale di Montelupone","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[13.52163,43.35821]}},{"type":"Feature","properties":{"name":"Centrale Hydro\u00e9lectrique B2 - Colmar","output":"190 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[7.41345,48.14006]}},{"type":"Feature","properties":{"name":"\u0110\u1eadp thu\u1ef7 \u0111i\u1ec7n Ho\u00e0 B\u00ecnh","output":"1920 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[105.32694,20.80822]}},{"type":"Feature","properties":{"name":"Sichuan Luxihe","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.63739,27.44005]}},{"type":"Feature","properties":{"name":"Sichuan Mianning Changxing","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.17632,28.41676]}},{"type":"Feature","properties":{"name":"Guangxi Liuzhou Luzhai County Luoqingjiang Xian","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.84604,24.6837]}},{"type":"Feature","properties":{"name":"Unit No. 10","output":"23.7 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.35479,46.50482]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.38613,22.42763]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[88.23315,27.34013]}},{"type":"Feature","properties":{"name":"\u8fb9\u575d\u6c34\u7535\u7ad9","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[94.71812,30.94689]}},{"type":"Feature","properties":{"name":"Zhongfang County Pailou Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.91271,27.34745]}},{"type":"Feature","properties":{"name":"Yingxiuwan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.48847,31.11779]}},{"type":"Feature","properties":{"name":"Naitwar Mori Hydro Power Station","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.09744,31.06299]}},{"type":"Feature","properties":{"name":"Guangxi Changtang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.75445,24.1453]}},{"type":"Feature","properties":{"name":"\u53cc\u6eaa\u6c34\u7535\u7ad9","output":"","source":""},"geometry":{"type":"Point","coordinates":[114.38178,26.02295]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[78.24089,31.43053]}},{"type":"Feature","properties":{"name":"Yunnan Eryuan Misha River Longdi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.72385,26.22141]}},{"type":"Feature","properties":{"name":"Yunnan Lincang Nanpeng River Dayakou","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.94005,23.685]}},{"type":"Feature","properties":{"name":"Yunnan Yingjiang Zuanshui River","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[97.76836,24.6874]}},{"type":"Feature","properties":{"name":"Yunnan Dayingjiang 2nd Tier","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[97.72104,24.47357]}},{"type":"Feature","properties":{"name":"Gansu Yumen Yueliangwan Second Cascade","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[96.8364,39.83986]}},{"type":"Feature","properties":{"name":"Gansu Mingjiazhuang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.86771,36.56202]}},{"type":"Feature","properties":{"name":"Xidahe","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[101.40468,38.13633]}},{"type":"Feature","properties":{"name":"Qinghai Jiangyuan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.02846,37.21728]}},{"type":"Feature","properties":{"name":"KUNDAH V/Avalanchi","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.52341,11.22997]}},{"type":"Feature","properties":{"name":"DIKCHU","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[88.50321,27.3867]}},{"type":"Feature","properties":{"name":"CHUZACHEN","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[88.70986,27.23788]}},{"type":"Feature","properties":{"name":"Qingyuan County Longjing Hydroelectric","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[119.2423,27.47972]}},{"type":"Feature","properties":{"name":"Jiangxi Laohutou","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[115.77958,25.60997]}},{"type":"Feature","properties":{"name":"Fujian Wuyishan Kengkou","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[117.98353,27.87239]}},{"type":"Feature","properties":{"name":"Sichuan Yetang Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.24415,32.48744]}},{"type":"Feature","properties":{"name":"Liuyuan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.51389,33.00726]}},{"type":"Feature","properties":{"name":"Gansu Baishuijiang Hengdan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.84536,32.86175]}},{"type":"Feature","properties":{"name":"Gansu Lintan Shubu Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.27161,34.62252]}},{"type":"Feature","properties":{"name":"ELDARI","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.73229,19.71988]}},{"type":"Feature","properties":{"name":"Yunnan Miaolin","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.01271,27.70347]}},{"type":"Feature","properties":{"name":"Guizhou Pan County Yingwudashan Smallscale Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.77319,25.76937]}},{"type":"Feature","properties":{"name":"Dak Ro Sa","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[107.83575,14.7471]}},{"type":"Feature","properties":{"name":"Sichuan Tianshengqiao","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.73873,30.0957]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.94591,31.40085]}},{"type":"Feature","properties":{"name":"Sichuan Heishui Changde","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.9269,32.15749]}},{"type":"Feature","properties":{"name":"Sichuan Leshan Ebian Ejingxiang Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.15584,29.05273]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[92.65791,27.22396]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.73719,31.759]}},{"type":"Feature","properties":{"name":"Reshuitang 2nd Cascade","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.05053,32.37284]}},{"type":"Feature","properties":{"name":"Pingju","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.14366,28.13159]}},{"type":"Feature","properties":{"name":"Hubei Laifeng Jinlongtan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.21856,29.14722]}},{"type":"Feature","properties":{"name":"Chongqing Shizhu County Yangdong River (Dukou)","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[108.50168,30.31708]}},{"type":"Feature","properties":{"name":"Yunnan Lujichang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[102.73295,26.00358]}},{"type":"Feature","properties":{"name":"Hunan Tongxi Small","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.58158,27.73836]}},{"type":"Feature","properties":{"name":"Hunan Longhui Yuanmushan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[111.05498,27.07962]}},{"type":"Feature","properties":{"name":"Hunan Huitong Changzhai","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[110.04073,26.87522]}},{"type":"Feature","properties":{"name":"Yunnan Diqing Luoma Hydroelectric","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.91133,27.86646]}},{"type":"Feature","properties":{"name":"Gongshan County Pula Hydro","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[98.58787,27.79455]}},{"type":"Feature","properties":{"name":"Wenshan Panlong River Weilong","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.52328,23.11112]}},{"type":"Feature","properties":{"name":"Nam Ho","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.68048,22.56413]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[104.65688,24.23692]}},{"type":"Feature","properties":{"name":"Gansu Yongjing Fuchuan","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[103.26737,36.14698]}},{"type":"Feature","properties":{"name":"Nam Cat","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[105.77756,22.20159]}},{"type":"Feature","properties":{"name":"Lincang Yun County Xintangfang","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[100.07287,24.1406]}},{"type":"Feature","properties":{"name":"Shaba","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[99.9123,25.80365]}},{"type":"Feature","properties":{"name":"\u00c1gua Limpa","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-46.70403,-11.69187]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-70.48439,-30.19047]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-70.48564,-30.19032]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-70.48948,-30.18237]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-60.5298,-22.73656]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-57.81839,-22.56983]}},{"type":"Feature","properties":{"name":"Barragem do Reservat\u00f3rio Salto do Meio","output":"","source":""},"geometry":{"type":"Point","coordinates":[-48.99186,-25.80819]}},{"type":"Feature","properties":{"name":"Represa do Rio Tabo\u00e3o","output":"","source":""},"geometry":{"type":"Point","coordinates":[-45.10268,-22.79563]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-37.89345,-10.48842]}},{"type":"Feature","properties":{"name":"A\u00e7ude Fogareiro","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.49032,-5.16623]}},{"type":"Feature","properties":{"name":"A\u00e7ude S\u00e3o Jos\u00e9","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.37671,-4.97603]}},{"type":"Feature","properties":{"name":"A\u00e7ude Pirabibu","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.35503,-4.98448]}},{"type":"Feature","properties":{"name":"A\u00e7ude Canaf\u00edstula","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.34067,-4.99228]}},{"type":"Feature","properties":{"name":"A\u00e7ude S\u00e3o Jos\u00e9","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.3664,-4.98055]}},{"type":"Feature","properties":{"name":"A\u00e7ude S\u00e3o Jos\u00e9","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.363,-4.98475]}},{"type":"Feature","properties":{"name":"A\u00e7ude Pirabibu","output":"","source":""},"geometry":{"type":"Point","coordinates":[-39.34593,-4.983]}},{"type":"Feature","properties":{"name":"Blossom Valley Reservoir 1060 Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-116.85803,32.86568]}},{"type":"Feature","properties":{"name":"Cuerpo Agua","output":"","source":""},"geometry":{"type":"Point","coordinates":[-99.85838,19.8914]}},{"type":"Feature","properties":{"name":"T C Fambro Dam;T C Fambro Reservoir","output":"","source":""},"geometry":{"type":"Point","coordinates":[-98.87551,32.70974]}},{"type":"Feature","properties":{"name":"Delaware Creek Site 10 Reservoir;Delaware Creek Site 10 Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-96.50201,34.40172]}},{"type":"Feature","properties":{"name":"Gunst Reservoir;Gunst Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-99.10012,40.9443]}},{"type":"Feature","properties":{"name":"Soap Creek Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-112.34461,47.34874]}},{"type":"Feature","properties":{"name":"Embalse","output":"","source":""},"geometry":{"type":"Point","coordinates":[-85.83833,11.50176]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-86.03284,12.38965]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-86.03201,12.38974]}},{"type":"Feature","properties":{"name":"Nelson Lake;Nelson Lake Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-80.06692,34.90938]}},{"type":"Feature","properties":{"name":"Wingrove Branch Dam Number Two","output":"","source":""},"geometry":{"type":"Point","coordinates":[-81.35853,37.84571]}},{"type":"Feature","properties":{"name":"Bear Creek W/S Lake Number Fifteen;A G Phelps Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-77.79246,35.3848]}},{"type":"Feature","properties":{"name":"Spoons Pond Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-72.23918,43.06491]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-16.25114,16.87651]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-16.25211,16.87661]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-3.43903,41.03119]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[22.33548,-34.03742]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[21.68082,-33.56486]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[33.28887,-13.49931]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[30.68143,-1.81018]}},{"type":"Feature","properties":{"name":"Mutondo Earth Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[37.45029,-1.65338]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[144.23479,-38.3814]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[143.91635,-37.52239]}},{"type":"Feature","properties":{"name":"Upper Welby Reservoir","output":"","source":""},"geometry":{"type":"Point","coordinates":[150.40962,-34.43632]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[37.90063,7.7464]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[3.95735,36.89414]}},{"type":"Feature","properties":{"name":"Keskin 75.Y\u0131l Baraj G\u00f6l\u00fc","output":"","source":""},"geometry":{"type":"Point","coordinates":[30.39448,39.87182]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[27.18031,42.43455]}},{"type":"Feature","properties":{"name":"chandak pazar talav","output":"","source":""},"geometry":{"type":"Point","coordinates":[73.95356,18.01036]}},{"type":"Feature","properties":{"name":"Akasaganga","output":"","source":""},"geometry":{"type":"Point","coordinates":[79.33844,13.7006]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[82.88765,20.95097]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[82.94324,20.94717]}},{"type":"Feature","properties":{"name":"\u062f\u0631\u06cc\u0627\u0686\u0647 \u0633\u062f \u06af\u0644\u0648\u0631\u062f \u0628\u0647\u0634\u0647\u0631","output":"","source":""},"geometry":{"type":"Point","coordinates":[53.62315,36.58969]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[45.76696,41.33021]}},{"type":"Feature","properties":{"name":"\u062f\u0633\u0631\u062e \u0622\u0628 \u062f\u0627\u0648\u0628\u0648 \u0628\u0646\u062f","output":"","source":""},"geometry":{"type":"Point","coordinates":[69.22443,34.14013]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[12.64009,46.80091]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[13.1531,47.73491]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[13.15241,47.73492]}},{"type":"Feature","properties":{"name":"Amethyst Hydro","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[170.64696,-43.17347]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[13.27323,43.18921]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[42.19602,41.90316]}},{"type":"Feature","properties":{"name":"Allunkal Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[76.94728,9.33769]}},{"type":"Feature","properties":{"name":"Radho Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[86.59485,21.54184]}},{"type":"Feature","properties":{"name":"Usine Electrique de Vert","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.04541,45.19941]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.55987,48.31432]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[4.93155,49.36079]}},{"type":"Feature","properties":{"name":"Barrage de Grand'Maison","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[6.11542,45.20636]}},{"type":"Feature","properties":{"name":"Dam","output":"404 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[6.11615,47.36713]}},{"type":"Feature","properties":{"name":"WKA Gro\u00dfer Deich Offenburg/Kinzig","output":"465 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[7.95068,48.44885]}},{"type":"Feature","properties":{"name":"Dam","output":"0,9 MW","source":"hydro"},"geometry":{"type":"Point","coordinates":[10.32032,47.68497]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[10.62058,52.52913]}},{"type":"Feature","properties":{"name":"Centrale Idroelettrica Silea","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[12.28693,45.65166]}},{"type":"Feature","properties":{"name":"P\u0159ehrada Lu\u010dina","output":"150 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[12.58208,49.80603]}},{"type":"Feature","properties":{"name":"\u0160ance","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[18.41577,49.51153]}},{"type":"Feature","properties":{"name":"Mor\u00e1vka","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[18.53341,49.58281]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[20.57061,50.16698]}},{"type":"Feature","properties":{"name":"\u0421\u0430\u0442\u0430\u043d\u0456\u0432\u0441\u044c\u043a\u0430 \u0433\u0456\u0434\u0440\u043e\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u0441\u0442\u0430\u043d\u0446\u0456\u044f","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[26.25791,49.26589]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[35.9971,48.20207]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[28.95499,61.03236]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[34.32135,63.87929]}},{"type":"Feature","properties":{"name":"\u0422\u0443\u043b\u043e\u043c\u0441\u043a\u0430\u044f \u0413\u042d\u0421","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[32.81169,68.83306]}},{"type":"Feature","properties":{"name":"\u041f\u043b\u043e\u0442\u0438\u043d\u0430 \u0423\u0441\u0442\u044c-\u0425\u0430\u043d\u0442\u0430\u0439\u0441\u043a\u043e\u0439 \u0413\u042d\u0421","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[87.77727,68.08873]}},{"type":"Feature","properties":{"name":"Dongping Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[109.61707,30.14295]}},{"type":"Feature","properties":{"name":"Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[126.17859,40.02757]}},{"type":"Feature","properties":{"name":"La Represa Nuevo Simbocal","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-80.24699,-0.68873]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-45.47112,-21.9241]}},{"type":"Feature","properties":{"name":"Usina Jucu","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-40.57267,-20.39344]}},{"type":"Feature","properties":{"name":"Sir Adam Beck GS 1","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-79.04564,43.14861]}},{"type":"Feature","properties":{"name":"Station 5 Headgates Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-77.62789,43.17632]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-5.86492,41.47456]}},{"type":"Feature","properties":{"name":"Encoro de San Pedro","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-7.71428,42.45283]}},{"type":"Feature","properties":{"name":"Kleber Dam","output":"1200 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-84.33334,45.39169]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-74.36105,45.63682]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":"hydro"},"geometry":{"type":"Point","coordinates":[-3.69941,52.36654]}},{"type":"Feature","properties":{"name":"Caban-Coch Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-3.57713,52.26798]}},{"type":"Feature","properties":{"name":"Pen-y-Garreg Dam","output":"810 kW","source":"hydro"},"geometry":{"type":"Point","coordinates":[-3.59758,52.29383]}},{"type":"Feature","properties":{"name":"Craig Goch Dam","output":"yes","source":"hydro"},"geometry":{"type":"Point","coordinates":[-3.62411,52.30482]}},{"type":"Feature","properties":{"name":"Usina Elevat\u00f3ria de Pedreira","output":"","source":""},"geometry":{"type":"Point","coordinates":[-46.67453,-23.70322]}},{"type":"Feature","properties":{"name":"Usina Elevat\u00f3ria de Trai\u00e7\u00e3o","output":"","source":""},"geometry":{"type":"Point","coordinates":[-46.69416,-23.59517]}},{"type":"Feature","properties":{"name":"Usina Elevat\u00f3ria de Vig\u00e1rio","output":"","source":""},"geometry":{"type":"Point","coordinates":[-43.89587,-22.63005]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[65.44576,38.24275]}},{"type":"Feature","properties":{"name":"Pumpwerk Ardagger","output":"","source":""},"geometry":{"type":"Point","coordinates":[14.82661,48.18657]}},{"type":"Feature","properties":{"name":"\u6d3e\u6cb3\u6cf5\u7ad9\u67a2\u7ebd","output":"","source":""},"geometry":{"type":"Point","coordinates":[117.27644,31.64652]}},{"type":"Feature","properties":{"name":"\u6ec1\u6cb3\u4e09\u7ea7\u7ad9","output":"","source":""},"geometry":{"type":"Point","coordinates":[117.74692,32.05087]}},{"type":"Feature","properties":{"name":"\u6ec1\u6cb3\u4e8c\u7ea7\u7ad9","output":"","source":""},"geometry":{"type":"Point","coordinates":[117.78712,32.01519]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-45.23769,-20.63315]}},{"type":"Feature","properties":{"name":"Acueducto de Albear","output":"","source":""},"geometry":{"type":"Point","coordinates":[-82.4003,23.0387]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[68.83504,41.06619]}},{"type":"Feature","properties":{"name":"Big Creek Number 7 104-022 Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[-119.45163,37.14503]}},{"type":"Feature","properties":{"name":"Puente Mulas","output":"","source":""},"geometry":{"type":"Point","coordinates":[-84.18361,9.97224]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[45.18356,41.80123]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[120.99658,29.19995]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[169.35858,-45.42303]}},{"type":"Feature","properties":{"name":"Dam","output":"","source":""},"geometry":{"type":"Point","coordinates":[51.59385,43.19846]}},{"type":"Feature","properties":{"name":"HE Podlubnik - Centrala","output":"330KW","source":"hydro"},"geometry":{"type":"Point","coordinates":[14.29244,46.16916]}}]} \ No newline at end of file diff --git a/assets/datacenters.geojson b/assets/datacenters.geojson new file mode 100644 index 0000000..42b73af --- /dev/null +++ b/assets/datacenters.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AWS","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-70.8501,-52.94216]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-70.84864,-52.94162]}},{"type":"Feature","properties":{"name":"Equinix data center - ST4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-71.3997,-33.95613]}},{"type":"Feature","properties":{"name":"Actis Data Center","operator":"Actis"},"geometry":{"type":"Point","coordinates":[-70.7489,-33.81229]}},{"type":"Feature","properties":{"name":"ST2","operator":""},"geometry":{"type":"Point","coordinates":[-70.85122,-33.44813]}},{"type":"Feature","properties":{"name":"ST1","operator":""},"geometry":{"type":"Point","coordinates":[-70.85174,-33.44763]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-70.85187,-33.44822]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-70.81297,-33.5566]}},{"type":"Feature","properties":{"name":"DC STO2","operator":""},"geometry":{"type":"Point","coordinates":[-70.70931,-33.53187]}},{"type":"Feature","properties":{"name":"DC STO1","operator":""},"geometry":{"type":"Point","coordinates":[-70.71058,-33.53126]}},{"type":"Feature","properties":{"name":"Data Center L7","operator":""},"geometry":{"type":"Point","coordinates":[-70.7524,-33.41027]}},{"type":"Feature","properties":{"name":"Equinix Data Center - ST3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-70.65616,-33.44419]}},{"type":"Feature","properties":{"name":"Datacenter Conavicoop","operator":""},"geometry":{"type":"Point","coordinates":[-70.64817,-33.44518]}},{"type":"Feature","properties":{"name":"Central de Transmisiones","operator":""},"geometry":{"type":"Point","coordinates":[-70.63261,-33.42464]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-70.60663,-33.41708]}},{"type":"Feature","properties":{"name":"Data Center IFX Networks","operator":"IFX Networks"},"geometry":{"type":"Point","coordinates":[-70.60007,-33.41876]}},{"type":"Feature","properties":{"name":"Google Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-70.69515,-33.35902]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-70.69735,-33.35829]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-70.69447,-33.3587]}},{"type":"Feature","properties":{"name":"Cirion","operator":""},"geometry":{"type":"Point","coordinates":[-70.67591,-33.35823]}},{"type":"Feature","properties":{"name":"COLO 2","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-70.69872,-33.33807]}},{"type":"Feature","properties":{"name":"COLO 1","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-70.69789,-33.33776]}},{"type":"Feature","properties":{"name":"Microsoft Chile","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-70.56657,-33.38735]}},{"type":"Feature","properties":{"name":"Servicio Televisi\u00f3n por Cable","operator":""},"geometry":{"type":"Point","coordinates":[-71.50791,-32.99633]}},{"type":"Feature","properties":{"name":"Level3 Mendoza","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-68.81009,-32.92985]}},{"type":"Feature","properties":{"name":"Data Center EMPATEL Santa Rosa","operator":"Empresa Pampeana de Telecomunicaciones S.A.P.E.M."},"geometry":{"type":"Point","coordinates":[-64.27016,-36.6263]}},{"type":"Feature","properties":{"name":"KM 0 Silica Networks AVC","operator":""},"geometry":{"type":"Point","coordinates":[-56.7089,-36.48636]}},{"type":"Feature","properties":{"name":"Estaci\u00f3n de amarre cable submarino de fibra \u00f3ptica","operator":"Cirion Technologies"},"geometry":{"type":"Point","coordinates":[-56.71025,-36.4872]}},{"type":"Feature","properties":{"name":"Estaci\u00f3n de Amarre Las Toninas - Telecom","operator":"Telecom"},"geometry":{"type":"Point","coordinates":[-56.69921,-36.48611]}},{"type":"Feature","properties":{"name":"PhoenixGroup","operator":"Servicio Tecnico Electronico"},"geometry":{"type":"Point","coordinates":[-58.4253,-34.78903]}},{"type":"Feature","properties":{"name":"Datacenter Telecom","operator":"TELECOM ARGENTINA S.A."},"geometry":{"type":"Point","coordinates":[-58.6821,-34.46728]}},{"type":"Feature","properties":{"name":"Cirion Technologies","operator":"Cirion Technologies"},"geometry":{"type":"Point","coordinates":[-58.46688,-34.58989]}},{"type":"Feature","properties":{"name":"Datacenter Claro","operator":"Claro Argentina"},"geometry":{"type":"Point","coordinates":[-58.44498,-34.57385]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-58.44542,-34.57375]}},{"type":"Feature","properties":{"name":"ARSAT","operator":"ARSAT"},"geometry":{"type":"Point","coordinates":[-58.71986,-34.41043]}},{"type":"Feature","properties":{"name":"Ingresos Club Axion","operator":""},"geometry":{"type":"Point","coordinates":[-58.94985,-34.1666]}},{"type":"Feature","properties":{"name":"Datacenter Ingeniero Jos\u00e9 Luis Massera","operator":"ANTEL"},"geometry":{"type":"Point","coordinates":[-55.94724,-34.72509]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-63.19219,-32.46538]}},{"type":"Feature","properties":{"name":"Edificio de Telecomunicaciones","operator":""},"geometry":{"type":"Point","coordinates":[-64.42709,-31.41401]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-64.48289,-31.10577]}},{"type":"Feature","properties":{"name":"LF Services","operator":""},"geometry":{"type":"Point","coordinates":[-64.48288,-31.10578]}},{"type":"Feature","properties":{"name":"Telecom","operator":""},"geometry":{"type":"Point","coordinates":[-64.48711,-31.09451]}},{"type":"Feature","properties":{"name":"TeraSoft","operator":""},"geometry":{"type":"Point","coordinates":[-64.50271,-30.9981]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-64.50475,-30.98212]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-65.76588,-28.45956]}},{"type":"Feature","properties":{"name":"Pabellon 4","operator":""},"geometry":{"type":"Point","coordinates":[-65.76588,-28.45956]}},{"type":"Feature","properties":{"name":"Shelter Modernizaci\u00f3n","operator":""},"geometry":{"type":"Point","coordinates":[-65.76593,-28.45789]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-65.76312,-28.45906]}},{"type":"Feature","properties":{"name":"Modernizaci\u00f3n","operator":""},"geometry":{"type":"Point","coordinates":[-65.76311,-28.45905]}},{"type":"Feature","properties":{"name":"Rack Modernizaci\u00f3n","operator":""},"geometry":{"type":"Point","coordinates":[-65.75663,-28.44748]}},{"type":"Feature","properties":{"name":"Claro","operator":""},"geometry":{"type":"Point","coordinates":[-64.51964,-30.86675]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-64.49311,-30.93712]}},{"type":"Feature","properties":{"name":"Cirion Technologies","operator":"Cirion Technologies"},"geometry":{"type":"Point","coordinates":[-60.72534,-32.91041]}},{"type":"Feature","properties":{"name":"G2K Argentina SA","operator":""},"geometry":{"type":"Point","coordinates":[-60.22239,-33.32838]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - EL COLORADO","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-59.37083,-26.30845]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - VILLAFA\u00d1E","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-59.07896,-26.20375]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - VILLA 213","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-59.36324,-26.18409]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - MANSILLA","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-58.63073,-26.65936]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - VILLA ESCOLAR","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-58.67067,-26.62145]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - IRIGOYEN","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-58.83347,-26.17532]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - LAISHI","operator":"REFSA TELECOMUNICACIONES"},"geometry":{"type":"Point","coordinates":[-58.63025,-26.24003]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - HERRADURA","operator":"REFSA"},"geometry":{"type":"Point","coordinates":[-58.31151,-26.48866]}},{"type":"Feature","properties":{"name":"Nodo FO REFSA Tel - TATANE","operator":""},"geometry":{"type":"Point","coordinates":[-58.34451,-26.3937]}},{"type":"Feature","properties":{"name":"Shelter ARSAT FO","operator":""},"geometry":{"type":"Point","coordinates":[-58.20704,-26.20597]}},{"type":"Feature","properties":{"name":"Centro de Datos Modular REFSA Telecomunicaciones","operator":""},"geometry":{"type":"Point","coordinates":[-58.20708,-26.20585]}},{"type":"Feature","properties":{"name":"Nodo FO - RED CAPRICORNIO FORMOSA","operator":""},"geometry":{"type":"Point","coordinates":[-58.20713,-26.20574]}},{"type":"Feature","properties":{"name":"Centro de Datos UPSTI","operator":""},"geometry":{"type":"Point","coordinates":[-58.16459,-26.18286]}},{"type":"Feature","properties":{"name":"TvMax Dpto.Tecnico","operator":""},"geometry":{"type":"Point","coordinates":[-56.44194,-25.44285]}},{"type":"Feature","properties":{"name":"Datacenter UNaM","operator":""},"geometry":{"type":"Point","coordinates":[-55.8881,-27.43464]}},{"type":"Feature","properties":{"name":"SIM DIGITAL - POP INGLESES","operator":""},"geometry":{"type":"Point","coordinates":[-48.40583,-27.43953]}},{"type":"Feature","properties":{"name":"Armaz\u00e9m Cloud","operator":""},"geometry":{"type":"Point","coordinates":[-48.8835,-26.23582]}},{"type":"Feature","properties":{"name":"Oi","operator":""},"geometry":{"type":"Point","coordinates":[-48.54704,-25.54937]}},{"type":"Feature","properties":{"name":"Central telef\u00f4nica da Vivo","operator":"VIVO SA"},"geometry":{"type":"Point","coordinates":[-48.05253,-23.59194]}},{"type":"Feature","properties":{"name":"Central telef\u00f4nica de Itapetininga","operator":"Vivo"},"geometry":{"type":"Point","coordinates":[-48.03019,-23.57849]}},{"type":"Feature","properties":{"name":"Central de internet - Claro/NET","operator":"Claro S/A"},"geometry":{"type":"Point","coordinates":[-48.02854,-23.56956]}},{"type":"Feature","properties":{"name":"Condom\u00ednio Galp\u00f5es Comericiais (DATA CENTER)","operator":"Ubat\u00e3 Empreendimentos Imobili\u00e1rios e Lazer LTDA"},"geometry":{"type":"Point","coordinates":[-47.10676,-22.77135]}},{"type":"Feature","properties":{"name":"Unidade T\u00e9cnica de Aeronavega\u00e7\u00e3o - REDE (SERRAMAR)","operator":"INFRAERO;DECA;Governo Federal"},"geometry":{"type":"Point","coordinates":[-46.52837,-23.89061]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-46.52834,-23.89069]}},{"type":"Feature","properties":{"name":"ASAP Telecom - Data Center","operator":"ASAP Telecom"},"geometry":{"type":"Point","coordinates":[-46.69852,-23.67798]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-46.52794,-23.64861]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-46.80974,-23.49362]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.81524,-23.49683]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.81378,-23.49555]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.81499,-23.49788]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.81451,-23.49735]}},{"type":"Feature","properties":{"name":"Scala Datacenter","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.81493,-23.49672]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.81317,-23.49501]}},{"type":"Feature","properties":{"name":"Equinix SP4 Terremark","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.80964,-23.49372]}},{"type":"Feature","properties":{"name":"Ascenty SP2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-46.77733,-23.49233]}},{"type":"Feature","properties":{"name":"Ascenty SP3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-46.77604,-23.49123]}},{"type":"Feature","properties":{"name":"Ascenty SP4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-46.77547,-23.49]}},{"type":"Feature","properties":{"name":"Ascenty SP1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-46.77609,-23.49209]}},{"type":"Feature","properties":{"name":"Ascenty SP3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-46.77649,-23.49095]}},{"type":"Feature","properties":{"name":"ODATA DC SP01","operator":""},"geometry":{"type":"Point","coordinates":[-46.915,-23.45492]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-46.91522,-23.45504]}},{"type":"Feature","properties":{"name":"Equinix SP6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-46.85822,-23.46264]}},{"type":"Feature","properties":{"name":"Laborat\u00f3rio MackLeaps","operator":""},"geometry":{"type":"Point","coordinates":[-46.65239,-23.54767]}},{"type":"Feature","properties":{"name":"Odata","operator":""},"geometry":{"type":"Point","coordinates":[-47.19441,-22.90117]}},{"type":"Feature","properties":{"name":"Nodo Moquegua","operator":"Fibrandes"},"geometry":{"type":"Point","coordinates":[-70.91788,-17.20527]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-70.23794,-17.98865]}},{"type":"Feature","properties":{"name":"Centro de Entrenamiento Tecnol\u00f3gico","operator":"UNMSM - Huawei"},"geometry":{"type":"Point","coordinates":[-77.08549,-12.05296]}},{"type":"Feature","properties":{"name":"Centro de Datos Win Santa Catalina","operator":"Win"},"geometry":{"type":"Point","coordinates":[-77.01858,-12.08767]}},{"type":"Feature","properties":{"name":"GTD Centro de Datos Lur\u00edn","operator":""},"geometry":{"type":"Point","coordinates":[-76.82437,-12.2578]}},{"type":"Feature","properties":{"name":"Cirion Centro de Datos LIM2","operator":""},"geometry":{"type":"Point","coordinates":[-76.82584,-12.25828]}},{"type":"Feature","properties":{"name":"Centro de Datos GTD Surco","operator":"GTD Chile"},"geometry":{"type":"Point","coordinates":[-76.9775,-12.12556]}},{"type":"Feature","properties":{"name":"Centro de Datos Cirion LIM1","operator":"Cirion Technologies"},"geometry":{"type":"Point","coordinates":[-76.97308,-12.08911]}},{"type":"Feature","properties":{"name":"Centro de Datos Monterrico","operator":"NextStream"},"geometry":{"type":"Point","coordinates":[-76.97233,-12.08498]}},{"type":"Feature","properties":{"name":"Fibrandes Nodo AQP","operator":"Fibrandes"},"geometry":{"type":"Point","coordinates":[-71.58186,-16.40237]}},{"type":"Feature","properties":{"name":"Servidor","operator":"UNL"},"geometry":{"type":"Point","coordinates":[-79.19955,-4.03004]}},{"type":"Feature","properties":{"name":"Centro de Datos - CNT","operator":""},"geometry":{"type":"Point","coordinates":[-80.08548,-2.19928]}},{"type":"Feature","properties":{"name":"CNT - Nodo Basti\u00f3n CTG","operator":""},"geometry":{"type":"Point","coordinates":[-79.93001,-2.10618]}},{"type":"Feature","properties":{"name":"Wayratechs","operator":""},"geometry":{"type":"Point","coordinates":[-78.66752,-1.65616]}},{"type":"Feature","properties":{"name":"DEL PRADO .com.ec","operator":"DEL PRADO .com.ec"},"geometry":{"type":"Point","coordinates":[-78.50226,-0.24403]}},{"type":"Feature","properties":{"name":"DEVESOFFT S.A.","operator":""},"geometry":{"type":"Point","coordinates":[-78.42767,-0.19735]}},{"type":"Feature","properties":{"name":"CDL","operator":""},"geometry":{"type":"Point","coordinates":[-56.62543,-16.26469]}},{"type":"Feature","properties":{"name":"Way Internet","operator":""},"geometry":{"type":"Point","coordinates":[-50.8915,-22.22939]}},{"type":"Feature","properties":{"name":"Sferanet","operator":""},"geometry":{"type":"Point","coordinates":[-50.89414,-22.22788]}},{"type":"Feature","properties":{"name":"Fleetnet","operator":""},"geometry":{"type":"Point","coordinates":[-50.89172,-22.22872]}},{"type":"Feature","properties":{"name":"Centro de Inform\u00e1tica (CPD)","operator":""},"geometry":{"type":"Point","coordinates":[-47.86584,-15.77277]}},{"type":"Feature","properties":{"name":"Datacenter de Mambucaba","operator":"Eletronuclear"},"geometry":{"type":"Point","coordinates":[-44.54854,-23.0337]}},{"type":"Feature","properties":{"name":"Rio AI City","operator":""},"geometry":{"type":"Point","coordinates":[-43.37804,-22.96596]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-43.44098,-22.98852]}},{"type":"Feature","properties":{"name":"Equinix Rio RJ2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-43.27338,-22.87139]}},{"type":"Feature","properties":{"name":"Scala SGIGSM01","operator":"Scala Datacenters"},"geometry":{"type":"Point","coordinates":[-43.35628,-22.79664]}},{"type":"Feature","properties":{"name":"ODATA DC RJ01","operator":"Odata"},"geometry":{"type":"Point","coordinates":[-43.35728,-22.79713]}},{"type":"Feature","properties":{"name":"CGCO","operator":"UFJF"},"geometry":{"type":"Point","coordinates":[-43.37144,-21.77629]}},{"type":"Feature","properties":{"name":"Data Center (Minist\u00e9rio P\u00fablico de Minas Gerais)","operator":""},"geometry":{"type":"Point","coordinates":[-43.97867,-19.92902]}},{"type":"Feature","properties":{"name":"Centro de Dirigentes Lojistas de Campos dos Goytacazes - CDL","operator":"CDL"},"geometry":{"type":"Point","coordinates":[-41.31758,-21.75833]}},{"type":"Feature","properties":{"name":"Centro de Processamento de Dados - UEFS","operator":"Universidade Estadual de Feira de Santana"},"geometry":{"type":"Point","coordinates":[-38.97301,-12.20248]}},{"type":"Feature","properties":{"name":"Laborat\u00f3rio de Programa\u00e7\u00e3o","operator":""},"geometry":{"type":"Point","coordinates":[-38.97341,-12.19954]}},{"type":"Feature","properties":{"name":"Dinfo (Provedor De Internet)","operator":""},"geometry":{"type":"Point","coordinates":[-38.21812,-11.30583]}},{"type":"Feature","properties":{"name":"Net Wireless","operator":""},"geometry":{"type":"Point","coordinates":[-38.21659,-11.30379]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-37.06428,-10.89339]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-37.06428,-10.89338]}},{"type":"Feature","properties":{"name":"ISPTEC Telecomunicacoes","operator":""},"geometry":{"type":"Point","coordinates":[-35.87619,-7.22474]}},{"type":"Feature","properties":{"name":"Funda\u00e7\u00e3o CEPRO","operator":""},"geometry":{"type":"Point","coordinates":[-42.80238,-5.08773]}},{"type":"Feature","properties":{"name":"AngoNap Fortaleza","operator":"Angola Cables"},"geometry":{"type":"Point","coordinates":[-38.46179,-3.73525]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-38.61128,-3.83031]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-38.61095,-3.831]}},{"type":"Feature","properties":{"name":"Ascenty Infraestrutura de Data Centers","operator":""},"geometry":{"type":"Point","coordinates":[-38.61137,-3.83077]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-38.61168,-3.83105]}},{"type":"Feature","properties":{"name":"CSL Monet","operator":"Angola Cables"},"geometry":{"type":"Point","coordinates":[-38.45729,-3.73883]}},{"type":"Feature","properties":{"name":"Grupo IDDEA","operator":""},"geometry":{"type":"Point","coordinates":[-103.37076,20.63734]}},{"type":"Feature","properties":{"name":"Centro de datos ECR8 Le\u00f3n","operator":"MTP"},"geometry":{"type":"Point","coordinates":[-101.67815,21.12649]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-99.55561,19.20205]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MEX6","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-99.55552,19.20219]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MEX1","operator":""},"geometry":{"type":"Point","coordinates":[-99.27683,19.36365]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MEX2","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-99.28028,19.36338]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MEX3","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-99.2604,19.37265]}},{"type":"Feature","properties":{"name":"Oficina KIO Interlomas y centro de datos KIO MEX4","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-99.27416,19.40034]}},{"type":"Feature","properties":{"name":"Centro Control de Energ\u00eda","operator":""},"geometry":{"type":"Point","coordinates":[-99.14472,19.42891]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MEX5","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-99.14787,19.62835]}},{"type":"Feature","properties":{"name":"Telmex","operator":""},"geometry":{"type":"Point","coordinates":[-99.05473,19.49062]}},{"type":"Feature","properties":{"name":"CST Zona Cero Mx","operator":"Javier MArtinez Roemro"},"geometry":{"type":"Point","coordinates":[-97.80193,19.42583]}},{"type":"Feature","properties":{"name":"Centro de datos KIO QRO1 y QRO2","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-100.25702,20.56658]}},{"type":"Feature","properties":{"name":"Centro de datos ODATA QR02","operator":"ODATA"},"geometry":{"type":"Point","coordinates":[-100.57748,20.54206]}},{"type":"Feature","properties":{"name":"Centro de datos ODATA QR04","operator":"ODATA"},"geometry":{"type":"Point","coordinates":[-100.62135,20.90651]}},{"type":"Feature","properties":{"name":"Centro de datos Alestra","operator":"Axtel"},"geometry":{"type":"Point","coordinates":[-100.27868,20.55755]}},{"type":"Feature","properties":{"name":"Centro de datos ODATA QR03","operator":"ODATA"},"geometry":{"type":"Point","coordinates":[-100.23626,20.53522]}},{"type":"Feature","properties":{"name":"Centro de datos Triara Quer\u00e9taro","operator":"Triara"},"geometry":{"type":"Point","coordinates":[-100.39445,20.61161]}},{"type":"Feature","properties":{"name":"Centro de datos ODATA QR01","operator":"ODATA"},"geometry":{"type":"Point","coordinates":[-100.19969,20.58786]}},{"type":"Feature","properties":{"name":"Amazon AWS Quer\u00e9taro","operator":"Amazon"},"geometry":{"type":"Point","coordinates":[-100.19895,20.58585]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-100.1629,20.59211]}},{"type":"Feature","properties":{"name":"Centro de datos Ascenty Quer\u00e9taro 1","operator":"Ascenty"},"geometry":{"type":"Point","coordinates":[-100.15471,20.59211]}},{"type":"Feature","properties":{"name":"Centro de datos Ascenty Quer\u00e9taro 2","operator":"Ascenty"},"geometry":{"type":"Point","coordinates":[-100.10619,20.6597]}},{"type":"Feature","properties":{"name":"Evocative Santa Clara SJC11","operator":""},"geometry":{"type":"Point","coordinates":[-121.96202,37.38953]}},{"type":"Feature","properties":{"name":"Amazon","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-121.9661,37.38968]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-121.94651,37.36209]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SC1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.94382,37.36178]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-121.9422,37.36114]}},{"type":"Feature","properties":{"name":"Vantage Santa Clara CA2","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-121.94683,37.36404]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC37","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.94719,37.37088]}},{"type":"Feature","properties":{"name":"Csquare SFO2","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.98144,37.39875]}},{"type":"Feature","properties":{"name":"DataBank Santa Clara SFO1","operator":"DataBank"},"geometry":{"type":"Point","coordinates":[-121.966,37.40729]}},{"type":"Feature","properties":{"name":"Dell 350 Holger Way","operator":""},"geometry":{"type":"Point","coordinates":[-121.94312,37.41828]}},{"type":"Feature","properties":{"name":"CoreSite SV2","operator":"CoreSite Real Estate 1656 McCarthy, L.P."},"geometry":{"type":"Point","coordinates":[-121.91632,37.40561]}},{"type":"Feature","properties":{"name":"Equinix San Jose SV3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.88842,37.38826]}},{"type":"Feature","properties":{"name":"Stack Infrastructure","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-121.89353,37.40265]}},{"type":"Feature","properties":{"name":"Stack Infrastructure","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-121.89248,37.40218]}},{"type":"Feature","properties":{"name":"STACK Infrastructure","operator":"Stack Infrastructure, Incorporated"},"geometry":{"type":"Point","coordinates":[-121.89106,37.40263]}},{"type":"Feature","properties":{"name":"STACK Infrastructure","operator":"Stack Infrastructure, Incorporated"},"geometry":{"type":"Point","coordinates":[-121.89105,37.40274]}},{"type":"Feature","properties":{"name":"NTT Limited","operator":"NTT Limited"},"geometry":{"type":"Point","coordinates":[-121.88926,37.40389]}},{"type":"Feature","properties":{"name":"Hurricane Electric Fremont 2","operator":"Hurricane Electric"},"geometry":{"type":"Point","coordinates":[-121.92044,37.47177]}},{"type":"Feature","properties":{"name":"XO Fremont","operator":"XO"},"geometry":{"type":"Point","coordinates":[-121.92202,37.47546]}},{"type":"Feature","properties":{"name":"Hurricane Electric Fremont 1","operator":"Hurricane Electric"},"geometry":{"type":"Point","coordinates":[-121.93106,37.48981]}},{"type":"Feature","properties":{"name":"AT&T Center","operator":"American Telephone & Telegraph"},"geometry":{"type":"Point","coordinates":[-117.15899,32.74768]}},{"type":"Feature","properties":{"name":"SDSU Computer Room","operator":""},"geometry":{"type":"Point","coordinates":[-117.07089,32.77503]}},{"type":"Feature","properties":{"name":"EdgeConneX San Diego","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-117.16938,32.84233]}},{"type":"Feature","properties":{"name":"LightEdge SAN1","operator":""},"geometry":{"type":"Point","coordinates":[-117.13007,32.82799]}},{"type":"Feature","properties":{"name":"TPx Colocation Datacenter","operator":"TPx Communications"},"geometry":{"type":"Point","coordinates":[-117.8442,33.70751]}},{"type":"Feature","properties":{"name":"Lumen Technologies","operator":""},"geometry":{"type":"Point","coordinates":[-117.80609,33.71696]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-117.23889,33.15363]}},{"type":"Feature","properties":{"name":"Open Computing Facility","operator":""},"geometry":{"type":"Point","coordinates":[-122.25982,37.86985]}},{"type":"Feature","properties":{"name":"QES Computers","operator":""},"geometry":{"type":"Point","coordinates":[-121.90382,37.69947]}},{"type":"Feature","properties":{"name":"Modesto Junior College West Data Center","operator":"Yosemite Community College District"},"geometry":{"type":"Point","coordinates":[-121.04005,37.66515]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-118.30422,33.8509]}},{"type":"Feature","properties":{"name":"Centurylink","operator":"Centurylink"},"geometry":{"type":"Point","coordinates":[-118.38603,33.91775]}},{"type":"Feature","properties":{"name":"DRT LAX12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-118.38451,33.91576]}},{"type":"Feature","properties":{"name":"e360","operator":""},"geometry":{"type":"Point","coordinates":[-122.04374,37.97108]}},{"type":"Feature","properties":{"name":"Kaiser Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-122.27326,38.25407]}},{"type":"Feature","properties":{"name":"PG&E Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[-122.06713,38.24615]}},{"type":"Feature","properties":{"name":"Serverfarm - LAX1","operator":"Serverfarm LLC."},"geometry":{"type":"Point","coordinates":[-118.38665,33.92166]}},{"type":"Feature","properties":{"name":"DRT LAX10","operator":""},"geometry":{"type":"Point","coordinates":[-118.25736,34.04743]}},{"type":"Feature","properties":{"name":"One Wilshire","operator":""},"geometry":{"type":"Point","coordinates":[-118.25563,34.0478]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-118.25564,34.0479]}},{"type":"Feature","properties":{"name":"USPO Terminal Annex","operator":"United States Postal Service"},"geometry":{"type":"Point","coordinates":[-118.23558,34.05804]}},{"type":"Feature","properties":{"name":"CoreSite - LA2","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-118.23591,34.05848]}},{"type":"Feature","properties":{"name":"IT","operator":""},"geometry":{"type":"Point","coordinates":[-117.50302,33.91029]}},{"type":"Feature","properties":{"name":"Centurylink","operator":"Centurylink"},"geometry":{"type":"Point","coordinates":[-118.34385,34.19981]}},{"type":"Feature","properties":{"name":"Digital West Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-120.64151,35.25532]}},{"type":"Feature","properties":{"name":"AT&T","operator":""},"geometry":{"type":"Point","coordinates":[-118.11399,34.5799]}},{"type":"Feature","properties":{"name":"Switch12","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.21341,36.06143]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 8","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.21462,36.05789]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 11","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.21455,36.05605]}},{"type":"Feature","properties":{"name":"Switch Edge 1","operator":""},"geometry":{"type":"Point","coordinates":[-115.21366,36.05908]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 12","operator":""},"geometry":{"type":"Point","coordinates":[-115.21104,36.05804]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 9","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.2198,36.0559]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 10","operator":""},"geometry":{"type":"Point","coordinates":[-115.22307,36.05576]}},{"type":"Feature","properties":{"name":"Switch","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.22143,36.06395]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 14","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.22235,36.06517]}},{"type":"Feature","properties":{"name":"Digital Realty San Francisco SFO10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.39801,37.72375]}},{"type":"Feature","properties":{"name":"Ntirety","operator":"Ntirety"},"geometry":{"type":"Point","coordinates":[-122.394,37.77965]}},{"type":"Feature","properties":{"name":"360 Spear Street Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.39023,37.78902]}},{"type":"Feature","properties":{"name":"365 Main Street Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.39048,37.78873]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 7","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.21,36.05985]}},{"type":"Feature","properties":{"name":"DataBank Las Vegas LAS1","operator":"DataBank"},"geometry":{"type":"Point","coordinates":[-115.14722,36.05982]}},{"type":"Feature","properties":{"name":"Fiberhub LAS1","operator":"Fiberhub"},"geometry":{"type":"Point","coordinates":[-115.13988,36.06594]}},{"type":"Feature","properties":{"name":"Flexential Las Vegas - Downtown","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-115.14315,36.16864]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-115.0086,36.05599]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-115.00893,36.05898]}},{"type":"Feature","properties":{"name":"CenturyLink","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-115.08339,36.14382]}},{"type":"Feature","properties":{"name":"Verizon","operator":""},"geometry":{"type":"Point","coordinates":[-115.07801,36.1447]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 4","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.07682,36.14371]}},{"type":"Feature","properties":{"name":"Switch Las Vegas 5","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-115.07673,36.14273]}},{"type":"Feature","properties":{"name":"CenturyLink","operator":""},"geometry":{"type":"Point","coordinates":[-115.06271,36.18297]}},{"type":"Feature","properties":{"name":"Verizon North Las Vegas","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-115.14698,36.22194]}},{"type":"Feature","properties":{"name":"Flexential Las Vegas - North","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-115.10103,36.24823]}},{"type":"Feature","properties":{"name":"Equinix SV1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.78301,37.24145]}},{"type":"Feature","properties":{"name":"Equinix SV11","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.78423,37.24248]}},{"type":"Feature","properties":{"name":"Equinix SV10","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.78501,37.24142]}},{"type":"Feature","properties":{"name":"Equinix SV5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.78168,37.24189]}},{"type":"Feature","properties":{"name":"Northwest Data Center and Communications Hub","operator":""},"geometry":{"type":"Point","coordinates":[-122.18079,37.43339]}},{"type":"Feature","properties":{"name":"Equinix SV4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-122.0147,37.4144]}},{"type":"Feature","properties":{"name":"Equinix SV6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-122.01454,37.39966]}},{"type":"Feature","properties":{"name":"Equinix SV8","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-122.16086,37.44588]}},{"type":"Feature","properties":{"name":"Csquare SFO2","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.98103,37.39764]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.94877,37.37637]}},{"type":"Feature","properties":{"name":"Silicon Valley SJC31","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.94853,37.37225]}},{"type":"Feature","properties":{"name":"Forescout Technologies, Inc.","operator":""},"geometry":{"type":"Point","coordinates":[-121.94742,37.32287]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-121.88799,37.33355]}},{"type":"Feature","properties":{"name":"San Jose Colocation Center","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.89165,37.33412]}},{"type":"Feature","properties":{"name":"Csquare SFO1","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.96956,37.37144]}},{"type":"Feature","properties":{"name":"CoreSite SV3","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.97175,37.37526]}},{"type":"Feature","properties":{"name":"CoreSite SV5","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.97075,37.37511]}},{"type":"Feature","properties":{"name":"CoreSite SV9","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.96956,37.37544]}},{"type":"Feature","properties":{"name":"Equinix SV15","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.98846,37.37556]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54858,39.56693]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54249,39.56779]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54333,39.56758]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54535,39.567]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54451,39.56724]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54813,39.56579]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.54784,39.56513]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.538,39.56977]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.53723,39.57011]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.53618,39.57065]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.53546,39.57104]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.47623,39.51415]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.48385,39.51159]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.48313,39.50983]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.48333,39.50804]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.48527,39.51394]}},{"type":"Feature","properties":{"name":"Switch Tahoe Reno - The Citadel Campus","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-119.47959,39.5141]}},{"type":"Feature","properties":{"name":"Date Center West - Eugene","operator":"Data Center West, Inc."},"geometry":{"type":"Point","coordinates":[-122.88043,42.33244]}},{"type":"Feature","properties":{"name":"Date Center West - Eugene","operator":"Data Center West, Inc."},"geometry":{"type":"Point","coordinates":[-123.09298,44.05061]}},{"type":"Feature","properties":{"name":"SV Colo","operator":"SV Colo"},"geometry":{"type":"Point","coordinates":[-121.95882,37.36415]}},{"type":"Feature","properties":{"name":"Csquare SFO1","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.96981,37.37034]}},{"type":"Feature","properties":{"name":"Lumen Sunnyvale 1","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-121.98799,37.37361]}},{"type":"Feature","properties":{"name":"Equinix SV14","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.98858,37.37502]}},{"type":"Feature","properties":{"name":"Csquare SFO3","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.98599,37.37212]}},{"type":"Feature","properties":{"name":"Vantage","operator":"Vantage"},"geometry":{"type":"Point","coordinates":[-121.97286,37.3733]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC34","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.97367,37.37251]}},{"type":"Feature","properties":{"name":"Vantage","operator":"Vantage"},"geometry":{"type":"Point","coordinates":[-121.97259,37.37187]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-121.97443,37.37056]}},{"type":"Feature","properties":{"name":"STACK SVY02","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-121.95372,37.36184]}},{"type":"Feature","properties":{"name":"Cologix Santa Clara SV1 Data Center","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-121.96176,37.36542]}},{"type":"Feature","properties":{"name":"Prime Santa Clara","operator":"Prime"},"geometry":{"type":"Point","coordinates":[-121.96287,37.36666]}},{"type":"Feature","properties":{"name":"NTT Silicon Valley SV1 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-121.95538,37.36896]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC16","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.9562,37.37493]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC29","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.95818,37.37507]}},{"type":"Feature","properties":{"name":"Prime SANTA CLARA DATA CENTER","operator":"Prime"},"geometry":{"type":"Point","coordinates":[-121.95486,37.37512]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC15","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.95413,37.37504]}},{"type":"Feature","properties":{"name":"Prime Santa Clara","operator":"Prime"},"geometry":{"type":"Point","coordinates":[-121.9533,37.37507]}},{"type":"Feature","properties":{"name":"Equinix SV16","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.98866,37.37617]}},{"type":"Feature","properties":{"name":"Equinix SV17","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.98861,37.37657]}},{"type":"Feature","properties":{"name":"CoreSite SV8","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.97199,37.37739]}},{"type":"Feature","properties":{"name":"CoreSite SV7","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.97311,37.37598]}},{"type":"Feature","properties":{"name":"CoreSite SV6","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.97214,37.3762]}},{"type":"Feature","properties":{"name":"CoreSite SV4","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-121.97074,37.37635]}},{"type":"Feature","properties":{"name":"QTS Santa Clara 1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-121.97847,37.39397]}},{"type":"Feature","properties":{"name":"CenturyLink","operator":"CenturyLink"},"geometry":{"type":"Point","coordinates":[-123.03376,44.93803]}},{"type":"Feature","properties":{"name":"Oregon State Data Center","operator":"State of Oregon"},"geometry":{"type":"Point","coordinates":[-123.00219,44.92641]}},{"type":"Feature","properties":{"name":"PTC","operator":"Stayton Cooperative Telephone Company"},"geometry":{"type":"Point","coordinates":[-122.61592,44.77527]}},{"type":"Feature","properties":{"name":"Fort Rock DC","operator":"Fort Rock Data Center"},"geometry":{"type":"Point","coordinates":[-121.32855,44.04739]}},{"type":"Feature","properties":{"name":"US Signal - OR01 Bend","operator":"US Signal"},"geometry":{"type":"Point","coordinates":[-121.28316,44.0861]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.88754,44.29597]}},{"type":"Feature","properties":{"name":"Apple","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[-120.87023,44.28889]}},{"type":"Feature","properties":{"name":"Apple","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[-120.87068,44.2872]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.88164,44.29376]}},{"type":"Feature","properties":{"name":"Apple","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[-120.87032,44.28583]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.88408,44.29486]}},{"type":"Feature","properties":{"name":"Apple","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[-120.87515,44.28943]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.89469,44.29918]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.89465,44.30165]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.88999,44.3013]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-120.87954,44.29915]}},{"type":"Feature","properties":{"name":"QTS Santa Clara 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-121.97839,37.39275]}},{"type":"Feature","properties":{"name":"EdgeCore Silicon Valley","operator":""},"geometry":{"type":"Point","coordinates":[-121.96531,37.38374]}},{"type":"Feature","properties":{"name":"Equinix Santa Clara SV2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-121.95505,37.37856]}},{"type":"Feature","properties":{"name":"Layer42 Santa Clara","operator":"Layer42"},"geometry":{"type":"Point","coordinates":[-121.95405,37.37807]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC30","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.95828,37.37829]}},{"type":"Feature","properties":{"name":"Csquare SFO4","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.95527,37.37581]}},{"type":"Feature","properties":{"name":"Lumen Santa Clara","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-121.95205,37.37705]}},{"type":"Feature","properties":{"name":"Colovore","operator":""},"geometry":{"type":"Point","coordinates":[-121.9531,37.37665]}},{"type":"Feature","properties":{"name":"Digital Realty Silicon Valley SJC10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-121.95329,37.3759]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-121.94993,37.37985]}},{"type":"Feature","properties":{"name":"Csquare SFO4","operator":"Csquare"},"geometry":{"type":"Point","coordinates":[-121.95626,37.37583]}},{"type":"Feature","properties":{"name":"OpenColo","operator":""},"geometry":{"type":"Point","coordinates":[-121.95596,37.37884]}},{"type":"Feature","properties":{"name":"Lumen","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-121.95074,37.37756]}},{"type":"Feature","properties":{"name":"RagingWire CA3","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-121.49893,38.64432]}},{"type":"Feature","properties":{"name":"QTS Sacramento","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-121.48638,38.64642]}},{"type":"Feature","properties":{"name":"RagingWire CA2","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-121.49198,38.6504]}},{"type":"Feature","properties":{"name":"RagingWire CA1","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-121.48953,38.65043]}},{"type":"Feature","properties":{"name":"Edgeconnex Data Center","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-121.27736,38.59221]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-116.26835,43.4634]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-116.27222,43.46365]}},{"type":"Feature","properties":{"name":"Centro de datos KIO HER1","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-110.96078,29.08547]}},{"type":"Feature","properties":{"name":"DirecTV","operator":"DirecTV"},"geometry":{"type":"Point","coordinates":[-110.78748,32.0927]}},{"type":"Feature","properties":{"name":"DirecTV","operator":"DirecTV"},"geometry":{"type":"Point","coordinates":[-110.30479,31.97265]}},{"type":"Feature","properties":{"name":"StrongMind","operator":""},"geometry":{"type":"Point","coordinates":[-111.84103,33.34258]}},{"type":"Feature","properties":{"name":"CyrusOne PHX7","operator":""},"geometry":{"type":"Point","coordinates":[-111.8818,33.26634]}},{"type":"Feature","properties":{"name":"CyrusOne PHX8","operator":""},"geometry":{"type":"Point","coordinates":[-111.88347,33.26641]}},{"type":"Feature","properties":{"name":"Digital Realty Phoenix PHX15","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-111.88685,33.27481]}},{"type":"Feature","properties":{"name":"H5 Phoenix","operator":"H5"},"geometry":{"type":"Point","coordinates":[-111.88599,33.27686]}},{"type":"Feature","properties":{"name":"Lumen","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-113.54477,37.0628]}},{"type":"Feature","properties":{"name":"CyrusOne PHX3","operator":""},"geometry":{"type":"Point","coordinates":[-111.88165,33.27178]}},{"type":"Feature","properties":{"name":"CyrusOne PHX4","operator":""},"geometry":{"type":"Point","coordinates":[-111.8835,33.27174]}},{"type":"Feature","properties":{"name":"CyrusOne PHX1","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-111.88221,33.27089]}},{"type":"Feature","properties":{"name":"CyrusOne PHX6","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-111.88254,33.26766]}},{"type":"Feature","properties":{"name":"CyrusOne PHX5","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-111.88163,33.26978]}},{"type":"Feature","properties":{"name":"CyrusOne PHX4","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-111.88293,33.26884]}},{"type":"Feature","properties":{"name":"Emailage","operator":""},"geometry":{"type":"Point","coordinates":[-111.84054,33.30296]}},{"type":"Feature","properties":{"name":"Digital Realty Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-111.89915,33.34464]}},{"type":"Feature","properties":{"name":"EdgeConneX Data Center","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-111.97008,33.39559]}},{"type":"Feature","properties":{"name":"Omnis Network","operator":""},"geometry":{"type":"Point","coordinates":[-111.95253,33.39449]}},{"type":"Feature","properties":{"name":"All About Serving Process Server","operator":""},"geometry":{"type":"Point","coordinates":[-111.80969,33.31992]}},{"type":"Feature","properties":{"name":"GoDaddy - Gilbert","operator":""},"geometry":{"type":"Point","coordinates":[-111.83938,33.36199]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-112.37711,33.44031]}},{"type":"Feature","properties":{"name":"PHX-10","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-112.36525,33.408]}},{"type":"Feature","properties":{"name":"PHX-11","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-112.36571,33.40912]}},{"type":"Feature","properties":{"name":"Stream Data Centers PHX-1","operator":""},"geometry":{"type":"Point","coordinates":[-112.36032,33.4196]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-112.37396,33.4462]}},{"type":"Feature","properties":{"name":"Iron Mountain Records Storage","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-112.0415,33.42045]}},{"type":"Feature","properties":{"name":"Cogent Data Center","operator":"Cogent Communications, Inc."},"geometry":{"type":"Point","coordinates":[-112.04781,33.40018]}},{"type":"Feature","properties":{"name":"Data Storage Centers","operator":""},"geometry":{"type":"Point","coordinates":[-112.03436,33.42175]}},{"type":"Feature","properties":{"name":"PhoenixNAP","operator":""},"geometry":{"type":"Point","coordinates":[-112.00942,33.41597]}},{"type":"Feature","properties":{"name":"Digital Realty Dallas DFW28","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.71286,32.96722]}},{"type":"Feature","properties":{"name":"Digital Realty Dallas DFW35","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.71023,32.96519]}},{"type":"Feature","properties":{"name":"Digital Realty Dallas DFW18","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.713,32.96544]}},{"type":"Feature","properties":{"name":"Digital Realty Dallas DFW16","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.71559,32.96596]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.71126,32.96619]}},{"type":"Feature","properties":{"name":"Digital Realty Dallas DFW29","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.71096,32.96723]}},{"type":"Feature","properties":{"name":"Alembic Computer Services, Inc.","operator":""},"geometry":{"type":"Point","coordinates":[-111.97734,33.40513]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-111.9974,33.4647]}},{"type":"Feature","properties":{"name":"Iron Mountain AZP-1","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-111.97592,33.45431]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-111.99698,33.46091]}},{"type":"Feature","properties":{"name":"Iron Mountain AZP-2","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-111.97794,33.45206]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-112.07075,33.49357]}},{"type":"Feature","properties":{"name":"Lumen","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-112.0708,33.4942]}},{"type":"Feature","properties":{"name":"J-Curve Technologies","operator":""},"geometry":{"type":"Point","coordinates":[-111.97115,33.41319]}},{"type":"Feature","properties":{"name":"Centersquare: Phoenix - (PHX1 - Mesa)","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-111.85904,33.42131]}},{"type":"Feature","properties":{"name":"Aligned Energy Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-112.11125,33.65896]}},{"type":"Feature","properties":{"name":"Accelera Data Systems","operator":""},"geometry":{"type":"Point","coordinates":[-112.11171,33.66475]}},{"type":"Feature","properties":{"name":"Flexential Phoenix - Deer Valley","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-112.09823,33.68466]}},{"type":"Feature","properties":{"name":"DataPro USA Web Development","operator":""},"geometry":{"type":"Point","coordinates":[-111.91398,33.61166]}},{"type":"Feature","properties":{"name":"Profit Finder Pro Software","operator":""},"geometry":{"type":"Point","coordinates":[-111.90205,33.62725]}},{"type":"Feature","properties":{"name":"VaultLogix","operator":""},"geometry":{"type":"Point","coordinates":[-111.9017,33.62737]}},{"type":"Feature","properties":{"name":"Iron Mountain Data Centers AZS-1","operator":""},"geometry":{"type":"Point","coordinates":[-111.8961,33.64467]}},{"type":"Feature","properties":{"name":"K-Motion Interactive","operator":""},"geometry":{"type":"Point","coordinates":[-111.88435,33.63448]}},{"type":"Feature","properties":{"name":"Google Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-111.67815,33.35526]}},{"type":"Feature","properties":{"name":"NTT PH1 Datacenter","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-111.61231,33.35381]}},{"type":"Feature","properties":{"name":"L3Harris Technologies Inc","operator":""},"geometry":{"type":"Point","coordinates":[-111.67165,33.3053]}},{"type":"Feature","properties":{"name":"AZ Labs","operator":""},"geometry":{"type":"Point","coordinates":[-111.67183,33.30627]}},{"type":"Feature","properties":{"name":"OptimumHQ","operator":""},"geometry":{"type":"Point","coordinates":[-111.75267,33.38041]}},{"type":"Feature","properties":{"name":"The Chatfield Group","operator":""},"geometry":{"type":"Point","coordinates":[-111.75289,33.3806]}},{"type":"Feature","properties":{"name":"Alliance Technology","operator":""},"geometry":{"type":"Point","coordinates":[-111.72841,33.37999]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-111.67799,33.35331]}},{"type":"Feature","properties":{"name":"Stream DFW IV","operator":"Stream"},"geometry":{"type":"Point","coordinates":[-96.6617,33.00011]}},{"type":"Feature","properties":{"name":"Stream Data Centers","operator":""},"geometry":{"type":"Point","coordinates":[-96.65455,32.98369]}},{"type":"Feature","properties":{"name":"Aligned Data Centers","operator":"Aligned Data Centers"},"geometry":{"type":"Point","coordinates":[-96.6574,33.00594]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.67685,33.0093]}},{"type":"Feature","properties":{"name":"Flexential Dallas - Plano","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-96.66633,33.00691]}},{"type":"Feature","properties":{"name":"Rice Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-95.44344,29.65818]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-95.5708,29.8217]}},{"type":"Feature","properties":{"name":"DXC Technology","operator":"DXC Technology"},"geometry":{"type":"Point","coordinates":[-95.56385,29.99509]}},{"type":"Feature","properties":{"name":"DXC Technology","operator":"DXC Technology"},"geometry":{"type":"Point","coordinates":[-95.56414,29.99721]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-111.63255,33.3473]}},{"type":"Feature","properties":{"name":"EdgeConneX PHX02 Data Center","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-111.64791,33.35186]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-111.629,33.34643]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-111.6258,33.34732]}},{"type":"Feature","properties":{"name":"Comarch","operator":""},"geometry":{"type":"Point","coordinates":[-111.63524,33.35668]}},{"type":"Feature","properties":{"name":"Apple Data Center","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[-111.60413,33.34671]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-111.60457,33.3466]}},{"type":"Feature","properties":{"name":"EdgeCore","operator":""},"geometry":{"type":"Point","coordinates":[-111.6198,33.34415]}},{"type":"Feature","properties":{"name":"Myndshift Technologies","operator":""},"geometry":{"type":"Point","coordinates":[-111.7192,33.47536]}},{"type":"Feature","properties":{"name":"MDC","operator":""},"geometry":{"type":"Point","coordinates":[-106.31,31.75002]}},{"type":"Feature","properties":{"name":"CenturyLink","operator":"CenturyLink"},"geometry":{"type":"Point","coordinates":[-106.7292,32.30959]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-95.48652,30.17786]}},{"type":"Feature","properties":{"name":"Stream Data Centers Houston","operator":""},"geometry":{"type":"Point","coordinates":[-95.48605,30.17814]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-103.8063,31.53293]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-103.80526,31.53293]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-103.80422,31.53294]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-103.80044,31.53338]}},{"type":"Feature","properties":{"name":"IONIC Digital Cedarvale","operator":"IONIC Digital"},"geometry":{"type":"Point","coordinates":[-103.44874,31.51258]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MTY1","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-100.35862,25.64917]}},{"type":"Feature","properties":{"name":"Centro de datos Equinix MO2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-100.13273,25.7247]}},{"type":"Feature","properties":{"name":"Centro de datos Triara","operator":"Triara"},"geometry":{"type":"Point","coordinates":[-100.17988,25.78407]}},{"type":"Feature","properties":{"name":"Centro de datos Equinix MO1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-100.19334,25.76695]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.36203,26.07785]}},{"type":"Feature","properties":{"name":"MARA Data Center","operator":"Marathon Digital Holdings"},"geometry":{"type":"Point","coordinates":[-97.73137,32.3423]}},{"type":"Feature","properties":{"name":"CyrusOne SAT10 & SAT11","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-98.78799,29.41852]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.78881,29.4185]}},{"type":"Feature","properties":{"name":"Center for Computation & Technology (CCT)","operator":""},"geometry":{"type":"Point","coordinates":[-91.17255,30.40745]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.80337,29.4162]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.80456,29.4162]}},{"type":"Feature","properties":{"name":"Microsoft TRP2","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.8041,29.4123]}},{"type":"Feature","properties":{"name":"Microsoft TRP1","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.80281,29.41221]}},{"type":"Feature","properties":{"name":"Microsoft TRP3 (SAT46)","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.80642,29.41338]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.78735,29.41889]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.71508,29.44972]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.71474,29.45227]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.71458,29.45097]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.69074,29.47803]}},{"type":"Feature","properties":{"name":"CyrusOne San Antonio II","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-98.67306,29.47093]}},{"type":"Feature","properties":{"name":"CyrusOne San Antonio IV","operator":""},"geometry":{"type":"Point","coordinates":[-98.67067,29.47079]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.69923,29.47012]}},{"type":"Feature","properties":{"name":"CHRISTUS Health","operator":"CHRISTUS Health"},"geometry":{"type":"Point","coordinates":[-98.68631,29.47035]}},{"type":"Feature","properties":{"name":"Frost Bank","operator":"Frost Bank"},"geometry":{"type":"Point","coordinates":[-98.68781,29.47027]}},{"type":"Feature","properties":{"name":"CyrusOne San Antonio I","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-98.6883,29.4663]}},{"type":"Feature","properties":{"name":"Lowe's Data Center","operator":"Lowe's"},"geometry":{"type":"Point","coordinates":[-98.68966,29.47286]}},{"type":"Feature","properties":{"name":"Valero Wiserman","operator":"Valero"},"geometry":{"type":"Point","coordinates":[-98.67998,29.47419]}},{"type":"Feature","properties":{"name":"Microsoft San Antonio","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.69305,29.47979]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-98.69635,29.48097]}},{"type":"Feature","properties":{"name":"Vantage Data Centers TX22","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-98.69749,29.4789]}},{"type":"Feature","properties":{"name":"CyrusOne San Antonio III","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-98.67226,29.46991]}},{"type":"Feature","properties":{"name":"Stream San Antonio II","operator":""},"geometry":{"type":"Point","coordinates":[-98.67186,29.47206]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.79688,31.19416]}},{"type":"Feature","properties":{"name":"QTS San Antonio II","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-98.65341,29.44919]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.6413,29.44718]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.64121,29.44791]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.64056,29.44659]}},{"type":"Feature","properties":{"name":"Texas Cryptologic Center","operator":"National Security Agency"},"geometry":{"type":"Point","coordinates":[-98.64088,29.44709]}},{"type":"Feature","properties":{"name":"Amazon","operator":""},"geometry":{"type":"Point","coordinates":[-98.63876,29.45055]}},{"type":"Feature","properties":{"name":"Lumen San Antonio 2","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-98.50656,29.43825]}},{"type":"Feature","properties":{"name":"H5 Data Centers San Antonio","operator":"H5 Data Centers"},"geometry":{"type":"Point","coordinates":[-98.48697,29.42937]}},{"type":"Feature","properties":{"name":"HEB","operator":"HEB"},"geometry":{"type":"Point","coordinates":[-98.54127,29.58024]}},{"type":"Feature","properties":{"name":"GVTC","operator":"GVTC"},"geometry":{"type":"Point","coordinates":[-98.46266,29.6864]}},{"type":"Feature","properties":{"name":"Amazon AWS SAT - 12807 Donop","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-98.39157,29.29293]}},{"type":"Feature","properties":{"name":"Digital Realty Austin AUS11","operator":""},"geometry":{"type":"Point","coordinates":[-97.69567,30.2121]}},{"type":"Feature","properties":{"name":"LightEdge Austin I","operator":""},"geometry":{"type":"Point","coordinates":[-97.71277,30.21434]}},{"type":"Feature","properties":{"name":"Lumen Austin 1","operator":""},"geometry":{"type":"Point","coordinates":[-97.71222,30.19646]}},{"type":"Feature","properties":{"name":"CyrusOne Austin Data Center III","operator":""},"geometry":{"type":"Point","coordinates":[-97.70161,30.20704]}},{"type":"Feature","properties":{"name":"Data Foundry - Texas 2","operator":""},"geometry":{"type":"Point","coordinates":[-97.71318,30.19976]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-97.70075,30.2074]}},{"type":"Feature","properties":{"name":"Data Foundry - Texas 1","operator":""},"geometry":{"type":"Point","coordinates":[-97.7134,30.1989]}},{"type":"Feature","properties":{"name":"LightEdge Austin II","operator":""},"geometry":{"type":"Point","coordinates":[-97.70698,30.20053]}},{"type":"Feature","properties":{"name":"CyrusOne Austin Data Center II","operator":""},"geometry":{"type":"Point","coordinates":[-97.698,30.20598]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-97.69771,30.20609]}},{"type":"Feature","properties":{"name":"Data Foundry Austin 1 Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-97.69608,30.2155]}},{"type":"Feature","properties":{"name":"Cortex supercomputer","operator":""},"geometry":{"type":"Point","coordinates":[-97.61927,30.21565]}},{"type":"Feature","properties":{"name":"Lumen Austin 3","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-97.72361,30.26137]}},{"type":"Feature","properties":{"name":"Alpheus DataCenter","operator":"Alpheus"},"geometry":{"type":"Point","coordinates":[-97.72204,30.26113]}},{"type":"Feature","properties":{"name":"Element Critical","operator":""},"geometry":{"type":"Point","coordinates":[-97.69636,30.34283]}},{"type":"Feature","properties":{"name":"Switch: The Rock","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-97.67265,30.48825]}},{"type":"Feature","properties":{"name":"Thin-nology","operator":""},"geometry":{"type":"Point","coordinates":[-97.59165,30.42112]}},{"type":"Feature","properties":{"name":"Skybox Houston One","operator":"Skybox"},"geometry":{"type":"Point","coordinates":[-95.75515,29.80289]}},{"type":"Feature","properties":{"name":"DXC Technology","operator":"DXC Technology"},"geometry":{"type":"Point","coordinates":[-95.86383,30.01825]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-90.18799,32.41181]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-90.18957,32.41193]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-90.19056,32.41195]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-97.29848,31.05743]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-90.19229,32.41182]}},{"type":"Feature","properties":{"name":"Meta Los Lunas Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-106.77907,34.83041]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-106.77654,34.83044]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-106.77898,34.82592]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-106.78256,34.82591]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-106.78399,34.83031]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-97.06232,32.44194]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-97.06109,32.43996]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-97.06319,32.44347]}},{"type":"Feature","properties":{"name":"Novartis","operator":""},"geometry":{"type":"Point","coordinates":[-97.31977,32.65113]}},{"type":"Feature","properties":{"name":"Alinged Data Center","operator":"Aligned Data Centers, LLC"},"geometry":{"type":"Point","coordinates":[-97.07513,32.54977]}},{"type":"Feature","properties":{"name":"Cyxtera Dallas-Fort Worth Data Center","operator":"Cyxtera"},"geometry":{"type":"Point","coordinates":[-97.04101,32.8327]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-97.07024,32.8504]}},{"type":"Feature","properties":{"name":"Facebook Fort Worth Datacenter","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-97.2558,32.98867]}},{"type":"Feature","properties":{"name":"Facebook Fort Worth Datacenter","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-97.25953,32.98379]}},{"type":"Feature","properties":{"name":"Facebook Fort Worth Datacenter","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-97.25538,32.98512]}},{"type":"Feature","properties":{"name":"QTS Data Center","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-97.25941,32.98879]}},{"type":"Feature","properties":{"name":"CITIGROUP TECHNOLOGY INC","operator":""},"geometry":{"type":"Point","coordinates":[-97.24549,33.00649]}},{"type":"Feature","properties":{"name":"Charles Schwab Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-97.24602,33.0046]}},{"type":"Feature","properties":{"name":"Verizon Wireless Mew Building","operator":""},"geometry":{"type":"Point","coordinates":[-97.1566,32.97219]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-106.78044,34.8302]}},{"type":"Feature","properties":{"name":"Molina Healthcare","operator":""},"geometry":{"type":"Point","coordinates":[-106.61812,34.99551]}},{"type":"Feature","properties":{"name":"HPC","operator":"Sandia National Laboratories"},"geometry":{"type":"Point","coordinates":[-106.54281,35.05006]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-106.54214,35.0483]}},{"type":"Feature","properties":{"name":"123 Central","operator":"bigbyte.cc"},"geometry":{"type":"Point","coordinates":[-106.64899,35.08445]}},{"type":"Feature","properties":{"name":"505 Marquette","operator":""},"geometry":{"type":"Point","coordinates":[-106.65265,35.08863]}},{"type":"Feature","properties":{"name":"UNM Data Center","operator":"UNM"},"geometry":{"type":"Point","coordinates":[-106.61535,35.08674]}},{"type":"Feature","properties":{"name":"Oso Grande","operator":"Oso Grande"},"geometry":{"type":"Point","coordinates":[-106.65367,35.0925]}},{"type":"Feature","properties":{"name":"Southwest Cyberport","operator":""},"geometry":{"type":"Point","coordinates":[-106.58935,35.10329]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.80148,32.54549]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.80146,32.54418]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.80147,32.54289]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.80148,32.54157]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.8015,32.54026]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.78967,32.54401]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.78965,32.54534]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.80453,32.53881]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.79343,32.53858]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.793,32.5427]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.793,32.54402]}},{"type":"Feature","properties":{"name":"Compass Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.79304,32.54532]}},{"type":"Feature","properties":{"name":"DataBank Dallas Empire Central Data Center","operator":"DataBank"},"geometry":{"type":"Point","coordinates":[-96.87377,32.82189]}},{"type":"Feature","properties":{"name":"Lumen Dallas - 3180 Irving Blvd.","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-96.86866,32.80685]}},{"type":"Feature","properties":{"name":"TierPoint Dallas Data Center","operator":"TierPoint"},"geometry":{"type":"Point","coordinates":[-96.85739,32.80797]}},{"type":"Feature","properties":{"name":"CoreSpace Dallas","operator":"CoreSpace"},"geometry":{"type":"Point","coordinates":[-96.87298,32.81771]}},{"type":"Feature","properties":{"name":"Prime DFW01-01","operator":"Prime"},"geometry":{"type":"Point","coordinates":[-96.8786,32.83797]}},{"type":"Feature","properties":{"name":"Prime DFW01-01","operator":"Prime"},"geometry":{"type":"Point","coordinates":[-96.87994,32.83784]}},{"type":"Feature","properties":{"name":"Lumen Dallas 6","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-96.8843,32.82799]}},{"type":"Feature","properties":{"name":"Digital Realty DFW36","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.87381,32.82756]}},{"type":"Feature","properties":{"name":"John F. Simms Building","operator":"SONM"},"geometry":{"type":"Point","coordinates":[-105.95666,35.6724]}},{"type":"Feature","properties":{"name":"DataBank","operator":""},"geometry":{"type":"Point","coordinates":[-96.79835,32.77829]}},{"type":"Feature","properties":{"name":"Rad Web Hosting","operator":""},"geometry":{"type":"Point","coordinates":[-96.7985,32.77845]}},{"type":"Feature","properties":{"name":"VIRTBIZ","operator":""},"geometry":{"type":"Point","coordinates":[-96.78281,32.78255]}},{"type":"Feature","properties":{"name":"Equinix Infomart","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-96.81952,32.80084]}},{"type":"Feature","properties":{"name":"Flexential Dallas - Downtown Dallas","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-96.81937,32.80041]}},{"type":"Feature","properties":{"name":"Live Oak Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.79448,32.78364]}},{"type":"Feature","properties":{"name":"QTS Irving - Dallas Data Center Campus","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-96.98234,32.89731]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.9819,32.89486]}},{"type":"Feature","properties":{"name":"Flexential Dallas - Richardson","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-96.75255,32.99468]}},{"type":"Feature","properties":{"name":"Digital Realty Dallas DFW17","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-96.7135,32.96632]}},{"type":"Feature","properties":{"name":"Rackspace Richardson DFW3","operator":"Rackspace"},"geometry":{"type":"Point","coordinates":[-96.71547,32.96484]}},{"type":"Feature","properties":{"name":"DataBank Plano Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.81506,33.08768]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.6815,33.09616]}},{"type":"Feature","properties":{"name":"Evoque Allen DA1","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-96.68384,33.09507]}},{"type":"Feature","properties":{"name":"Experian McKinney Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.72563,33.17178]}},{"type":"Feature","properties":{"name":"T5@Colorado Springs","operator":""},"geometry":{"type":"Point","coordinates":[-104.78845,38.78612]}},{"type":"Feature","properties":{"name":"Walmart Colorado Data Center","operator":"Walmart"},"geometry":{"type":"Point","coordinates":[-104.78762,38.98583]}},{"type":"Feature","properties":{"name":"SAP COS02","operator":"SAP"},"geometry":{"type":"Point","coordinates":[-104.78642,38.98878]}},{"type":"Feature","properties":{"name":"Cisco Allen","operator":""},"geometry":{"type":"Point","coordinates":[-96.66134,33.13589]}},{"type":"Feature","properties":{"name":"CyrusOne Allen","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-96.66013,33.13838]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.65954,33.14061]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.65601,33.13781]}},{"type":"Feature","properties":{"name":"Tierpoint Dallas-Allen","operator":""},"geometry":{"type":"Point","coordinates":[-96.65729,33.13799]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.90751,41.12536]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.89934,41.12413]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.89815,41.12394]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.89934,41.12519]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.89815,41.12538]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.89951,41.1264]}},{"type":"Feature","properties":{"name":"MineOne Wyoming Data Center","operator":"MineOne"},"geometry":{"type":"Point","coordinates":[-104.89524,41.12525]}},{"type":"Feature","properties":{"name":"CYS41 Datacenter","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-104.89706,41.12429]}},{"type":"Feature","properties":{"name":"Windbreak Cable","operator":""},"geometry":{"type":"Point","coordinates":[-104.06851,41.18259]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.52209,38.80267]}},{"type":"Feature","properties":{"name":"Meta Eagle Mountain Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-112.01507,40.26851]}},{"type":"Feature","properties":{"name":"Meta Eagle Mountain Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-112.01534,40.26555]}},{"type":"Feature","properties":{"name":"Meta Eagle Mountain Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-112.01457,40.27243]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-112.01951,40.26955]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-112.01948,40.26654]}},{"type":"Feature","properties":{"name":"Ebay","operator":""},"geometry":{"type":"Point","coordinates":[-112.05073,40.5639]}},{"type":"Feature","properties":{"name":"eBay","operator":""},"geometry":{"type":"Point","coordinates":[-112.04775,40.56339]}},{"type":"Feature","properties":{"name":"Flexential Salt Lake City - Millcreek","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-111.88499,40.68539]}},{"type":"Feature","properties":{"name":"Flexential Salt Lake City - South Valley","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-111.9861,40.62041]}},{"type":"Feature","properties":{"name":"Flexential Salt Lake City - Downtown","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-111.9551,40.75637]}},{"type":"Feature","properties":{"name":"Flexential Salt Lake City - Fair Park","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-111.92028,40.76683]}},{"type":"Feature","properties":{"name":"Flexential Salt Lake City - Lindon","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-111.72788,40.33265]}},{"type":"Feature","properties":{"name":"Strata Networks","operator":""},"geometry":{"type":"Point","coordinates":[-109.52911,40.45655]}},{"type":"Feature","properties":{"name":"Family History Center","operator":"The Church of Jesus Christ of Latter-day Saints"},"geometry":{"type":"Point","coordinates":[-111.30425,42.31733]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-105.61055,44.18921]}},{"type":"Feature","properties":{"name":"Argo Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-100.86897,33.77833]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-98.52494,33.95345]}},{"type":"Feature","properties":{"name":"Choctaw Nation of Oklahoma Data Center","operator":"Choctaw Nation of oklahoma"},"geometry":{"type":"Point","coordinates":[-96.40291,33.97164]}},{"type":"Feature","properties":{"name":"VentureData","operator":""},"geometry":{"type":"Point","coordinates":[-111.78207,43.82519]}},{"type":"Feature","properties":{"name":"Verizon","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-104.87796,39.58928]}},{"type":"Feature","properties":{"name":"Time Warner Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[-104.86009,39.59984]}},{"type":"Feature","properties":{"name":"Time Warner Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[-104.8603,39.59892]}},{"type":"Feature","properties":{"name":"Flexential Denver - Englewood","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-104.83778,39.55883]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.83343,39.55908]}},{"type":"Feature","properties":{"name":"zColo by Zayo","operator":""},"geometry":{"type":"Point","coordinates":[-104.84723,39.59113]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.84712,39.59004]}},{"type":"Feature","properties":{"name":"Flexential - Denver - Centennial Data Center","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-104.84316,39.59387]}},{"type":"Feature","properties":{"name":"Xfinity/Comcast Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-104.83215,39.58836]}},{"type":"Feature","properties":{"name":"Flexential - Denver - Aurora","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-104.84883,39.66105]}},{"type":"Feature","properties":{"name":"Insurance Exchange Building","operator":""},"geometry":{"type":"Point","coordinates":[-104.99576,39.74557]}},{"type":"Feature","properties":{"name":"Flexential Denver - Downtown","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-104.99416,39.74597]}},{"type":"Feature","properties":{"name":"Pearl Plaza Office Building","operator":""},"geometry":{"type":"Point","coordinates":[-104.97937,39.74523]}},{"type":"Feature","properties":{"name":"Rack59 Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-97.64975,35.4672]}},{"type":"Feature","properties":{"name":"Google - Thornton","operator":"Google"},"geometry":{"type":"Point","coordinates":[-104.98348,39.92246]}},{"type":"Feature","properties":{"name":"JPMorgan Chase","operator":"JPMorgan Chase"},"geometry":{"type":"Point","coordinates":[-105.02073,39.98904]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.71283,39.72949]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-104.7081,39.73373]}},{"type":"Feature","properties":{"name":"NCAR-Wyoming Supercomputing Center","operator":"University Corporation for Atmospheric Research"},"geometry":{"type":"Point","coordinates":[-104.89755,41.12857]}},{"type":"Feature","properties":{"name":"Microsoft CYS Datacenter","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-104.90373,41.12377]}},{"type":"Feature","properties":{"name":"University Corporation for Atmospheric Research","operator":"University Corporation for Atmospheric Research"},"geometry":{"type":"Point","coordinates":[-104.89724,41.12869]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.9082,41.12188]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.90958,41.12186]}},{"type":"Feature","properties":{"name":"CYS42 Datacenter","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-104.90894,41.12528]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.90229,41.12642]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-104.90212,41.12538]}},{"type":"Feature","properties":{"name":"TulsaConnect","operator":""},"geometry":{"type":"Point","coordinates":[-95.99082,36.14845]}},{"type":"Feature","properties":{"name":"Windstream","operator":""},"geometry":{"type":"Point","coordinates":[-95.99051,36.1485]}},{"type":"Feature","properties":{"name":"TulsaConnect","operator":""},"geometry":{"type":"Point","coordinates":[-95.98919,36.15329]}},{"type":"Feature","properties":{"name":"TierPoint","operator":""},"geometry":{"type":"Point","coordinates":[-95.98869,36.15861]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-95.85417,36.08129]}},{"type":"Feature","properties":{"name":"TulsaConnect DC3","operator":""},"geometry":{"type":"Point","coordinates":[-95.83828,36.09947]}},{"type":"Feature","properties":{"name":"Cherokee Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-95.91034,36.2625]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.825,41.54062]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.82808,41.54055]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.82653,41.53984]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.82886,41.5397]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70242,41.51673]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.7026,41.51587]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70263,41.51856]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70262,41.51766]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.72023,41.51695]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.72078,41.51595]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.72135,41.51494]}},{"type":"Feature","properties":{"name":"SC","operator":"SC"},"geometry":{"type":"Point","coordinates":[-98.58847,37.27842]}},{"type":"Feature","properties":{"name":"Cloud Storage Corp","operator":""},"geometry":{"type":"Point","coordinates":[-99.30024,38.87215]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.72187,41.51397]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70641,41.51584]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70643,41.51673]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70645,41.51852]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.70644,41.51763]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.52818,41.55806]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.52765,41.5581]}},{"type":"Feature","properties":{"name":"Aureon","operator":""},"geometry":{"type":"Point","coordinates":[-93.63107,41.588]}},{"type":"Feature","properties":{"name":"Facebook Altoona Data Center 2","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.50828,41.66549]}},{"type":"Feature","properties":{"name":"Facebook Altoona Data Center 3","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.50647,41.66719]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.50989,41.67564]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.50612,41.67589]}},{"type":"Feature","properties":{"name":"Lightedge Des Moines 2","operator":""},"geometry":{"type":"Point","coordinates":[-93.45612,41.66688]}},{"type":"Feature","properties":{"name":"Lightedge Des Moines 1","operator":""},"geometry":{"type":"Point","coordinates":[-93.4555,41.66756]}},{"type":"Feature","properties":{"name":"ForceAmp.com","operator":""},"geometry":{"type":"Point","coordinates":[-91.58709,41.70402]}},{"type":"Feature","properties":{"name":"Geneseo Communications Inc","operator":""},"geometry":{"type":"Point","coordinates":[-90.48251,41.55022]}},{"type":"Feature","properties":{"name":"Flexential Minneapolis - Chaska","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-93.59911,44.85149]}},{"type":"Feature","properties":{"name":"Verizon - Bloomington Network","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-93.37546,44.80725]}},{"type":"Feature","properties":{"name":"Minnesota Gateway Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-93.25489,44.97138]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.28017,44.99148]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.06508,44.73496]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-93.06197,44.73445]}},{"type":"Feature","properties":{"name":"H5 Minneapolis","operator":"H5"},"geometry":{"type":"Point","coordinates":[-93.14758,44.97196]}},{"type":"Feature","properties":{"name":"Epic / Mayo Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-92.5222,44.07074]}},{"type":"Feature","properties":{"name":"West Wisconsin Telcom","operator":"West Wisconsin Telcom"},"geometry":{"type":"Point","coordinates":[-91.92,44.8772]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-95.5125,35.56826]}},{"type":"Feature","properties":{"name":"TierPoint Little Rock","operator":""},"geometry":{"type":"Point","coordinates":[-92.44473,34.75627]}},{"type":"Feature","properties":{"name":"Crane DC - Portland","operator":"Crane Data Centers Inc."},"geometry":{"type":"Point","coordinates":[-123.07904,45.5147]}},{"type":"Feature","properties":{"name":"Siemens EDA - HDC / Data Center","operator":"Siemens Digital Industries Software"},"geometry":{"type":"Point","coordinates":[-122.76584,45.31869]}},{"type":"Feature","properties":{"name":"Data Center","operator":"Oregon Health & Science University"},"geometry":{"type":"Point","coordinates":[-122.87552,45.52668]}},{"type":"Feature","properties":{"name":"Digital Fortress - Portland 3","operator":"Digital Fortress, Inc"},"geometry":{"type":"Point","coordinates":[-122.77641,45.47563]}},{"type":"Feature","properties":{"name":"Digital Fortress - Portland 2","operator":"Digital Fortress, Inc"},"geometry":{"type":"Point","coordinates":[-122.77609,45.47621]}},{"type":"Feature","properties":{"name":"NTT RagingWire DC - Hillsboro","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-122.9374,45.54978]}},{"type":"Feature","properties":{"name":"Stack Infrastructure - POR01","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-122.92779,45.54924]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 3","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.93793,45.55956]}},{"type":"Feature","properties":{"name":"Aligned DC - PDX-01","operator":"Aligned Data Centers"},"geometry":{"type":"Point","coordinates":[-122.94902,45.554]}},{"type":"Feature","properties":{"name":"NTT RagingWire DC - Hillsboro","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-122.93798,45.54813]}},{"type":"Feature","properties":{"name":"OVHcloud - Hillsboro","operator":"OVHcloud"},"geometry":{"type":"Point","coordinates":[-122.95603,45.5341]}},{"type":"Feature","properties":{"name":"Stack Infrastructure - POR03","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-122.93792,45.5541]}},{"type":"Feature","properties":{"name":"Stack Infrastructure - POR03","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-122.94128,45.5542]}},{"type":"Feature","properties":{"name":"Stack Infrastructure - POR03","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-122.93976,45.55422]}},{"type":"Feature","properties":{"name":"xAI Colossus","operator":"xAI"},"geometry":{"type":"Point","coordinates":[-90.15657,35.05981]}},{"type":"Feature","properties":{"name":"xAI Macrohardrr","operator":"xAI"},"geometry":{"type":"Point","coordinates":[-90.03463,34.99365]}},{"type":"Feature","properties":{"name":"xAI Macrohard Colossus 2","operator":"xAI"},"geometry":{"type":"Point","coordinates":[-90.03506,34.99752]}},{"type":"Feature","properties":{"name":"Searcy Information Technologies","operator":"City of Searcy"},"geometry":{"type":"Point","coordinates":[-91.74095,35.24924]}},{"type":"Feature","properties":{"name":"Stack Infrastructure - POR03","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-122.93787,45.55279]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 4","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.9395,45.5554]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 4 Expansion","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.94118,45.55541]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 5","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.93957,45.55627]}},{"type":"Feature","properties":{"name":"Adobe Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-122.93208,45.55013]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.92788,45.55838]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.92999,45.55833]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.93173,45.55856]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.93323,45.5587]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.93503,45.55895]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 2","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.91715,45.55822]}},{"type":"Feature","properties":{"name":"Digital Realty PDX11 Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.91656,45.56793]}},{"type":"Feature","properties":{"name":"Digital Realty PDX11 Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.92016,45.56861]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 3","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.92036,45.57027]}},{"type":"Feature","properties":{"name":"Oracle","operator":""},"geometry":{"type":"Point","coordinates":[-122.89652,45.54404]}},{"type":"Feature","properties":{"name":"Verizon Hillsboro (Tanasbourne) Data Center","operator":"Verizon Business"},"geometry":{"type":"Point","coordinates":[-122.88232,45.54463]}},{"type":"Feature","properties":{"name":"TGN Hillsboro","operator":"Tata Communications"},"geometry":{"type":"Point","coordinates":[-122.89381,45.54651]}},{"type":"Feature","properties":{"name":"Stack Infrastructure - POR02","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-122.89767,45.54732]}},{"type":"Feature","properties":{"name":"Digital Realty PDX10 Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.8917,45.54769]}},{"type":"Feature","properties":{"name":"EdgeConneX - Portland","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-122.91242,45.55657]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 1","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.89094,45.54981]}},{"type":"Feature","properties":{"name":"Flexential Portland - Hillsboro 1","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-122.89221,45.55027]}},{"type":"Feature","properties":{"name":"QTS Data Center - Hillsboro 3","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-122.91887,45.57179]}},{"type":"Feature","properties":{"name":"Pittock Block","operator":""},"geometry":{"type":"Point","coordinates":[-122.68082,45.52145]}},{"type":"Feature","properties":{"name":"Digital Fortress - Portland 1","operator":"Digital Fortress, Inc"},"geometry":{"type":"Point","coordinates":[-122.68175,45.52126]}},{"type":"Feature","properties":{"name":"The Pittock Internet Exchange","operator":"Alco Properties"},"geometry":{"type":"Point","coordinates":[-122.68056,45.52142]}},{"type":"Feature","properties":{"name":"H5 DC - Portland","operator":"H5 Data Centers"},"geometry":{"type":"Point","coordinates":[-122.68377,45.53169]}},{"type":"Feature","properties":{"name":"Google Data Center The Dalles Oregon","operator":"Google"},"geometry":{"type":"Point","coordinates":[-121.20141,45.63243]}},{"type":"Feature","properties":{"name":"Google Taylor Lake Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-121.20219,45.63851]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-121.20733,45.6232]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-121.20909,45.62481]}},{"type":"Feature","properties":{"name":"U.S. Bank National Data Process Center","operator":""},"geometry":{"type":"Point","coordinates":[-94.86476,38.93592]}},{"type":"Feature","properties":{"name":"Data Center Lenexa","operator":""},"geometry":{"type":"Point","coordinates":[-94.77041,38.92523]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.76837,38.92678]}},{"type":"Feature","properties":{"name":"CTI Biopharma","operator":""},"geometry":{"type":"Point","coordinates":[-122.35665,47.61779]}},{"type":"Feature","properties":{"name":"KOMO Plaza East","operator":""},"geometry":{"type":"Point","coordinates":[-122.34837,47.61926]}},{"type":"Feature","properties":{"name":"KOMO Plaza West","operator":""},"geometry":{"type":"Point","coordinates":[-122.34854,47.61888]}},{"type":"Feature","properties":{"name":"Centeris SH2 Build-to-Suit","operator":""},"geometry":{"type":"Point","coordinates":[-122.27989,47.15884]}},{"type":"Feature","properties":{"name":"State Farm Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-94.86797,38.9399]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.86031,38.9391]}},{"type":"Feature","properties":{"name":"TierPoint","operator":"TierPoint"},"geometry":{"type":"Point","coordinates":[-94.75526,38.94046]}},{"type":"Feature","properties":{"name":"Patmos Hosting, Inc.","operator":"Patmos Hosting, Inc."},"geometry":{"type":"Point","coordinates":[-94.57945,39.09435]}},{"type":"Feature","properties":{"name":"Netrality Data Centers","operator":""},"geometry":{"type":"Point","coordinates":[-94.58115,39.10091]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.57882,39.10118]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.68506,39.29012]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.68487,39.30234]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.67587,39.29052]}},{"type":"Feature","properties":{"name":"Black Rock Financial Management","operator":""},"geometry":{"type":"Point","coordinates":[-94.67794,39.29543]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.67344,39.29541]}},{"type":"Feature","properties":{"name":"Meta Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-94.59817,39.32272]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-94.59476,39.32278]}},{"type":"Feature","properties":{"name":"Centeris","operator":""},"geometry":{"type":"Point","coordinates":[-122.28013,47.15926]}},{"type":"Feature","properties":{"name":"Centeris SH1 Colocation","operator":""},"geometry":{"type":"Point","coordinates":[-122.27925,47.16083]}},{"type":"Feature","properties":{"name":"Intergate Seattle East Building 1","operator":"Sabey"},"geometry":{"type":"Point","coordinates":[-122.28843,47.49482]}},{"type":"Feature","properties":{"name":"Intergate Seattle East Building 5","operator":"Sabey"},"geometry":{"type":"Point","coordinates":[-122.28966,47.49197]}},{"type":"Feature","properties":{"name":"Intergate Seattle East Building 3","operator":"Sabey"},"geometry":{"type":"Point","coordinates":[-122.29027,47.49368]}},{"type":"Feature","properties":{"name":"Intergate Seattle East Building 4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.28895,47.49318]}},{"type":"Feature","properties":{"name":"Intergate Seattle West Building C","operator":"Sabey"},"geometry":{"type":"Point","coordinates":[-122.29432,47.49398]}},{"type":"Feature","properties":{"name":"Intergate Seattle West Building A","operator":"Sabey"},"geometry":{"type":"Point","coordinates":[-122.29346,47.49217]}},{"type":"Feature","properties":{"name":"Intergate Seattle West Building B","operator":"Sabey"},"geometry":{"type":"Point","coordinates":[-122.29372,47.49316]}},{"type":"Feature","properties":{"name":"Intergate Seattle East Building 2","operator":""},"geometry":{"type":"Point","coordinates":[-122.29075,47.49496]}},{"type":"Feature","properties":{"name":"Equinix SE3 Data Center","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-122.33979,47.61442]}},{"type":"Feature","properties":{"name":"Westin Building","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-122.33897,47.61438]}},{"type":"Feature","properties":{"name":"The Seattle Times","operator":"H5 Data Centers"},"geometry":{"type":"Point","coordinates":[-122.33658,47.61888]}},{"type":"Feature","properties":{"name":"Comcast","operator":"Comcast"},"geometry":{"type":"Point","coordinates":[-122.31732,47.69328]}},{"type":"Feature","properties":{"name":"Carfax","operator":""},"geometry":{"type":"Point","coordinates":[-92.28871,38.92344]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.61983,45.8517]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.61979,45.85307]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.61988,45.85388]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.61989,45.85527]}},{"type":"Feature","properties":{"name":"Percheron DC","operator":"Rowan Green Data LLC"},"geometry":{"type":"Point","coordinates":[-119.82267,45.70845]}},{"type":"Feature","properties":{"name":"Percheron DC","operator":"Rowan Green Data LLC"},"geometry":{"type":"Point","coordinates":[-119.8216,45.70941]}},{"type":"Feature","properties":{"name":"Percheron DC","operator":"Rowan Green Data LLC"},"geometry":{"type":"Point","coordinates":[-119.82653,45.71151]}},{"type":"Feature","properties":{"name":"Percheron DC","operator":"Rowan Green Data LLC"},"geometry":{"type":"Point","coordinates":[-119.82506,45.71213]}},{"type":"Feature","properties":{"name":"amazon web services","operator":"amazon web services"},"geometry":{"type":"Point","coordinates":[-119.85894,45.8097]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.63223,45.81996]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.63213,45.81873]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.63641,45.81873]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.63641,45.81997]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.69439,45.83631]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.6888,45.83794]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.69358,45.83755]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.69012,45.83666]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.65284,45.84121]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.63052,45.85239]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.63068,45.85095]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.65529,45.84049]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.65805,45.84104]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.6303,45.85378]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.65136,45.84073]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.654,45.83985]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.65573,45.84122]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.65184,45.84152]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60379,45.84635]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60572,45.84635]}},{"type":"Feature","properties":{"name":"Genome Data Center","operator":"Washington University in St. Louis"},"geometry":{"type":"Point","coordinates":[-90.25557,38.63659]}},{"type":"Feature","properties":{"name":"Netrality Data Centers","operator":""},"geometry":{"type":"Point","coordinates":[-90.19721,38.62923]}},{"type":"Feature","properties":{"name":"TierPoint","operator":""},"geometry":{"type":"Point","coordinates":[-90.19651,38.62975]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60712,45.84636]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60915,45.84648]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60525,45.86226]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60281,45.84756]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60524,45.85876]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60527,45.86012]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60528,45.861]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.60486,45.85807]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.34169,45.87943]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26873,45.80961]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26877,45.80824]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26879,45.81172]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26882,45.81034]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.36706,45.79776]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.36681,45.7992]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.36212,45.79778]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.35842,45.79965]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.35897,45.79775]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.36186,45.799]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.27826,45.81121]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26845,45.91625]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26805,45.91754]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26718,45.914]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.22873,45.92047]}},{"type":"Feature","properties":{"name":"Compute North","operator":""},"geometry":{"type":"Point","coordinates":[-99.03863,40.72627]}},{"type":"Feature","properties":{"name":"Travelers Insurance","operator":"Travelers Insurance"},"geometry":{"type":"Point","coordinates":[-96.14519,41.12782]}},{"type":"Feature","properties":{"name":"Meta Sarpy Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-96.14152,41.11188]}},{"type":"Feature","properties":{"name":"Meta Sarpy Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-96.14287,41.11445]}},{"type":"Feature","properties":{"name":"Meta Sarpy Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-96.14482,41.12072]}},{"type":"Feature","properties":{"name":"Meta Sarpy Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-96.14428,41.12325]}},{"type":"Feature","properties":{"name":"Meta Sarpy Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-96.13311,41.12349]}},{"type":"Feature","properties":{"name":"Verizon Wireless","operator":"Verizon Wireless"},"geometry":{"type":"Point","coordinates":[-96.14777,41.22031]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.15623,41.13449]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.15156,41.13815]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.14659,41.13524]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.1444,41.13483]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.22706,45.92048]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.22618,45.91958]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88314,47.2395]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88315,47.23855]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88367,47.23765]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88437,47.23671]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.89524,47.23682]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88754,47.23946]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88725,47.23762]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88696,47.23671]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-119.88755,47.23857]}},{"type":"Feature","properties":{"name":"Intergate Columbia","operator":""},"geometry":{"type":"Point","coordinates":[-120.19133,47.40834]}},{"type":"Feature","properties":{"name":"Microsoft EAT02","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-120.20821,47.41682]}},{"type":"Feature","properties":{"name":"EAT13","operator":""},"geometry":{"type":"Point","coordinates":[-120.16049,47.35837]}},{"type":"Feature","properties":{"name":"EAT12","operator":""},"geometry":{"type":"Point","coordinates":[-120.16006,47.35738]}},{"type":"Feature","properties":{"name":"EAT14","operator":""},"geometry":{"type":"Point","coordinates":[-120.16061,47.35944]}},{"type":"Feature","properties":{"name":"Actapio","operator":"Actapio"},"geometry":{"type":"Point","coordinates":[-120.21442,47.40758]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-120.21756,47.39213]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-120.21791,47.39178]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-120.21754,47.39174]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-120.21696,47.39177]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-120.21463,47.40765]}},{"type":"Feature","properties":{"name":"Fidelity","operator":"Fidelity"},"geometry":{"type":"Point","coordinates":[-96.08348,41.16553]}},{"type":"Feature","properties":{"name":"Yahoo","operator":"Yahoo"},"geometry":{"type":"Point","coordinates":[-96.08516,41.18051]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-96.08891,41.34356]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.08758,41.34193]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.09408,41.34525]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-96.08453,41.33912]}},{"type":"Feature","properties":{"name":"Union Pacific Jack Koraleski Technology, Research & Development Center","operator":"Union Pacific Railroad"},"geometry":{"type":"Point","coordinates":[-96.05034,41.31789]}},{"type":"Feature","properties":{"name":"Verizon","operator":""},"geometry":{"type":"Point","coordinates":[-96.02866,41.3383]}},{"type":"Feature","properties":{"name":"Verizon","operator":""},"geometry":{"type":"Point","coordinates":[-96.02777,41.3384]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.86421,41.22186]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80624,41.17741]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80097,41.17776]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80108,41.17551]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80136,41.17251]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80696,41.1755]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80561,41.1755]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80469,41.1755]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80335,41.1755]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80242,41.17551]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80426,41.17271]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80276,41.17271]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-95.87799,41.21206]}},{"type":"Feature","properties":{"name":"Intergate Columbia D","operator":"Sabey Data Centers"},"geometry":{"type":"Point","coordinates":[-120.1915,47.40759]}},{"type":"Feature","properties":{"name":"Intergate Columbia B","operator":"Sabey Data Centers"},"geometry":{"type":"Point","coordinates":[-120.18776,47.40726]}},{"type":"Feature","properties":{"name":"Intergate Columbia A","operator":"Sabey Data Centers"},"geometry":{"type":"Point","coordinates":[-120.1895,47.40848]}},{"type":"Feature","properties":{"name":"Microsoft EAT04","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-120.21432,47.41959]}},{"type":"Feature","properties":{"name":"Microsoft EAT03","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-120.20822,47.41827]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.86413,47.23765]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.86429,47.23861]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.86302,47.23997]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.85947,47.23823]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.85946,47.23887]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.85951,47.23944]}},{"type":"Feature","properties":{"name":"NTT Data Quincy","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-119.86585,47.24353]}},{"type":"Feature","properties":{"name":"CyrusOne Quincy","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-119.86974,47.24505]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.86918,47.24354]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.81585,47.24633]}},{"type":"Feature","properties":{"name":"Intergate Quincy Data Center","operator":"Sabey Data Centers"},"geometry":{"type":"Point","coordinates":[-119.8158,47.24485]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.81985,47.25272]}},{"type":"Feature","properties":{"name":"H5 Data Center","operator":"Intuit"},"geometry":{"type":"Point","coordinates":[-119.81913,47.25293]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.82898,47.24668]}},{"type":"Feature","properties":{"name":"Yahoo Data Center","operator":"Yahoo"},"geometry":{"type":"Point","coordinates":[-119.82638,47.24653]}},{"type":"Feature","properties":{"name":"Vantage WA13","operator":""},"geometry":{"type":"Point","coordinates":[-119.81362,47.25223]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.82923,47.24592]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.82985,47.24606]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.82821,47.24606]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.8287,47.24613]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.81824,47.24481]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.8276,47.24607]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.82556,47.24765]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.81347,47.24628]}},{"type":"Feature","properties":{"name":"CyrusOne OCB1 Council Bluffs","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-95.87814,41.21233]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80495,41.17726]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80324,41.17784]}},{"type":"Feature","properties":{"name":"1623 Farnam","operator":"News-Press & Gazette Company"},"geometry":{"type":"Point","coordinates":[-95.93789,41.25726]}},{"type":"Feature","properties":{"name":"First National Technical Center","operator":"First National of Nebraska"},"geometry":{"type":"Point","coordinates":[-95.93653,41.26143]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-95.86424,41.22143]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.78923,41.17382]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.80015,41.17537]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-95.79275,41.17382]}},{"type":"Feature","properties":{"name":"ADP South Dakota","operator":""},"geometry":{"type":"Point","coordinates":[-96.7944,43.59992]}},{"type":"Feature","properties":{"name":"TierPoint Sioux Falls West Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-96.80922,43.6071]}},{"type":"Feature","properties":{"name":"CenturyLink","operator":""},"geometry":{"type":"Point","coordinates":[-93.99739,39.74406]}},{"type":"Feature","properties":{"name":"Facebook Altoona Data Center 1","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.51489,41.66421]}},{"type":"Feature","properties":{"name":"Facebook Altoona Data Center 4","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.51647,41.66781]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.81494,47.24446]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-119.81342,47.24759]}},{"type":"Feature","properties":{"name":"Vantage WA11","operator":""},"geometry":{"type":"Point","coordinates":[-119.81471,47.25025]}},{"type":"Feature","properties":{"name":"Vantage WA12","operator":""},"geometry":{"type":"Point","coordinates":[-119.81386,47.25401]}},{"type":"Feature","properties":{"name":"CSSNW Bellingham","operator":"CSS Communications"},"geometry":{"type":"Point","coordinates":[-122.48053,48.75728]}},{"type":"Feature","properties":{"name":"Centersquare Lynnwood SE1","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-122.30143,47.84184]}},{"type":"Feature","properties":{"name":"Digital Fortress Lynnwood","operator":""},"geometry":{"type":"Point","coordinates":[-122.28959,47.82233]}},{"type":"Feature","properties":{"name":"Norma Beach Cable Landing Station","operator":"Unity Cable System"},"geometry":{"type":"Point","coordinates":[-122.28417,47.86469]}},{"type":"Feature","properties":{"name":"Facebook Altoona Data Center 5","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-93.51672,41.67127]}},{"type":"Feature","properties":{"name":"Apple","operator":"Apple"},"geometry":{"type":"Point","coordinates":[-93.92481,41.61693]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.78749,41.4948]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.78848,41.49771]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.78802,41.49879]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.78746,41.49688]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.78753,41.49586]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.86391,41.53386]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.86393,41.53278]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.86391,41.53176]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-93.86391,41.53494]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.32096,45.9014]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.32093,45.90282]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.32092,45.9038]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.34171,45.88263]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.33971,45.88252]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.32055,45.90504]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26773,45.9158]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26996,45.91573]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26633,45.9158]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26654,45.9158]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26673,45.9158]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26712,45.9158]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26752,45.9158]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.26732,45.91581]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.23189,45.9205]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-119.23001,45.92048]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-123.10376,49.2648]}},{"type":"Feature","properties":{"name":"VAN5","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-123.11185,49.28442]}},{"type":"Feature","properties":{"name":"VAN1","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-123.11178,49.28446]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-123.11169,49.28451]}},{"type":"Feature","properties":{"name":"VAN4","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-123.10871,49.28355]}},{"type":"Feature","properties":{"name":"VAN2","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-123.11947,49.28696]}},{"type":"Feature","properties":{"name":"Carrier Connect Data Solutions","operator":"Carrier Connect Data Solutions"},"geometry":{"type":"Point","coordinates":[-123.11511,49.28762]}},{"type":"Feature","properties":{"name":"VAN3","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-123.02972,49.25945]}},{"type":"Feature","properties":{"name":"Equinix VA1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-123.01124,49.26057]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-122.91231,49.27439]}},{"type":"Feature","properties":{"name":"Iron Mountain","operator":""},"geometry":{"type":"Point","coordinates":[-117.53719,47.59457]}},{"type":"Feature","properties":{"name":"Lumen","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-117.42001,47.65429]}},{"type":"Feature","properties":{"name":"TierPoint","operator":""},"geometry":{"type":"Point","coordinates":[-117.09595,47.67192]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-113.29269,46.33212]}},{"type":"Feature","properties":{"name":"CANTV Alta Vista","operator":"CANTV"},"geometry":{"type":"Point","coordinates":[-62.72998,8.29296]}},{"type":"Feature","properties":{"name":"Datacenter de Movistar","operator":"Movistar"},"geometry":{"type":"Point","coordinates":[-62.72719,8.29788]}},{"type":"Feature","properties":{"name":"CANTV Puerto Ordaz","operator":""},"geometry":{"type":"Point","coordinates":[-62.71634,8.31111]}},{"type":"Feature","properties":{"name":"CANTV Chirica","operator":"CANTV"},"geometry":{"type":"Point","coordinates":[-62.63553,8.35169]}},{"type":"Feature","properties":{"name":"Digitel","operator":"Digitel"},"geometry":{"type":"Point","coordinates":[-66.83818,10.43594]}},{"type":"Feature","properties":{"name":"Central CANTV","operator":"CANTV"},"geometry":{"type":"Point","coordinates":[-66.91015,10.50836]}},{"type":"Feature","properties":{"name":"Central CANTV","operator":"CANTV"},"geometry":{"type":"Point","coordinates":[-64.67815,10.16639]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-61.53936,10.6718]}},{"type":"Feature","properties":{"name":"Valorem","operator":"Valorem"},"geometry":{"type":"Point","coordinates":[-61.72391,16.31788]}},{"type":"Feature","properties":{"name":"Valorem","operator":"Valorem"},"geometry":{"type":"Point","coordinates":[-61.72329,16.31819]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-66.10899,18.41744]}},{"type":"Feature","properties":{"name":"Claro","operator":"Claro"},"geometry":{"type":"Point","coordinates":[-66.05174,18.44679]}},{"type":"Feature","properties":{"name":"Telus Kamloops Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[-120.37739,50.67701]}},{"type":"Feature","properties":{"name":"Equinix KA1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-120.37988,50.67541]}},{"type":"Feature","properties":{"name":"Telus Calgary Internet Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[-114.09605,51.044]}},{"type":"Feature","properties":{"name":"Rogers Calgary Data Centre 2","operator":""},"geometry":{"type":"Point","coordinates":[-114.09235,51.0439]}},{"type":"Feature","properties":{"name":"Sungard Systems International","operator":""},"geometry":{"type":"Point","coordinates":[-86.91122,33.4043]}},{"type":"Feature","properties":{"name":"DLI ONE","operator":"DLI ONE"},"geometry":{"type":"Point","coordinates":[-84.88366,32.49797]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-84.88353,32.49829]}},{"type":"Feature","properties":{"name":"Parsec Data Management","operator":""},"geometry":{"type":"Point","coordinates":[-108.60301,45.74308]}},{"type":"Feature","properties":{"name":"Hut 8","operator":"Hut 8"},"geometry":{"type":"Point","coordinates":[-110.73864,50.09335]}},{"type":"Feature","properties":{"name":"SaskTel","operator":""},"geometry":{"type":"Point","coordinates":[-107.82588,50.28765]}},{"type":"Feature","properties":{"name":"SaskTel","operator":""},"geometry":{"type":"Point","coordinates":[-107.80239,50.28478]}},{"type":"Feature","properties":{"name":"State of Montana Data Center","operator":"State of Montana"},"geometry":{"type":"Point","coordinates":[-105.82075,46.40688]}},{"type":"Feature","properties":{"name":"Telus","operator":""},"geometry":{"type":"Point","coordinates":[-102.99454,49.14321]}},{"type":"Feature","properties":{"name":"Applied Digital / Ellendale Data Center","operator":"Applied Digital"},"geometry":{"type":"Point","coordinates":[-98.5721,46.01341]}},{"type":"Feature","properties":{"name":"Dakota Carrier Network","operator":""},"geometry":{"type":"Point","coordinates":[-96.84442,46.81507]}},{"type":"Feature","properties":{"name":"Applied Digital","operator":""},"geometry":{"type":"Point","coordinates":[-96.87394,46.97417]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.52916,33.46381]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.52278,33.44849]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.52364,33.4506]}},{"type":"Feature","properties":{"name":"QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.52419,33.46189]}},{"type":"Feature","properties":{"name":"Flexential Atlanta - Douglasville 1","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-84.61634,33.73092]}},{"type":"Feature","properties":{"name":"Flexential Atlanta - Douglasville 2","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-84.61158,33.73065]}},{"type":"Feature","properties":{"name":"Centersquare Atlanta ATL1","operator":""},"geometry":{"type":"Point","coordinates":[-84.58149,33.7444]}},{"type":"Feature","properties":{"name":"Digital Realty Atlanta ATL11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-84.58008,33.74649]}},{"type":"Feature","properties":{"name":"Digital Realty Data Center","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-84.41527,33.65702]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-81.83486,28.29403]}},{"type":"Feature","properties":{"name":"E-Foam","operator":""},"geometry":{"type":"Point","coordinates":[-81.56461,28.57795]}},{"type":"Feature","properties":{"name":"Equinix IBX (WI1)","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-97.17813,49.82504]}},{"type":"Feature","properties":{"name":"DataBank","operator":""},"geometry":{"type":"Point","coordinates":[-93.38708,45.1435]}},{"type":"Feature","properties":{"name":"Encompass Minneapolis Facility","operator":"Encompass"},"geometry":{"type":"Point","coordinates":[-93.09585,45.13205]}},{"type":"Feature","properties":{"name":"Ark Duluth Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-92.13063,46.82745]}},{"type":"Feature","properties":{"name":"UF Research Computing Center","operator":"University of Florida"},"geometry":{"type":"Point","coordinates":[-82.29998,29.67249]}},{"type":"Feature","properties":{"name":"HiPerGator","operator":"University of Florida"},"geometry":{"type":"Point","coordinates":[-82.29976,29.67282]}},{"type":"Feature","properties":{"name":"Flexential Jacksonville","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-81.58172,30.24575]}},{"type":"Feature","properties":{"name":"Cologix Jacksonville JAX1","operator":""},"geometry":{"type":"Point","coordinates":[-81.66253,30.33143]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-81.39363,28.6175]}},{"type":"Feature","properties":{"name":"Meta Stanton Springs Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-83.70194,33.60081]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-83.70556,33.6014]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-83.69702,33.60006]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-83.69511,33.59781]}},{"type":"Feature","properties":{"name":"Google Berkeley County Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.0433,33.06401]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.04636,33.06454]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.04511,33.06231]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.03959,33.06219]}},{"type":"Feature","properties":{"name":"Google Datacenter - Douglas County","operator":"Google"},"geometry":{"type":"Point","coordinates":[-84.58569,33.75064]}},{"type":"Feature","properties":{"name":"Edificio de Operaciones","operator":""},"geometry":{"type":"Point","coordinates":[-85.65263,10.64831]}},{"type":"Feature","properties":{"name":"ICE - Centro de Datos","operator":"ICE"},"geometry":{"type":"Point","coordinates":[-83.94352,9.82163]}},{"type":"Feature","properties":{"name":"Centro de Datos - Banco Nacional","operator":"Banco Nacional"},"geometry":{"type":"Point","coordinates":[-84.05937,9.97496]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-84.09882,9.93122]}},{"type":"Feature","properties":{"name":"Centro de C\u00f3mputo","operator":""},"geometry":{"type":"Point","coordinates":[-84.03677,9.88941]}},{"type":"Feature","properties":{"name":"Archivo Judicial","operator":""},"geometry":{"type":"Point","coordinates":[-84.16624,10.0082]}},{"type":"Feature","properties":{"name":"Amazon","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-84.07071,9.94571]}},{"type":"Feature","properties":{"name":"Cable & Wireless","operator":""},"geometry":{"type":"Point","coordinates":[-79.53265,9.00683]}},{"type":"Feature","properties":{"name":"Sala E","operator":""},"geometry":{"type":"Point","coordinates":[-73.58388,4.07474]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-75.71622,4.5007]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.03843,33.06199]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.04128,33.06222]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.04164,33.06434]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.03848,33.06446]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.04387,33.06437]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-80.03874,33.06634]}},{"type":"Feature","properties":{"name":"DC BLOX Myrtle Beach Cable Landing Station","operator":""},"geometry":{"type":"Point","coordinates":[-78.94356,33.67461]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.08603,4.68466]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.06506,4.75452]}},{"type":"Feature","properties":{"name":"VIVE DIGITAL","operator":""},"geometry":{"type":"Point","coordinates":[-72.28651,4.82037]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-72.39081,5.34245]}},{"type":"Feature","properties":{"name":"Araguaney","operator":"Telefonica"},"geometry":{"type":"Point","coordinates":[-72.29479,5.41591]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-73.14523,6.28931]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-73.1269,7.09577]}},{"type":"Feature","properties":{"name":"TELECOM","operator":""},"geometry":{"type":"Point","coordinates":[-75.12204,9.71563]}},{"type":"Feature","properties":{"name":"CENTRO CONCILIACION DE LA UNIVERSIDAD DE SANTANDER","operator":""},"geometry":{"type":"Point","coordinates":[-73.24737,10.4784]}},{"type":"Feature","properties":{"name":"Programa desarrollo y paz del Cesar","operator":""},"geometry":{"type":"Point","coordinates":[-73.24751,10.47844]}},{"type":"Feature","properties":{"name":"Centro de Computaci\u00f3n","operator":"university"},"geometry":{"type":"Point","coordinates":[-69.36259,10.06667]}},{"type":"Feature","properties":{"name":"Bramar","operator":"Bramar C.A"},"geometry":{"type":"Point","coordinates":[-69.33331,10.08021]}},{"type":"Feature","properties":{"name":"Central de Digitel","operator":"Digitel"},"geometry":{"type":"Point","coordinates":[-68.00887,10.22005]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-89.58942,13.73786]}},{"type":"Feature","properties":{"name":"Estacion Terrena Izalco","operator":""},"geometry":{"type":"Point","coordinates":[-89.58935,13.73782]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-89.21596,13.69748]}},{"type":"Feature","properties":{"name":"Centro Nacional de Registros","operator":""},"geometry":{"type":"Point","coordinates":[-89.2134,13.70313]}},{"type":"Feature","properties":{"name":"Centro de datos KIO MER1","operator":"KIO"},"geometry":{"type":"Point","coordinates":[-89.68151,20.92939]}},{"type":"Feature","properties":{"name":"Telmex","operator":""},"geometry":{"type":"Point","coordinates":[-87.45183,20.21814]}},{"type":"Feature","properties":{"name":"Bluenap Americas","operator":""},"geometry":{"type":"Point","coordinates":[-68.95512,12.1778]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-69.94119,18.47258]}},{"type":"Feature","properties":{"name":"Newrays Two LLC Mining","operator":""},"geometry":{"type":"Point","coordinates":[-88.3202,36.32709]}},{"type":"Feature","properties":{"name":"CANTV Caura","operator":"CANTV"},"geometry":{"type":"Point","coordinates":[-62.75513,8.27195]}},{"type":"Feature","properties":{"name":"George C. Wallace Alabama Supercomputer Center","operator":"Alabama Supercomputer Authority"},"geometry":{"type":"Point","coordinates":[-86.67316,34.73651]}},{"type":"Feature","properties":{"name":"SimpleHelix","operator":""},"geometry":{"type":"Point","coordinates":[-86.69194,34.74544]}},{"type":"Feature","properties":{"name":"Meta Huntsville Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.62668,34.84703]}},{"type":"Feature","properties":{"name":"Meta Huntsville Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.62911,34.8434]}},{"type":"Feature","properties":{"name":"Meta Huntsville Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.62901,34.84041]}},{"type":"Feature","properties":{"name":"Meta Huntsville Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.62696,34.84729]}},{"type":"Feature","properties":{"name":"CoreSite AT2 - Marietta Data Center","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-84.48177,33.92562]}},{"type":"Feature","properties":{"name":"QTS Atlanta Data Center 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.4194,33.77724]}},{"type":"Feature","properties":{"name":"Switch Data Center","operator":"Switch"},"geometry":{"type":"Point","coordinates":[-84.58748,33.75493]}},{"type":"Feature","properties":{"name":"QTS Atlanta Data Center 1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.42129,33.77692]}},{"type":"Feature","properties":{"name":"Atlanta ATL13","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-84.39148,33.75552]}},{"type":"Feature","properties":{"name":"CoreSite AT1","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-84.39117,33.75599]}},{"type":"Feature","properties":{"name":"Cyxtera Tampa TP1","operator":"Cyxtera"},"geometry":{"type":"Point","coordinates":[-82.35106,27.94544]}},{"type":"Feature","properties":{"name":"Flexential Tampa - West","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-82.53998,28.0373]}},{"type":"Feature","properties":{"name":"Flexential Tampa - North","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-82.36833,28.07383]}},{"type":"Feature","properties":{"name":"NocRoom Miami IT Services","operator":""},"geometry":{"type":"Point","coordinates":[-80.42343,25.64656]}},{"type":"Feature","properties":{"name":"NocRoom Miami IT Services","operator":""},"geometry":{"type":"Point","coordinates":[-80.31775,25.79155]}},{"type":"Feature","properties":{"name":"NAP of the Americas","operator":""},"geometry":{"type":"Point","coordinates":[-80.19324,25.78247]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-80.23009,25.79757]}},{"type":"Feature","properties":{"name":"T-Mobile Everglades MSO Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-80.28688,26.18503]}},{"type":"Feature","properties":{"name":"Flexential Fort Lauderdale","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-80.19337,26.19017]}},{"type":"Feature","properties":{"name":"CenturyLink","operator":""},"geometry":{"type":"Point","coordinates":[-84.3838,33.76505]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-84.67586,34.07068]}},{"type":"Feature","properties":{"name":"Google Jackson County Data Center","operator":"Google LLC"},"geometry":{"type":"Point","coordinates":[-85.74832,34.91443]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-85.74594,34.9135]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-85.74745,34.91351]}},{"type":"Feature","properties":{"name":"DC Blox Chattanooga","operator":""},"geometry":{"type":"Point","coordinates":[-85.29734,35.0315]}},{"type":"Feature","properties":{"name":"TierPoint","operator":""},"geometry":{"type":"Point","coordinates":[-86.85596,35.92444]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-86.79205,36.02296]}},{"type":"Feature","properties":{"name":"Flexential Nashville - Franklin","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-86.81563,35.92037]}},{"type":"Feature","properties":{"name":"Flexential Nashville - Cool Springs","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-86.8334,35.95106]}},{"type":"Feature","properties":{"name":"Flexential Nashville - Brentwood","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-86.80849,35.97273]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-86.63784,36.0328]}},{"type":"Feature","properties":{"name":"HCA Information Technology & Services Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-86.63804,36.03225]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-86.76411,36.1405]}},{"type":"Feature","properties":{"name":"Tennessee Processing Center LLC","operator":""},"geometry":{"type":"Point","coordinates":[-86.78417,36.21577]}},{"type":"Feature","properties":{"name":"BNYM","operator":"BNYM"},"geometry":{"type":"Point","coordinates":[-86.78378,36.21558]}},{"type":"Feature","properties":{"name":"Verizon Wireless","operator":""},"geometry":{"type":"Point","coordinates":[-86.79736,36.28201]}},{"type":"Feature","properties":{"name":"Gallatin Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.37321,36.40853]}},{"type":"Feature","properties":{"name":"Meta Gallatin Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.36676,36.40609]}},{"type":"Feature","properties":{"name":"Meta Gallatin Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.36977,36.41173]}},{"type":"Feature","properties":{"name":"Meta Gallatin Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-86.36612,36.41122]}},{"type":"Feature","properties":{"name":"AngelTrax Data Center","operator":"AngelTrax Mobile Video Surveillance Solutions"},"geometry":{"type":"Point","coordinates":[-85.45588,31.23188]}},{"type":"Feature","properties":{"name":"Google Montgomery Data Center","operator":"Google LLC"},"geometry":{"type":"Point","coordinates":[-87.25943,36.62289]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-87.26146,36.62428]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-87.26368,36.62453]}},{"type":"Feature","properties":{"name":"SPC3A","operator":"Google"},"geometry":{"type":"Point","coordinates":[-87.25919,36.624]}},{"type":"Feature","properties":{"name":"SPC4A","operator":"Google"},"geometry":{"type":"Point","coordinates":[-87.25708,36.62375]}},{"type":"Feature","properties":{"name":"Dynamics Mining","operator":""},"geometry":{"type":"Point","coordinates":[-87.54761,37.36299]}},{"type":"Feature","properties":{"name":"CyrusOne Cincinnati-Mason CIN3","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-84.31163,39.3039]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-89.94871,38.81056]}},{"type":"Feature","properties":{"name":"NCSA Petascale Computing Facility","operator":""},"geometry":{"type":"Point","coordinates":[-88.24208,40.09524]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-88.73106,41.88938]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-88.7268,41.89042]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-88.72187,41.88863]}},{"type":"Feature","properties":{"name":"IU Data Center","operator":"Indiana University"},"geometry":{"type":"Point","coordinates":[-86.50084,39.17454]}},{"type":"Feature","properties":{"name":"Flexential Louisville - Downtown","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-85.73349,38.24252]}},{"type":"Feature","properties":{"name":"Flexential Louisville - East","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-85.50731,38.27703]}},{"type":"Feature","properties":{"name":"CyrusOne Chicago Aurora CME","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-88.24375,41.79718]}},{"type":"Feature","properties":{"name":"CyrusOne CHI3","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-88.24642,41.8029]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-88.24689,41.79543]}},{"type":"Feature","properties":{"name":"Lincoln Rackhouse","operator":""},"geometry":{"type":"Point","coordinates":[-88.2173,41.77229]}},{"type":"Feature","properties":{"name":"Edged Chicago ORD01","operator":"Edged"},"geometry":{"type":"Point","coordinates":[-88.24129,41.80691]}},{"type":"Feature","properties":{"name":"Centersquare Lisle ORD4 Data Center","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-88.09511,41.8025]}},{"type":"Feature","properties":{"name":"Datacenter (386)","operator":"UChicago Argonne LLC"},"geometry":{"type":"Point","coordinates":[-87.97597,41.70708]}},{"type":"Feature","properties":{"name":"Equinix Chicago Data CH7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-87.97299,41.81265]}},{"type":"Feature","properties":{"name":"CyrusOne CIN2","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-84.51782,39.10281]}},{"type":"Feature","properties":{"name":"Flexential Cincinnati","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-84.44946,39.31593]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-84.41221,39.29403]}},{"type":"Feature","properties":{"name":"Google Fiber","operator":"Google"},"geometry":{"type":"Point","coordinates":[-84.36686,33.77157]}},{"type":"Feature","properties":{"name":"Microsoft - Azure Datacenter","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-87.91849,41.92292]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-88.21956,41.90533]}},{"type":"Feature","properties":{"name":"Aligned Data Center - Chicago ORD-02","operator":"Aligned"},"geometry":{"type":"Point","coordinates":[-87.91804,41.91297]}},{"type":"Feature","properties":{"name":"Aligned Data Center - Chicago ORD-01","operator":"Aligned"},"geometry":{"type":"Point","coordinates":[-87.91745,41.91407]}},{"type":"Feature","properties":{"name":"NTT Chicago CH4","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-88.00457,41.98904]}},{"type":"Feature","properties":{"name":"NTT Chicago CH1","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-88.0072,41.98777]}},{"type":"Feature","properties":{"name":"NTT Chicago CH2","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-88.00731,41.98883]}},{"type":"Feature","properties":{"name":"NTT Chicago CH3","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-88.00805,41.9868]}},{"type":"Feature","properties":{"name":"EdgeConneX CHI01","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-87.951,42.00082]}},{"type":"Feature","properties":{"name":"Equinix Chicago CH3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-87.95527,42.00115]}},{"type":"Feature","properties":{"name":"Element Critical CH2","operator":"Element Critical"},"geometry":{"type":"Point","coordinates":[-87.96726,41.97428]}},{"type":"Feature","properties":{"name":"Digital Realty CH3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-87.96495,41.99453]}},{"type":"Feature","properties":{"name":"Digital Realty CH2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-87.95812,41.99428]}},{"type":"Feature","properties":{"name":"Ascent - Atlanta Data Center","operator":"Ascent"},"geometry":{"type":"Point","coordinates":[-84.27344,34.05682]}},{"type":"Feature","properties":{"name":"Cox Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-84.31973,34.03631]}},{"type":"Feature","properties":{"name":"Hewlett-Packard","operator":""},"geometry":{"type":"Point","coordinates":[-84.26756,34.08248]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-84.27401,34.06093]}},{"type":"Feature","properties":{"name":"T5 Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-84.26444,34.07582]}},{"type":"Feature","properties":{"name":"Flexential Atlanta - Alpharetta Data Center","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-84.25192,34.08711]}},{"type":"Feature","properties":{"name":"Secure Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-84.25111,34.09374]}},{"type":"Feature","properties":{"name":"Mapletree Industrial","operator":""},"geometry":{"type":"Point","coordinates":[-84.23763,34.09663]}},{"type":"Feature","properties":{"name":"Strategic Datasphere","operator":""},"geometry":{"type":"Point","coordinates":[-84.2355,34.09473]}},{"type":"Feature","properties":{"name":"Flexential Atlanta - Norcross","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-84.19863,33.95482]}},{"type":"Feature","properties":{"name":"QTS Suwanee Data Center 1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.06136,34.03539]}},{"type":"Feature","properties":{"name":"QTS Suwanee Data Center 2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.05781,34.03742]}},{"type":"Feature","properties":{"name":"QTS Suwanee","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-84.0599,34.03644]}},{"type":"Feature","properties":{"name":"UPS Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-84.21498,34.10366]}},{"type":"Feature","properties":{"name":"Stream Chicago II","operator":"Stream"},"geometry":{"type":"Point","coordinates":[-87.95801,41.99921]}},{"type":"Feature","properties":{"name":"Element Critical CH1","operator":"Element Critical"},"geometry":{"type":"Point","coordinates":[-87.96489,41.97566]}},{"type":"Feature","properties":{"name":"Skybox Chicago I","operator":"Skybox"},"geometry":{"type":"Point","coordinates":[-87.97352,41.99349]}},{"type":"Feature","properties":{"name":"Digital Realty CH1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-87.96171,41.99406]}},{"type":"Feature","properties":{"name":"Centersquare Elk Grove Village Data Center Campus ORD2","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-87.95789,41.99196]}},{"type":"Feature","properties":{"name":"STACK Chicago CHI01","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-87.96576,42.00704]}},{"type":"Feature","properties":{"name":"EdgeConneX CHI02","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-87.95263,42.0016]}},{"type":"Feature","properties":{"name":"Stream Chicago I","operator":"Stream"},"geometry":{"type":"Point","coordinates":[-87.95106,42.00279]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-87.97239,42.02309]}},{"type":"Feature","properties":{"name":"T5 Chicago II","operator":"T5 Data Centers"},"geometry":{"type":"Point","coordinates":[-87.97585,42.02299]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-87.96166,42.02314]}},{"type":"Feature","properties":{"name":"Frontier (supercomputer)","operator":"Oak Ridge National Laboratory"},"geometry":{"type":"Point","coordinates":[-84.31057,35.92951]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.37672,36.32807]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-81.82671,35.31724]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-81.82523,35.31632]}},{"type":"Feature","properties":{"name":"Digital Crossroad","operator":"Digital Crossroad"},"geometry":{"type":"Point","coordinates":[-87.52012,41.70742]}},{"type":"Feature","properties":{"name":"Digital Realty Chicago ORD12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-87.85924,41.92849]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-81.8226,35.31402]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-81.82201,35.31567]}},{"type":"Feature","properties":{"name":"Flexential Charlotte - South","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-80.93687,35.13536]}},{"type":"Feature","properties":{"name":"Spectrum Charlotte National Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-80.91624,35.14282]}},{"type":"Feature","properties":{"name":"T5 Charlotte Campus","operator":""},"geometry":{"type":"Point","coordinates":[-81.39477,35.25059]}},{"type":"Feature","properties":{"name":"TierPoint - Charlotte Data Center","operator":"TierPoint"},"geometry":{"type":"Point","coordinates":[-80.92828,35.17322]}},{"type":"Feature","properties":{"name":"SEGRA","operator":""},"geometry":{"type":"Point","coordinates":[-80.92644,35.18]}},{"type":"Feature","properties":{"name":"Apple - Maiden Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-81.26078,35.58754]}},{"type":"Feature","properties":{"name":"Digital Realty ORD11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-87.62993,41.87435]}},{"type":"Feature","properties":{"name":"QTS Chicago","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-87.66889,41.84234]}},{"type":"Feature","properties":{"name":"Iron Mountain Data & Record Storage","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-87.64555,41.84866]}},{"type":"Feature","properties":{"name":"CoreSite Chicago Data Center (CH2)","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-87.64142,41.86285]}},{"type":"Feature","properties":{"name":"Serverfarm CH1","operator":"Serverfarm"},"geometry":{"type":"Point","coordinates":[-87.64002,41.87098]}},{"type":"Feature","properties":{"name":"Netrality","operator":"Netrality"},"geometry":{"type":"Point","coordinates":[-87.63344,41.87288]}},{"type":"Feature","properties":{"name":"CoreSite Chicago Data Center (CH1)","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-87.63147,41.87594]}},{"type":"Feature","properties":{"name":"West Monroe","operator":""},"geometry":{"type":"Point","coordinates":[-87.63594,41.88053]}},{"type":"Feature","properties":{"name":"Lakeside Technology Center","operator":""},"geometry":{"type":"Point","coordinates":[-87.61839,41.85379]}},{"type":"Feature","properties":{"name":"Centersquare Chicago Data Center - ORD1","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-87.61861,41.85338]}},{"type":"Feature","properties":{"name":"Digital Realty ORD10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-87.61831,41.85335]}},{"type":"Feature","properties":{"name":"Equinix Chicago Data Center - CH1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-87.61805,41.85356]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-81.2649,35.59029]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-81.26282,35.58811]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-81.26044,35.58708]}},{"type":"Feature","properties":{"name":"Flexential Charlotte - North","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-80.76573,35.32967]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-80.57032,35.17952]}},{"type":"Feature","properties":{"name":"Google Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-81.54689,35.89225]}},{"type":"Feature","properties":{"name":"iGLASS Networks","operator":""},"geometry":{"type":"Point","coordinates":[-78.78403,35.76674]}},{"type":"Feature","properties":{"name":"Flexential Raleigh","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-78.82914,35.85053]}},{"type":"Feature","properties":{"name":"Brandaleone Lab for Data and Visualization","operator":"Duke Libraries"},"geometry":{"type":"Point","coordinates":[-78.93853,36.0031]}},{"type":"Feature","properties":{"name":"Level 3 Communications","operator":""},"geometry":{"type":"Point","coordinates":[-78.85157,35.88136]}},{"type":"Feature","properties":{"name":"Windstream Communications","operator":""},"geometry":{"type":"Point","coordinates":[-78.85155,35.8814]}},{"type":"Feature","properties":{"name":"Verizon Wireless","operator":"Verizon Wireless"},"geometry":{"type":"Point","coordinates":[-85.94148,39.71717]}},{"type":"Feature","properties":{"name":"East Kentucky Network Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[-82.67887,37.60012]}},{"type":"Feature","properties":{"name":"Alpha Federal","operator":"Alpha Innovations"},"geometry":{"type":"Point","coordinates":[-81.69618,38.35318]}},{"type":"Feature","properties":{"name":"Lumos Networks","operator":""},"geometry":{"type":"Point","coordinates":[-79.14271,37.41569]}},{"type":"Feature","properties":{"name":"DBT Data - Harrisonburg Center","operator":""},"geometry":{"type":"Point","coordinates":[-78.8571,38.46286]}},{"type":"Feature","properties":{"name":"Agricultural and Biological Engineering","operator":""},"geometry":{"type":"Point","coordinates":[-86.91655,40.42185]}},{"type":"Feature","properties":{"name":"Learning GIS!","operator":""},"geometry":{"type":"Point","coordinates":[-86.91415,40.42179]}},{"type":"Feature","properties":{"name":"CyrusOne Cincinnati-Hamilton CIN4","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-84.56698,39.38584]}},{"type":"Feature","properties":{"name":"Expedient Milwaukee","operator":""},"geometry":{"type":"Point","coordinates":[-87.97783,42.86305]}},{"type":"Feature","properties":{"name":"Pewaukee Data Center","operator":"WE Energies"},"geometry":{"type":"Point","coordinates":[-88.21663,43.0515]}},{"type":"Feature","properties":{"name":"TierPoint Milwaukee","operator":""},"geometry":{"type":"Point","coordinates":[-87.96106,43.00938]}},{"type":"Feature","properties":{"name":"Data Holdings Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-87.95398,43.04394]}},{"type":"Feature","properties":{"name":"Amazon AWS Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-86.47008,41.68933]}},{"type":"Feature","properties":{"name":"Amazon AWS Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-86.47309,41.66784]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-89.72141,43.63834]}},{"type":"Feature","properties":{"name":"Marquette-Adams Telephone Coop","operator":""},"geometry":{"type":"Point","coordinates":[-89.57488,43.78213]}},{"type":"Feature","properties":{"name":"Involta","operator":"Involta"},"geometry":{"type":"Point","coordinates":[-88.345,44.20459]}},{"type":"Feature","properties":{"name":"Central Office","operator":"AT&T"},"geometry":{"type":"Point","coordinates":[-88.73402,42.83365]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-89.43669,43.06732]}},{"type":"Feature","properties":{"name":"Lumen Madison 1 Data Center","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-89.39228,43.06772]}},{"type":"Feature","properties":{"name":"VISA","operator":"VISA"},"geometry":{"type":"Point","coordinates":[-87.95306,42.21674]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-87.91842,42.67567]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-87.89692,42.6729]}},{"type":"Feature","properties":{"name":"Amazon Web Services CMH50","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.75163,40.09459]}},{"type":"Feature","properties":{"name":"Amazon New Albany: Jug and Beach Road","operator":""},"geometry":{"type":"Point","coordinates":[-82.75193,40.09876]}},{"type":"Feature","properties":{"name":"Amazon Web Services CMH53","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.75157,40.0936]}},{"type":"Feature","properties":{"name":"Amazon Web Services CMH56","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.75234,40.09649]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.75015,40.10233]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.75196,40.10163]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.72769,40.09213]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.73224,40.09421]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.72936,40.09445]}},{"type":"Feature","properties":{"name":"Vantage Building 2","operator":"Vantage"},"geometry":{"type":"Point","coordinates":[-82.7473,40.10041]}},{"type":"Feature","properties":{"name":"Amazon Web Services CMH59","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.74779,40.094]}},{"type":"Feature","properties":{"name":"Amazon Web Services CMH62","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.74804,40.09295]}},{"type":"Feature","properties":{"name":"Vantage Building 3","operator":"Vantage"},"geometry":{"type":"Point","coordinates":[-82.74743,40.09865]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.73227,40.09342]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.73212,40.09548]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.7266,40.09294]}},{"type":"Feature","properties":{"name":"Vantage Building 1","operator":"Vantage"},"geometry":{"type":"Point","coordinates":[-82.74686,40.10257]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.62763,41.80728]}},{"type":"Feature","properties":{"name":"Liquid Web","operator":""},"geometry":{"type":"Point","coordinates":[-84.64313,42.68796]}},{"type":"Feature","properties":{"name":"Liquid Web, Inc","operator":""},"geometry":{"type":"Point","coordinates":[-84.66618,42.70531]}},{"type":"Feature","properties":{"name":"Aligned Data Centers","operator":"Aligned Data Centers"},"geometry":{"type":"Point","coordinates":[-82.71855,41.43205]}},{"type":"Feature","properties":{"name":"T5@Cleveland","operator":"T5 Data Centers"},"geometry":{"type":"Point","coordinates":[-81.80336,41.44217]}},{"type":"Feature","properties":{"name":"T5@Cleveland","operator":"T5 Data Centers"},"geometry":{"type":"Point","coordinates":[-81.80221,41.44263]}},{"type":"Feature","properties":{"name":"Involta Independence","operator":""},"geometry":{"type":"Point","coordinates":[-81.63275,41.36107]}},{"type":"Feature","properties":{"name":"H5 Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-81.68394,41.50619]}},{"type":"Feature","properties":{"name":"Lumen Cleveland","operator":""},"geometry":{"type":"Point","coordinates":[-81.65778,41.50506]}},{"type":"Feature","properties":{"name":"DataBank Pittsburgh PIT2","operator":""},"geometry":{"type":"Point","coordinates":[-80.19016,40.45143]}},{"type":"Feature","properties":{"name":"Expedient Pittsburgh South","operator":"Expedient"},"geometry":{"type":"Point","coordinates":[-80.04246,40.42739]}},{"type":"Feature","properties":{"name":"Involta-Akron","operator":""},"geometry":{"type":"Point","coordinates":[-81.5221,41.05732]}},{"type":"Feature","properties":{"name":"Carrier Services Group","operator":""},"geometry":{"type":"Point","coordinates":[-80.6329,41.04106]}},{"type":"Feature","properties":{"name":"US Signal","operator":"US Signal"},"geometry":{"type":"Point","coordinates":[-83.44418,42.23539]}},{"type":"Feature","properties":{"name":"CyrusOne Cincinnati-Lebanon","operator":""},"geometry":{"type":"Point","coordinates":[-84.22222,39.38874]}},{"type":"Feature","properties":{"name":"LexisNexus Springfield","operator":""},"geometry":{"type":"Point","coordinates":[-83.72359,39.91274]}},{"type":"Feature","properties":{"name":"Comcast","operator":"Comcast"},"geometry":{"type":"Point","coordinates":[-83.19823,42.2139]}},{"type":"Feature","properties":{"name":"Verizon Wireless","operator":"Verizon Wireless"},"geometry":{"type":"Point","coordinates":[-83.07709,42.32639]}},{"type":"Feature","properties":{"name":"Quicken Loans","operator":"Quicken Loans"},"geometry":{"type":"Point","coordinates":[-83.06964,42.32626]}},{"type":"Feature","properties":{"name":"EdgeConneX Detroit DET01","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-83.2628,42.44775]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.99477,39.85251]}},{"type":"Feature","properties":{"name":"Google Lockbourne, OH","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.99733,39.85024]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.17754,40.0479]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.17582,40.05153]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.17558,40.04936]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.17543,40.04813]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.17565,40.0502]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.12588,40.01633]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.12608,40.02112]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.12441,40.02093]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.1232,40.02108]}},{"type":"Feature","properties":{"name":"Amazon AWS: Hilliard Data Center","operator":"Amazon Web Services us-east-2 datacenter"},"geometry":{"type":"Point","coordinates":[-83.13547,40.0606]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.13547,40.06115]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.1352,40.06015]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.1349,40.05933]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.13432,40.05833]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.13288,40.06097]}},{"type":"Feature","properties":{"name":"Oppidan","operator":"Oppidan"},"geometry":{"type":"Point","coordinates":[-83.1276,40.0527]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.19981,40.10259]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.19988,40.10359]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.19969,40.10178]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.19959,40.10078]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.19911,40.09988]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.20153,40.11623]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.20219,40.11738]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.19938,40.12011]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.20332,40.11926]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.20265,40.1181]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.20026,40.11909]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.21598,40.13402]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-83.21274,40.13576]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.00131,40.11589]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.00265,40.11577]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.04562,40.22455]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.69165,39.72412]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.68809,39.72419]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-82.75053,40.06848]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-82.74929,40.06572]}},{"type":"Feature","properties":{"name":"Chick-fil-A Hiring Center","operator":"Dennis Sampier"},"geometry":{"type":"Point","coordinates":[-82.98839,42.62794]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-82.75115,40.06033]}},{"type":"Feature","properties":{"name":"Google NBY-1","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.76411,40.06113]}},{"type":"Feature","properties":{"name":"Google NBY-5","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.77194,40.05658]}},{"type":"Feature","properties":{"name":"QTS NAL 2 DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-82.75667,40.05566]}},{"type":"Feature","properties":{"name":"QTS NAL1 DC2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-82.75852,40.06372]}},{"type":"Feature","properties":{"name":"QTS NAL1 DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-82.75844,40.06491]}},{"type":"Feature","properties":{"name":"Google NBY-6","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.76814,40.05403]}},{"type":"Feature","properties":{"name":"Google NBY-7","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.7647,40.05403]}},{"type":"Feature","properties":{"name":"QTS NAL 2 DC2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-82.75686,40.05313]}},{"type":"Feature","properties":{"name":"Google NBY-4","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.77168,40.05943]}},{"type":"Feature","properties":{"name":"Google NBY-2","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.76424,40.05959]}},{"type":"Feature","properties":{"name":"Google NBY-3","operator":"Google"},"geometry":{"type":"Point","coordinates":[-82.76524,40.05773]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-82.76263,40.0592]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-82.7407,40.06216]}},{"type":"Feature","properties":{"name":"Meta","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-82.74116,40.06492]}},{"type":"Feature","properties":{"name":"STACK New Albany","operator":""},"geometry":{"type":"Point","coordinates":[-82.80101,40.10601]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-83.77952,42.96871]}},{"type":"Feature","properties":{"name":"TJX Corporate Techno","operator":""},"geometry":{"type":"Point","coordinates":[-82.81054,40.10387]}},{"type":"Feature","properties":{"name":"Compugen New Albany","operator":""},"geometry":{"type":"Point","coordinates":[-82.80495,40.10464]}},{"type":"Feature","properties":{"name":"Compugen New Albany","operator":""},"geometry":{"type":"Point","coordinates":[-82.80886,40.10363]}},{"type":"Feature","properties":{"name":"Amazon Web Services Datacenter Complex","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-82.75165,40.09358]}},{"type":"Feature","properties":{"name":"Equinix TR1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-79.38439,43.64453]}},{"type":"Feature","properties":{"name":"Equinix TR2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-79.36171,43.65101]}},{"type":"Feature","properties":{"name":"Rogers","operator":""},"geometry":{"type":"Point","coordinates":[-79.3433,43.8269]}},{"type":"Feature","properties":{"name":"N\u00fcday Networks","operator":""},"geometry":{"type":"Point","coordinates":[-79.33457,43.82709]}},{"type":"Feature","properties":{"name":"Pathway Communications","operator":""},"geometry":{"type":"Point","coordinates":[-79.35654,43.85736]}},{"type":"Feature","properties":{"name":"Digital Realty Toronto YYZ10","operator":""},"geometry":{"type":"Point","coordinates":[-79.32352,43.83826]}},{"type":"Feature","properties":{"name":"Cologix TOR4","operator":""},"geometry":{"type":"Point","coordinates":[-79.34252,43.85071]}},{"type":"Feature","properties":{"name":"Cyxtera Toronto YYZ2","operator":"Cyxtera"},"geometry":{"type":"Point","coordinates":[-79.31641,43.8379]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-79.67034,44.33751]}},{"type":"Feature","properties":{"name":"Segra Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-78.66248,35.72508]}},{"type":"Feature","properties":{"name":"BB&T Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-78.32822,35.83938]}},{"type":"Feature","properties":{"name":"Microsoft Boydton Data Center","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-78.37599,36.68561]}},{"type":"Feature","properties":{"name":"Flexential - Richmond","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-77.43878,37.64683]}},{"type":"Feature","properties":{"name":"Digital Fortress: Richmond","operator":"Digital Fortress"},"geometry":{"type":"Point","coordinates":[-77.32717,37.36027]}},{"type":"Feature","properties":{"name":"PowerHouse","operator":"PowerHouse"},"geometry":{"type":"Point","coordinates":[-77.33391,37.35653]}},{"type":"Feature","properties":{"name":"Virginia Information Technologies Agency","operator":""},"geometry":{"type":"Point","coordinates":[-77.33162,37.36042]}},{"type":"Feature","properties":{"name":"PowerHouse CTP-02","operator":"PowerHouse"},"geometry":{"type":"Point","coordinates":[-77.32596,37.36069]}},{"type":"Feature","properties":{"name":"Meta Henrico Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-77.23743,37.48391]}},{"type":"Feature","properties":{"name":"DC6","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.25038,37.48532]}},{"type":"Feature","properties":{"name":"DC5","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.24918,37.48463]}},{"type":"Feature","properties":{"name":"RIC2 DC3","operator":""},"geometry":{"type":"Point","coordinates":[-77.24218,37.48612]}},{"type":"Feature","properties":{"name":"RIC2 DC5","operator":""},"geometry":{"type":"Point","coordinates":[-77.24327,37.4849]}},{"type":"Feature","properties":{"name":"Meta Henrico Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-77.23368,37.48179]}},{"type":"Feature","properties":{"name":"RIC2 DC6","operator":""},"geometry":{"type":"Point","coordinates":[-77.24405,37.48395]}},{"type":"Feature","properties":{"name":"RIC3 DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.25195,37.48057]}},{"type":"Feature","properties":{"name":"RIC3 DC2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.25254,37.4798]}},{"type":"Feature","properties":{"name":"RIC3 DC3","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.25332,37.47858]}},{"type":"Feature","properties":{"name":"RIC3 DC5","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.25002,37.47708]}},{"type":"Feature","properties":{"name":"RIC3 DC4","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.24931,37.47799]}},{"type":"Feature","properties":{"name":"DC4","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.248,37.48395]}},{"type":"Feature","properties":{"name":"Meta Henrico Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-77.22626,37.47775]}},{"type":"Feature","properties":{"name":"RIC1 DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.24748,37.48923]}},{"type":"Feature","properties":{"name":"RIC1 DC2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.24621,37.48862]}},{"type":"Feature","properties":{"name":"RIC2 DC1","operator":""},"geometry":{"type":"Point","coordinates":[-77.24035,37.48822]}},{"type":"Feature","properties":{"name":"RIC2 DC2","operator":""},"geometry":{"type":"Point","coordinates":[-77.24127,37.48715]}},{"type":"Feature","properties":{"name":"RIC1 DC3","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.24483,37.48786]}},{"type":"Feature","properties":{"name":"Bank of America","operator":"Bank of America"},"geometry":{"type":"Point","coordinates":[-77.23764,37.4943]}},{"type":"Feature","properties":{"name":"Centersquare IAD1-B","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.41523,39.02395]}},{"type":"Feature","properties":{"name":"Rack & Data","operator":""},"geometry":{"type":"Point","coordinates":[-80.47277,43.42305]}},{"type":"Feature","properties":{"name":"Ascent TOR1","operator":"Ascent, LLC"},"geometry":{"type":"Point","coordinates":[-80.37225,43.42749]}},{"type":"Feature","properties":{"name":"RBC Guelph Data Centre","operator":"Royal Bank of Canada"},"geometry":{"type":"Point","coordinates":[-80.20833,43.49656]}},{"type":"Feature","properties":{"name":"Ministry of Government Services Data Centre","operator":"The Government of Ontario"},"geometry":{"type":"Point","coordinates":[-80.19375,43.48425]}},{"type":"Feature","properties":{"name":"Centersquare IAD1-A","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.41306,39.02328]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA1 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.45481,39.02279]}},{"type":"Feature","properties":{"name":"CyrusOne NVA5","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-77.43401,39.02428]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC12","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.44978,39.02309]}},{"type":"Feature","properties":{"name":"Amazon Web Services IAD117","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41915,39.02332]}},{"type":"Feature","properties":{"name":"Equinix CU2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.97863,38.45553]}},{"type":"Feature","properties":{"name":"Middletown Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-78.29115,39.01762]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.8261,38.73827]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.82654,38.73732]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.51066,38.80335]}},{"type":"Feature","properties":{"name":"Amazon","operator":"Amazon"},"geometry":{"type":"Point","coordinates":[-77.65273,38.81564]}},{"type":"Feature","properties":{"name":"Amazon IAD84","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.65278,38.81612]}},{"type":"Feature","properties":{"name":"AWS IAD105","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.51957,38.74752]}},{"type":"Feature","properties":{"name":"AWS IAD104","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52083,38.74832]}},{"type":"Feature","properties":{"name":"Amazon IAD130","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.51947,38.76043]}},{"type":"Feature","properties":{"name":"AWS IAD106","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.51857,38.74683]}},{"type":"Feature","properties":{"name":"Equinix DC14","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.51035,38.80342]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.65244,38.81698]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.51656,38.75876]}},{"type":"Feature","properties":{"name":"OVH US East Vint Hill","operator":""},"geometry":{"type":"Point","coordinates":[-77.67442,38.74743]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.53325,38.74304]}},{"type":"Feature","properties":{"name":"COPT Innovation Park Data Center","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.5307,38.74367]}},{"type":"Feature","properties":{"name":"COPT Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-77.53197,38.74711]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.53377,38.74419]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.53745,38.74606]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.53314,38.74513]}},{"type":"Feature","properties":{"name":"COPT Data Center Bldg 2","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52927,38.74392]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.6225,38.80268]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.62114,38.80198]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.62085,38.80106]}},{"type":"Feature","properties":{"name":"NTT VA11 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.60996,38.79997]}},{"type":"Feature","properties":{"name":"Amazon IAD64","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.6532,38.81515]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.65441,38.81454]}},{"type":"Feature","properties":{"name":"Amazon IAD-55","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.64841,38.81551]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.58291,38.77642]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.58601,38.77471]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.5866,38.77966]}},{"type":"Feature","properties":{"name":"Frontier Science","operator":""},"geometry":{"type":"Point","coordinates":[-78.81238,42.9902]}},{"type":"Feature","properties":{"name":"US Bitcoin","operator":"US Bitcoin"},"geometry":{"type":"Point","coordinates":[-79.03085,43.08203]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00329,43.08283]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00343,43.08201]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00352,43.08218]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00325,43.08242]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00307,43.08326]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00399,43.08302]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00313,43.08315]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00337,43.08324]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00391,43.08316]}},{"type":"Feature","properties":{"name":"VA 4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.59537,38.77835]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.5822,38.78934]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.57973,38.78958]}},{"type":"Feature","properties":{"name":"Microsoft Data Center 1","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-77.58269,38.80239]}},{"type":"Feature","properties":{"name":"Microsoft Data Center 2","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-77.58352,38.79997]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54192,38.77954]}},{"type":"Feature","properties":{"name":"Iron Mountain VA-3","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-77.54552,38.77554]}},{"type":"Feature","properties":{"name":"Iron Mountain VA-5","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-77.54144,38.77327]}},{"type":"Feature","properties":{"name":"Amazon IAD73","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.55929,38.77782]}},{"type":"Feature","properties":{"name":"Amazon IAD74","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.55808,38.77728]}},{"type":"Feature","properties":{"name":"Amazon IAD601","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.55723,38.77888]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.55595,38.7774]}},{"type":"Feature","properties":{"name":"Iron Mountain VA-4","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-77.54246,38.77461]}},{"type":"Feature","properties":{"name":"Iron Mountain VA-1","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-77.54755,38.77752]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54315,38.77958]}},{"type":"Feature","properties":{"name":"Iron Mountain VA-2","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-77.54586,38.7773]}},{"type":"Feature","properties":{"name":"Iron Mountain VA-6","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-77.53886,38.76806]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54016,38.7753]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54016,38.78019]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.5398,38.77834]}},{"type":"Feature","properties":{"name":"Amazon IAD14","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54812,38.78979]}},{"type":"Feature","properties":{"name":"Amazon IAD52","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54826,38.79113]}},{"type":"Feature","properties":{"name":"Amazon IAD59","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54833,38.79211]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54807,38.79102]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00391,43.08328]}},{"type":"Feature","properties":{"name":"Blockfusion Niagra Falls","operator":""},"geometry":{"type":"Point","coordinates":[-79.00295,43.08349]}},{"type":"Feature","properties":{"name":"Blockfusion","operator":"Blockfusion"},"geometry":{"type":"Point","coordinates":[-78.94479,43.07489]}},{"type":"Feature","properties":{"name":"Equinix TR6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-79.71675,43.74386]}},{"type":"Feature","properties":{"name":"Equinix TR7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-79.71816,43.74502]}},{"type":"Feature","properties":{"name":"11:11 Systems","operator":""},"geometry":{"type":"Point","coordinates":[-79.75022,43.59819]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-79.74028,43.60495]}},{"type":"Feature","properties":{"name":"Cyxtera Toronto YYZ1","operator":"Cyxtera"},"geometry":{"type":"Point","coordinates":[-79.75307,43.59474]}},{"type":"Feature","properties":{"name":"CGI","operator":""},"geometry":{"type":"Point","coordinates":[-79.74641,43.60129]}},{"type":"Feature","properties":{"name":"Maxxam Analytics International Inc.","operator":""},"geometry":{"type":"Point","coordinates":[-79.74106,43.60548]}},{"type":"Feature","properties":{"name":"11:11 Systems","operator":""},"geometry":{"type":"Point","coordinates":[-79.7355,43.60337]}},{"type":"Feature","properties":{"name":"Compass","operator":"Compass"},"geometry":{"type":"Point","coordinates":[-79.52899,43.60187]}},{"type":"Feature","properties":{"name":"Amazon IAD24","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54005,38.79043]}},{"type":"Feature","properties":{"name":"Amazon IAD7","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.5385,38.79124]}},{"type":"Feature","properties":{"name":"Amazon IAD11","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.54118,38.79066]}},{"type":"Feature","properties":{"name":"CloudHQ MCC3","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[-77.49529,38.71489]}},{"type":"Feature","properties":{"name":"CloudHQ MCC2","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[-77.49942,38.72297]}},{"type":"Feature","properties":{"name":"QTS Manassas DC5","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.51752,38.75492]}},{"type":"Feature","properties":{"name":"Amazon IAD103","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.5043,38.73697]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49711,38.74671]}},{"type":"Feature","properties":{"name":"CloudHQ MCC1","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[-77.49976,38.71689]}},{"type":"Feature","properties":{"name":"Amazon IAD102","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.50503,38.73602]}},{"type":"Feature","properties":{"name":"Amazon IAD101","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.50579,38.73552]}},{"type":"Feature","properties":{"name":"Amazon IAD100","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.50695,38.7348]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.51731,38.74608]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.50398,38.7406]}},{"type":"Feature","properties":{"name":"QTS Manassas DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.51313,38.75266]}},{"type":"Feature","properties":{"name":"QTS Manassas DC2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.511,38.75346]}},{"type":"Feature","properties":{"name":"QTS Manassas DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.51239,38.75293]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49468,38.74775]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49292,38.74948]}},{"type":"Feature","properties":{"name":"Amazon IAD131","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.51839,38.76117]}},{"type":"Feature","properties":{"name":"Equinix DC13","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.4757,39.01243]}},{"type":"Feature","properties":{"name":"Amazon IAD62","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52005,38.9495]}},{"type":"Feature","properties":{"name":"Urbacon Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[-79.62063,43.74064]}},{"type":"Feature","properties":{"name":"Digital Realty Toronto YYZ11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-79.54044,43.77926]}},{"type":"Feature","properties":{"name":"Colosseum Online Inc.","operator":""},"geometry":{"type":"Point","coordinates":[-79.48978,43.77937]}},{"type":"Feature","properties":{"name":"Telus","operator":""},"geometry":{"type":"Point","coordinates":[-79.36053,43.70499]}},{"type":"Feature","properties":{"name":"Rogers Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-79.36494,43.84426]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-79.32041,43.83331]}},{"type":"Feature","properties":{"name":"QTS Ashburn-Shellhorn DC1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.47582,38.99859]}},{"type":"Feature","properties":{"name":"AWS","operator":""},"geometry":{"type":"Point","coordinates":[-77.41809,38.98093]}},{"type":"Feature","properties":{"name":"AWS","operator":""},"geometry":{"type":"Point","coordinates":[-77.42627,38.98133]}},{"type":"Feature","properties":{"name":"Aligned IAD02","operator":"Aligned"},"geometry":{"type":"Point","coordinates":[-77.47499,39.01042]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4175,38.9797]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA8 Data Centre","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.47541,39.02015]}},{"type":"Feature","properties":{"name":"Google Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.52712,38.94337]}},{"type":"Feature","properties":{"name":"Microsoft Data Center","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-77.55889,38.94923]}},{"type":"Feature","properties":{"name":"Arcola Tech Park","operator":""},"geometry":{"type":"Point","coordinates":[-77.5557,38.94818]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52225,38.94655]}},{"type":"Feature","properties":{"name":"Microsoft IAD11","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-77.55601,38.94791]}},{"type":"Feature","properties":{"name":"Google: Arcola 2","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.52847,38.9414]}},{"type":"Feature","properties":{"name":"Amazon IAD125","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.56062,38.94795]}},{"type":"Feature","properties":{"name":"Amazon IAD124","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.56053,38.94976]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.55906,38.94814]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.55895,38.95019]}},{"type":"Feature","properties":{"name":"Edgeconnex Toronto","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-79.34275,43.80935]}},{"type":"Feature","properties":{"name":"Equinix Markham TR5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-79.33297,43.84695]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC11","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45854,39.01485]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45956,39.01517]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.46187,39.01647]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.4538,39.01379]}},{"type":"Feature","properties":{"name":"Digital Realty ACC3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.45958,39.02023]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.46032,39.02192]}},{"type":"Feature","properties":{"name":"Level 3 Ashburn","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-77.45763,39.02213]}},{"type":"Feature","properties":{"name":"Digital Realty IAD42","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.4493,39.00556]}},{"type":"Feature","properties":{"name":"Vantage VA11","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-77.43745,39.00261]}},{"type":"Feature","properties":{"name":"Vantage VA13","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-77.43995,39.00309]}},{"type":"Feature","properties":{"name":"H5 Data Centers Ashburn","operator":"H5"},"geometry":{"type":"Point","coordinates":[-77.45176,39.01366]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45231,39.01687]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC10","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45193,39.02088]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC15","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45045,39.02257]}},{"type":"Feature","properties":{"name":"CyrusOne","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-77.42565,38.98493]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54968,38.94962]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.52425,38.9433]}},{"type":"Feature","properties":{"name":"Amazon IAD68","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52115,38.94891]}},{"type":"Feature","properties":{"name":"Amazon IAD81","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52203,38.94861]}},{"type":"Feature","properties":{"name":"Amazon IAD83","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52319,38.948]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52359,38.94911]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.52032,38.94732]}},{"type":"Feature","properties":{"name":"Amazon IAD-61","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49216,38.91563]}},{"type":"Feature","properties":{"name":"Amazon IAD63","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49333,38.91668]}},{"type":"Feature","properties":{"name":"Amazon IAD65","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49445,38.9168]}},{"type":"Feature","properties":{"name":"Amazon IAD86","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49576,38.91705]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49068,38.91582]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49096,38.91499]}},{"type":"Feature","properties":{"name":"Amazon IAD150","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4775,38.91583]}},{"type":"Feature","properties":{"name":"Amazon IAD152","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.47999,38.91655]}},{"type":"Feature","properties":{"name":"Amazon IAD151","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.47895,38.91612]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.48584,38.92096]}},{"type":"Feature","properties":{"name":"Amazon IAD-9","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45353,38.89967]}},{"type":"Feature","properties":{"name":"Amazon IAD-1","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45406,38.89805]}},{"type":"Feature","properties":{"name":"Amazon IAD22","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45515,38.89795]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.47259,38.91009]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.47365,38.90979]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.47239,38.9092]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45496,38.90485]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45266,38.9044]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4264,38.92112]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42639,38.92281]}},{"type":"Feature","properties":{"name":"Amazon IAD92","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41075,38.98688]}},{"type":"Feature","properties":{"name":"AWS","operator":""},"geometry":{"type":"Point","coordinates":[-77.41129,38.98753]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.42554,38.98451]}},{"type":"Feature","properties":{"name":"Centersquare IAD2-A","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.42397,38.98438]}},{"type":"Feature","properties":{"name":"Centersquare IAD2-B","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.42417,38.98379]}},{"type":"Feature","properties":{"name":"Amazon IAD144","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42751,38.98148]}},{"type":"Feature","properties":{"name":"Amazon IAD145","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42452,38.98251]}},{"type":"Feature","properties":{"name":"Amazon IAD175","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4259,38.97987]}},{"type":"Feature","properties":{"name":"Amazon IAD141","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41716,38.98251]}},{"type":"Feature","properties":{"name":"Amazon IAD140","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41792,38.98158]}},{"type":"Feature","properties":{"name":"Amazon IAD603","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41934,38.98154]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41759,38.98358]}},{"type":"Feature","properties":{"name":"Amazon IAD90","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41193,38.98854]}},{"type":"Feature","properties":{"name":"Amazon IAD91","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41139,38.98779]}},{"type":"Feature","properties":{"name":"Vantage VA2","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-77.43009,38.99782]}},{"type":"Feature","properties":{"name":"CyrusOne NVA8","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-77.41294,39.02124]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-77.56429,39.07498]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-77.56316,39.07562]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42788,38.92242]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42506,38.92321]}},{"type":"Feature","properties":{"name":"Amazon IAD120","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49829,38.95805]}},{"type":"Feature","properties":{"name":"Amazon IAD121","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.498,38.95692]}},{"type":"Feature","properties":{"name":"Amazon IAD122","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.49719,38.95569]}},{"type":"Feature","properties":{"name":"CyrusOne Sterling IX","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-77.5058,38.95837]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.49702,38.95792]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD44","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.492,38.96094]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD14","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.48728,39.00331]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.48329,39.00172]}},{"type":"Feature","properties":{"name":"AWS Building E","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.48563,39.00504]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD38","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.47729,39.00112]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD36","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.47941,39.00171]}},{"type":"Feature","properties":{"name":"Digital Loudoun Plaza","operator":""},"geometry":{"type":"Point","coordinates":[-77.48504,39.00448]}},{"type":"Feature","properties":{"name":"Digital Loudoun Plaza","operator":""},"geometry":{"type":"Point","coordinates":[-77.48286,39.00216]}},{"type":"Feature","properties":{"name":"Stonewall Creek Business Park","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.53961,39.05091]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.5401,39.05032]}},{"type":"Feature","properties":{"name":"42254 THUNDERBALL DR","operator":"True North Data Solutions"},"geometry":{"type":"Point","coordinates":[-77.54116,39.04363]}},{"type":"Feature","properties":{"name":"True North Data Centers","operator":"True North Data Solutions"},"geometry":{"type":"Point","coordinates":[-77.53741,39.0431]}},{"type":"Feature","properties":{"name":"TikTok Data Center","operator":"True North Data Solutions"},"geometry":{"type":"Point","coordinates":[-77.5377,39.04408]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54759,39.05565]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.53508,39.05062]}},{"type":"Feature","properties":{"name":"42310 THUNDERBALL DR","operator":"True North Data Solutions"},"geometry":{"type":"Point","coordinates":[-77.53935,39.04389]}},{"type":"Feature","properties":{"name":"42255 THUNDERBALL DR","operator":"True North Data Solutions"},"geometry":{"type":"Point","coordinates":[-77.53928,39.04153]}},{"type":"Feature","properties":{"name":"42311 THUNDERBALL DR","operator":"True North Data Solutions"},"geometry":{"type":"Point","coordinates":[-77.53825,39.04265]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54467,39.05519]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54611,39.0538]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.55885,39.06606]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.54674,39.05746]}},{"type":"Feature","properties":{"name":"Google Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[-77.53965,39.05235]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.56536,39.08212]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.56091,39.06943]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.55957,39.06944]}},{"type":"Feature","properties":{"name":"DataBank Ashburn IAD3","operator":"Databank"},"geometry":{"type":"Point","coordinates":[-77.48193,39.01777]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD35","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.48075,39.00041]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD37","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.47847,38.99991]}},{"type":"Feature","properties":{"name":"Amazon Web Services Building C","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.48562,39.00272]}},{"type":"Feature","properties":{"name":"Digital Realty Building A","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.48204,39.00257]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD24","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.48457,39.00421]}},{"type":"Feature","properties":{"name":"Databank Ashburn IAD1","operator":"Databank"},"geometry":{"type":"Point","coordinates":[-77.48203,39.0155]}},{"type":"Feature","properties":{"name":"Golds Gym Ashburn","operator":""},"geometry":{"type":"Point","coordinates":[-77.4834,39.01554]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.47831,39.0154]}},{"type":"Feature","properties":{"name":"Sabey Intergate.Ashburn (Building A)","operator":"Sabey Data Centers"},"geometry":{"type":"Point","coordinates":[-77.48007,39.01451]}},{"type":"Feature","properties":{"name":"STACK NVA01A - Northern Virginia","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[-77.44213,39.00478]}},{"type":"Feature","properties":{"name":"Digital Realty ACC4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46277,39.01802]}},{"type":"Feature","properties":{"name":"Digital Realty ACC5","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46307,39.01994]}},{"type":"Feature","properties":{"name":"Digital Realty ACC6","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46359,39.02106]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45902,39.02886]}},{"type":"Feature","properties":{"name":"Amazon Web Services Datacenter Complex","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45127,39.02644]}},{"type":"Feature","properties":{"name":"Amazon IAD50","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.46003,39.02955]}},{"type":"Feature","properties":{"name":"Amazon IAD60","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45845,39.02874]}},{"type":"Feature","properties":{"name":"Amazon IAD80","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4531,39.02716]}},{"type":"Feature","properties":{"name":"Amazon IAD71","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45772,39.02787]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA2 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.45778,39.02496]}},{"type":"Feature","properties":{"name":"Amazon IAD78","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44959,39.02658]}},{"type":"Feature","properties":{"name":"Amazon IAD79","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45094,39.02657]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC16","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45248,39.0242]}},{"type":"Feature","properties":{"name":"CyrusOne NVA7","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-77.43402,39.02631]}},{"type":"Feature","properties":{"name":"Amazon IAD114","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4509,39.03565]}},{"type":"Feature","properties":{"name":"Amazon IAD115","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44999,39.03645]}},{"type":"Feature","properties":{"name":"VISA Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-77.44519,39.04866]}},{"type":"Feature","properties":{"name":"Amazon Web Services IAD116","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42048,39.02435]}},{"type":"Feature","properties":{"name":"Amazon IAD174","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42787,39.02911]}},{"type":"Feature","properties":{"name":"Amazon IAD163","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42982,39.03245]}},{"type":"Feature","properties":{"name":"Amazon IAD164","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.42926,39.03074]}},{"type":"Feature","properties":{"name":"Centersquare IAD1-C","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.41237,39.02452]}},{"type":"Feature","properties":{"name":"CyrusOne NVA1, NVA2 & NVA3","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-77.41454,39.02593]}},{"type":"Feature","properties":{"name":"Centersquare IAD4-B","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.45379,39.02201]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.44237,38.98619]}},{"type":"Feature","properties":{"name":"Amazon IAD16","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44881,38.99079]}},{"type":"Feature","properties":{"name":"Amazon IAD56","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.437,38.99039]}},{"type":"Feature","properties":{"name":"Centersquare IAD4-A","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.45291,39.02159]}},{"type":"Feature","properties":{"name":"Amazon IAD88","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44207,38.99083]}},{"type":"Feature","properties":{"name":"Digital Realty ACC7","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46566,39.01776]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA3 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.47043,39.01755]}},{"type":"Feature","properties":{"name":"Amazon IAD58","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4417,38.98624]}},{"type":"Feature","properties":{"name":"Amazon IAD57","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44285,38.98703]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD40","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46749,39.00651]}},{"type":"Feature","properties":{"name":"Digital Realty ACC10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46537,39.01304]}},{"type":"Feature","properties":{"name":"Digital Realty Northern Virginia IAD39","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46759,39.00789]}},{"type":"Feature","properties":{"name":"GI Partners","operator":"GI Partners"},"geometry":{"type":"Point","coordinates":[-77.43995,39.00052]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA5 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.47266,39.01827]}},{"type":"Feature","properties":{"name":"CloudHQ LC1","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[-77.46283,39.00978]}},{"type":"Feature","properties":{"name":"Amazon Web Services IAD69","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4147,39.02549]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.19632,38.75084]}},{"type":"Feature","properties":{"name":"Lumen McLean","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-77.2117,38.91998]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.22594,38.91371]}},{"type":"Feature","properties":{"name":"Equinix DC7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.22059,38.90902]}},{"type":"Feature","properties":{"name":"CloudHQ LC2","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[-77.46253,39.01173]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC21","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45443,39.01211]}},{"type":"Feature","properties":{"name":"Vantage VA12","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-77.43824,39.00167]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4712,38.99597]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.47364,38.99641]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45307,39.01582]}},{"type":"Feature","properties":{"name":"QTS Ashburn Lockridge","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.45537,38.99557]}},{"type":"Feature","properties":{"name":"QTS Ashburn Lockridge","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.45683,38.99541]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.45947,39.01795]}},{"type":"Feature","properties":{"name":"Centersquare Ashburn IAD4 Data Center","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.45356,39.02171]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.45215,39.00185]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.47106,38.9951]}},{"type":"Feature","properties":{"name":"QTS Ashburn-Shellhorn DC2","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.47455,38.99894]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.46122,39.0004]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.46066,38.9992]}},{"type":"Feature","properties":{"name":"Centersquare IAD3","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-77.44427,38.98089]}},{"type":"Feature","properties":{"name":"Amazon IAD12","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44789,38.98869]}},{"type":"Feature","properties":{"name":"Amazon IAD192","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43484,38.98969]}},{"type":"Feature","properties":{"name":"Amazon IAD214","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43517,38.98666]}},{"type":"Feature","properties":{"name":"Aligned IAD03","operator":"Aligned"},"geometry":{"type":"Point","coordinates":[-77.44053,38.98872]}},{"type":"Feature","properties":{"name":"Amazon IAD76","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.45067,38.99363]}},{"type":"Feature","properties":{"name":"Amazon IAD15","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44865,38.9916]}},{"type":"Feature","properties":{"name":"Element Critical VA1","operator":""},"geometry":{"type":"Point","coordinates":[-77.2198,38.90833]}},{"type":"Feature","properties":{"name":"8100 Boone Boulevard","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.22588,38.91372]}},{"type":"Feature","properties":{"name":"DataBank McLean IAD2","operator":"DataBank"},"geometry":{"type":"Point","coordinates":[-77.21366,38.91988]}},{"type":"Feature","properties":{"name":"Lumen McLean","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-77.21157,38.92085]}},{"type":"Feature","properties":{"name":"VA3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.32753,38.94846]}},{"type":"Feature","properties":{"name":"IAD1","operator":"Evocative"},"geometry":{"type":"Point","coordinates":[-77.32938,38.94883]}},{"type":"Feature","properties":{"name":"CoreSite DC1","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-77.02915,38.90289]}},{"type":"Feature","properties":{"name":"Lincoln Rackhouse Maryland","operator":"Lincoln Rackhouse"},"geometry":{"type":"Point","coordinates":[-76.96443,39.05837]}},{"type":"Feature","properties":{"name":"AiNET","operator":""},"geometry":{"type":"Point","coordinates":[-76.92609,39.05266]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-76.85169,39.13356]}},{"type":"Feature","properties":{"name":"QTS Ashburn-Moran","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.44833,38.99431]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.44995,38.99965]}},{"type":"Feature","properties":{"name":"QTS Ashburn 1","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-77.44957,38.99951]}},{"type":"Feature","properties":{"name":"Amazon IAD51","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43625,38.99143]}},{"type":"Feature","properties":{"name":"Amazon IAD87","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.44112,38.99199]}},{"type":"Feature","properties":{"name":"Amazon IAD147","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43528,38.99524]}},{"type":"Feature","properties":{"name":"Digital Realty IAD55","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.43373,38.99225]}},{"type":"Feature","properties":{"name":"Amazon IAD146","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.4358,38.99708]}},{"type":"Feature","properties":{"name":"CloudHQ","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[-77.47241,39.00232]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.47169,39.01203]}},{"type":"Feature","properties":{"name":"Digital Realty IAD41 (Building P)","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.45786,39.00916]}},{"type":"Feature","properties":{"name":"CloudHQ LC3","operator":""},"geometry":{"type":"Point","coordinates":[-77.46047,39.01101]}},{"type":"Feature","properties":{"name":"Digital Realty ACC9","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-77.46717,39.01549]}},{"type":"Feature","properties":{"name":"Aligned Ashburn","operator":"Aligned"},"geometry":{"type":"Point","coordinates":[-77.47048,39.01373]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.47326,39.01717]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA7 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.47195,39.01601]}},{"type":"Feature","properties":{"name":"NTT Ashburn VA4 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-77.47305,39.0199]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.45902,39.01663]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.46122,39.01597]}},{"type":"Feature","properties":{"name":"Equinix Ashburn DC1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-77.46042,39.01561]}},{"type":"Feature","properties":{"name":"PowerHouse ABX-1","operator":"PowerHouse"},"geometry":{"type":"Point","coordinates":[-77.45013,39.01975]}},{"type":"Feature","properties":{"name":"TierPoint Baltimore BWI","operator":""},"geometry":{"type":"Point","coordinates":[-76.68276,39.21345]}},{"type":"Feature","properties":{"name":"CyberNAP Glen Burnie","operator":"AiNET"},"geometry":{"type":"Point","coordinates":[-76.6064,39.14061]}},{"type":"Feature","properties":{"name":"Baltimore Technology Park","operator":""},"geometry":{"type":"Point","coordinates":[-76.62565,39.27532]}},{"type":"Feature","properties":{"name":"Expedient Tidepoint","operator":"Expedient"},"geometry":{"type":"Point","coordinates":[-76.59167,39.27466]}},{"type":"Feature","properties":{"name":"Lumen Baltimore","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-76.6204,39.29176]}},{"type":"Feature","properties":{"name":"AiNET One Market Center","operator":"AiNET"},"geometry":{"type":"Point","coordinates":[-76.62037,39.29176]}},{"type":"Feature","properties":{"name":"Crown Castle Baltimore","operator":"Crown Castle Fiber"},"geometry":{"type":"Point","coordinates":[-76.60649,39.2877]}},{"type":"Feature","properties":{"name":"Amazon IAD119","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43932,39.01704]}},{"type":"Feature","properties":{"name":"Amazon IAD128","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43868,39.01587]}},{"type":"Feature","properties":{"name":"Amazon IAD601","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43775,39.01526]}},{"type":"Feature","properties":{"name":"Amazon IAD10","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43292,39.02174]}},{"type":"Feature","properties":{"name":"Amazon IAD98","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43417,39.02019]}},{"type":"Feature","properties":{"name":"Amazon IAD99","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43431,39.01914]}},{"type":"Feature","properties":{"name":"Amazon IAD118","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43875,39.01841]}},{"type":"Feature","properties":{"name":"Amazon IAD32","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.43484,39.02165]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-77.41976,38.97923]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.42505,38.9362]}},{"type":"Feature","properties":{"name":"CoreSite Reston VA3","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-77.37228,38.94838]}},{"type":"Feature","properties":{"name":"CoreSite Reston Campus VA1","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-77.36454,38.95025]}},{"type":"Feature","properties":{"name":"CoreSite Reston Campus VA2","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-77.36397,38.95139]}},{"type":"Feature","properties":{"name":"Equinix DC97","operator":""},"geometry":{"type":"Point","coordinates":[-77.37763,38.96154]}},{"type":"Feature","properties":{"name":"Johns Hopkins Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-76.5517,39.29357]}},{"type":"Feature","properties":{"name":"Morgan Wireless","operator":""},"geometry":{"type":"Point","coordinates":[-78.22532,39.63099]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-77.41175,39.37778]}},{"type":"Feature","properties":{"name":"Expedient Owings Mills","operator":"Expedient"},"geometry":{"type":"Point","coordinates":[-76.81155,39.42732]}},{"type":"Feature","properties":{"name":"CoreSite BO1","operator":""},"geometry":{"type":"Point","coordinates":[-71.07988,42.37682]}},{"type":"Feature","properties":{"name":"Markley Data Center","operator":"Markley Group"},"geometry":{"type":"Point","coordinates":[-71.30458,42.62997]}},{"type":"Feature","properties":{"name":"TierPoint","operator":"TierPoint"},"geometry":{"type":"Point","coordinates":[-71.20857,42.68574]}},{"type":"Feature","properties":{"name":"University of New Hampshire","operator":"University of New Hampshire"},"geometry":{"type":"Point","coordinates":[-70.95266,43.14365]}},{"type":"Feature","properties":{"name":"FirstLight","operator":"FirstLight"},"geometry":{"type":"Point","coordinates":[-70.8081,43.07607]}},{"type":"Feature","properties":{"name":"Verizon","operator":""},"geometry":{"type":"Point","coordinates":[-78.72878,40.8782]}},{"type":"Feature","properties":{"name":"Nautilus Cryptomine","operator":""},"geometry":{"type":"Point","coordinates":[-76.1517,41.08335]}},{"type":"Feature","properties":{"name":"Amazon AWS PHL","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-76.14339,41.08447]}},{"type":"Feature","properties":{"name":"Nautilus Cryptomine","operator":""},"geometry":{"type":"Point","coordinates":[-76.15167,41.08264]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-75.19544,39.83091]}},{"type":"Feature","properties":{"name":"Terminal Commerce Building","operator":""},"geometry":{"type":"Point","coordinates":[-75.16063,39.95978]}},{"type":"Feature","properties":{"name":"FirstLight Data Center","operator":"FirstLight"},"geometry":{"type":"Point","coordinates":[-70.26138,43.65784]}},{"type":"Feature","properties":{"name":"Oxford Networks","operator":"FirstLight"},"geometry":{"type":"Point","coordinates":[-69.92343,43.895]}},{"type":"Feature","properties":{"name":"TierPoint Valley Forge","operator":"TierPoint"},"geometry":{"type":"Point","coordinates":[-75.42098,40.12196]}},{"type":"Feature","properties":{"name":"Flexential Philadelphia - Collegeville","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-75.47732,40.15222]}},{"type":"Feature","properties":{"name":"D\u0101Stor: 3400 Horizon Drive","operator":""},"geometry":{"type":"Point","coordinates":[-75.33972,40.08792]}},{"type":"Feature","properties":{"name":"Lumen Norristown","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-75.40873,40.12704]}},{"type":"Feature","properties":{"name":"Allentown-TekPark","operator":""},"geometry":{"type":"Point","coordinates":[-75.65445,40.54412]}},{"type":"Feature","properties":{"name":"Flexential Allentown data center","operator":"Flexential"},"geometry":{"type":"Point","coordinates":[-75.45767,40.63578]}},{"type":"Feature","properties":{"name":"501 West","operator":""},"geometry":{"type":"Point","coordinates":[-74.66885,40.31556]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.71019,40.59961]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.70959,40.59938]}},{"type":"Feature","properties":{"name":"Verizon Wireless NE Headquarters","operator":""},"geometry":{"type":"Point","coordinates":[-74.70543,40.55573]}},{"type":"Feature","properties":{"name":"Vital Records","operator":""},"geometry":{"type":"Point","coordinates":[-74.68286,40.52806]}},{"type":"Feature","properties":{"name":"Goldman Sachs","operator":""},"geometry":{"type":"Point","coordinates":[-74.6706,40.57038]}},{"type":"Feature","properties":{"name":"BNY Mellon Somerset","operator":""},"geometry":{"type":"Point","coordinates":[-74.55335,40.53554]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.55556,40.53741]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.54829,40.52405]}},{"type":"Feature","properties":{"name":"CyrusOne Somerset","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-74.5461,40.53792]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.53856,40.54345]}},{"type":"Feature","properties":{"name":"Rackspace Somerset NYC1","operator":""},"geometry":{"type":"Point","coordinates":[-74.53781,40.54456]}},{"type":"Feature","properties":{"name":"Rackspace Belmont NYC2","operator":""},"geometry":{"type":"Point","coordinates":[-74.53751,40.54103]}},{"type":"Feature","properties":{"name":"365 Bridgewater NJ","operator":""},"geometry":{"type":"Point","coordinates":[-74.57391,40.58137]}},{"type":"Feature","properties":{"name":"Apollo Cable Landing Station","operator":"Apollo"},"geometry":{"type":"Point","coordinates":[-74.10168,40.15703]}},{"type":"Feature","properties":{"name":"Verizon Wireline Network Building","operator":""},"geometry":{"type":"Point","coordinates":[-74.44316,40.49496]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.49549,40.54472]}},{"type":"Feature","properties":{"name":"Verizon","operator":""},"geometry":{"type":"Point","coordinates":[-74.49669,40.54426]}},{"type":"Feature","properties":{"name":"Optimum","operator":""},"geometry":{"type":"Point","coordinates":[-74.49205,40.54682]}},{"type":"Feature","properties":{"name":"QTS Piscataway Data Center","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[-74.48403,40.55673]}},{"type":"Feature","properties":{"name":"DataBank Piscataway EWR2","operator":""},"geometry":{"type":"Point","coordinates":[-74.45833,40.54923]}},{"type":"Feature","properties":{"name":"Barclays Datacenter","operator":"Barclays"},"geometry":{"type":"Point","coordinates":[-74.4596,40.54717]}},{"type":"Feature","properties":{"name":"Open Data Centers Piscataway","operator":""},"geometry":{"type":"Point","coordinates":[-74.45686,40.55035]}},{"type":"Feature","properties":{"name":"Digital Realty New York EWR11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.4572,40.55378]}},{"type":"Feature","properties":{"name":"Digital Realty New York EWR12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.45943,40.55283]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.45665,40.55299]}},{"type":"Feature","properties":{"name":"PSE&G Delivery Emergency Response Center","operator":"PSE&G"},"geometry":{"type":"Point","coordinates":[-74.51952,40.57999]}},{"type":"Feature","properties":{"name":"IO Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[-74.34782,40.52107]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.24361,40.58416]}},{"type":"Feature","properties":{"name":"Barclays Datacenter","operator":"Barclays"},"geometry":{"type":"Point","coordinates":[-74.28572,40.64363]}},{"type":"Feature","properties":{"name":"Merrill Lynch Data Center","operator":"Merrill Lynch"},"geometry":{"type":"Point","coordinates":[-74.17295,40.60751]}},{"type":"Feature","properties":{"name":"Telehouse Teleport","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[-74.17486,40.60696]}},{"type":"Feature","properties":{"name":"Dataverge","operator":"Dataverge"},"geometry":{"type":"Point","coordinates":[-74.00482,40.6577]}},{"type":"Feature","properties":{"name":"165 Halsey / Equinix NY1 / Databank EWR1","operator":"Tishman"},"geometry":{"type":"Point","coordinates":[-74.17371,40.73686]}},{"type":"Feature","properties":{"name":"33 Thomas Street","operator":""},"geometry":{"type":"Point","coordinates":[-74.00591,40.71651]}},{"type":"Feature","properties":{"name":"Digital Realty New York JFK12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.00844,40.71768]}},{"type":"Feature","properties":{"name":"32 Avenue of the Americas","operator":""},"geometry":{"type":"Point","coordinates":[-74.00478,40.72005]}},{"type":"Feature","properties":{"name":"Digital Realty New York JFK13","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.00446,40.71993]}},{"type":"Feature","properties":{"name":"Equinix New York Secaucus NY4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.07002,40.77621]}},{"type":"Feature","properties":{"name":"Equinix NY3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.06884,40.77491]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-63.59425,44.65498]}},{"type":"Feature","properties":{"name":"Equinix New York Secaucus NY2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.07579,40.77716]}},{"type":"Feature","properties":{"name":"Equinix New York Secaucus NY5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.07199,40.77865]}},{"type":"Feature","properties":{"name":"Equinix Secaucus NY6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.07278,40.7776]}},{"type":"Feature","properties":{"name":"Cyxtera (Digital Realty Trust) Citibank Data Center","operator":"Cyxtera"},"geometry":{"type":"Point","coordinates":[-74.02568,40.76062]}},{"type":"Feature","properties":{"name":"Digital Realty New Jersey EWR10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.02521,40.76186]}},{"type":"Feature","properties":{"name":"BT Radianz: 492 River Road","operator":"bt"},"geometry":{"type":"Point","coordinates":[-74.13424,40.82144]}},{"type":"Feature","properties":{"name":"Credit Suisse: Clifton Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-74.14055,40.83338]}},{"type":"Feature","properties":{"name":"Digital Realty New Jersey EWR21","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.12468,40.83061]}},{"type":"Feature","properties":{"name":"Digital Realty New Jersey EWR20","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-74.12683,40.82994]}},{"type":"Feature","properties":{"name":"Data Center do Estado","operator":""},"geometry":{"type":"Point","coordinates":[-23.49597,14.92632]}},{"type":"Feature","properties":{"name":"Raxio CIV1","operator":"Raxio"},"geometry":{"type":"Point","coordinates":[-3.75911,5.22769]}},{"type":"Feature","properties":{"name":"National Data Centre","operator":"Government of Ghana"},"geometry":{"type":"Point","coordinates":[-0.19597,5.55198]}},{"type":"Feature","properties":{"name":"MTN Ghana Tetteh Quarshie Switch Center","operator":""},"geometry":{"type":"Point","coordinates":[-0.18146,5.62575]}},{"type":"Feature","properties":{"name":"Aire Canarias","operator":"AIRE"},"geometry":{"type":"Point","coordinates":[-15.42914,28.11871]}},{"type":"Feature","properties":{"name":"Data Center","operator":"OCP/UM6P"},"geometry":{"type":"Point","coordinates":[-7.93013,32.22251]}},{"type":"Feature","properties":{"name":"Lab 8b","operator":""},"geometry":{"type":"Point","coordinates":[-5.10826,33.53838]}},{"type":"Feature","properties":{"name":"Lab 7","operator":""},"geometry":{"type":"Point","coordinates":[-5.10762,33.53799]}},{"type":"Feature","properties":{"name":"LTS Lab","operator":""},"geometry":{"type":"Point","coordinates":[-5.10733,33.53896]}},{"type":"Feature","properties":{"name":"Lab 11","operator":""},"geometry":{"type":"Point","coordinates":[-5.1083,33.53928]}},{"type":"Feature","properties":{"name":"Inwi Datacenter Technopolis","operator":""},"geometry":{"type":"Point","coordinates":[-6.72197,33.98821]}},{"type":"Feature","properties":{"name":"Centersquare NYC3 Data Center","operator":"Centersquare"},"geometry":{"type":"Point","coordinates":[-74.06897,40.78614]}},{"type":"Feature","properties":{"name":"H5 Secaucus","operator":"H5"},"geometry":{"type":"Point","coordinates":[-74.07501,40.78539]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.06446,40.78461]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-74.06586,40.78417]}},{"type":"Feature","properties":{"name":"CoreSite Secaucus Campus","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-74.0655,40.78431]}},{"type":"Feature","properties":{"name":"CoreSite NY3","operator":"CoreSite"},"geometry":{"type":"Point","coordinates":[-74.06549,40.78491]}},{"type":"Feature","properties":{"name":"Evocative Secaucus","operator":"Evocative"},"geometry":{"type":"Point","coordinates":[-74.06818,40.78744]}},{"type":"Feature","properties":{"name":"Equinix NY7 Data Center","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.03126,40.79679]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-73.89798,40.95127]}},{"type":"Feature","properties":{"name":"NYSE Data Center","operator":"nyse"},"geometry":{"type":"Point","coordinates":[-74.1528,41.07867]}},{"type":"Feature","properties":{"name":"Databank LGA3","operator":"Databank"},"geometry":{"type":"Point","coordinates":[-73.98981,41.0401]}},{"type":"Feature","properties":{"name":"Bloomberg Data Center","operator":"Bloomberg"},"geometry":{"type":"Point","coordinates":[-73.98755,41.03633]}},{"type":"Feature","properties":{"name":"fifteenfortyseven CSR ORNY1","operator":"fifteenfortyseven Critical Systems Realty"},"geometry":{"type":"Point","coordinates":[-73.97623,41.03437]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-73.97204,41.0523]}},{"type":"Feature","properties":{"name":"amnet Data Center","operator":""},"geometry":{"type":"Point","coordinates":[-73.51661,41.09188]}},{"type":"Feature","properties":{"name":"CyrusOne Norwalk","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-73.38879,41.11313]}},{"type":"Feature","properties":{"name":"Digital Realty New York HVN10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-73.14699,41.24051]}},{"type":"Feature","properties":{"name":"Start SIN01","operator":""},"geometry":{"type":"Point","coordinates":[-8.81263,37.93509]}},{"type":"Feature","properties":{"name":"Seixal Colocation Site","operator":"TATA Communications"},"geometry":{"type":"Point","coordinates":[-9.15986,38.60008]}},{"type":"Feature","properties":{"name":"NOS Imopolis II","operator":"NOS"},"geometry":{"type":"Point","coordinates":[-9.23072,38.7252]}},{"type":"Feature","properties":{"name":"NOS Imopolis I","operator":"NOS"},"geometry":{"type":"Point","coordinates":[-9.23061,38.72606]}},{"type":"Feature","properties":{"name":"Equinix LS1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-9.12338,38.78788]}},{"type":"Feature","properties":{"name":"MEO","operator":"MEO"},"geometry":{"type":"Point","coordinates":[-8.11381,38.05943]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-78.7492,43.04492]}},{"type":"Feature","properties":{"name":"Greenidge Power Plant and Data Center","operator":"Greenidge Generation Holdings Inc."},"geometry":{"type":"Point","coordinates":[-76.9488,42.6794]}},{"type":"Feature","properties":{"name":"SU Green Data Center","operator":"Syracuse University"},"geometry":{"type":"Point","coordinates":[-76.11598,43.01208]}},{"type":"Feature","properties":{"name":"IBM Building","operator":""},"geometry":{"type":"Point","coordinates":[-73.75279,42.64932]}},{"type":"Feature","properties":{"name":"inforland.com","operator":"inforland.com"},"geometry":{"type":"Point","coordinates":[-3.87738,36.74839]}},{"type":"Feature","properties":{"name":"Cloud Center Andaluc\u00eda","operator":""},"geometry":{"type":"Point","coordinates":[-3.65701,37.20075]}},{"type":"Feature","properties":{"name":"centro de datos trasbase Negrat\u00edn","operator":""},"geometry":{"type":"Point","coordinates":[-2.00228,37.45148]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-2.00223,37.45156]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-2.02072,37.57274]}},{"type":"Feature","properties":{"name":"Data Center KIO Murcia","operator":"KIO Networks Espa\u00f1a"},"geometry":{"type":"Point","coordinates":[-1.17088,38.02467]}},{"type":"Feature","properties":{"name":"The Weaver","operator":""},"geometry":{"type":"Point","coordinates":[-0.58922,38.29384]}},{"type":"Feature","properties":{"name":"Lumen Albany 4","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-73.81867,42.73563]}},{"type":"Feature","properties":{"name":"Turnkey Internet","operator":""},"geometry":{"type":"Point","coordinates":[-73.75915,42.7454]}},{"type":"Feature","properties":{"name":"Old Main","operator":"Clarkson University"},"geometry":{"type":"Point","coordinates":[-74.98061,44.6681]}},{"type":"Feature","properties":{"name":"NYGC Chateaugay","operator":"2CRSi"},"geometry":{"type":"Point","coordinates":[-74.0726,44.89287]}},{"type":"Feature","properties":{"name":"Cable & Wireless Cable Landing Station","operator":""},"geometry":{"type":"Point","coordinates":[-72.8834,40.84363]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-72.80103,41.47875]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-8.63878,41.16362]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-8.6427,41.17712]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-8.59752,41.17789]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-8.59512,41.17778]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-8.59513,41.17773]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-8.59503,41.17772]}},{"type":"Feature","properties":{"name":"Data Center IPT","operator":""},"geometry":{"type":"Point","coordinates":[-8.38865,39.59972]}},{"type":"Feature","properties":{"name":"Data Center Portugal Telecom da Covilh\u00e3","operator":"Portugal Telecom"},"geometry":{"type":"Point","coordinates":[-7.47961,40.2655]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-5.83781,40.71398]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-5.83934,40.71399]}},{"type":"Feature","properties":{"name":"Datacenter de Riba d'Ave","operator":"REN;NOS"},"geometry":{"type":"Point","coordinates":[-8.39169,41.4037]}},{"type":"Feature","properties":{"name":"Centro de Computa\u00e7\u00e3o Avan\u00e7ada do Minho","operator":"Funda\u00e7\u00e3o para a Ci\u00eancia e Tecnologia"},"geometry":{"type":"Point","coordinates":[-8.39158,41.40377]}},{"type":"Feature","properties":{"name":"Ergonomic Group","operator":""},"geometry":{"type":"Point","coordinates":[-72.58986,41.70708]}},{"type":"Feature","properties":{"name":"Information Technology Data Center","operator":"Phillips Exeter Academy"},"geometry":{"type":"Point","coordinates":[-70.95057,42.98213]}},{"type":"Feature","properties":{"name":"Interoute Bordeaux","operator":"Interoute"},"geometry":{"type":"Point","coordinates":[-0.53752,44.78103]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-5.85766,43.36084]}},{"type":"Feature","properties":{"name":"TDF ProxiCenter Bordeaux Bouliac","operator":""},"geometry":{"type":"Point","coordinates":[-0.50555,44.81967]}},{"type":"Feature","properties":{"name":"SFR Netcenter Bordeaux","operator":"SFR"},"geometry":{"type":"Point","coordinates":[-0.55646,44.88894]}},{"type":"Feature","properties":{"name":"Equinix MD6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-3.66259,40.53437]}},{"type":"Feature","properties":{"name":"DATA4 - MAD1","operator":"Data4"},"geometry":{"type":"Point","coordinates":[-3.64789,40.53492]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-3.61378,40.54911]}},{"type":"Feature","properties":{"name":"Microsoft MAD01","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-3.54985,40.59342]}},{"type":"Feature","properties":{"name":"Centro de Datos Alcal\u00e1 (Alcal\u00e1 Data Center)","operator":"Telef\u00f3nica"},"geometry":{"type":"Point","coordinates":[-3.34108,40.51944]}},{"type":"Feature","properties":{"name":"Data Center KIO Valencia","operator":"KIO Networks Espa\u00f1a"},"geometry":{"type":"Point","coordinates":[-0.44869,39.51572]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.07454,39.99595]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.84571,41.79386]}},{"type":"Feature","properties":{"name":"Amazon Data Services Spain S.L.U.","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-0.453,42.10295]}},{"type":"Feature","properties":{"name":"Data Center Bilbao Arasur","operator":"Merlin Properties"},"geometry":{"type":"Point","coordinates":[-2.91058,42.69832]}},{"type":"Feature","properties":{"name":"Data Center 2 Bilbao Arasur","operator":"Merlin Properties"},"geometry":{"type":"Point","coordinates":[-2.90723,42.69883]}},{"type":"Feature","properties":{"name":"Centro de Procesamiento de Datos Sur","operator":"Banco Santander"},"geometry":{"type":"Point","coordinates":[-3.75383,43.39029]}},{"type":"Feature","properties":{"name":"Centro de Procesamiento de Datos Norte","operator":"Banco Santander"},"geometry":{"type":"Point","coordinates":[-3.75332,43.39275]}},{"type":"Feature","properties":{"name":"Centro de Procesamiento de Datos del Gobierno de Cantabria","operator":"Gobienro de Cantabria"},"geometry":{"type":"Point","coordinates":[-3.81413,43.46619]}},{"type":"Feature","properties":{"name":"Mozoilo AJVP","operator":"Mozoilo"},"geometry":{"type":"Point","coordinates":[-2.87427,43.24204]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-2.86864,43.29886]}},{"type":"Feature","properties":{"name":"CPD Gobierno de Navarra","operator":"Nasertic"},"geometry":{"type":"Point","coordinates":[-1.65975,42.81779]}},{"type":"Feature","properties":{"name":"CPD Gobierno de Navarra","operator":"Nasertic"},"geometry":{"type":"Point","coordinates":[-1.62457,42.81392]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.31174,43.3202]}},{"type":"Feature","properties":{"name":"Equinix OT1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-75.39831,45.57475]}},{"type":"Feature","properties":{"name":"OVHcloud, Centre de donn\u00e9es de Beauharnois","operator":""},"geometry":{"type":"Point","coordinates":[-73.89336,45.30862]}},{"type":"Feature","properties":{"name":"Hive Digital Technologies","operator":""},"geometry":{"type":"Point","coordinates":[-74.28799,45.63686]}},{"type":"Feature","properties":{"name":"MT2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-74.05051,45.41262]}},{"type":"Feature","properties":{"name":"Compass Datacenters","operator":""},"geometry":{"type":"Point","coordinates":[-73.91382,45.42359]}},{"type":"Feature","properties":{"name":"Vantage Montreal II","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-73.80043,45.47479]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-73.79965,45.47417]}},{"type":"Feature","properties":{"name":"Cologix","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-73.77001,45.48088]}},{"type":"Feature","properties":{"name":"Vantage Data Centers Montreal I","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-73.75605,45.48675]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-73.56331,45.4973]}},{"type":"Feature","properties":{"name":"Colo RIve-Sud","operator":""},"geometry":{"type":"Point","coordinates":[-73.52017,45.52296]}},{"type":"Feature","properties":{"name":"Vid\u00e9otron","operator":"Vid\u00e9otron"},"geometry":{"type":"Point","coordinates":[-73.61069,45.52869]}},{"type":"Feature","properties":{"name":"Bell Canada","operator":"Bell Canada"},"geometry":{"type":"Point","coordinates":[-73.60686,45.53013]}},{"type":"Feature","properties":{"name":"Amazon","operator":"Amazon"},"geometry":{"type":"Point","coordinates":[-73.38156,45.62382]}},{"type":"Feature","properties":{"name":"Amazon","operator":"Amazon"},"geometry":{"type":"Point","coordinates":[-73.38273,45.62312]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[-0.52988,44.72433]}},{"type":"Feature","properties":{"name":"Cologix","operator":"Cologix"},"geometry":{"type":"Point","coordinates":[-72.54643,45.8793]}},{"type":"Feature","properties":{"name":"Centre de donn\u00e9es d'Hydro-Qu\u00e9bec","operator":"Hydro-Qu\u00e9bec"},"geometry":{"type":"Point","coordinates":[-72.52789,45.8839]}},{"type":"Feature","properties":{"name":"Cogent","operator":"Cogent Communications"},"geometry":{"type":"Point","coordinates":[-0.55545,44.86299]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.61201,44.89601]}},{"type":"Feature","properties":{"name":"Ali\u00e9nor.net","operator":"Alienor.net"},"geometry":{"type":"Point","coordinates":[-0.59797,44.87403]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.61173,44.89616]}},{"type":"Feature","properties":{"name":"QScale","operator":""},"geometry":{"type":"Point","coordinates":[-71.32515,46.67605]}},{"type":"Feature","properties":{"name":"Vantage Data Centers","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-71.30615,46.79539]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-71.3065,46.79568]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-71.30414,46.79487]}},{"type":"Feature","properties":{"name":"Marysville Place","operator":""},"geometry":{"type":"Point","coordinates":[-66.58886,45.97813]}},{"type":"Feature","properties":{"name":"Bell Aliant PEI","operator":"Bell Canada"},"geometry":{"type":"Point","coordinates":[-63.14368,46.25101]}},{"type":"Feature","properties":{"name":"Verne Global Campus","operator":""},"geometry":{"type":"Point","coordinates":[-22.5774,63.97686]}},{"type":"Feature","properties":{"name":"Verne Gagnaver","operator":"Verne Global"},"geometry":{"type":"Point","coordinates":[-22.57579,63.97693]}},{"type":"Feature","properties":{"name":"Verne Gagnaver","operator":"Verne Global"},"geometry":{"type":"Point","coordinates":[-22.57617,63.97803]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-22.57601,63.97614]}},{"type":"Feature","properties":{"name":"\u00dej\u00f3\u00f0braut 838","operator":""},"geometry":{"type":"Point","coordinates":[-22.58375,63.9762]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-22.535,63.96161]}},{"type":"Feature","properties":{"name":"M01","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53602,63.96315]}},{"type":"Feature","properties":{"name":"M03","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53604,63.9637]}},{"type":"Feature","properties":{"name":"M02","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53599,63.96342]}},{"type":"Feature","properties":{"name":"M12","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53894,63.96353]}},{"type":"Feature","properties":{"name":"M13","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53889,63.96377]}},{"type":"Feature","properties":{"name":"M14","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53891,63.96402]}},{"type":"Feature","properties":{"name":"M15","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53886,63.96428]}},{"type":"Feature","properties":{"name":"M05","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53598,63.96424]}},{"type":"Feature","properties":{"name":"M11","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53895,63.96327]}},{"type":"Feature","properties":{"name":"M04","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53593,63.96399]}},{"type":"Feature","properties":{"name":"ICE02 Campus","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53854,63.96406]}},{"type":"Feature","properties":{"name":"M16","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53884,63.96453]}},{"type":"Feature","properties":{"name":"M06","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.53594,63.96454]}},{"type":"Feature","properties":{"name":"M21","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.5415,63.96327]}},{"type":"Feature","properties":{"name":"M22","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.54147,63.96358]}},{"type":"Feature","properties":{"name":"M23","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.54134,63.96387]}},{"type":"Feature","properties":{"name":"M24","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-22.5413,63.96416]}},{"type":"Feature","properties":{"name":"ESAT 1 Cable Landing Station","operator":"BT Ireland"},"geometry":{"type":"Point","coordinates":[-5.67522,50.08117]}},{"type":"Feature","properties":{"name":"Skewjack Cable Landing Station","operator":""},"geometry":{"type":"Point","coordinates":[-5.67487,50.064]}},{"type":"Feature","properties":{"name":"Verizon","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-5.68483,50.07477]}},{"type":"Feature","properties":{"name":"Lands End Cable Landing Station","operator":"BT"},"geometry":{"type":"Point","coordinates":[-5.67188,50.06685]}},{"type":"Feature","properties":{"name":"Virgin Media","operator":"Virgin Media"},"geometry":{"type":"Point","coordinates":[-5.67712,50.06979]}},{"type":"Feature","properties":{"name":"Whitesands Cable Landing Station","operator":"Level3 Communications"},"geometry":{"type":"Point","coordinates":[-5.67506,50.0806]}},{"type":"Feature","properties":{"name":"Cable & Wireless Cable Landing Station","operator":"Cable & Wireless"},"geometry":{"type":"Point","coordinates":[-5.66323,50.05598]}},{"type":"Feature","properties":{"name":"Datacenter Data17","operator":"Data17"},"geometry":{"type":"Point","coordinates":[-0.52244,45.92746]}},{"type":"Feature","properties":{"name":"Centre de donn\u00e9es MAIF","operator":"MAIF;DARVA"},"geometry":{"type":"Point","coordinates":[-0.37654,46.34526]}},{"type":"Feature","properties":{"name":"Station d'atterrage","operator":"orange"},"geometry":{"type":"Point","coordinates":[-1.99031,46.73844]}},{"type":"Feature","properties":{"name":"Etix Vend\u00e9e #2","operator":""},"geometry":{"type":"Point","coordinates":[-1.74785,46.51546]}},{"type":"Feature","properties":{"name":"Etix Vend\u00e9e #2","operator":""},"geometry":{"type":"Point","coordinates":[-1.74791,46.5155]}},{"type":"Feature","properties":{"name":"Proginov","operator":""},"geometry":{"type":"Point","coordinates":[-1.55533,47.08916]}},{"type":"Feature","properties":{"name":"Data Center Bluecom","operator":"Bluecom"},"geometry":{"type":"Point","coordinates":[-4.41547,48.4413]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[-1.63488,47.22427]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.63105,47.2314]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[-1.56079,47.19664]}},{"type":"Feature","properties":{"name":"Cogent Nantes","operator":""},"geometry":{"type":"Point","coordinates":[-1.55044,47.20264]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[-1.54975,47.27596]}},{"type":"Feature","properties":{"name":"Sigma Carquefou","operator":"Sigma"},"geometry":{"type":"Point","coordinates":[-1.46945,47.27783]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.31071,46.71565]}},{"type":"Feature","properties":{"name":"BT Blue","operator":""},"geometry":{"type":"Point","coordinates":[-1.40382,48.10067]}},{"type":"Feature","properties":{"name":"Webaxys","operator":""},"geometry":{"type":"Point","coordinates":[-0.37898,49.12633]}},{"type":"Feature","properties":{"name":"Datacenter Groupama","operator":"Groupama"},"geometry":{"type":"Point","coordinates":[-1.83692,48.06993]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[-1.63221,48.09659]}},{"type":"Feature","properties":{"name":"Cogent","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[-1.6373,48.10987]}},{"type":"Feature","properties":{"name":"SFR Netcenter Rennes","operator":"SFR"},"geometry":{"type":"Point","coordinates":[-1.61356,48.10999]}},{"type":"Feature","properties":{"name":"TDF ProxiCenter de Rennes-Cesson","operator":""},"geometry":{"type":"Point","coordinates":[-1.62764,48.12468]}},{"type":"Feature","properties":{"name":"Cork Internet Exchange (CIX)","operator":"Cork Internet Exchange (CIX)"},"geometry":{"type":"Point","coordinates":[-8.51254,51.90365]}},{"type":"Feature","properties":{"name":"ISS Data Centre South (DCS)","operator":""},"geometry":{"type":"Point","coordinates":[-9.05976,53.28069]}},{"type":"Feature","properties":{"name":"Nation Data Center Rennes","operator":"Nation Data Center"},"geometry":{"type":"Point","coordinates":[-1.53618,48.11249]}},{"type":"Feature","properties":{"name":"Elfordstown Earthstation","operator":"National Space Centre Ltd"},"geometry":{"type":"Point","coordinates":[-8.17605,51.9532]}},{"type":"Feature","properties":{"name":"Eir Hosting Services","operator":"Eir"},"geometry":{"type":"Point","coordinates":[-6.41611,53.29537]}},{"type":"Feature","properties":{"name":"Amazon DUB-2","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.41611,53.29142]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.3717,53.40541]}},{"type":"Feature","properties":{"name":"EdgeConnex DUB04","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-6.46013,53.32608]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.46172,53.32841]}},{"type":"Feature","properties":{"name":"Edgeconnex Dublin","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-6.45403,53.32728]}},{"type":"Feature","properties":{"name":"Microsoft DUB06","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.43981,53.32248]}},{"type":"Feature","properties":{"name":"Microsoft DSF","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.43791,53.32027]}},{"type":"Feature","properties":{"name":"Microsoft DUB08","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.44345,53.32199]}},{"type":"Feature","properties":{"name":"Microsoft DUB09","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.44756,53.32306]}},{"type":"Feature","properties":{"name":"Microsoft DUB10","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.44696,53.32204]}},{"type":"Feature","properties":{"name":"CyrusOne DUB1","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-6.45641,53.3166]}},{"type":"Feature","properties":{"name":"Microsoft DUB14","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.45099,53.32192]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.4441,53.31726]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-6.45126,53.3149]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[-6.4475,53.31357]}},{"type":"Feature","properties":{"name":"Digital Realty DUB4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.44232,53.31391]}},{"type":"Feature","properties":{"name":"Digital Realty DUB3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.44239,53.31346]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.44402,53.31609]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.45403,53.31791]}},{"type":"Feature","properties":{"name":"Microsoft DUB15","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.45202,53.32076]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.45363,53.31878]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.45377,53.31932]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.45124,53.31809]}},{"type":"Feature","properties":{"name":"Microsoft DUB03 / DUB04","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.45393,53.32486]}},{"type":"Feature","properties":{"name":"Microsoft DUB05","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.45492,53.32402]}},{"type":"Feature","properties":{"name":"Equinix DB2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-6.44072,53.31838]}},{"type":"Feature","properties":{"name":"Microsoft DUB12","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.44674,53.32066]}},{"type":"Feature","properties":{"name":"Microsoft DUB13","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.44623,53.31955]}},{"type":"Feature","properties":{"name":"Microsoft DUB07","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-6.44386,53.32307]}},{"type":"Feature","properties":{"name":"EdgeConneX","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-6.45411,53.32897]}},{"type":"Feature","properties":{"name":"EdgeConneX","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[-6.45388,53.32967]}},{"type":"Feature","properties":{"name":"Digital Realty Dublin DUB3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.44312,53.3297]}},{"type":"Feature","properties":{"name":"Digital Realty Dublin DUB4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.44314,53.32904]}},{"type":"Feature","properties":{"name":"Equinix Dublin DB1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-6.41529,53.29157]}},{"type":"Feature","properties":{"name":"BT Application Hosting","operator":"BT Ireland"},"geometry":{"type":"Point","coordinates":[-6.41559,53.29206]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.4139,53.29369]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.3501,53.29394]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.36716,53.29505]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.35048,53.29615]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.36832,53.29433]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.35115,53.29518]}},{"type":"Feature","properties":{"name":"Digital Realty DUB2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.36237,53.33106]}},{"type":"Feature","properties":{"name":"Digital Realty DUB1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.36533,53.33435]}},{"type":"Feature","properties":{"name":"Meta Clonee 3 Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-6.42563,53.41992]}},{"type":"Feature","properties":{"name":"Level3 Cable Landing Station","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-4.54113,50.82079]}},{"type":"Feature","properties":{"name":"Verizon","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-4.52788,50.82119]}},{"type":"Feature","properties":{"name":"TAT14 Cable Landing Station","operator":"BT"},"geometry":{"type":"Point","coordinates":[-4.53067,50.81994]}},{"type":"Feature","properties":{"name":"Vodafone","operator":"Vodafone"},"geometry":{"type":"Point","coordinates":[-4.53262,50.82083]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-4.55327,50.88437]}},{"type":"Feature","properties":{"name":"Brean Cable Landing Station","operator":"Cable & Wireless"},"geometry":{"type":"Point","coordinates":[-3.01321,51.28606]}},{"type":"Feature","properties":{"name":"Tata Communications Highbridge Datacentre","operator":"Tata Communications"},"geometry":{"type":"Point","coordinates":[-2.96297,51.22759]}},{"type":"Feature","properties":{"name":"Reynoldston Cable Landing Station","operator":"Cable & Wireless"},"geometry":{"type":"Point","coordinates":[-4.17525,51.57936]}},{"type":"Feature","properties":{"name":"Meta Clonee 6 Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-6.44744,53.41933]}},{"type":"Feature","properties":{"name":"Meta Clonee 5 Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-6.44646,53.41822]}},{"type":"Feature","properties":{"name":"Meta Clonee 1 Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-6.43318,53.41716]}},{"type":"Feature","properties":{"name":"Meta Clonee 2 Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[-6.43221,53.41817]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.38269,53.41383]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.37837,53.41596]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.37957,53.41423]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.35933,53.40494]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.36265,53.40387]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.36572,53.40475]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.36278,53.40716]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.35084,53.40773]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.36594,53.40363]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.3633,53.40312]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.37072,53.40589]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.37085,53.40508]}},{"type":"Feature","properties":{"name":"Digital Realty DUB10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.3709,53.4123]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.35809,53.40666]}},{"type":"Feature","properties":{"name":"Equinix DB4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-6.35168,53.41191]}},{"type":"Feature","properties":{"name":"Equinix DB3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-6.34657,53.41116]}},{"type":"Feature","properties":{"name":"CGI Datacenter","operator":"CGI"},"geometry":{"type":"Point","coordinates":[-3.58081,51.49183]}},{"type":"Feature","properties":{"name":"Centerprise International (Distribution)","operator":"Centerprise International"},"geometry":{"type":"Point","coordinates":[-3.229,51.62933]}},{"type":"Feature","properties":{"name":"Insight Data Ltd","operator":""},"geometry":{"type":"Point","coordinates":[-2.91056,51.358]}},{"type":"Feature","properties":{"name":"Vantage Data Centers - CWL13","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-3.03299,51.55478]}},{"type":"Feature","properties":{"name":"Microsoft Newport data centre","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-3.04027,51.55125]}},{"type":"Feature","properties":{"name":"Vantage Data Centers - CWL1","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[-3.03826,51.55525]}},{"type":"Feature","properties":{"name":"Next Generation Data","operator":"Next Generation Data"},"geometry":{"type":"Point","coordinates":[-3.03827,51.55502]}},{"type":"Feature","properties":{"name":"Centerprise International Newport","operator":""},"geometry":{"type":"Point","coordinates":[-3.03769,51.55561]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.22553,53.40502]}},{"type":"Feature","properties":{"name":"EXA Infrastructure","operator":"EXA Infrastructure"},"geometry":{"type":"Point","coordinates":[-6.21796,53.4001]}},{"type":"Feature","properties":{"name":"Amazon Web Services DUB10/50/51","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.22011,53.4004]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.22647,53.40168]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-6.2256,53.40134]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.21958,53.40235]}},{"type":"Feature","properties":{"name":"Verizon Data Centre","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-6.2226,53.40728]}},{"type":"Feature","properties":{"name":"Vodafone Data Centre","operator":"Vodafone"},"geometry":{"type":"Point","coordinates":[-6.22249,53.40785]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.22594,53.40605]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.22579,53.407]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.22712,53.40525]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.22288,53.40912]}},{"type":"Feature","properties":{"name":"Eir Data Centre","operator":"Eir"},"geometry":{"type":"Point","coordinates":[-6.21669,53.40003]}},{"type":"Feature","properties":{"name":"Digital Realty DUB11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-6.21644,53.40014]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-6.3832,53.7042]}},{"type":"Feature","properties":{"name":"Microsoft Ireland","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[-5.92022,54.60471]}},{"type":"Feature","properties":{"name":"Prescient Coleraine","operator":""},"geometry":{"type":"Point","coordinates":[-6.68527,55.15335]}},{"type":"Feature","properties":{"name":"nLighten Chester","operator":"nLighten UK Ltd"},"geometry":{"type":"Point","coordinates":[-2.92969,53.24529]}},{"type":"Feature","properties":{"name":"nLighten Edge Data Centre Liverpool","operator":""},"geometry":{"type":"Point","coordinates":[-2.97306,53.34321]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.81851,51.88794]}},{"type":"Feature","properties":{"name":"Morgan Stanley Data Centre","operator":"Morgan Stanley"},"geometry":{"type":"Point","coordinates":[-0.39677,51.46682]}},{"type":"Feature","properties":{"name":"British Telecom Computer Centre","operator":"BT"},"geometry":{"type":"Point","coordinates":[-0.48315,51.48557]}},{"type":"Feature","properties":{"name":"Longcross Park","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.59461,51.38052]}},{"type":"Feature","properties":{"name":"Data Vault - Bournemouth BCP01","operator":"Dark Nebulae Ltd"},"geometry":{"type":"Point","coordinates":[-1.87494,50.7219]}},{"type":"Feature","properties":{"name":"Redcentric Byfleet","operator":"Redcentric"},"geometry":{"type":"Point","coordinates":[-0.47999,51.34753]}},{"type":"Feature","properties":{"name":"Serverfarm LON1 \u2013 London Data Center","operator":"Serverfarm"},"geometry":{"type":"Point","coordinates":[-0.45439,51.4467]}},{"type":"Feature","properties":{"name":"Digital Realty LHR17","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.46043,51.48172]}},{"type":"Feature","properties":{"name":"CyrusOne LON2","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-0.44681,51.50258]}},{"type":"Feature","properties":{"name":"Skyways","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[-0.41014,51.45956]}},{"type":"Feature","properties":{"name":"British Airways","operator":"British Airways"},"geometry":{"type":"Point","coordinates":[-0.42335,51.47141]}},{"type":"Feature","properties":{"name":"Equinix LD6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.63533,51.52451]}},{"type":"Feature","properties":{"name":"Digital Realty LHR26","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.61807,51.5164]}},{"type":"Feature","properties":{"name":"Digital Realty LHR27","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.61898,51.51667]}},{"type":"Feature","properties":{"name":"VIRTUS LONDON9","operator":""},"geometry":{"type":"Point","coordinates":[-0.61912,51.51896]}},{"type":"Feature","properties":{"name":"Global Technical Realty London GB One","operator":"Global Technical Realty"},"geometry":{"type":"Point","coordinates":[-0.61877,51.51768]}},{"type":"Feature","properties":{"name":"NTT Slough","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-0.61613,51.51699]}},{"type":"Feature","properties":{"name":"VIRTUS Slough London 3 and 4","operator":"VIRTUS"},"geometry":{"type":"Point","coordinates":[-0.6214,51.52289]}},{"type":"Feature","properties":{"name":"Virtus London 10","operator":"Virtus"},"geometry":{"type":"Point","coordinates":[-0.62091,51.52137]}},{"type":"Feature","properties":{"name":"Lumen","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-0.61731,51.52295]}},{"type":"Feature","properties":{"name":"CyrusOne London 1","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-0.6241,51.52302]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.62445,51.52206]}},{"type":"Feature","properties":{"name":"Equinix LD10","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.62454,51.52226]}},{"type":"Feature","properties":{"name":"Sky Chilworth","operator":"Sky"},"geometry":{"type":"Point","coordinates":[-1.4273,50.96161]}},{"type":"Feature","properties":{"name":"Virtus London 3","operator":"Virtus"},"geometry":{"type":"Point","coordinates":[-0.6218,51.52204]}},{"type":"Feature","properties":{"name":"Iron Mountain London LON-1","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[-0.63336,51.52685]}},{"type":"Feature","properties":{"name":"Yondr","operator":"Yondr"},"geometry":{"type":"Point","coordinates":[-0.57952,51.51252]}},{"type":"Feature","properties":{"name":"Yondr","operator":"Yondr"},"geometry":{"type":"Point","coordinates":[-0.57891,51.51304]}},{"type":"Feature","properties":{"name":"Yondr","operator":"Yondr"},"geometry":{"type":"Point","coordinates":[-0.57697,51.51349]}},{"type":"Feature","properties":{"name":"Virtus London5","operator":"Virtus"},"geometry":{"type":"Point","coordinates":[-0.45445,51.50928]}},{"type":"Feature","properties":{"name":"Virtus London8","operator":"Virtus"},"geometry":{"type":"Point","coordinates":[-0.4571,51.50956]}},{"type":"Feature","properties":{"name":"Virtus London7","operator":"Virtus"},"geometry":{"type":"Point","coordinates":[-0.45651,51.51104]}},{"type":"Feature","properties":{"name":"Virtus London6","operator":"Virtus"},"geometry":{"type":"Point","coordinates":[-0.45373,51.51071]}},{"type":"Feature","properties":{"name":"UBS Data Centre","operator":"UBS"},"geometry":{"type":"Point","coordinates":[-0.42732,51.50675]}},{"type":"Feature","properties":{"name":"Kao Data KLON-05","operator":"Kao Data"},"geometry":{"type":"Point","coordinates":[-0.36389,51.54526]}},{"type":"Feature","properties":{"name":"The Chess Building","operator":"CapitaLand Ascendas REIT"},"geometry":{"type":"Point","coordinates":[-0.42789,51.643]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-2.21866,51.41878]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-2.21957,51.41744]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-2.22069,51.41841]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-2.22317,51.41849]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-2.21981,51.41776]}},{"type":"Feature","properties":{"name":"Digital Realty LHR13","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.29098,51.36854]}},{"type":"Feature","properties":{"name":"DXC Technology","operator":""},"geometry":{"type":"Point","coordinates":[-2.48581,51.87146]}},{"type":"Feature","properties":{"name":"Vodafone","operator":""},"geometry":{"type":"Point","coordinates":[-1.84711,51.55147]}},{"type":"Feature","properties":{"name":"AWS Swindon Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-1.76489,51.52385]}},{"type":"Feature","properties":{"name":"AWS Swindon Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-1.7641,51.52403]}},{"type":"Feature","properties":{"name":"Nationwide Swindon Technology Centre","operator":"Nationwide Building Society"},"geometry":{"type":"Point","coordinates":[-1.83651,51.5721]}},{"type":"Feature","properties":{"name":"Pulsant South London","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-0.11969,51.3536]}},{"type":"Feature","properties":{"name":"CapitaLand Ascendas REIT","operator":"CapitaLand Ascendas REIT"},"geometry":{"type":"Point","coordinates":[-0.13767,51.38461]}},{"type":"Feature","properties":{"name":"Morgan Stanley","operator":"Morgan Stanley"},"geometry":{"type":"Point","coordinates":[-0.13619,51.38401]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.01537,51.49827]}},{"type":"Feature","properties":{"name":"Digital Realty LHR20","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.01128,51.49984]}},{"type":"Feature","properties":{"name":"Equinix LD8","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.01492,51.49823]}},{"type":"Feature","properties":{"name":"Digital Realty LHR19","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.01882,51.49683]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.01453,51.49817]}},{"type":"Feature","properties":{"name":"Cable & Wireless Data Centre","operator":"Cable & Wireless"},"geometry":{"type":"Point","coordinates":[-0.00909,51.50195]}},{"type":"Feature","properties":{"name":"Kyndryl UK Ltd","operator":""},"geometry":{"type":"Point","coordinates":[-0.33688,51.54245]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.27439,51.52913]}},{"type":"Feature","properties":{"name":"Equinix LD3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.27792,51.52882]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.27306,51.52935]}},{"type":"Feature","properties":{"name":"Astrohouse","operator":"University of Southampton"},"geometry":{"type":"Point","coordinates":[-1.2461,50.86796]}},{"type":"Feature","properties":{"name":"SCC","operator":"SCC"},"geometry":{"type":"Point","coordinates":[-1.24734,50.86834]}},{"type":"Feature","properties":{"name":"Serverhouse","operator":"Serverhouse"},"geometry":{"type":"Point","coordinates":[-1.24561,50.8678]}},{"type":"Feature","properties":{"name":"Regit4u","operator":""},"geometry":{"type":"Point","coordinates":[-1.25007,50.90675]}},{"type":"Feature","properties":{"name":"ServerHouse","operator":""},"geometry":{"type":"Point","coordinates":[-1.16644,50.84825]}},{"type":"Feature","properties":{"name":"Equinix LD9","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.25588,51.53112]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.25745,51.53127]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.256,51.52988]}},{"type":"Feature","properties":{"name":"Options Technology Ltd.","operator":"Options Technology Ltd."},"geometry":{"type":"Point","coordinates":[-0.26088,51.53474]}},{"type":"Feature","properties":{"name":"Colt London West","operator":"Colt"},"geometry":{"type":"Point","coordinates":[-0.2575,51.53198]}},{"type":"Feature","properties":{"name":"LDeX 1","operator":"LDeX Group"},"geometry":{"type":"Point","coordinates":[-0.23094,51.56819]}},{"type":"Feature","properties":{"name":"Pure DC London Brent Cross","operator":"Pure DC"},"geometry":{"type":"Point","coordinates":[-0.2373,51.57075]}},{"type":"Feature","properties":{"name":"Datum Farnborough Data Centre","operator":"Datum"},"geometry":{"type":"Point","coordinates":[-0.79617,51.28054]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.79624,51.28247]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.79551,51.28172]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.79463,51.28247]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.79733,51.28178]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.79822,51.28086]}},{"type":"Feature","properties":{"name":"Ark Data Centres","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.79588,51.28209]}},{"type":"Feature","properties":{"name":"Verne Global London Data Centre","operator":"Verne Global"},"geometry":{"type":"Point","coordinates":[-0.10089,51.5236]}},{"type":"Feature","properties":{"name":"Stellanor London North","operator":"Stellanor Data Centers"},"geometry":{"type":"Point","coordinates":[-0.10032,51.52903]}},{"type":"Feature","properties":{"name":"Stellanor London East","operator":"Stellanor Data Centers"},"geometry":{"type":"Point","coordinates":[-0.07252,51.5139]}},{"type":"Feature","properties":{"name":"Digital Realty LHR18","operator":""},"geometry":{"type":"Point","coordinates":[-0.08651,51.52428]}},{"type":"Feature","properties":{"name":"Redcentric London City","operator":"Redcentric"},"geometry":{"type":"Point","coordinates":[-0.08287,51.52295]}},{"type":"Feature","properties":{"name":"Sky","operator":""},"geometry":{"type":"Point","coordinates":[-0.07111,51.51741]}},{"type":"Feature","properties":{"name":"Digital Realty London LON3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.07324,51.52149]}},{"type":"Feature","properties":{"name":"Telehouse South","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[-0.00355,51.50706]}},{"type":"Feature","properties":{"name":"Global Switch London East","operator":"Global Switch"},"geometry":{"type":"Point","coordinates":[-0.00346,51.51093]}},{"type":"Feature","properties":{"name":"Surrey Data Park","operator":""},"geometry":{"type":"Point","coordinates":[-0.60205,51.18652]}},{"type":"Feature","properties":{"name":"Digital Realty LGW14","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.58761,51.32376]}},{"type":"Feature","properties":{"name":"4D Data Centers - Gatwick","operator":""},"geometry":{"type":"Point","coordinates":[-0.17589,51.13254]}},{"type":"Feature","properties":{"name":"Digital Realty LGW16","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.17682,51.12899]}},{"type":"Feature","properties":{"name":"Digital Realty LGW15","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[-0.1763,51.12746]}},{"type":"Feature","properties":{"name":"IBM Horsham","operator":"IBM"},"geometry":{"type":"Point","coordinates":[-0.35068,51.02155]}},{"type":"Feature","properties":{"name":"Goldman Sachs","operator":"Goldman Sachs"},"geometry":{"type":"Point","coordinates":[-0.04202,51.13544]}},{"type":"Feature","properties":{"name":"Global Switch London North","operator":"Global Switch"},"geometry":{"type":"Point","coordinates":[-0.00547,51.51095]}},{"type":"Feature","properties":{"name":"Telehouse North","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[-0.00199,51.51203]}},{"type":"Feature","properties":{"name":"Telehouse East","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[-0.00121,51.51152]}},{"type":"Feature","properties":{"name":"Telehouse North Two","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[-0.00063,51.51214]}},{"type":"Feature","properties":{"name":"Telehouse West","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[-0.00226,51.51116]}},{"type":"Feature","properties":{"name":"Netwise","operator":""},"geometry":{"type":"Point","coordinates":[-0.00098,51.5206]}},{"type":"Feature","properties":{"name":"Ark Data Centres Meridian Park","operator":"Ark Data Centres"},"geometry":{"type":"Point","coordinates":[-0.0416,51.61945]}},{"type":"Feature","properties":{"name":"Restore Records Management","operator":""},"geometry":{"type":"Point","coordinates":[-0.1643,51.19902]}},{"type":"Feature","properties":{"name":"Unit 1","operator":"Galaxy Data Centers"},"geometry":{"type":"Point","coordinates":[-0.15974,51.24785]}},{"type":"Feature","properties":{"name":"Unit 3","operator":"Galaxy Data Centers"},"geometry":{"type":"Point","coordinates":[-0.15738,51.248]}},{"type":"Feature","properties":{"name":"Unit 2","operator":"Galaxy Data Centers"},"geometry":{"type":"Point","coordinates":[-0.15877,51.24769]}},{"type":"Feature","properties":{"name":"Venture West","operator":"The Bunker Secure Hosting Ltd"},"geometry":{"type":"Point","coordinates":[-1.29064,51.37704]}},{"type":"Feature","properties":{"name":"R89","operator":""},"geometry":{"type":"Point","coordinates":[-1.31518,51.57403]}},{"type":"Feature","properties":{"name":"AWS Didcot Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-1.26212,51.61744]}},{"type":"Feature","properties":{"name":"Redcentric Reading","operator":"Redcentric"},"geometry":{"type":"Point","coordinates":[-0.97525,51.4207]}},{"type":"Feature","properties":{"name":"Pulsant","operator":""},"geometry":{"type":"Point","coordinates":[-0.97594,51.44484]}},{"type":"Feature","properties":{"name":"Virtus LONDON1","operator":""},"geometry":{"type":"Point","coordinates":[-0.05543,51.65183]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.42971,51.75755]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[-0.43458,51.76419]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.50144,51.89761]}},{"type":"Feature","properties":{"name":"BT Computer Centre","operator":""},"geometry":{"type":"Point","coordinates":[-0.32065,51.77016]}},{"type":"Feature","properties":{"name":"Colt London North Data Centre","operator":"Colt"},"geometry":{"type":"Point","coordinates":[-0.18319,51.80003]}},{"type":"Feature","properties":{"name":"Hertfordshire Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[-0.18647,51.80793]}},{"type":"Feature","properties":{"name":"Google Datacentre Waltham Cross","operator":"Google"},"geometry":{"type":"Point","coordinates":[-0.04838,51.696]}},{"type":"Feature","properties":{"name":"Pulsant Reading East","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-0.94145,51.45696]}},{"type":"Feature","properties":{"name":"Bank Of America","operator":"Bank Of America"},"geometry":{"type":"Point","coordinates":[-0.76622,51.33326]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-0.78246,51.41412]}},{"type":"Feature","properties":{"name":"AWS Bracknell Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[-0.78205,51.41386]}},{"type":"Feature","properties":{"name":"Pulsant Maidenhead","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-0.70833,51.50033]}},{"type":"Feature","properties":{"name":"Pulsant Maidenhead","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-0.7084,51.49972]}},{"type":"Feature","properties":{"name":"CapitaLand Ascendas REIT","operator":"CapitaLand Ascendas REIT"},"geometry":{"type":"Point","coordinates":[-0.77895,51.61986]}},{"type":"Feature","properties":{"name":"University Shared Data Centre","operator":"University of Oxford"},"geometry":{"type":"Point","coordinates":[-1.25219,51.7596]}},{"type":"Feature","properties":{"name":"Redcentric London West","operator":"Redcentric"},"geometry":{"type":"Point","coordinates":[-0.39725,51.46815]}},{"type":"Feature","properties":{"name":"VIRTUS LONDON2","operator":"VIRTUS"},"geometry":{"type":"Point","coordinates":[-0.40474,51.49639]}},{"type":"Feature","properties":{"name":"Logicalis Slough","operator":""},"geometry":{"type":"Point","coordinates":[-0.62166,51.52053]}},{"type":"Feature","properties":{"name":"Rackspace London Slough (LON3)","operator":"Rackspace"},"geometry":{"type":"Point","coordinates":[-0.61893,51.52016]}},{"type":"Feature","properties":{"name":"Telefonica Data Centre","operator":"Telefonica"},"geometry":{"type":"Point","coordinates":[-0.63786,51.52498]}},{"type":"Feature","properties":{"name":"Kao Data KLON-06","operator":"Kao Data"},"geometry":{"type":"Point","coordinates":[-0.61614,51.51583]}},{"type":"Feature","properties":{"name":"Equinix LD12","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.63774,51.52392]}},{"type":"Feature","properties":{"name":"CyrusOne LON3","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-0.62705,51.52588]}},{"type":"Feature","properties":{"name":"Equinix LD7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.63465,51.5254]}},{"type":"Feature","properties":{"name":"Starwood House","operator":"Tesco"},"geometry":{"type":"Point","coordinates":[-0.20707,51.9813]}},{"type":"Feature","properties":{"name":"Ionos","operator":"Ionos"},"geometry":{"type":"Point","coordinates":[-2.15657,52.20589]}},{"type":"Feature","properties":{"name":"VIRTUS London 11","operator":""},"geometry":{"type":"Point","coordinates":[-0.62641,51.51894]}},{"type":"Feature","properties":{"name":"Equinix LD11x","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.6378,51.52308]}},{"type":"Feature","properties":{"name":"CryrusOne LON4","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-0.62888,51.5165]}},{"type":"Feature","properties":{"name":"CryrusOne LON5","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[-0.62714,51.51596]}},{"type":"Feature","properties":{"name":"China Mobile Slough","operator":""},"geometry":{"type":"Point","coordinates":[-0.62843,51.51938]}},{"type":"Feature","properties":{"name":"Equinix LD5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.62947,51.52214]}},{"type":"Feature","properties":{"name":"Equinix LD4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-0.63607,51.52346]}},{"type":"Feature","properties":{"name":"Datum Datacentres (MCR2)","operator":""},"geometry":{"type":"Point","coordinates":[-2.25865,53.37863]}},{"type":"Feature","properties":{"name":"Delta House","operator":"TeleData"},"geometry":{"type":"Point","coordinates":[-2.25863,53.37916]}},{"type":"Feature","properties":{"name":"CDL Strata Campus Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[-2.17898,53.40824]}},{"type":"Feature","properties":{"name":"Evoque Data Center Solutions","operator":""},"geometry":{"type":"Point","coordinates":[-1.88332,52.3121]}},{"type":"Feature","properties":{"name":"UoS IT Services","operator":""},"geometry":{"type":"Point","coordinates":[-1.48508,53.38089]}},{"type":"Feature","properties":{"name":"Hive IT","operator":""},"geometry":{"type":"Point","coordinates":[-1.47938,53.3758]}},{"type":"Feature","properties":{"name":"Pulsant Milton Keynes SE-1","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-0.75565,52.05499]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.75736,52.05465]}},{"type":"Feature","properties":{"name":"EE Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[-2.02125,52.52977]}},{"type":"Feature","properties":{"name":"Hutchison 3G","operator":""},"geometry":{"type":"Point","coordinates":[-2.03084,52.54734]}},{"type":"Feature","properties":{"name":"Hellermann Tyton Data","operator":""},"geometry":{"type":"Point","coordinates":[-0.91911,52.23428]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.38113,52.54095]}},{"type":"Feature","properties":{"name":"Santander","operator":"Santander"},"geometry":{"type":"Point","coordinates":[-1.20923,52.58341]}},{"type":"Feature","properties":{"name":"Santander","operator":"Santander"},"geometry":{"type":"Point","coordinates":[-1.21009,52.5789]}},{"type":"Feature","properties":{"name":"Santander","operator":"Santander"},"geometry":{"type":"Point","coordinates":[-1.20629,52.57962]}},{"type":"Feature","properties":{"name":"The Horizon Centre","operator":""},"geometry":{"type":"Point","coordinates":[-0.64596,52.51616]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.26403,52.5559]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.26416,52.55629]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-0.26301,52.5562]}},{"type":"Feature","properties":{"name":"Experian","operator":""},"geometry":{"type":"Point","coordinates":[-1.14524,52.87954]}},{"type":"Feature","properties":{"name":"Internet Central","operator":"Internet Central"},"geometry":{"type":"Point","coordinates":[-2.26994,53.00389]}},{"type":"Feature","properties":{"name":"Digital Space DC - Newark","operator":"Digital Space Group Limited"},"geometry":{"type":"Point","coordinates":[-0.79228,53.07904]}},{"type":"Feature","properties":{"name":"Digital Space DC - Newark","operator":"Digital Space Group Limited"},"geometry":{"type":"Point","coordinates":[-0.79248,53.07913]}},{"type":"Feature","properties":{"name":"Digital Space DC - Newark","operator":"Digital Space Group Limited"},"geometry":{"type":"Point","coordinates":[-0.79211,53.07898]}},{"type":"Feature","properties":{"name":"The Babbage Centre","operator":"Getronics"},"geometry":{"type":"Point","coordinates":[-2.73413,53.32276]}},{"type":"Feature","properties":{"name":"Iron Mountain","operator":""},"geometry":{"type":"Point","coordinates":[-2.62994,53.41462]}},{"type":"Feature","properties":{"name":"Domicilium","operator":"Domicilium"},"geometry":{"type":"Point","coordinates":[-4.64113,54.08722]}},{"type":"Feature","properties":{"name":"Netcetera","operator":""},"geometry":{"type":"Point","coordinates":[-4.62981,54.08993]}},{"type":"Feature","properties":{"name":"Lanis 1 Cable Landing Station","operator":"Cable & Wireless"},"geometry":{"type":"Point","coordinates":[-3.0303,53.77657]}},{"type":"Feature","properties":{"name":"RBS Melville Gate Data Centre","operator":"Natwest Group"},"geometry":{"type":"Point","coordinates":[-3.08701,55.89434]}},{"type":"Feature","properties":{"name":"Edinburgh SC-2","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-3.29632,55.92575]}},{"type":"Feature","properties":{"name":"Edinburgh SC-3","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-3.40977,55.92939]}},{"type":"Feature","properties":{"name":"Pulsant Edinburgh SC-1","operator":""},"geometry":{"type":"Point","coordinates":[-3.29393,55.92977]}},{"type":"Feature","properties":{"name":"Pulsant Edinburgh South Gyle SC-1","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-3.29265,55.92994]}},{"type":"Feature","properties":{"name":"Pulsant Edinburgh South Gyle SC-1","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-3.29393,55.92977]}},{"type":"Feature","properties":{"name":"Lloyds Banking Group","operator":"Lloyds Banking Group"},"geometry":{"type":"Point","coordinates":[-3.29391,55.92826]}},{"type":"Feature","properties":{"name":"RBS Data Centre","operator":"NatWest Group"},"geometry":{"type":"Point","coordinates":[-2.90128,55.94494]}},{"type":"Feature","properties":{"name":"iomart Glasgow Data Centre","operator":"iomart"},"geometry":{"type":"Point","coordinates":[-4.28346,55.85113]}},{"type":"Feature","properties":{"name":"Joule House","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-2.29331,53.46795]}},{"type":"Feature","properties":{"name":"Evolution @ Agecroft Commerce Park","operator":""},"geometry":{"type":"Point","coordinates":[-2.305,53.50789]}},{"type":"Feature","properties":{"name":"Evolution @ Agecroft Commerce Park","operator":""},"geometry":{"type":"Point","coordinates":[-2.30478,53.50639]}},{"type":"Feature","properties":{"name":"DataVita DV2","operator":"DataVita"},"geometry":{"type":"Point","coordinates":[-4.26513,55.86139]}},{"type":"Feature","properties":{"name":"Lunar 1&2","operator":"Lunar Digital"},"geometry":{"type":"Point","coordinates":[-2.2477,53.46442]}},{"type":"Feature","properties":{"name":"Equinix MA4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-2.2377,53.4615]}},{"type":"Feature","properties":{"name":"Equinix MA1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[-2.23632,53.4642]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-2.17685,53.46836]}},{"type":"Feature","properties":{"name":"Redcentric Elland Data Centre","operator":"Redcentric"},"geometry":{"type":"Point","coordinates":[-1.82164,53.69391]}},{"type":"Feature","properties":{"name":"Lloyds Banking Group Copley","operator":""},"geometry":{"type":"Point","coordinates":[-1.88475,53.70853]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.88353,53.70848]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.88496,53.70913]}},{"type":"Feature","properties":{"name":"VocaLink","operator":""},"geometry":{"type":"Point","coordinates":[-1.56907,53.9758]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.37755,53.70373]}},{"type":"Feature","properties":{"name":"DataVita DV1","operator":"DataVita"},"geometry":{"type":"Point","coordinates":[-3.95265,55.83437]}},{"type":"Feature","properties":{"name":"Pulsant","operator":"Pulsant"},"geometry":{"type":"Point","coordinates":[-1.31522,54.55143]}},{"type":"Feature","properties":{"name":"Lumen Technologies","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[-1.2351,54.57849]}},{"type":"Feature","properties":{"name":"DXC Wynyard Data Center","operator":"HPE"},"geometry":{"type":"Point","coordinates":[-1.31062,54.63286]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-1.03204,54.59173]}},{"type":"Feature","properties":{"name":"Stellium Newcastle Campus","operator":""},"geometry":{"type":"Point","coordinates":[-1.50424,55.01758]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[-21.99357,64.04957]}},{"type":"Feature","properties":{"name":"atNorth ICE01","operator":"atNorth"},"geometry":{"type":"Point","coordinates":[-21.99347,64.04946]}},{"type":"Feature","properties":{"name":"Reykjav\u00edk DC","operator":"Borealis"},"geometry":{"type":"Point","coordinates":[-21.75351,64.14548]}},{"type":"Feature","properties":{"name":"Bl\u00f6ndu\u00f3s","operator":"Borealis"},"geometry":{"type":"Point","coordinates":[-20.24294,65.64712]}},{"type":"Feature","properties":{"name":"Elektron","operator":""},"geometry":{"type":"Point","coordinates":[-6.77108,62.0216]}},{"type":"Feature","properties":{"name":"OADC Rondebosch","operator":"Open Access Data Centres"},"geometry":{"type":"Point","coordinates":[18.4722,-33.9604]}},{"type":"Feature","properties":{"name":"Sentech","operator":"Sentech"},"geometry":{"type":"Point","coordinates":[18.5955,-33.87518]}},{"type":"Feature","properties":{"name":"Amazon AWS CPT - Atlantic","operator":""},"geometry":{"type":"Point","coordinates":[18.54855,-33.81433]}},{"type":"Feature","properties":{"name":"Teraco CT2","operator":""},"geometry":{"type":"Point","coordinates":[18.67889,-33.90643]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[18.68029,-33.90614]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.47665,-29.30642]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.4767,-29.30647]}},{"type":"Feature","properties":{"name":"OpenAccess Data Centres","operator":"OpenAccess Data Centres"},"geometry":{"type":"Point","coordinates":[30.90974,-30.02059]}},{"type":"Feature","properties":{"name":"BCX","operator":"BCX"},"geometry":{"type":"Point","coordinates":[28.12377,-25.9783]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.93209,-26.14833]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.9639,-26.175]}},{"type":"Feature","properties":{"name":"MTN Newlands","operator":"MTN"},"geometry":{"type":"Point","coordinates":[27.96581,-26.17749]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.96626,-26.17755]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.96608,-26.17786]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.96597,-26.1781]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[27.96599,-26.17748]}},{"type":"Feature","properties":{"name":"Grade 1 classes","operator":""},"geometry":{"type":"Point","coordinates":[28.02657,-26.15675]}},{"type":"Feature","properties":{"name":"Computer labs and server room","operator":""},"geometry":{"type":"Point","coordinates":[28.02667,-26.1563]}},{"type":"Feature","properties":{"name":"Cool Ideas Victory Park Datacentre","operator":"Cool Ideas"},"geometry":{"type":"Point","coordinates":[28.00934,-26.14151]}},{"type":"Feature","properties":{"name":"Parklands","operator":"NTT"},"geometry":{"type":"Point","coordinates":[28.03679,-26.14663]}},{"type":"Feature","properties":{"name":"Rosebank Exchange","operator":"Telkom"},"geometry":{"type":"Point","coordinates":[28.04343,-26.1468]}},{"type":"Feature","properties":{"name":"NTT Randview","operator":"NTT"},"geometry":{"type":"Point","coordinates":[27.98384,-26.09005]}},{"type":"Feature","properties":{"name":"MTN","operator":"MTN"},"geometry":{"type":"Point","coordinates":[28.07319,-26.06606]}},{"type":"Feature","properties":{"name":"Vantage JNB11","operator":""},"geometry":{"type":"Point","coordinates":[28.11736,-26.01848]}},{"type":"Feature","properties":{"name":"Africa Data Centres","operator":"Africa Data Centres"},"geometry":{"type":"Point","coordinates":[28.12016,-26.0096]}},{"type":"Feature","properties":{"name":"BCX","operator":"BCX"},"geometry":{"type":"Point","coordinates":[28.12388,-25.97847]}},{"type":"Feature","properties":{"name":"BCX","operator":"BCX"},"geometry":{"type":"Point","coordinates":[28.12205,-25.97495]}},{"type":"Feature","properties":{"name":"BCX","operator":"BCX"},"geometry":{"type":"Point","coordinates":[28.12216,-25.97499]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[28.1598,-26.21307]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[28.15993,-26.21322]}},{"type":"Feature","properties":{"name":"Telkom","operator":"Telkom"},"geometry":{"type":"Point","coordinates":[28.1598,-26.21258]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[28.16003,-26.21262]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[28.19786,-26.1555]}},{"type":"Feature","properties":{"name":"Teraco JB3 Isando Campus","operator":""},"geometry":{"type":"Point","coordinates":[28.19913,-26.13706]}},{"type":"Feature","properties":{"name":"Teraco JB1 Isando Campus","operator":"Terao Data Environments"},"geometry":{"type":"Point","coordinates":[28.19735,-26.13789]}},{"type":"Feature","properties":{"name":"Teraco Satellite Earth Station","operator":""},"geometry":{"type":"Point","coordinates":[28.1989,-26.13837]}},{"type":"Feature","properties":{"name":"Teraco JB1 East","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.19781,-26.13779]}},{"type":"Feature","properties":{"name":"Teraco JB1 West","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.19689,-26.13809]}},{"type":"Feature","properties":{"name":"Teraco JB3 Data Centre","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.19896,-26.13722]}},{"type":"Feature","properties":{"name":"Teraco JB5 Isando Campus","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.2009,-26.13513]}},{"type":"Feature","properties":{"name":"Teraco JB5 Data Centre","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.20096,-26.13505]}},{"type":"Feature","properties":{"name":"OADC Isando","operator":"Open Access Data Centres"},"geometry":{"type":"Point","coordinates":[28.19995,-26.13572]}},{"type":"Feature","properties":{"name":"BT Games","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[28.24098,-26.18254]}},{"type":"Feature","properties":{"name":"Teraco JB2 Bredell Campus","operator":""},"geometry":{"type":"Point","coordinates":[28.27799,-26.07527]}},{"type":"Feature","properties":{"name":"JB2 Data Centre","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.27792,-26.07529]}},{"type":"Feature","properties":{"name":"Teraco JB4 Data Centre","operator":"Teraco"},"geometry":{"type":"Point","coordinates":[28.26968,-26.02442]}},{"type":"Feature","properties":{"name":"Xneelo Samrand Campus","operator":"Xneelo"},"geometry":{"type":"Point","coordinates":[28.14118,-25.92748]}},{"type":"Feature","properties":{"name":"Brightsolid","operator":"brightsolid"},"geometry":{"type":"Point","coordinates":[-2.16015,57.15257]}},{"type":"Feature","properties":{"name":"Digital Parks Africa","operator":""},"geometry":{"type":"Point","coordinates":[28.15166,-25.92809]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[28.15154,-25.92812]}},{"type":"Feature","properties":{"name":"Vodacom","operator":"Vodacom"},"geometry":{"type":"Point","coordinates":[28.12686,-25.97476]}},{"type":"Feature","properties":{"name":"ADC Samrand Campus","operator":"Africa Data Centres"},"geometry":{"type":"Point","coordinates":[28.13926,-25.92997]}},{"type":"Feature","properties":{"name":"Africa Data Centres","operator":"Africa Data Centres"},"geometry":{"type":"Point","coordinates":[28.13947,-25.92981]}},{"type":"Feature","properties":{"name":"Xneelo","operator":"Xneelo"},"geometry":{"type":"Point","coordinates":[28.14185,-25.92727]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[28.13987,-25.92034]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[28.1397,-25.92034]}},{"type":"Feature","properties":{"name":"Teja Services","operator":""},"geometry":{"type":"Point","coordinates":[32.42554,-25.9755]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[13.44148,-14.81358]}},{"type":"Feature","properties":{"name":"Computer Labs","operator":""},"geometry":{"type":"Point","coordinates":[35.02691,-15.77605]}},{"type":"Feature","properties":{"name":"Wingu Africa","operator":"Wingu Africa"},"geometry":{"type":"Point","coordinates":[39.20129,-6.71655]}},{"type":"Feature","properties":{"name":"Server Room","operator":""},"geometry":{"type":"Point","coordinates":[37.53857,-2.80013]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[36.74896,-1.34987]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[49.41362,-18.15383]}},{"type":"Feature","properties":{"name":"Data","operator":"ITH Center"},"geometry":{"type":"Point","coordinates":[45.22519,-12.77846]}},{"type":"Feature","properties":{"name":"Emtel Data Center Arsenal","operator":"Emtel"},"geometry":{"type":"Point","coordinates":[57.54321,-20.10371]}},{"type":"Feature","properties":{"name":"ANZ Data Centre","operator":"ANZ"},"geometry":{"type":"Point","coordinates":[144.87686,-37.68803]}},{"type":"Feature","properties":{"name":"Microsoft MEL07","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[144.8747,-37.68543]}},{"type":"Feature","properties":{"name":"ANZ Data Centre","operator":"ANZ"},"geometry":{"type":"Point","coordinates":[144.87741,-37.68763]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[144.87771,-37.68738]}},{"type":"Feature","properties":{"name":"Telstra","operator":"Telstra"},"geometry":{"type":"Point","coordinates":[115.80141,-32.06536]}},{"type":"Feature","properties":{"name":"Pier Data Centre","operator":"DC Alliance"},"geometry":{"type":"Point","coordinates":[115.91623,-32.05944]}},{"type":"Feature","properties":{"name":"Equinix PE2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[115.79797,-31.95591]}},{"type":"Feature","properties":{"name":"NextDC P2 Perth Data Centre","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[115.86811,-31.95022]}},{"type":"Feature","properties":{"name":"Foto Copy kampus 2 UBH","operator":""},"geometry":{"type":"Point","coordinates":[100.38204,-0.87761]}},{"type":"Feature","properties":{"name":"42-24 Derwent Park","operator":"42 - 24 Pty Ltd"},"geometry":{"type":"Point","coordinates":[147.29706,-42.83923]}},{"type":"Feature","properties":{"name":"TasmaNet Hobart DC3","operator":"TasmaNet"},"geometry":{"type":"Point","coordinates":[147.30418,-42.82213]}},{"type":"Feature","properties":{"name":"42 -24 Cambridge","operator":"42 - 24 Pty Ltd"},"geometry":{"type":"Point","coordinates":[147.46524,-42.82987]}},{"type":"Feature","properties":{"name":"AREA31","operator":"PT. Dunia Virtual Online"},"geometry":{"type":"Point","coordinates":[106.8717,-6.44447]}},{"type":"Feature","properties":{"name":"Nodeast Cloud (srv01.kehidupan)","operator":"PT Era Daya Cipta"},"geometry":{"type":"Point","coordinates":[106.83802,-6.3598]}},{"type":"Feature","properties":{"name":"KOTOKNET MEDIA SOLUTIONS","operator":""},"geometry":{"type":"Point","coordinates":[106.34212,-6.21351]}},{"type":"Feature","properties":{"name":"Piyhost - Web, Software Developer","operator":"Piyhost"},"geometry":{"type":"Point","coordinates":[106.73254,-6.2976]}},{"type":"Feature","properties":{"name":"Server Rasendriya (Nodeast Cloud)","operator":"PT Era Daya Cipta"},"geometry":{"type":"Point","coordinates":[106.78929,-6.26397]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[106.82679,-6.23463]}},{"type":"Feature","properties":{"name":"Data Center TVRI","operator":"ICT"},"geometry":{"type":"Point","coordinates":[106.80122,-6.21229]}},{"type":"Feature","properties":{"name":"Yellowstone Data Center","operator":""},"geometry":{"type":"Point","coordinates":[106.83694,-6.21547]}},{"type":"Feature","properties":{"name":"EDGE2","operator":"EDGE DC"},"geometry":{"type":"Point","coordinates":[106.83507,-6.21397]}},{"type":"Feature","properties":{"name":"Purwokerto Data Center","operator":"Neutral DataCenter"},"geometry":{"type":"Point","coordinates":[109.24403,-7.41051]}},{"type":"Feature","properties":{"name":"GTN Data Center","operator":"Graha Teknologi Nusantara"},"geometry":{"type":"Point","coordinates":[107.167,-6.34611]}},{"type":"Feature","properties":{"name":"Nodeast Cloud (srv03.dyaksanala)","operator":"PT Era Daya Cipta"},"geometry":{"type":"Point","coordinates":[110.43515,-7.00478]}},{"type":"Feature","properties":{"name":"Lab Komputer","operator":""},"geometry":{"type":"Point","coordinates":[112.06694,-6.89482]}},{"type":"Feature","properties":{"name":"NEXTDC Darwin D1","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[130.84389,-12.4563]}},{"type":"Feature","properties":{"name":"BOX METER","operator":""},"geometry":{"type":"Point","coordinates":[114.49933,-2.85591]}},{"type":"Feature","properties":{"name":"Traffic Management Center","operator":""},"geometry":{"type":"Point","coordinates":[116.89503,-1.24307]}},{"type":"Feature","properties":{"name":"Pusdatin Unpatti","operator":"Universitas Pattimura"},"geometry":{"type":"Point","coordinates":[128.19449,-3.65431]}},{"type":"Feature","properties":{"name":"YourDC","operator":"YourDC"},"geometry":{"type":"Point","coordinates":[138.60828,-34.96846]}},{"type":"Feature","properties":{"name":"NextDC A1","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[138.60782,-34.92565]}},{"type":"Feature","properties":{"name":"Firmus LST01","operator":"Firmus"},"geometry":{"type":"Point","coordinates":[147.17635,-41.44069]}},{"type":"Feature","properties":{"name":"Torquay Cable Landing Station","operator":"SUBCO Pty Ltd"},"geometry":{"type":"Point","coordinates":[144.31283,-38.32743]}},{"type":"Feature","properties":{"name":"LEDC - ABX1 - Albury","operator":"Leading Edge Data Centres"},"geometry":{"type":"Point","coordinates":[146.95519,-36.07128]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[144.75562,-37.83814]}},{"type":"Feature","properties":{"name":"Microsoft MEL11","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[144.72237,-37.80951]}},{"type":"Feature","properties":{"name":"Stack Infrastructure MEL01B","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[144.74748,-37.82047]}},{"type":"Feature","properties":{"name":"Stack Infrastructure MEL01A","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[144.74762,-37.81999]}},{"type":"Feature","properties":{"name":"CDC Laverton","operator":"CDC"},"geometry":{"type":"Point","coordinates":[144.7748,-37.84158]}},{"type":"Feature","properties":{"name":"AirTrunk","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[144.77363,-37.80039]}},{"type":"Feature","properties":{"name":"AirTrunk","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[144.77191,-37.80052]}},{"type":"Feature","properties":{"name":"AirTrunk","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[144.77359,-37.80096]}},{"type":"Feature","properties":{"name":"LEDC - WGA1 - Wagga Wagga","operator":"Leading Edge Data Centres"},"geometry":{"type":"Point","coordinates":[147.34889,-35.12611]}},{"type":"Feature","properties":{"name":"Hume 4","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.1639,-35.39608]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[144.77934,-37.78181]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[144.77837,-37.78152]}},{"type":"Feature","properties":{"name":"Equinix ME4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[144.78621,-37.78846]}},{"type":"Feature","properties":{"name":"Equinix ME4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[144.78513,-37.78832]}},{"type":"Feature","properties":{"name":"NextDC M1 Melbourne Data Centre","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[144.9324,-37.82265]}},{"type":"Feature","properties":{"name":"NEXTDC M3 Melbourne Data Centre","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[144.86552,-37.80498]}},{"type":"Feature","properties":{"name":"Microsoft MEL04","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[144.85884,-37.82238]}},{"type":"Feature","properties":{"name":"Microsoft MEL05","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[144.85732,-37.82149]}},{"type":"Feature","properties":{"name":"VicTrack","operator":"VicTrack"},"geometry":{"type":"Point","coordinates":[144.88497,-37.83217]}},{"type":"Feature","properties":{"name":"Hume 5","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.1621,-35.39531]}},{"type":"Feature","properties":{"name":"Hume 3","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.16843,-35.38917]}},{"type":"Feature","properties":{"name":"Hume 2","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.16781,-35.389]}},{"type":"Feature","properties":{"name":"Hume 1","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.16769,-35.38866]}},{"type":"Feature","properties":{"name":"Fyshwick 1","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.18216,-35.33752]}},{"type":"Feature","properties":{"name":"Fyshwick 2","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[149.18308,-35.33803]}},{"type":"Feature","properties":{"name":"Department of Defence","operator":"Department of Defence"},"geometry":{"type":"Point","coordinates":[149.19675,-35.35068]}},{"type":"Feature","properties":{"name":"Canberra 1","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[149.09625,-35.24532]}},{"type":"Feature","properties":{"name":"TransACT Telehouse","operator":"TransACT"},"geometry":{"type":"Point","coordinates":[149.13441,-35.25172]}},{"type":"Feature","properties":{"name":"TransACT Telehouse","operator":"TransACT"},"geometry":{"type":"Point","coordinates":[149.13417,-35.25157]}},{"type":"Feature","properties":{"name":"Verizon","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[149.18054,-35.32138]}},{"type":"Feature","properties":{"name":"Intellicentre 4 Bunker","operator":"Macquarie Telecom Group"},"geometry":{"type":"Point","coordinates":[149.20206,-35.3011]}},{"type":"Feature","properties":{"name":"Intellicentre 5 Bunker","operator":"Macquarie Telecom Group"},"geometry":{"type":"Point","coordinates":[149.20146,-35.30149]}},{"type":"Feature","properties":{"name":"Australian Data Centres","operator":"Australian Data Centres"},"geometry":{"type":"Point","coordinates":[149.14614,-35.21125]}},{"type":"Feature","properties":{"name":"Equinix CA1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[149.1347,-35.20796]}},{"type":"Feature","properties":{"name":"Equinix ME1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[144.91539,-37.82312]}},{"type":"Feature","properties":{"name":"Equinix ME2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[144.91533,-37.82229]}},{"type":"Feature","properties":{"name":"Equinix ME5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[144.9533,-37.80794]}},{"type":"Feature","properties":{"name":"Interactive 2 Data Centre","operator":"Interactive"},"geometry":{"type":"Point","coordinates":[144.93558,-37.83237]}},{"type":"Feature","properties":{"name":"Interactive 2 Data Centre","operator":"Interactive"},"geometry":{"type":"Point","coordinates":[144.93481,-37.83256]}},{"type":"Feature","properties":{"name":"Datacom Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[144.96145,-37.82438]}},{"type":"Feature","properties":{"name":"Securiton Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[144.95776,-37.81888]}},{"type":"Feature","properties":{"name":"Powertel Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[144.96151,-37.81881]}},{"type":"Feature","properties":{"name":"TPG Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[144.94339,-37.80113]}},{"type":"Feature","properties":{"name":"AAPT Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[145.00771,-37.82028]}},{"type":"Feature","properties":{"name":"Fujitsu Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[145.18568,-37.94764]}},{"type":"Feature","properties":{"name":"Fujitsu Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[145.18543,-37.9472]}},{"type":"Feature","properties":{"name":"Telstra Clayton Data Centre","operator":"Telstra"},"geometry":{"type":"Point","coordinates":[145.13187,-37.92085]}},{"type":"Feature","properties":{"name":"Southern Highlands Data Campus","operator":"Cloud Carrier"},"geometry":{"type":"Point","coordinates":[150.36975,-34.51563]}},{"type":"Feature","properties":{"name":"Equinix SY7 - Sydney","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[150.85687,-34.46352]}},{"type":"Feature","properties":{"name":"DXC Technology","operator":""},"geometry":{"type":"Point","coordinates":[145.1652,-37.8574]}},{"type":"Feature","properties":{"name":"Vocus DC-MEL04 Mitcham Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[145.18766,-37.82148]}},{"type":"Feature","properties":{"name":"Micron21 Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[145.31397,-37.82208]}},{"type":"Feature","properties":{"name":"AWS Asia Pacific (Sydney) Region Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[150.76588,-34.03584]}},{"type":"Feature","properties":{"name":"AWS Asia Pacific (Sydney) Region Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[150.76787,-34.03706]}},{"type":"Feature","properties":{"name":"Microsoft SYD06 Data Centre","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[150.77588,-33.83633]}},{"type":"Feature","properties":{"name":"Simtronic","operator":""},"geometry":{"type":"Point","coordinates":[150.69449,-33.7528]}},{"type":"Feature","properties":{"name":"Microsoft SYD05 Data Centre","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[150.77245,-33.8362]}},{"type":"Feature","properties":{"name":"Digital Erskine Park 1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[150.79578,-33.81636]}},{"type":"Feature","properties":{"name":"Digital Erskine Park 2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[150.79569,-33.81726]}},{"type":"Feature","properties":{"name":"AWS Asia Pacific (Sydney) Region Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[150.86938,-33.79489]}},{"type":"Feature","properties":{"name":"Intellicentre 2","operator":"Macquarie Data Centres"},"geometry":{"type":"Point","coordinates":[151.12768,-33.78065]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[150.83862,-33.81061]}},{"type":"Feature","properties":{"name":"CDC Eastern Creek Campus EC1","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[150.83928,-33.818]}},{"type":"Feature","properties":{"name":"CDC Eastern Creek Campus EC3","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[150.83837,-33.81767]}},{"type":"Feature","properties":{"name":"CDC Eastern Creek Campus EC5","operator":"CDC"},"geometry":{"type":"Point","coordinates":[150.83658,-33.81836]}},{"type":"Feature","properties":{"name":"CDC Eastern Creek Campus EC4","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[150.83743,-33.81889]}},{"type":"Feature","properties":{"name":"CDC Eastern Creek Campus EC2","operator":"Canberra Data Centres"},"geometry":{"type":"Point","coordinates":[150.83981,-33.81827]}},{"type":"Feature","properties":{"name":"CDC Eastern Creek Campus EC6","operator":"CDC"},"geometry":{"type":"Point","coordinates":[150.83739,-33.8174]}},{"type":"Feature","properties":{"name":"AWS Asia Pacific (Sydney) Region Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[150.83873,-33.80941]}},{"type":"Feature","properties":{"name":"AirTrunk Sydney West","operator":"Airtrunk"},"geometry":{"type":"Point","coordinates":[150.88187,-33.79915]}},{"type":"Feature","properties":{"name":"Sydney 01","operator":"DCI Data Centers"},"geometry":{"type":"Point","coordinates":[150.88641,-33.80497]}},{"type":"Feature","properties":{"name":"AWS Asia Pacific (Sydney) Region Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[150.86997,-33.79522]}},{"type":"Feature","properties":{"name":"Fujitsu Western Sydney Data Centre","operator":"Fujitsu"},"geometry":{"type":"Point","coordinates":[150.92348,-33.82188]}},{"type":"Feature","properties":{"name":"Fujitsu Homebush Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.07157,-33.8498]}},{"type":"Feature","properties":{"name":"DXN Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.07371,-33.84516]}},{"type":"Feature","properties":{"name":"Equinix SY9x","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.03457,-33.82374]}},{"type":"Feature","properties":{"name":"Equinix SY6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.05331,-33.83662]}},{"type":"Feature","properties":{"name":"AirTrunk Sydney North","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[151.14495,-33.80753]}},{"type":"Feature","properties":{"name":"NEXTDC - S2 Sydney","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[151.12518,-33.78519]}},{"type":"Feature","properties":{"name":"AWS Asia Pacific (Sydney) Region Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[151.126,-33.78001]}},{"type":"Feature","properties":{"name":"Intellicentre 3 East","operator":"Macquarie Data Centres"},"geometry":{"type":"Point","coordinates":[151.12719,-33.78124]}},{"type":"Feature","properties":{"name":"Fujitsu North Ryde Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.13176,-33.78674]}},{"type":"Feature","properties":{"name":"NEXTDC - S1 Sydney","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[151.13134,-33.78524]}},{"type":"Feature","properties":{"name":"Equinix International Business Exchange SY2 Data Center","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.18808,-33.92142]}},{"type":"Feature","properties":{"name":"Equinix International Business Exchange SY1 Data Center","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.18847,-33.9208]}},{"type":"Feature","properties":{"name":"Southern Cross Cable Network Landing Station","operator":""},"geometry":{"type":"Point","coordinates":[151.18519,-33.91861]}},{"type":"Feature","properties":{"name":"Equinix SY5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.18988,-33.91931]}},{"type":"Feature","properties":{"name":"Equinix SY4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.18902,-33.91822]}},{"type":"Feature","properties":{"name":"Vocus Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.19316,-33.915]}},{"type":"Feature","properties":{"name":"Equinix International Business Exchange SY3 Data Center","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[151.19251,-33.91165]}},{"type":"Feature","properties":{"name":"Optus Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.19874,-33.87864]}},{"type":"Feature","properties":{"name":"Global Switch Sydney West Data Centre","operator":"DigiCo REIT"},"geometry":{"type":"Point","coordinates":[151.19764,-33.87562]}},{"type":"Feature","properties":{"name":"Verizon Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.19459,-33.8724]}},{"type":"Feature","properties":{"name":"Global Switch Sydney East Data Centre","operator":"DigiCo REIT"},"geometry":{"type":"Point","coordinates":[151.19799,-33.87537]}},{"type":"Feature","properties":{"name":"TPG Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.20366,-33.86369]}},{"type":"Feature","properties":{"name":"Powertel Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[151.20442,-33.86494]}},{"type":"Feature","properties":{"name":"NextDC","operator":""},"geometry":{"type":"Point","coordinates":[153.03338,-27.454]}},{"type":"Feature","properties":{"name":"Australian Liquidity Centre","operator":"Australian Securities Exchange"},"geometry":{"type":"Point","coordinates":[151.18628,-33.81996]}},{"type":"Feature","properties":{"name":"NEXTDC - S6 Sidney","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[151.18592,-33.81947]}},{"type":"Feature","properties":{"name":"Telstra Data Centre","operator":"Telstra"},"geometry":{"type":"Point","coordinates":[151.1911,-33.81882]}},{"type":"Feature","properties":{"name":"NEXTDC - S3 Sidney","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[151.18441,-33.81899]}},{"type":"Feature","properties":{"name":"Interactive Data Centre","operator":"Interactive"},"geometry":{"type":"Point","coordinates":[151.19249,-33.81602]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[151.19245,-33.81403]}},{"type":"Feature","properties":{"name":"Southern Cross Cable Network Landing Station","operator":"Southern Cross Cable Network"},"geometry":{"type":"Point","coordinates":[151.27367,-33.76366]}},{"type":"Feature","properties":{"name":"LEDC - DBO1 - Dubbo","operator":"Leading Edge Data Centres"},"geometry":{"type":"Point","coordinates":[148.58146,-32.24106]}},{"type":"Feature","properties":{"name":"SC1 Sunshine Coast Data Centre","operator":"NextDC"},"geometry":{"type":"Point","coordinates":[153.09284,-26.6597]}},{"type":"Feature","properties":{"name":"Vocus Sydney SYD02","operator":"Vocus"},"geometry":{"type":"Point","coordinates":[150.96992,-33.73368]}},{"type":"Feature","properties":{"name":"HP Secure","operator":""},"geometry":{"type":"Point","coordinates":[172.54145,-43.50072]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":"Spark New Zealand"},"geometry":{"type":"Point","coordinates":[172.54552,-43.49251]}},{"type":"Feature","properties":{"name":"LEDC - NTL1 - Newcastle","operator":"Leading Edge Data Centres"},"geometry":{"type":"Point","coordinates":[151.73057,-32.88324]}},{"type":"Feature","properties":{"name":"LEDC - TMW1 - Tamworth","operator":"Leading Edge Data Centre"},"geometry":{"type":"Point","coordinates":[150.92157,-31.07422]}},{"type":"Feature","properties":{"name":"LEDC - CFS1 - Coffs Harbour","operator":"Leading Edge Data Centres"},"geometry":{"type":"Point","coordinates":[153.11701,-30.31442]}},{"type":"Feature","properties":{"name":"Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.9021,-36.948]}},{"type":"Feature","properties":{"name":"Manukau Datacenter","operator":"Vodafone"},"geometry":{"type":"Point","coordinates":[174.87076,-36.98728]}},{"type":"Feature","properties":{"name":"Iron Mountain","operator":""},"geometry":{"type":"Point","coordinates":[174.83535,-36.93021]}},{"type":"Feature","properties":{"name":"IBM Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.87017,-36.94268]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":"Spark"},"geometry":{"type":"Point","coordinates":[174.92459,-37.03139]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[174.66813,-36.43277]}},{"type":"Feature","properties":{"name":"Amazon Web Services Data Centre","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[174.59853,-36.81215]}},{"type":"Feature","properties":{"name":"Microsoft Data Centre","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[174.60223,-36.8141]}},{"type":"Feature","properties":{"name":"DCI Data Centre","operator":"DCI"},"geometry":{"type":"Point","coordinates":[174.59995,-36.81338]}},{"type":"Feature","properties":{"name":"CDC Data Centre HV1","operator":"CDC"},"geometry":{"type":"Point","coordinates":[174.63673,-36.80304]}},{"type":"Feature","properties":{"name":"CDC Data Centre HV1A","operator":"CDC"},"geometry":{"type":"Point","coordinates":[174.63615,-36.80348]}},{"type":"Feature","properties":{"name":"GCSB Data Centre","operator":"Government Communications Security Bureau"},"geometry":{"type":"Point","coordinates":[174.62039,-36.7901]}},{"type":"Feature","properties":{"name":"Chorus","operator":"Chorus"},"geometry":{"type":"Point","coordinates":[174.55874,-36.77659]}},{"type":"Feature","properties":{"name":"DCI Data Centre AKL-02","operator":""},"geometry":{"type":"Point","coordinates":[174.69526,-36.74915]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.70054,-36.74975]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[174.69636,-36.74996]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.70036,-36.74962]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[174.69669,-36.74998]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[174.702,-36.74608]}},{"type":"Feature","properties":{"name":"Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.70531,-36.75201]}},{"type":"Feature","properties":{"name":"Plan B Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.72124,-36.7426]}},{"type":"Feature","properties":{"name":"Umbrellar Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.72329,-36.74331]}},{"type":"Feature","properties":{"name":"Microsoft Data Centre","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[174.6641,-36.61453]}},{"type":"Feature","properties":{"name":"Datavault Auckland","operator":"Datavault"},"geometry":{"type":"Point","coordinates":[174.76456,-36.8642]}},{"type":"Feature","properties":{"name":"Airedale Exchange","operator":"Spark New Zealand"},"geometry":{"type":"Point","coordinates":[174.76463,-36.85511]}},{"type":"Feature","properties":{"name":"Mayoral Drive Exchange","operator":"Spark New Zealand"},"geometry":{"type":"Point","coordinates":[174.76403,-36.85421]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":"Spark New Zealand"},"geometry":{"type":"Point","coordinates":[174.76446,-36.85477]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":"Spark New Zealand"},"geometry":{"type":"Point","coordinates":[174.76437,-36.85454]}},{"type":"Feature","properties":{"name":"Spark Data Centre","operator":"Spark New Zealand"},"geometry":{"type":"Point","coordinates":[174.76423,-36.85439]}},{"type":"Feature","properties":{"name":"ICONZ House","operator":"ICONZ"},"geometry":{"type":"Point","coordinates":[174.76544,-36.85564]}},{"type":"Feature","properties":{"name":"Data Centre 220","operator":""},"geometry":{"type":"Point","coordinates":[174.76558,-36.84938]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[174.74816,-36.79248]}},{"type":"Feature","properties":{"name":"Datacom Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[174.72891,-36.74055]}},{"type":"Feature","properties":{"name":"Post PNG","operator":"Post PNG"},"geometry":{"type":"Point","coordinates":[144.22945,-5.85807]}},{"type":"Feature","properties":{"name":"Vodafone Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[146.99053,-6.73743]}},{"type":"Feature","properties":{"name":"Felix Datacenter","operator":"Nautile"},"geometry":{"type":"Point","coordinates":[166.46099,-22.26943]}},{"type":"Feature","properties":{"name":"Nauru Data Center","operator":""},"geometry":{"type":"Point","coordinates":[166.91625,-0.54749]}},{"type":"Feature","properties":{"name":"Telecom HUB","operator":""},"geometry":{"type":"Point","coordinates":[179.19341,-8.52561]}},{"type":"Feature","properties":{"name":"College Of Natural & Applied Sciences Laboratory Complex","operator":"Lecturers"},"geometry":{"type":"Point","coordinates":[5.40355,6.7417]}},{"type":"Feature","properties":{"name":"ESolutionsUG","operator":"ESolutionsUG"},"geometry":{"type":"Point","coordinates":[32.54046,0.2799]}},{"type":"Feature","properties":{"name":"Raxio UG1","operator":""},"geometry":{"type":"Point","coordinates":[32.6897,0.34697]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.74546,10.32987]}},{"type":"Feature","properties":{"name":"\u0627\u0644\u0647\u064a\u0643\u0644 \u0627\u0644\u062e\u0627\u0635 \u0627\u0644\u0647\u062f\u0649 \u0644\u062a\u0642\u062f\u064a\u0645 \u0627\u0644\u062f\u0631\u0648\u0633 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629","operator":""},"geometry":{"type":"Point","coordinates":[10.16073,36.69821]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.10526,41.48437]}},{"type":"Feature","properties":{"name":"Centre de Processament de Dades IBM","operator":""},"geometry":{"type":"Point","coordinates":[2.10815,41.48991]}},{"type":"Feature","properties":{"name":"Adam","operator":""},"geometry":{"type":"Point","coordinates":[2.1232,41.48972]}},{"type":"Feature","properties":{"name":"Cogent Toulouse","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[1.42251,43.62031]}},{"type":"Feature","properties":{"name":"Fullsave Toulouse","operator":""},"geometry":{"type":"Point","coordinates":[1.42132,43.62003]}},{"type":"Feature","properties":{"name":"Oscar","operator":"Air France"},"geometry":{"type":"Point","coordinates":[1.37014,43.59334]}},{"type":"Feature","properties":{"name":"Zayo Toulouse","operator":"Zayo"},"geometry":{"type":"Point","coordinates":[1.4872,43.62539]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[1.47489,43.63434]}},{"type":"Feature","properties":{"name":"Crypteo","operator":"Crypteo"},"geometry":{"type":"Point","coordinates":[2.05579,43.91191]}},{"type":"Feature","properties":{"name":"Fil d'Ariane","operator":"CELESTE"},"geometry":{"type":"Point","coordinates":[2.18246,43.91936]}},{"type":"Feature","properties":{"name":"Albir\u00e9o","operator":"Albiant IT"},"geometry":{"type":"Point","coordinates":[2.27457,43.55423]}},{"type":"Feature","properties":{"name":"Albir\u00e9o","operator":"Albiant IT"},"geometry":{"type":"Point","coordinates":[2.2679,43.56476]}},{"type":"Feature","properties":{"name":"DTC","operator":""},"geometry":{"type":"Point","coordinates":[0.83762,44.19902]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[3.86776,43.58358]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[3.8707,43.58316]}},{"type":"Feature","properties":{"name":"Zayo Montpellier","operator":"Zayo"},"geometry":{"type":"Point","coordinates":[3.87195,43.58463]}},{"type":"Feature","properties":{"name":"FDJ","operator":"FDJ"},"geometry":{"type":"Point","coordinates":[5.27129,43.43114]}},{"type":"Feature","properties":{"name":"Verizon Marseille","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[5.36669,43.33925]}},{"type":"Feature","properties":{"name":"Interoute Marseille","operator":"Interoute"},"geometry":{"type":"Point","coordinates":[5.36781,43.34284]}},{"type":"Feature","properties":{"name":"Datacenter Sud","operator":"Aix-Marseille Universit\u00e9"},"geometry":{"type":"Point","coordinates":[5.41194,43.33592]}},{"type":"Feature","properties":{"name":"TDF ProxiCenter Aix Marseille","operator":"TDF"},"geometry":{"type":"Point","coordinates":[5.32425,43.46064]}},{"type":"Feature","properties":{"name":"Bouygues Telecom","operator":"Bouygues Telecom"},"geometry":{"type":"Point","coordinates":[5.35748,43.48769]}},{"type":"Feature","properties":{"name":"Marseille Nedelec","operator":"Orange"},"geometry":{"type":"Point","coordinates":[5.37717,43.303]}},{"type":"Feature","properties":{"name":"Digital Realty MRS1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[5.37391,43.31102]}},{"type":"Feature","properties":{"name":"Phocea DC","operator":"Phocea DC"},"geometry":{"type":"Point","coordinates":[5.37477,43.31245]}},{"type":"Feature","properties":{"name":"Marseille St-Mauront","operator":"Orange"},"geometry":{"type":"Point","coordinates":[5.37393,43.31516]}},{"type":"Feature","properties":{"name":"Digital Realty MRS2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[5.34718,43.33863]}},{"type":"Feature","properties":{"name":"Digital Realty MRS3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[5.34633,43.33884]}},{"type":"Feature","properties":{"name":"Digital Realty MRS4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[5.34661,43.33969]}},{"type":"Feature","properties":{"name":"Datacenter Martha","operator":""},"geometry":{"type":"Point","coordinates":[5.34657,43.33849]}},{"type":"Feature","properties":{"name":"Cogent Montpellier","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[3.8626,43.60091]}},{"type":"Feature","properties":{"name":"CINES","operator":""},"geometry":{"type":"Point","coordinates":[3.84204,43.63617]}},{"type":"Feature","properties":{"name":"Datacenter IBM - Grabels","operator":"IBM"},"geometry":{"type":"Point","coordinates":[3.82974,43.64276]}},{"type":"Feature","properties":{"name":"Free Pro - Datacenter Marseille (MAR02)","operator":"Free Pro (Ex. Jaguar Network - DCForData)"},"geometry":{"type":"Point","coordinates":[5.33818,43.36109]}},{"type":"Feature","properties":{"name":"Telehouse THM1","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[5.33804,43.36107]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[3.90901,43.6193]}},{"type":"Feature","properties":{"name":"Datacenter France Travail","operator":"France Travail"},"geometry":{"type":"Point","coordinates":[3.90929,43.62634]}},{"type":"Feature","properties":{"name":"B4","operator":"Air France"},"geometry":{"type":"Point","coordinates":[7.03259,43.62702]}},{"type":"Feature","properties":{"name":"TAS Group","operator":"TAS Group"},"geometry":{"type":"Point","coordinates":[7.05169,43.62687]}},{"type":"Feature","properties":{"name":"CNAF Sophia-Antipolis","operator":"CNAF"},"geometry":{"type":"Point","coordinates":[7.03885,43.62335]}},{"type":"Feature","properties":{"name":"Euclyde DC3","operator":"Euclyde"},"geometry":{"type":"Point","coordinates":[7.03851,43.62439]}},{"type":"Feature","properties":{"name":"Euclyde DC1","operator":"Euclyde"},"geometry":{"type":"Point","coordinates":[7.07566,43.60461]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[7.14714,43.65505]}},{"type":"Feature","properties":{"name":"Datacenter TIM-Google","operator":"TIM - Google"},"geometry":{"type":"Point","coordinates":[7.72439,44.97585]}},{"type":"Feature","properties":{"name":"Equinix Genoa GN1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.95021,44.42687]}},{"type":"Feature","properties":{"name":"Quadrivium QGEN01","operator":"Quadrivium Digital"},"geometry":{"type":"Point","coordinates":[8.98264,44.40124]}},{"type":"Feature","properties":{"name":"TIM","operator":"TIM"},"geometry":{"type":"Point","coordinates":[9.00567,44.99329]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[10.35333,43.65794]}},{"type":"Feature","properties":{"name":"XL 360 - Data Center","operator":"XL 360"},"geometry":{"type":"Point","coordinates":[5.93286,43.12785]}},{"type":"Feature","properties":{"name":"ACI Sede si Sarzana","operator":""},"geometry":{"type":"Point","coordinates":[9.95992,44.10978]}},{"type":"Feature","properties":{"name":"Wi-Fi Communication Aulla","operator":""},"geometry":{"type":"Point","coordinates":[9.96907,44.20802]}},{"type":"Feature","properties":{"name":"Studio Delta Srl","operator":""},"geometry":{"type":"Point","coordinates":[10.64682,44.69373]}},{"type":"Feature","properties":{"name":"Tecnodati (S.R.L.)","operator":""},"geometry":{"type":"Point","coordinates":[10.6377,44.70932]}},{"type":"Feature","properties":{"name":"iZOOM.it","operator":""},"geometry":{"type":"Point","coordinates":[10.6413,44.71051]}},{"type":"Feature","properties":{"name":"Data Center","operator":"Lepida"},"geometry":{"type":"Point","coordinates":[10.9331,44.65776]}},{"type":"Feature","properties":{"name":"\u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u039b\u03bf\u03cd\u03c1\u03bf\u03c2","operator":"GRNET / \u0395\u0394\u03a5\u03a4\u0395"},"geometry":{"type":"Point","coordinates":[20.86535,39.25044]}},{"type":"Feature","properties":{"name":"TIER IV","operator":"TIM"},"geometry":{"type":"Point","coordinates":[12.34423,41.76455]}},{"type":"Feature","properties":{"name":"Data center Roma Capitale","operator":"Roma Capitale"},"geometry":{"type":"Point","coordinates":[12.46964,41.83269]}},{"type":"Feature","properties":{"name":"Aruba s.p.a.","operator":"Aruba s.p.a."},"geometry":{"type":"Point","coordinates":[12.63104,41.93073]}},{"type":"Feature","properties":{"name":"Aruba s.p.a.","operator":"Aruba s.p.a."},"geometry":{"type":"Point","coordinates":[12.63154,41.93129]}},{"type":"Feature","properties":{"name":"InfreschiLab","operator":"Andrea"},"geometry":{"type":"Point","coordinates":[15.3886,40.01994]}},{"type":"Feature","properties":{"name":"Data Felix DF01","operator":""},"geometry":{"type":"Point","coordinates":[14.32143,41.06646]}},{"type":"Feature","properties":{"name":"Archivio di Stato di Caserta","operator":"Ministero dei Beni e delle Attivit\u00e0 Culturali"},"geometry":{"type":"Point","coordinates":[14.35143,41.07383]}},{"type":"Feature","properties":{"name":"Archivio di Stato","operator":""},"geometry":{"type":"Point","coordinates":[14.78734,40.91437]}},{"type":"Feature","properties":{"name":"Arpac","operator":"Arpac"},"geometry":{"type":"Point","coordinates":[14.77156,41.12198]}},{"type":"Feature","properties":{"name":"Centro Elab. Dati Catocci Bianciardi","operator":"Bari Bianciardi Vanni"},"geometry":{"type":"Point","coordinates":[11.32766,43.32064]}},{"type":"Feature","properties":{"name":"E. D. Accounting Siena","operator":""},"geometry":{"type":"Point","coordinates":[11.32855,43.32272]}},{"type":"Feature","properties":{"name":"Data Center Aruba IT1","operator":"Aruba s.p.a."},"geometry":{"type":"Point","coordinates":[11.83802,43.4597]}},{"type":"Feature","properties":{"name":"Data Center Aruba IT2","operator":"Aruba s.p.a."},"geometry":{"type":"Point","coordinates":[11.85012,43.47677]}},{"type":"Feature","properties":{"name":"WinEuropa","operator":""},"geometry":{"type":"Point","coordinates":[12.11247,43.55484]}},{"type":"Feature","properties":{"name":"Studio BETA SRLS","operator":""},"geometry":{"type":"Point","coordinates":[13.78799,43.19686]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[20.92863,44.02888]}},{"type":"Feature","properties":{"name":"A1 Data centar","operator":"A1"},"geometry":{"type":"Point","coordinates":[20.93418,44.0262]}},{"type":"Feature","properties":{"name":"NutroCloud","operator":"7tteam"},"geometry":{"type":"Point","coordinates":[30.86786,30.8419]}},{"type":"Feature","properties":{"name":"Neom Hyper Scale Data Center","operator":""},"geometry":{"type":"Point","coordinates":[35.60231,27.47444]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[34.99248,31.7717]}},{"type":"Feature","properties":{"name":"Leonardo (supercomputer)","operator":"CINECA"},"geometry":{"type":"Point","coordinates":[11.25978,44.48633]}},{"type":"Feature","properties":{"name":"Data center Unipol Pilastro","operator":"Unipol"},"geometry":{"type":"Point","coordinates":[11.39075,44.50957]}},{"type":"Feature","properties":{"name":"Noovle","operator":"TIM"},"geometry":{"type":"Point","coordinates":[11.40648,44.49976]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.35974,44.52035]}},{"type":"Feature","properties":{"name":"Supercalcolatore Leonardo - Rete EuroHPC","operator":"Cineca"},"geometry":{"type":"Point","coordinates":[11.35943,44.52044]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.36025,44.51906]}},{"type":"Feature","properties":{"name":"ECMWF - Centro Meteo Europeo","operator":"ECMWF"},"geometry":{"type":"Point","coordinates":[11.3602,44.5201]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[34.96025,32.02068]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[34.85856,32.09298]}},{"type":"Feature","properties":{"name":"\u05e1\u05e8\u05d1\u05e8\u05e4\u05d0\u05e8\u05dd","operator":""},"geometry":{"type":"Point","coordinates":[34.87324,32.22129]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[34.96049,32.31037]}},{"type":"Feature","properties":{"name":"\u05e8\u05d3 \u05ea\u05e7\u05e9\u05d5\u05e8\u05ea \u05de\u05d7\u05e9\u05d1\u05d9\u05dd","operator":""},"geometry":{"type":"Point","coordinates":[35.2124,31.80471]}},{"type":"Feature","properties":{"name":"\u0645\u0631\u0643\u0632 \u062e\u062f\u0645\u0627\u062a \u0644\u0634\u0631\u0643\u0629 \u0627\u0631\u0627\u0645\u0643\u0633","operator":""},"geometry":{"type":"Point","coordinates":[36.32281,33.54633]}},{"type":"Feature","properties":{"name":"\u0634\u0639\u0628\u0629 \u0627\u0644\u0644\u062c\u0627\u0646 \u0627\u0644\u0637\u0628\u064a\u0629","operator":""},"geometry":{"type":"Point","coordinates":[43.298,33.42346]}},{"type":"Feature","properties":{"name":"Athens 1","operator":""},"geometry":{"type":"Point","coordinates":[23.86998,37.87128]}},{"type":"Feature","properties":{"name":"Athens 2","operator":""},"geometry":{"type":"Point","coordinates":[23.87028,37.87121]}},{"type":"Feature","properties":{"name":"Athens 3","operator":""},"geometry":{"type":"Point","coordinates":[23.87058,37.87152]}},{"type":"Feature","properties":{"name":"Med Nautilus","operator":"Ti Sparkle"},"geometry":{"type":"Point","coordinates":[23.77363,38.07261]}},{"type":"Feature","properties":{"name":"Nova Shop","operator":""},"geometry":{"type":"Point","coordinates":[28.15478,36.41679]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[32.52497,37.96285]}},{"type":"Feature","properties":{"name":"Turkcell Edirne Veri Merkezi","operator":"Turkcell"},"geometry":{"type":"Point","coordinates":[26.58436,41.68174]}},{"type":"Feature","properties":{"name":"Turkcell Avrupa Veri Merkezi","operator":"Turkcell"},"geometry":{"type":"Point","coordinates":[27.92708,41.26341]}},{"type":"Feature","properties":{"name":"Podatkovni centar HR-ZOO ST","operator":"Sveu\u010dili\u0161ni ra\u010dunski centar"},"geometry":{"type":"Point","coordinates":[16.46965,43.5116]}},{"type":"Feature","properties":{"name":"ISPPro.al","operator":""},"geometry":{"type":"Point","coordinates":[19.56122,42.12136]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[19.88096,39.54982]}},{"type":"Feature","properties":{"name":"COSMOTE","operator":""},"geometry":{"type":"Point","coordinates":[19.91907,39.61978]}},{"type":"Feature","properties":{"name":":IW Connect","operator":""},"geometry":{"type":"Point","coordinates":[21.30403,41.02694]}},{"type":"Feature","properties":{"name":"\u0424\u0418\u041d\u041a\u0418","operator":"\u0424\u0418\u041d\u041a\u0418"},"geometry":{"type":"Point","coordinates":[21.40934,42.00422]}},{"type":"Feature","properties":{"name":"Elektra","operator":""},"geometry":{"type":"Point","coordinates":[21.29859,42.14983]}},{"type":"Feature","properties":{"name":"Evolink","operator":""},"geometry":{"type":"Point","coordinates":[23.25997,42.67729]}},{"type":"Feature","properties":{"name":"SDC - \u0421\u043e\u0444\u0438\u044f","operator":"Neterra"},"geometry":{"type":"Point","coordinates":[23.36927,42.65632]}},{"type":"Feature","properties":{"name":"Mars Datacenter","operator":"Mars Datacenter"},"geometry":{"type":"Point","coordinates":[29.02494,41.10283]}},{"type":"Feature","properties":{"name":"Turkcell Kartal Veri Merkezi","operator":"Turkcell"},"geometry":{"type":"Point","coordinates":[29.21061,40.89943]}},{"type":"Feature","properties":{"name":"Kaynarca Santrali","operator":""},"geometry":{"type":"Point","coordinates":[29.27065,40.87831]}},{"type":"Feature","properties":{"name":"Turkcell Gebze Veri Merkezi","operator":"Turkcell Superonline"},"geometry":{"type":"Point","coordinates":[29.44487,40.82314]}},{"type":"Feature","properties":{"name":"Star of Bosphorus Veri Merkezi","operator":"NGN"},"geometry":{"type":"Point","coordinates":[29.40346,40.89155]}},{"type":"Feature","properties":{"name":"Turkcell Ankara Veri Merkezi","operator":"Turkcell"},"geometry":{"type":"Point","coordinates":[32.41917,39.79816]}},{"type":"Feature","properties":{"name":"Hedef Hosting","operator":"Hedef Global Bili\u015fim Teknolojileri Sanayi Ticaret Limited \u015eirketi"},"geometry":{"type":"Point","coordinates":[32.61798,39.97825]}},{"type":"Feature","properties":{"name":"\u0645\u0627\u064a\u0643\u0631\u0648\u0633\u0648\u0641\u062a \u0644\u0628\u0646\u0627\u0646","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[35.50214,33.90072]}},{"type":"Feature","properties":{"name":"God Of Mining","operator":""},"geometry":{"type":"Point","coordinates":[35.57125,33.88486]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[76.94695,8.4981]}},{"type":"Feature","properties":{"name":"Sree Chithra Computer Centre","operator":""},"geometry":{"type":"Point","coordinates":[76.90617,8.54578]}},{"type":"Feature","properties":{"name":"Discover","operator":""},"geometry":{"type":"Point","coordinates":[23.37564,42.66821]}},{"type":"Feature","properties":{"name":"Crypt Logic","operator":"Crypt Logic LTD"},"geometry":{"type":"Point","coordinates":[23.31683,42.69424]}},{"type":"Feature","properties":{"name":"Equinix SO1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[23.3954,42.66852]}},{"type":"Feature","properties":{"name":"\u0422\u0435\u043b\u0435\u043f\u043e\u0438\u043d\u0442 \u0421\u043e\u0444\u0438\u044f \u0418\u0437\u0442\u043e\u043a","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[23.38365,42.6729]}},{"type":"Feature","properties":{"name":"Digi (RCS & RDS) Craiova","operator":"Digi Rom\u00e2nia SA"},"geometry":{"type":"Point","coordinates":[23.80102,44.31761]}},{"type":"Feature","properties":{"name":"ORANGE STORE","operator":""},"geometry":{"type":"Point","coordinates":[24.5045,43.77525]}},{"type":"Feature","properties":{"name":"PANOURI SOLARE REDEA DATACENTER","operator":""},"geometry":{"type":"Point","coordinates":[24.29526,44.07447]}},{"type":"Feature","properties":{"name":"Medyabim Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[29.02214,40.20953]}},{"type":"Feature","properties":{"name":"PenDC Data Center Solutions","operator":"PenDC Data Center Solutions"},"geometry":{"type":"Point","coordinates":[29.06384,40.30906]}},{"type":"Feature","properties":{"name":"Mediterranean Nautilus Telekomunikasyon Hizmetleri Ticaret A.\u015e. Veri Merkezi","operator":""},"geometry":{"type":"Point","coordinates":[28.8271,40.99356]}},{"type":"Feature","properties":{"name":"Turkcell Superonline Yenibosna Veri Merkezi","operator":""},"geometry":{"type":"Point","coordinates":[28.82703,40.99345]}},{"type":"Feature","properties":{"name":"Verizon \u0130stanbul Veri Merkezi","operator":""},"geometry":{"type":"Point","coordinates":[28.82709,40.99345]}},{"type":"Feature","properties":{"name":"T\u00fcrk Telekom Esenyurt Veri Merkezi","operator":"T\u00fcrk Telekom"},"geometry":{"type":"Point","coordinates":[28.6571,41.072]}},{"type":"Feature","properties":{"name":"Vodafone Esenyurt Veri Merkezi","operator":"Vodafone T\u00fcrkiye"},"geometry":{"type":"Point","coordinates":[28.67088,41.04922]}},{"type":"Feature","properties":{"name":"\u062a\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u0642\u062f\u0627\u062f\u064a\u0629","operator":""},"geometry":{"type":"Point","coordinates":[44.93904,33.97465]}},{"type":"Feature","properties":{"name":"REG.AM","operator":"GlobalAr LLC"},"geometry":{"type":"Point","coordinates":[44.51716,40.17565]}},{"type":"Feature","properties":{"name":"akshaya centre","operator":""},"geometry":{"type":"Point","coordinates":[76.65725,9.12174]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[76.42815,9.28368]}},{"type":"Feature","properties":{"name":"Computer Center","operator":""},"geometry":{"type":"Point","coordinates":[76.51985,9.24468]}},{"type":"Feature","properties":{"name":"asianet cable","operator":""},"geometry":{"type":"Point","coordinates":[76.52171,9.2526]}},{"type":"Feature","properties":{"name":"Akshaya Centre, Thripperumthura","operator":""},"geometry":{"type":"Point","coordinates":[76.52465,9.2876]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[76.58805,9.36008]}},{"type":"Feature","properties":{"name":"Nortech Infonet Pvt","operator":""},"geometry":{"type":"Point","coordinates":[76.30983,10.02017]}},{"type":"Feature","properties":{"name":"Ovio","operator":"GNC-Alfa"},"geometry":{"type":"Point","coordinates":[44.61475,40.26962]}},{"type":"Feature","properties":{"name":"Newtelco Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[44.71267,41.72109]}},{"type":"Feature","properties":{"name":"Bitfury","operator":""},"geometry":{"type":"Point","coordinates":[44.86262,41.8082]}},{"type":"Feature","properties":{"name":"Internet Exchange Point","operator":""},"geometry":{"type":"Point","coordinates":[42.72549,42.1881]}},{"type":"Feature","properties":{"name":"Dhiraagu Data Centre","operator":"Dhiraagu"},"geometry":{"type":"Point","coordinates":[73.27251,5.66341]}},{"type":"Feature","properties":{"name":"Kuzhivilakonam Resident Welfare Society","operator":""},"geometry":{"type":"Point","coordinates":[77.03334,8.37569]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[76.63969,8.83942]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[76.54694,9.46148]}},{"type":"Feature","properties":{"name":"Akshaya","operator":""},"geometry":{"type":"Point","coordinates":[76.57692,9.56243]}},{"type":"Feature","properties":{"name":"computer center","operator":""},"geometry":{"type":"Point","coordinates":[76.63976,9.5699]}},{"type":"Feature","properties":{"name":"Akshaya Centre, Thottuva, Kuravilangad","operator":""},"geometry":{"type":"Point","coordinates":[76.54413,9.75511]}},{"type":"Feature","properties":{"name":"Common dervice centre","operator":""},"geometry":{"type":"Point","coordinates":[76.67101,9.245]}},{"type":"Feature","properties":{"name":"st marys press","operator":""},"geometry":{"type":"Point","coordinates":[76.84216,9.38697]}},{"type":"Feature","properties":{"name":"adharam writing center","operator":""},"geometry":{"type":"Point","coordinates":[76.84318,9.38718]}},{"type":"Feature","properties":{"name":"RMS Dish Service Center","operator":"RMS"},"geometry":{"type":"Point","coordinates":[76.92562,9.3301]}},{"type":"Feature","properties":{"name":"Akshaya E Center","operator":""},"geometry":{"type":"Point","coordinates":[76.29977,10.42962]}},{"type":"Feature","properties":{"name":"Akshaya E Center","operator":""},"geometry":{"type":"Point","coordinates":[76.29979,10.42963]}},{"type":"Feature","properties":{"name":"Mudra Computer Center","operator":"Venu"},"geometry":{"type":"Point","coordinates":[77.02803,9.97753]}},{"type":"Feature","properties":{"name":"G-Tech","operator":""},"geometry":{"type":"Point","coordinates":[76.02631,10.58078]}},{"type":"Feature","properties":{"name":"SLT IDC - National Data Center - Pitipana","operator":"Sri Lanka Telecom PLC"},"geometry":{"type":"Point","coordinates":[80.03669,6.82454]}},{"type":"Feature","properties":{"name":"Information Technology Center","operator":""},"geometry":{"type":"Point","coordinates":[81.21225,8.65388]}},{"type":"Feature","properties":{"name":"Gtec","operator":""},"geometry":{"type":"Point","coordinates":[75.82772,11.31219]}},{"type":"Feature","properties":{"name":"Zion Communication","operator":""},"geometry":{"type":"Point","coordinates":[76.92639,9.331]}},{"type":"Feature","properties":{"name":"Akshaya Centre, Palluruthy","operator":""},"geometry":{"type":"Point","coordinates":[76.27123,9.92365]}},{"type":"Feature","properties":{"name":"Akshaya Centre","operator":""},"geometry":{"type":"Point","coordinates":[76.13841,10.94632]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[75.95395,11.2459]}},{"type":"Feature","properties":{"name":"ISSDC","operator":""},"geometry":{"type":"Point","coordinates":[77.36988,12.90174]}},{"type":"Feature","properties":{"name":"STTelemedia Global Data Centeres","operator":""},"geometry":{"type":"Point","coordinates":[77.72007,12.98119]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[77.64161,13.19304]}},{"type":"Feature","properties":{"name":"NTT DC3","operator":"NTT"},"geometry":{"type":"Point","coordinates":[77.75783,13.03857]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[77.75785,13.03856]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[77.75739,13.03861]}},{"type":"Feature","properties":{"name":"NIO Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[73.80158,15.4559]}},{"type":"Feature","properties":{"name":"Akshaya Center , Maikavu","operator":""},"geometry":{"type":"Point","coordinates":[75.9772,11.40284]}},{"type":"Feature","properties":{"name":"NTT Mumbai 7 Data Center","operator":""},"geometry":{"type":"Point","coordinates":[72.89096,19.11455]}},{"type":"Feature","properties":{"name":"CtrlS Chennai Data Center","operator":"CtrlS"},"geometry":{"type":"Point","coordinates":[80.16262,13.10775]}},{"type":"Feature","properties":{"name":"Pi Datacenters Amaravati","operator":""},"geometry":{"type":"Point","coordinates":[80.55826,16.42109]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[79.16177,18.35306]}},{"type":"Feature","properties":{"name":"naibe- numerology, tarot and reiki","operator":""},"geometry":{"type":"Point","coordinates":[79.06435,21.10346]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[50.50365,26.0504]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[50.60505,26.06931]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[50.47422,26.15466]}},{"type":"Feature","properties":{"name":"Batelco Hamala Data Center","operator":"Batelco"},"geometry":{"type":"Point","coordinates":[50.47466,26.15648]}},{"type":"Feature","properties":{"name":"Stargate UAE Abu Dhabi","operator":""},"geometry":{"type":"Point","coordinates":[54.45661,24.14791]}},{"type":"Feature","properties":{"name":"Stargate AI DataCenter","operator":""},"geometry":{"type":"Point","coordinates":[54.44546,24.15097]}},{"type":"Feature","properties":{"name":"Gulf Data Hub ICAD 1","operator":"Gulf Data Hub"},"geometry":{"type":"Point","coordinates":[54.45858,24.26489]}},{"type":"Feature","properties":{"name":"Gulf Data Hub ICAD 2","operator":"Gulf Data Hub"},"geometry":{"type":"Point","coordinates":[54.45947,24.2639]}},{"type":"Feature","properties":{"name":"\u0641\u0631\u0627\u0647\u0648\u0634","operator":""},"geometry":{"type":"Point","coordinates":[52.52127,29.62458]}},{"type":"Feature","properties":{"name":"\u06a9\u06cc\u0645\u06cc\u0627 \u0634\u0628\u06a9\u0647","operator":""},"geometry":{"type":"Point","coordinates":[51.6383,32.62901]}},{"type":"Feature","properties":{"name":"Samaee Server","operator":"\u0628\u0647\u0646\u0627\u0645 \u0633\u0645\u0627\u0626\u06cc Behnam Samaee"},"geometry":{"type":"Point","coordinates":[56.30587,27.18575]}},{"type":"Feature","properties":{"name":"Al-Ayesha Chambers","operator":""},"geometry":{"type":"Point","coordinates":[67.02412,24.85819]}},{"type":"Feature","properties":{"name":"CtrlS Mumbai","operator":""},"geometry":{"type":"Point","coordinates":[73.02367,19.1083]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[73.68951,18.59627]}},{"type":"Feature","properties":{"name":"Yotta Datacenter","operator":"Yotta Datacenter Pvt Lmt"},"geometry":{"type":"Point","coordinates":[73.20087,18.91186]}},{"type":"Feature","properties":{"name":"Manoj Data Recovery services","operator":""},"geometry":{"type":"Point","coordinates":[78.38067,17.50557]}},{"type":"Feature","properties":{"name":"eShare.ai","operator":""},"geometry":{"type":"Point","coordinates":[78.4624,17.42292]}},{"type":"Feature","properties":{"name":"Netizens Digital Zone","operator":""},"geometry":{"type":"Point","coordinates":[76.54596,18.40839]}},{"type":"Feature","properties":{"name":"MilkyUpizise","operator":"MilkyUpizise"},"geometry":{"type":"Point","coordinates":[80.04179,12.77941]}},{"type":"Feature","properties":{"name":"Nxtra Data Chennai","operator":""},"geometry":{"type":"Point","coordinates":[80.22097,12.83059]}},{"type":"Feature","properties":{"name":"AdaniConneX Chennai 1","operator":""},"geometry":{"type":"Point","coordinates":[80.22603,12.82156]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[80.21716,12.8701]}},{"type":"Feature","properties":{"name":"Government Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[80.23987,13.01776]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[54.46362,24.2685]}},{"type":"Feature","properties":{"name":"Equinix Abu Dhabi AD1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[54.62202,24.41885]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[54.74192,24.70857]}},{"type":"Feature","properties":{"name":"Amazon Web Services","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[55.10945,24.89334]}},{"type":"Feature","properties":{"name":"Khazna Data Centers","operator":"Khazna Data Centers"},"geometry":{"type":"Point","coordinates":[55.12049,25.02635]}},{"type":"Feature","properties":{"name":"Khazna Data Centers","operator":"Khazna Data Centers"},"geometry":{"type":"Point","coordinates":[55.12363,25.0265]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[55.12016,25.02799]}},{"type":"Feature","properties":{"name":"Disk Masters pakistan Karachi","operator":""},"geometry":{"type":"Point","coordinates":[67.02458,24.86094]}},{"type":"Feature","properties":{"name":"karachi massage center & Spa","operator":""},"geometry":{"type":"Point","coordinates":[67.07227,24.83068]}},{"type":"Feature","properties":{"name":"M.A.F Co.","operator":""},"geometry":{"type":"Point","coordinates":[67.07562,24.83631]}},{"type":"Feature","properties":{"name":"Translation Zone","operator":""},"geometry":{"type":"Point","coordinates":[67.07455,24.86424]}},{"type":"Feature","properties":{"name":"SSS & Company","operator":""},"geometry":{"type":"Point","coordinates":[67.02716,24.87473]}},{"type":"Feature","properties":{"name":"Sajjad Serves","operator":""},"geometry":{"type":"Point","coordinates":[67.04666,24.88733]}},{"type":"Feature","properties":{"name":"\u0627\u0646\u0628\u0627\u0631 \u0645\u063a\u0632\u0647","operator":""},"geometry":{"type":"Point","coordinates":[56.36791,31.00982]}},{"type":"Feature","properties":{"name":"\u062a\u06c6\u0645\u0627\u0631\u06af\u0627\u06cc \u06af\u0634\u062a\u06cc","operator":"\u062a\u06c6\u0645\u0627\u0631\u06af\u0627\u06cc \u06af\u0634\u062a\u06cc"},"geometry":{"type":"Point","coordinates":[45.36647,35.57717]}},{"type":"Feature","properties":{"name":"\u0641\u0631\u0645\u0627\u0646\u062f\u0627\u0631\u06cc \u0634\u0647\u0631\u0633\u062a\u0627\u0646 \u062f\u0644\u0641\u0627\u0646","operator":""},"geometry":{"type":"Point","coordinates":[47.97593,34.06727]}},{"type":"Feature","properties":{"name":"\u0645\u0631\u06a9\u0632 \u062a\u0639\u0648\u06cc\u0636 \u067e\u0644\u0627\u06a9","operator":""},"geometry":{"type":"Point","coordinates":[47.9777,34.07029]}},{"type":"Feature","properties":{"name":"Hi Data","operator":"Company"},"geometry":{"type":"Point","coordinates":[49.22126,36.14692]}},{"type":"Feature","properties":{"name":"\u0633\u0627\u062e\u062a\u0645\u0627\u0646 \u0645\u0647\u0646\u062f\u0633\u06cc\u0646 \u0645\u0647\u0631\u0632\u0627\u062f","operator":""},"geometry":{"type":"Point","coordinates":[45.7191,36.76496]}},{"type":"Feature","properties":{"name":"\u0634\u0631\u06a9\u062a \u0641\u0646\u0627\u0648\u0631\u06cc \u0631\u0627\u06cc\u0627\u0646 \u0627\u0641\u0632\u0627\u0631 \u067e\u0627\u0631\u0633\u0627\u0646","operator":""},"geometry":{"type":"Point","coordinates":[45.71909,36.76495]}},{"type":"Feature","properties":{"name":"\u0627\u062f\u0627\u0631\u0647 \u0645\u062e\u0627\u0628\u0631\u0627\u062a \u0622\u0630\u0631\u0634\u0647\u0631","operator":""},"geometry":{"type":"Point","coordinates":[45.97644,37.76165]}},{"type":"Feature","properties":{"name":"\u062f\u0641\u062a\u0631 \u0627\u0631\u062a\u0628\u0627\u0637\u06cc \u0627\u06cc\u0631\u0627\u0646\u0633\u0644","operator":""},"geometry":{"type":"Point","coordinates":[45.97609,37.76267]}},{"type":"Feature","properties":{"name":"\u0645\u062e\u0627\u0628\u0631\u0627\u062a \u0645\u0631\u06a9\u0632\u06cc","operator":""},"geometry":{"type":"Point","coordinates":[45.07261,39.35042]}},{"type":"Feature","properties":{"name":"\u06f1\u06f1\u06f7\u062e\u0631\u0627\u0628\u06cc \u062a\u0644\u0641\u0646 \u0648\u06cc\u0627","operator":""},"geometry":{"type":"Point","coordinates":[45.07298,39.35025]}},{"type":"Feature","properties":{"name":"GIS Data-Center","operator":""},"geometry":{"type":"Point","coordinates":[74.4274,31.57517]}},{"type":"Feature","properties":{"name":"Spatioworld Tracker GPS","operator":""},"geometry":{"type":"Point","coordinates":[78.80318,23.86575]}},{"type":"Feature","properties":{"name":"royal computer and training centre","operator":""},"geometry":{"type":"Point","coordinates":[84.26483,25.22384]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[55.18523,25.02666]}},{"type":"Feature","properties":{"name":"Equinix Dubai DX1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[55.18672,25.026]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[55.18499,25.0282]}},{"type":"Feature","properties":{"name":"datamena DXA Datacenter","operator":"datamena"},"geometry":{"type":"Point","coordinates":[55.18523,25.0281]}},{"type":"Feature","properties":{"name":"AL NASR TYPING CENTER","operator":""},"geometry":{"type":"Point","coordinates":[55.56057,25.578]}},{"type":"Feature","properties":{"name":"\u0645\u062f\u0631\u0633\u0647 \u06cc\u0627\u0631\u0627\u0646 \u0645\u0647\u062f\u06cc","operator":""},"geometry":{"type":"Point","coordinates":[49.89389,31.52443]}},{"type":"Feature","properties":{"name":"Telecommunication Logistics","operator":""},"geometry":{"type":"Point","coordinates":[47.97128,33.39658]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[48.00884,33.43832]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[48.00189,33.44376]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[48.00112,33.44409]}},{"type":"Feature","properties":{"name":"\u0645\u0631\u06a9\u0632 \u06a9\u0627\u0645\u067e\u06cc\u0648\u062a\u0631 \u062f\u0627\u0646\u0634\u06a9\u062f\u0647\u0654 \u0631\u06cc\u0627\u0636\u06cc","operator":"K. N. Toosi University of Technology"},"geometry":{"type":"Point","coordinates":[51.56369,35.7505]}},{"type":"Feature","properties":{"name":"\u0645\u0631\u06a9\u0632 \u06a9\u0627\u0645\u067e\u06cc\u0648\u062a\u0631 \u067e\u0631\u062f\u06cc\u0633 \u0631\u0636\u0627\u06cc\u06cc\u200c\u0646\u0698\u0627\u062f","operator":"K. N. Toosi University of Technology"},"geometry":{"type":"Point","coordinates":[51.56383,35.75082]}},{"type":"Feature","properties":{"name":"\u0645\u06a9\u0646\u0627\u0646\u062a","operator":"\u0622\u0641\u0627\u0642 \u0627\u0646\u062f\u06cc\u0634 \u062f\u0627\u062f\u0647 \u067e\u0631\u062f\u06cc\u0633"},"geometry":{"type":"Point","coordinates":[51.84372,35.73528]}},{"type":"Feature","properties":{"name":"Light Company","operator":"DigitalOcean"},"geometry":{"type":"Point","coordinates":[52.34658,36.46423]}},{"type":"Feature","properties":{"name":"\u0130nformasiya m\u0259rk\u0259zi","operator":""},"geometry":{"type":"Point","coordinates":[46.75143,39.81564]}},{"type":"Feature","properties":{"name":"\u0130T kursu","operator":""},"geometry":{"type":"Point","coordinates":[46.76725,39.82526]}},{"type":"Feature","properties":{"name":"Pasha Technology Datacenter","operator":"Pasha Technology"},"geometry":{"type":"Point","coordinates":[49.83353,40.40958]}},{"type":"Feature","properties":{"name":"Zone 41","operator":""},"geometry":{"type":"Point","coordinates":[49.88664,40.37707]}},{"type":"Feature","properties":{"name":"Adhaar Seva Kendra","operator":""},"geometry":{"type":"Point","coordinates":[77.17042,28.67312]}},{"type":"Feature","properties":{"name":"INSURENCE SURVICE CENTRE","operator":""},"geometry":{"type":"Point","coordinates":[76.70046,29.13526]}},{"type":"Feature","properties":{"name":"Chayya computers works","operator":""},"geometry":{"type":"Point","coordinates":[83.76023,25.62583]}},{"type":"Feature","properties":{"name":"csc computer classes","operator":""},"geometry":{"type":"Point","coordinates":[86.94951,25.24768]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[89.06912,22.72015]}},{"type":"Feature","properties":{"name":"computer cafe","operator":""},"geometry":{"type":"Point","coordinates":[87.25121,24.26822]}},{"type":"Feature","properties":{"name":"Central Computer Lab","operator":"Malda College"},"geometry":{"type":"Point","coordinates":[88.13604,25.00062]}},{"type":"Feature","properties":{"name":"DIGITAL COMPUTER CENTRE (DCC)","operator":""},"geometry":{"type":"Point","coordinates":[85.12828,25.59596]}},{"type":"Feature","properties":{"name":"Alliance Broadband Fibre Optic Connection","operator":"Alliance Broadband"},"geometry":{"type":"Point","coordinates":[89.03098,26.53157]}},{"type":"Feature","properties":{"name":"computer lab","operator":"training"},"geometry":{"type":"Point","coordinates":[80.18252,28.954]}},{"type":"Feature","properties":{"name":"Statistics Coordination Office, Jumla","operator":""},"geometry":{"type":"Point","coordinates":[82.18203,29.27175]}},{"type":"Feature","properties":{"name":"SLRC KMC","operator":"Khyber Medical College"},"geometry":{"type":"Point","coordinates":[71.48503,33.9992]}},{"type":"Feature","properties":{"name":"PabPro Studio","operator":"Peddler Media Network"},"geometry":{"type":"Point","coordinates":[76.67319,30.75461]}},{"type":"Feature","properties":{"name":"KIU Data Center","operator":""},"geometry":{"type":"Point","coordinates":[74.36526,35.92487]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[67.83369,40.17918]}},{"type":"Feature","properties":{"name":"SostraData","operator":"SostraData"},"geometry":{"type":"Point","coordinates":[1.39369,46.20459]}},{"type":"Feature","properties":{"name":"Datacenter ArteOne","operator":"Artefact"},"geometry":{"type":"Point","coordinates":[1.50918,45.15761]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[0.70327,47.43627]}},{"type":"Feature","properties":{"name":"Cogent Poitiers","operator":""},"geometry":{"type":"Point","coordinates":[0.34002,46.58842]}},{"type":"Feature","properties":{"name":"Okantis","operator":""},"geometry":{"type":"Point","coordinates":[0.32549,46.6071]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[0.3363,46.61188]}},{"type":"Feature","properties":{"name":"Centre R\u00e9gional de Ressources Informatiques (CRRI)","operator":"Universit\u00e9 Clermont Auvergne"},"geometry":{"type":"Point","coordinates":[3.1092,45.76278]}},{"type":"Feature","properties":{"name":"Datacenter IBO","operator":"IBO"},"geometry":{"type":"Point","coordinates":[3.13086,45.78417]}},{"type":"Feature","properties":{"name":"O2Switch DC2","operator":"O2Switch"},"geometry":{"type":"Point","coordinates":[3.1346,45.75675]}},{"type":"Feature","properties":{"name":"Ecocenter","operator":"Nexeren"},"geometry":{"type":"Point","coordinates":[3.11501,45.83128]}},{"type":"Feature","properties":{"name":"Datacenter IBM","operator":"IBM"},"geometry":{"type":"Point","coordinates":[3.14236,45.80772]}},{"type":"Feature","properties":{"name":"DC Free","operator":"Illiad"},"geometry":{"type":"Point","coordinates":[3.13688,45.83327]}},{"type":"Feature","properties":{"name":"Datacenter IBM","operator":"IBM"},"geometry":{"type":"Point","coordinates":[3.13775,45.83614]}},{"type":"Feature","properties":{"name":"Datacenter IBM","operator":"IBM"},"geometry":{"type":"Point","coordinates":[3.13772,45.83635]}},{"type":"Feature","properties":{"name":"Cogent Tours","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[0.68642,47.43233]}},{"type":"Feature","properties":{"name":"Groupe ADISTA","operator":"ADISTA"},"geometry":{"type":"Point","coordinates":[0.69541,47.436]}},{"type":"Feature","properties":{"name":"Datacenter Groupe Casino","operator":"Groupe Casino"},"geometry":{"type":"Point","coordinates":[4.40043,45.44061]}},{"type":"Feature","properties":{"name":"Adista Saint-\u00c9tienne","operator":""},"geometry":{"type":"Point","coordinates":[4.39638,45.45869]}},{"type":"Feature","properties":{"name":"Castle IT","operator":""},"geometry":{"type":"Point","coordinates":[0.76923,47.34925]}},{"type":"Feature","properties":{"name":"Fingerprint Technologies","operator":"Fingerprint Technologies"},"geometry":{"type":"Point","coordinates":[5.08637,45.0486]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.60621,45.31419]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[4.94515,45.68417]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[4.94509,45.68446]}},{"type":"Feature","properties":{"name":"SNCF","operator":"SNCF"},"geometry":{"type":"Point","coordinates":[4.81648,45.72428]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.8168,45.72428]}},{"type":"Feature","properties":{"name":"Salle technique Euronews","operator":"Euronews"},"geometry":{"type":"Point","coordinates":[4.81565,45.7344]}},{"type":"Feature","properties":{"name":"Datacenter RTE","operator":"RTE"},"geometry":{"type":"Point","coordinates":[4.83222,45.74048]}},{"type":"Feature","properties":{"name":"Datacenter Groupama","operator":"Groupama"},"geometry":{"type":"Point","coordinates":[2.35678,47.05989]}},{"type":"Feature","properties":{"name":"Nexeren","operator":"Nexeren"},"geometry":{"type":"Point","coordinates":[4.87901,45.90345]}},{"type":"Feature","properties":{"name":"Nexeren","operator":"Nexeren"},"geometry":{"type":"Point","coordinates":[4.87895,45.90382]}},{"type":"Feature","properties":{"name":"SFR Netcenter V\u00e9nissieux","operator":"SFR"},"geometry":{"type":"Point","coordinates":[4.86292,45.72232]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.86152,45.72313]}},{"type":"Feature","properties":{"name":"Free Pro - Datacenter Rock (LYO03)","operator":"Free Pro (Ex. Jaguar Network - DCforDATA)"},"geometry":{"type":"Point","coordinates":[4.88983,45.73858]}},{"type":"Feature","properties":{"name":"Lyon S\u00e9vign\u00e9","operator":"Orange"},"geometry":{"type":"Point","coordinates":[4.84389,45.75845]}},{"type":"Feature","properties":{"name":"Orange Lyon Lumi\u00e8re - Centrale","operator":""},"geometry":{"type":"Point","coordinates":[4.86343,45.75516]}},{"type":"Feature","properties":{"name":"Colt Lyon","operator":""},"geometry":{"type":"Point","coordinates":[4.86756,45.75884]}},{"type":"Feature","properties":{"name":"Euclyde DC5","operator":"Euclyde"},"geometry":{"type":"Point","coordinates":[4.87152,45.77249]}},{"type":"Feature","properties":{"name":"ELB Group - DATACENTER LYON 3","operator":""},"geometry":{"type":"Point","coordinates":[4.8718,45.77198]}},{"type":"Feature","properties":{"name":"Extension centre de calcul IN2P3","operator":"IN2P3"},"geometry":{"type":"Point","coordinates":[4.86595,45.7827]}},{"type":"Feature","properties":{"name":"Centre de Calculs et de Donn\u00e9es LyonTech-la Doua","operator":"Universit\u00e9 Claude Bernard - Lyon 1"},"geometry":{"type":"Point","coordinates":[4.86502,45.78134]}},{"type":"Feature","properties":{"name":"Centre de Calculs et de Donn\u00e9es LyonTech-la Doua","operator":"Universit\u00e9 Claude Bernard - Lyon 1"},"geometry":{"type":"Point","coordinates":[4.86512,45.78147]}},{"type":"Feature","properties":{"name":"Centre de Calculs et de Donn\u00e9es LyonTech-la Doua","operator":"Universit\u00e9 Claude Bernard - Lyon 1"},"geometry":{"type":"Point","coordinates":[4.86527,45.7814]}},{"type":"Feature","properties":{"name":"Centre de Calculs et de Donn\u00e9es LyonTech-la Doua","operator":"Universit\u00e9 Claude Bernard - Lyon 1"},"geometry":{"type":"Point","coordinates":[4.86526,45.78158]}},{"type":"Feature","properties":{"name":"Centre de Calculs et de Donn\u00e9es LyonTech-la Doua","operator":"Universit\u00e9 Claude Bernard - Lyon 1"},"geometry":{"type":"Point","coordinates":[4.865,45.78154]}},{"type":"Feature","properties":{"name":"LyonIX 1 IN2P3","operator":""},"geometry":{"type":"Point","coordinates":[4.86575,45.78262]}},{"type":"Feature","properties":{"name":"LASOTEL PIXEL69","operator":""},"geometry":{"type":"Point","coordinates":[4.89966,45.75741]}},{"type":"Feature","properties":{"name":"SynAApS - SaaS, PaaS, Housing","operator":""},"geometry":{"type":"Point","coordinates":[4.88824,45.78454]}},{"type":"Feature","properties":{"name":"Free Pro - Datacenter Limonest (LYO02 - DCForData)","operator":"Free Pro (Ex. Jaguar Network - DCForData)"},"geometry":{"type":"Point","coordinates":[4.7721,45.80664]}},{"type":"Feature","properties":{"name":"Sartera","operator":""},"geometry":{"type":"Point","coordinates":[0.2284,47.99681]}},{"type":"Feature","properties":{"name":"Datagrex","operator":""},"geometry":{"type":"Point","coordinates":[0.18713,48.05386]}},{"type":"Feature","properties":{"name":"Greenfield","operator":"Cr\u00e9dit Agricole"},"geometry":{"type":"Point","coordinates":[1.32683,48.47053]}},{"type":"Feature","properties":{"name":"EDF","operator":"EDF"},"geometry":{"type":"Point","coordinates":[1.39778,49.01163]}},{"type":"Feature","properties":{"name":"Datacenter EDF","operator":"EDF"},"geometry":{"type":"Point","coordinates":[1.39807,49.01212]}},{"type":"Feature","properties":{"name":"EDF","operator":"EDF"},"geometry":{"type":"Point","coordinates":[1.39733,49.01177]}},{"type":"Feature","properties":{"name":"EDF","operator":"EDF"},"geometry":{"type":"Point","coordinates":[1.39818,49.01151]}},{"type":"Feature","properties":{"name":"Scitis-Zen DataCenter Hitachi","operator":""},"geometry":{"type":"Point","coordinates":[1.92014,47.82375]}},{"type":"Feature","properties":{"name":"France Travail datacenter Orl\u00e9ans","operator":"France Travail DSI"},"geometry":{"type":"Point","coordinates":[1.85215,47.89304]}},{"type":"Feature","properties":{"name":"LIFO","operator":"LIFO"},"geometry":{"type":"Point","coordinates":[1.93966,47.84551]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[1.44348,48.36577]}},{"type":"Feature","properties":{"name":"Greenfield","operator":"Cr\u00e9dit Agricole"},"geometry":{"type":"Point","coordinates":[1.43801,48.45089]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[5.03195,47.29513]}},{"type":"Feature","properties":{"name":"Bouygues Telecom","operator":""},"geometry":{"type":"Point","coordinates":[5.03377,47.29603]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[5.03092,47.29408]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[5.03121,47.29395]}},{"type":"Feature","properties":{"name":"Cogent Dijon","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[5.03048,47.30882]}},{"type":"Feature","properties":{"name":"Centre de Calcul de l\u2019Universit\u00e9 de Bourgogne","operator":""},"geometry":{"type":"Point","coordinates":[5.07085,47.31492]}},{"type":"Feature","properties":{"name":"DTiX","operator":""},"geometry":{"type":"Point","coordinates":[5.07767,47.34005]}},{"type":"Feature","properties":{"name":"Euro-Information EIP (Data Center)","operator":"Euro Information"},"geometry":{"type":"Point","coordinates":[5.10557,47.33293]}},{"type":"Feature","properties":{"name":"Th\u00e9s\u00e9e DataCenter","operator":"Th\u00e9s\u00e9e"},"geometry":{"type":"Point","coordinates":[1.84024,48.96607]}},{"type":"Feature","properties":{"name":"Datacenter Bouygues T\u00e9l\u00e9com","operator":"Bouygues Telecom"},"geometry":{"type":"Point","coordinates":[2.04353,48.97323]}},{"type":"Feature","properties":{"name":"Site technique SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[2.07537,48.97196]}},{"type":"Feature","properties":{"name":"Site technique SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[2.00298,48.76794]}},{"type":"Feature","properties":{"name":"Site technique SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[2.00143,48.76549]}},{"type":"Feature","properties":{"name":"Telehouse 3","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[2.07845,48.72625]}},{"type":"Feature","properties":{"name":"OpenStreetMap France","operator":"OpenStreetMap France"},"geometry":{"type":"Point","coordinates":[2.07778,48.72586]}},{"type":"Feature","properties":{"name":"Datacenter","operator":"SOCIETE TECHNOLOGIE EXPLOITATION INFORMATIQUE"},"geometry":{"type":"Point","coordinates":[2.05719,48.76565]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.2235,48.65002]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22319,48.64944]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22679,48.65006]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22214,48.64952]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.2226,48.64997]}},{"type":"Feature","properties":{"name":"CNRS","operator":""},"geometry":{"type":"Point","coordinates":[2.22806,48.64977]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.20927,48.67889]}},{"type":"Feature","properties":{"name":"Alionis DC1","operator":""},"geometry":{"type":"Point","coordinates":[2.21378,48.68872]}},{"type":"Feature","properties":{"name":"CDG1","operator":"CloudHQ"},"geometry":{"type":"Point","coordinates":[2.40964,48.59701]}},{"type":"Feature","properties":{"name":"Datacenter Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.24195,48.77675]}},{"type":"Feature","properties":{"name":"Datacenter Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.2419,48.777]}},{"type":"Feature","properties":{"name":"Allianz","operator":"Allianz"},"geometry":{"type":"Point","coordinates":[1.95268,48.79533]}},{"type":"Feature","properties":{"name":"Datacenter Thales Nungesser","operator":"THALES"},"geometry":{"type":"Point","coordinates":[1.97529,48.79094]}},{"type":"Feature","properties":{"name":"Airbus","operator":"Airbus"},"geometry":{"type":"Point","coordinates":[1.96895,48.7977]}},{"type":"Feature","properties":{"name":"Datacenter Bouygues T\u00e9l\u00e9com","operator":"Bouygues Telecom"},"geometry":{"type":"Point","coordinates":[2.03598,48.79442]}},{"type":"Feature","properties":{"name":"Bouygues Telecom Montigny-le-Bretonneux","operator":"Bouygues Telecom"},"geometry":{"type":"Point","coordinates":[2.03631,48.79445]}},{"type":"Feature","properties":{"name":"Datacenter RTE","operator":"RTE"},"geometry":{"type":"Point","coordinates":[2.05002,48.792]}},{"type":"Feature","properties":{"name":"Datacenter des Douanes","operator":"Direction des douanes"},"geometry":{"type":"Point","coordinates":[2.06682,49.05416]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[2.20856,48.7829]}},{"type":"Feature","properties":{"name":"dc2scale V\u00e9lizy","operator":"dc2scale"},"geometry":{"type":"Point","coordinates":[2.20809,48.78379]}},{"type":"Feature","properties":{"name":"Cogent Paris 2","operator":"Cogentco"},"geometry":{"type":"Point","coordinates":[2.20695,48.7842]}},{"type":"Feature","properties":{"name":"Zayo Velizy","operator":"Zayo"},"geometry":{"type":"Point","coordinates":[2.21699,48.78063]}},{"type":"Feature","properties":{"name":"DC2SCALE V\u00e9lizy Lat\u00e9co\u00e8re","operator":"dc2scale"},"geometry":{"type":"Point","coordinates":[2.20929,48.78428]}},{"type":"Feature","properties":{"name":"Equinix PA13X","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.21643,48.78903]}},{"type":"Feature","properties":{"name":"Datacenter Orange","operator":"Orange"},"geometry":{"type":"Point","coordinates":[2.2186,48.78648]}},{"type":"Feature","properties":{"name":"Salle Technique Groupe Canal","operator":"Groupe Canal"},"geometry":{"type":"Point","coordinates":[2.23737,48.8332]}},{"type":"Feature","properties":{"name":"Prosodie Boulogne","operator":""},"geometry":{"type":"Point","coordinates":[2.23513,48.83611]}},{"type":"Feature","properties":{"name":"Salle technique TF1","operator":"TF1"},"geometry":{"type":"Point","coordinates":[2.25975,48.83382]}},{"type":"Feature","properties":{"name":"Data4 Campus Paris Saclay","operator":"Data4"},"geometry":{"type":"Point","coordinates":[2.22929,48.64969]}},{"type":"Feature","properties":{"name":"Colt Paris 3","operator":"Colt"},"geometry":{"type":"Point","coordinates":[2.19744,48.67479]}},{"type":"Feature","properties":{"name":"Eclairion","operator":""},"geometry":{"type":"Point","coordinates":[2.19762,48.59765]}},{"type":"Feature","properties":{"name":"DATA4 Paris Marcoussis PAR2","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.20825,48.66432]}},{"type":"Feature","properties":{"name":"Colt Paris 3","operator":"Colt"},"geometry":{"type":"Point","coordinates":[2.19833,48.67524]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22591,48.64925]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22604,48.6503]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22502,48.65025]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22516,48.64969]}},{"type":"Feature","properties":{"name":"Data4 Marcoussis","operator":""},"geometry":{"type":"Point","coordinates":[2.22806,48.65029]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22588,48.65109]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22504,48.65123]}},{"type":"Feature","properties":{"name":"Salle technique Groupe CANAL","operator":"Groupe CANAL"},"geometry":{"type":"Point","coordinates":[2.26347,48.82757]}},{"type":"Feature","properties":{"name":"Salle technique Eurosport","operator":"Eurosport"},"geometry":{"type":"Point","coordinates":[2.26466,48.82907]}},{"type":"Feature","properties":{"name":"Salle Technique France T\u00e9l\u00e9visions","operator":"France T\u00e9l\u00e9visions"},"geometry":{"type":"Point","coordinates":[2.27268,48.83781]}},{"type":"Feature","properties":{"name":"Salle Technique France T\u00e9l\u00e9visions","operator":"France T\u00e9l\u00e9visions"},"geometry":{"type":"Point","coordinates":[2.27244,48.83832]}},{"type":"Feature","properties":{"name":"Salle Technique France T\u00e9l\u00e9visions","operator":"France T\u00e9l\u00e9visions"},"geometry":{"type":"Point","coordinates":[2.28168,48.84013]}},{"type":"Feature","properties":{"name":"OPCORE DC3","operator":"OPCORE"},"geometry":{"type":"Point","coordinates":[2.37934,48.77494]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22723,48.64854]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22838,48.64905]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22728,48.64916]}},{"type":"Feature","properties":{"name":"data4","operator":"data4"},"geometry":{"type":"Point","coordinates":[2.22553,48.65194]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22834,48.64841]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.22943,48.65003]}},{"type":"Feature","properties":{"name":"KHEOPS Organisation V\u00e9lizy-Villacoublay","operator":""},"geometry":{"type":"Point","coordinates":[2.2148,48.77854]}},{"type":"Feature","properties":{"name":"Datacenter Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.22792,48.76918]}},{"type":"Feature","properties":{"name":"RATP","operator":"RATP"},"geometry":{"type":"Point","coordinates":[2.30129,48.80068]}},{"type":"Feature","properties":{"name":"Datacenter Colt","operator":"Colt"},"geometry":{"type":"Point","coordinates":[2.30294,48.81589]}},{"type":"Feature","properties":{"name":"Paris St Amand","operator":"Orange"},"geometry":{"type":"Point","coordinates":[2.30743,48.83496]}},{"type":"Feature","properties":{"name":"Scaleway Datacenter DC4","operator":"Scaleway"},"geometry":{"type":"Point","coordinates":[2.29599,48.82956]}},{"type":"Feature","properties":{"name":"Salle technique TDF","operator":"TDF"},"geometry":{"type":"Point","coordinates":[2.29421,48.85742]}},{"type":"Feature","properties":{"name":"KHEOPS Organisation Plessis-Robinson","operator":""},"geometry":{"type":"Point","coordinates":[2.23798,48.7742]}},{"type":"Feature","properties":{"name":"B\u00e2timent Data Center","operator":"MBDA France"},"geometry":{"type":"Point","coordinates":[2.24391,48.77785]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.25716,49.13597]}},{"type":"Feature","properties":{"name":"ANSSI","operator":"ANSSI"},"geometry":{"type":"Point","coordinates":[2.4766,48.8702]}},{"type":"Feature","properties":{"name":"Datacenter Orange Archives","operator":"Orange"},"geometry":{"type":"Point","coordinates":[2.35839,48.86281]}},{"type":"Feature","properties":{"name":"OPCORE DC2","operator":"OPCORE"},"geometry":{"type":"Point","coordinates":[2.41172,48.79483]}},{"type":"Feature","properties":{"name":"Datacenter Aqua Ray","operator":"Aqua Ray"},"geometry":{"type":"Point","coordinates":[2.3934,48.81994]}},{"type":"Feature","properties":{"name":"Digital Realty Paris PAR6","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.40483,48.81704]}},{"type":"Feature","properties":{"name":"Interxion PAR6","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.40304,48.81521]}},{"type":"Feature","properties":{"name":"Colt Paris 1","operator":""},"geometry":{"type":"Point","coordinates":[2.39811,48.83523]}},{"type":"Feature","properties":{"name":"Acropolis Telecom Paris-Nation","operator":""},"geometry":{"type":"Point","coordinates":[2.4041,48.84288]}},{"type":"Feature","properties":{"name":"Telehouse Paris Voltaire","operator":""},"geometry":{"type":"Point","coordinates":[2.3833,48.85613]}},{"type":"Feature","properties":{"name":"Webaxys","operator":""},"geometry":{"type":"Point","coordinates":[0.35056,49.51842]}},{"type":"Feature","properties":{"name":"Orange Eastview","operator":""},"geometry":{"type":"Point","coordinates":[2.41611,48.8633]}},{"type":"Feature","properties":{"name":"Datacenter Soci\u00e9t\u00e9 Generale","operator":"Soci\u00e9t\u00e9 Generale"},"geometry":{"type":"Point","coordinates":[2.4988,48.64636]}},{"type":"Feature","properties":{"name":"Datacenter Sirius","operator":"NATIXIS"},"geometry":{"type":"Point","coordinates":[2.55325,48.62169]}},{"type":"Feature","properties":{"name":"Digital Realty PAR12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.72538,48.82425]}},{"type":"Feature","properties":{"name":"Datacenter Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.47095,48.72561]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[1.03508,49.38183]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[1.18517,49.26404]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[1.17748,49.25312]}},{"type":"Feature","properties":{"name":"Datacenter BNP","operator":"BNP"},"geometry":{"type":"Point","coordinates":[1.22142,49.26525]}},{"type":"Feature","properties":{"name":"Cogent Rouen","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[1.07595,49.42912]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[1.09731,49.43806]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.49266,48.85664]}},{"type":"Feature","properties":{"name":"Euroclear","operator":"Euroclear"},"geometry":{"type":"Point","coordinates":[2.53678,48.83901]}},{"type":"Feature","properties":{"name":"Datacenter Oxya","operator":"Oxya"},"geometry":{"type":"Point","coordinates":[2.58736,48.82927]}},{"type":"Feature","properties":{"name":"Datacenter Marilyn","operator":""},"geometry":{"type":"Point","coordinates":[2.58782,48.83494]}},{"type":"Feature","properties":{"name":"nLighten France","operator":"nLighten France"},"geometry":{"type":"Point","coordinates":[2.62848,48.83982]}},{"type":"Feature","properties":{"name":"Datacenter Banque de France","operator":"Banque de France"},"geometry":{"type":"Point","coordinates":[2.62456,48.84127]}},{"type":"Feature","properties":{"name":"Euclyde DC6","operator":"Euclyde"},"geometry":{"type":"Point","coordinates":[2.63061,48.83922]}},{"type":"Feature","properties":{"name":"BNP Paribas Marne Sud","operator":"BNP Paribas"},"geometry":{"type":"Point","coordinates":[2.64257,48.81724]}},{"type":"Feature","properties":{"name":"Sungard AS IT","operator":"Sungard AS"},"geometry":{"type":"Point","coordinates":[2.64108,48.83701]}},{"type":"Feature","properties":{"name":"Sungard AS IT","operator":"Sungard AS"},"geometry":{"type":"Point","coordinates":[2.64184,48.83692]}},{"type":"Feature","properties":{"name":"Sungard AS IT","operator":""},"geometry":{"type":"Point","coordinates":[2.64117,48.83692]}},{"type":"Feature","properties":{"name":"Datacenter IBM","operator":"IBM"},"geometry":{"type":"Point","coordinates":[2.67253,48.83085]}},{"type":"Feature","properties":{"name":"Datacenter IBM","operator":"IBM"},"geometry":{"type":"Point","coordinates":[2.69288,48.8326]}},{"type":"Feature","properties":{"name":"Euroclear","operator":"Euroclear"},"geometry":{"type":"Point","coordinates":[2.72982,48.83207]}},{"type":"Feature","properties":{"name":"BNP Paribas Centre de Traitement Informatique (CTI) Marne Nord","operator":"BNP Paribas"},"geometry":{"type":"Point","coordinates":[2.72942,48.83041]}},{"type":"Feature","properties":{"name":"Datacenter BNP Paribas Marne Est 1","operator":"BNP Paribas"},"geometry":{"type":"Point","coordinates":[2.80193,48.83589]}},{"type":"Feature","properties":{"name":"BNP Paribas (Hello Bank!)","operator":""},"geometry":{"type":"Point","coordinates":[2.80301,48.83664]}},{"type":"Feature","properties":{"name":"Datacenter Vega","operator":"Natixis"},"geometry":{"type":"Point","coordinates":[2.80393,48.84468]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.78787,48.83893]}},{"type":"Feature","properties":{"name":"Datacenter Banque de France","operator":"Banque de France"},"geometry":{"type":"Point","coordinates":[2.78877,48.83862]}},{"type":"Feature","properties":{"name":"Datacenter BNP Paribas Marne Est 2","operator":"BNP Paribas"},"geometry":{"type":"Point","coordinates":[2.80301,48.83664]}},{"type":"Feature","properties":{"name":"Interxion PAR4","operator":"Interxion"},"geometry":{"type":"Point","coordinates":[2.17498,48.89394]}},{"type":"Feature","properties":{"name":"IFP","operator":"IFP"},"geometry":{"type":"Point","coordinates":[2.17499,48.87736]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.16636,48.87879]}},{"type":"Feature","properties":{"name":"Orange","operator":"Orange"},"geometry":{"type":"Point","coordinates":[2.18755,48.88302]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.19322,48.90221]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.19284,48.90261]}},{"type":"Feature","properties":{"name":"Level (3) Le Capitole Nanterre","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[2.21424,48.88783]}},{"type":"Feature","properties":{"name":"Salle technique Groupe M6","operator":"Groupe M6"},"geometry":{"type":"Point","coordinates":[2.27221,48.88059]}},{"type":"Feature","properties":{"name":"Salle technique Groupe M6","operator":"Groupe M6"},"geometry":{"type":"Point","coordinates":[2.27317,48.88119]}},{"type":"Feature","properties":{"name":"Cogent Paris 1","operator":""},"geometry":{"type":"Point","coordinates":[2.24163,48.90712]}},{"type":"Feature","properties":{"name":"Equinix PA7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.25933,48.90499]}},{"type":"Feature","properties":{"name":"Le Prologue","operator":"SFR"},"geometry":{"type":"Point","coordinates":[2.25935,48.90423]}},{"type":"Feature","properties":{"name":"SFR Netcenter Courbevoie","operator":"SFR"},"geometry":{"type":"Point","coordinates":[2.25799,48.90391]}},{"type":"Feature","properties":{"name":"TelecityGroup Paris Courbevoie","operator":""},"geometry":{"type":"Point","coordinates":[2.25795,48.90463]}},{"type":"Feature","properties":{"name":"Alphalink Telco Center","operator":""},"geometry":{"type":"Point","coordinates":[2.25949,48.90562]}},{"type":"Feature","properties":{"name":"OPCORE DC1","operator":"OPCORE"},"geometry":{"type":"Point","coordinates":[2.22363,48.92529]}},{"type":"Feature","properties":{"name":"OPCORE DC6-2","operator":""},"geometry":{"type":"Point","coordinates":[2.11992,49.03012]}},{"type":"Feature","properties":{"name":"OPCORE DC6-5","operator":""},"geometry":{"type":"Point","coordinates":[2.12532,49.02693]}},{"type":"Feature","properties":{"name":"OPCORE DC6-6","operator":""},"geometry":{"type":"Point","coordinates":[2.12535,49.02881]}},{"type":"Feature","properties":{"name":"OPCORE DC6-3","operator":""},"geometry":{"type":"Point","coordinates":[2.12373,49.02892]}},{"type":"Feature","properties":{"name":"OPCORE DC6-6","operator":""},"geometry":{"type":"Point","coordinates":[2.12695,49.02795]}},{"type":"Feature","properties":{"name":"Global Switch","operator":"Global Switch"},"geometry":{"type":"Point","coordinates":[2.29535,48.90009]}},{"type":"Feature","properties":{"name":"Salle Technique TV5MONDE","operator":"TV5MONDE"},"geometry":{"type":"Point","coordinates":[2.30184,48.88363]}},{"type":"Feature","properties":{"name":"Colt Paris 2","operator":""},"geometry":{"type":"Point","coordinates":[2.32218,48.89727]}},{"type":"Feature","properties":{"name":"Equinix PA5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.36978,48.90521]}},{"type":"Feature","properties":{"name":"Telehouse 1","operator":""},"geometry":{"type":"Point","coordinates":[2.34414,48.86973]}},{"type":"Feature","properties":{"name":"zColo Poissonni\u00e8re","operator":"zColo France"},"geometry":{"type":"Point","coordinates":[2.34769,48.86958]}},{"type":"Feature","properties":{"name":"Digital Realty Paris PAR5","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.37089,48.90426]}},{"type":"Feature","properties":{"name":"Equinix PA7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.36953,48.90224]}},{"type":"Feature","properties":{"name":"Interxion PAR2 - B\u00e2timent 501","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.36962,48.90716]}},{"type":"Feature","properties":{"name":"Equinix PA6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.36791,48.91042]}},{"type":"Feature","properties":{"name":"GTT","operator":"GTT"},"geometry":{"type":"Point","coordinates":[2.36796,48.90703]}},{"type":"Feature","properties":{"name":"Equinix PA3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.35044,48.92739]}},{"type":"Feature","properties":{"name":"Interxion PAR3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.36234,48.91471]}},{"type":"Feature","properties":{"name":"Interxion PAR5","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[2.36242,48.91419]}},{"type":"Feature","properties":{"name":"Equinix PA2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.35145,48.92768]}},{"type":"Feature","properties":{"name":"Equinix PA10","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.34894,48.92766]}},{"type":"Feature","properties":{"name":"Datacenter RTE","operator":"RTE"},"geometry":{"type":"Point","coordinates":[2.33994,48.91962]}},{"type":"Feature","properties":{"name":"Datacenter EDF","operator":"EDF"},"geometry":{"type":"Point","coordinates":[2.34085,48.92035]}},{"type":"Feature","properties":{"name":"Equinix PA9X","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.34893,48.9269]}},{"type":"Feature","properties":{"name":"Ad Valem technologies TDF","operator":""},"geometry":{"type":"Point","coordinates":[2.34108,48.92806]}},{"type":"Feature","properties":{"name":"Datacenter Completel","operator":"Completel"},"geometry":{"type":"Point","coordinates":[2.39541,48.9101]}},{"type":"Feature","properties":{"name":"Orange - Aubervilliers","operator":"Orange"},"geometry":{"type":"Point","coordinates":[2.39477,48.9092]}},{"type":"Feature","properties":{"name":"OVHcloud Paris","operator":""},"geometry":{"type":"Point","coordinates":[2.37647,48.88831]}},{"type":"Feature","properties":{"name":"Datacenter Atos","operator":"Atos"},"geometry":{"type":"Point","coordinates":[2.39695,48.90957]}},{"type":"Feature","properties":{"name":"Datacenter Atos","operator":"Atos"},"geometry":{"type":"Point","coordinates":[2.39686,48.90912]}},{"type":"Feature","properties":{"name":"Equinix PA4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.42243,48.90021]}},{"type":"Feature","properties":{"name":"Salle technique TDF","operator":"TDF"},"geometry":{"type":"Point","coordinates":[2.42257,48.88529]}},{"type":"Feature","properties":{"name":"Equinix PA8X","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.42182,48.90072]}},{"type":"Feature","properties":{"name":"Paris Digital Park","operator":""},"geometry":{"type":"Point","coordinates":[2.39877,48.92751]}},{"type":"Feature","properties":{"name":"PAR8","operator":"Interxion"},"geometry":{"type":"Point","coordinates":[2.39777,48.92756]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.39872,48.92829]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[2.39965,48.92752]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.41547,48.91611]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[2.41593,48.91599]}},{"type":"Feature","properties":{"name":"Interxion PAR7","operator":"Interxion"},"geometry":{"type":"Point","coordinates":[2.40212,48.92553]}},{"type":"Feature","properties":{"name":"PAR9","operator":"Interxion"},"geometry":{"type":"Point","coordinates":[2.39862,48.92683]}},{"type":"Feature","properties":{"name":"OPCORE DC5","operator":"OPCORE"},"geometry":{"type":"Point","coordinates":[2.13775,49.05382]}},{"type":"Feature","properties":{"name":"Lumen","operator":"Lumen Technologies"},"geometry":{"type":"Point","coordinates":[2.51942,48.98239]}},{"type":"Feature","properties":{"name":"Telia ROSY Villepinte","operator":""},"geometry":{"type":"Point","coordinates":[2.51007,48.9729]}},{"type":"Feature","properties":{"name":"Equinix Paris Roissy - PA1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[2.50928,48.98488]}},{"type":"Feature","properties":{"name":"Site Technique SFR","operator":""},"geometry":{"type":"Point","coordinates":[2.64539,48.97597]}},{"type":"Feature","properties":{"name":"Google Data Center","operator":"Google"},"geometry":{"type":"Point","coordinates":[3.86668,50.46585]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[3.86335,50.46636]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[3.99499,49.27028]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.06265,49.23684]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[3.10126,50.39609]}},{"type":"Feature","properties":{"name":"GEN01","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[6.10721,46.16538]}},{"type":"Feature","properties":{"name":"Equinix GV2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[6.09823,46.20791]}},{"type":"Feature","properties":{"name":"Datacenter IBM","operator":"IBM"},"geometry":{"type":"Point","coordinates":[3.03051,50.56514]}},{"type":"Feature","properties":{"name":"La Pointe 1","operator":"Worldline"},"geometry":{"type":"Point","coordinates":[3.0287,50.56674]}},{"type":"Feature","properties":{"name":"Worldline Dassault","operator":"Worldline"},"geometry":{"type":"Point","coordinates":[3.04025,50.56684]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[3.02196,50.61355]}},{"type":"Feature","properties":{"name":"Oxya Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[3.0223,50.61675]}},{"type":"Feature","properties":{"name":"Datacenter SNCF RESARAIL","operator":"SNCF"},"geometry":{"type":"Point","coordinates":[3.08809,50.62282]}},{"type":"Feature","properties":{"name":"Comarch Data Center","operator":"Comarch ICT"},"geometry":{"type":"Point","coordinates":[3.10352,50.6147]}},{"type":"Feature","properties":{"name":"CIV Sainghin-en-M\u00e9lantois","operator":""},"geometry":{"type":"Point","coordinates":[3.13646,50.58403]}},{"type":"Feature","properties":{"name":"Equinix GV1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[6.14423,46.20356]}},{"type":"Feature","properties":{"name":"Techcr\u00e9a Solutions","operator":"Techcr\u00e9a Solutions - First Heberg"},"geometry":{"type":"Point","coordinates":[3.54319,50.34549]}},{"type":"Feature","properties":{"name":"CIV Anzin","operator":""},"geometry":{"type":"Point","coordinates":[3.52197,50.37835]}},{"type":"Feature","properties":{"name":"Microsoft Data Center","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[3.61025,50.52815]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[3.86056,50.46493]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[3.86621,50.46426]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[3.86304,50.46154]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[3.86551,50.46904]}},{"type":"Feature","properties":{"name":"THD Global 1","operator":""},"geometry":{"type":"Point","coordinates":[6.63061,45.9367]}},{"type":"Feature","properties":{"name":"LCL Wallonia One","operator":"LCL"},"geometry":{"type":"Point","coordinates":[4.71752,50.50312]}},{"type":"Feature","properties":{"name":"Wallonie Data Center (WDC)","operator":""},"geometry":{"type":"Point","coordinates":[5.26176,50.5806]}},{"type":"Feature","properties":{"name":"Green DataCenter Eolas","operator":"Orange Business"},"geometry":{"type":"Point","coordinates":[5.71518,45.16846]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.74081,45.15533]}},{"type":"Feature","properties":{"name":"Cogent","operator":"Cogent Communications, Inc."},"geometry":{"type":"Point","coordinates":[5.73691,45.18963]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[5.76714,45.18677]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[5.76616,45.18667]}},{"type":"Feature","properties":{"name":"SFR","operator":"SFR"},"geometry":{"type":"Point","coordinates":[5.76626,45.18697]}},{"type":"Feature","properties":{"name":"Noovle DC Rivoli","operator":"Noovle SpA"},"geometry":{"type":"Point","coordinates":[7.55078,45.0626]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.63903,45.06081]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.66009,45.0817]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.66017,45.08179]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.66015,45.08176]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.66013,45.08174]}},{"type":"Feature","properties":{"name":"DC Noovle Cebrosa","operator":"Noovle S.p.A."},"geometry":{"type":"Point","coordinates":[7.74234,45.14624]}},{"type":"Feature","properties":{"name":"Salle Serveurs CCCM","operator":""},"geometry":{"type":"Point","coordinates":[6.39656,45.25527]}},{"type":"Feature","properties":{"name":"BrainServe","operator":""},"geometry":{"type":"Point","coordinates":[6.5732,46.54642]}},{"type":"Feature","properties":{"name":"Swisscom Lausanne-Savoie","operator":"Swisscom"},"geometry":{"type":"Point","coordinates":[6.62345,46.52032]}},{"type":"Feature","properties":{"name":"nLighten","operator":"nLighten"},"geometry":{"type":"Point","coordinates":[5.97397,47.22623]}},{"type":"Feature","properties":{"name":"24 hours fiberwork ag","operator":""},"geometry":{"type":"Point","coordinates":[8.27752,47.06438]}},{"type":"Feature","properties":{"name":"Rechenzentrum Stollen Luzern","operator":"EWL AG"},"geometry":{"type":"Point","coordinates":[8.32462,47.04169]}},{"type":"Feature","properties":{"name":"NorthC Biel data center","operator":""},"geometry":{"type":"Point","coordinates":[7.27904,47.15578]}},{"type":"Feature","properties":{"name":"Datacube Biel","operator":"Netrics AG"},"geometry":{"type":"Point","coordinates":[7.27906,47.15577]}},{"type":"Feature","properties":{"name":"NorthC data centers Basel","operator":""},"geometry":{"type":"Point","coordinates":[7.61546,47.51261]}},{"type":"Feature","properties":{"name":"Colob\u00e2le","operator":"Colob\u00e2le AG"},"geometry":{"type":"Point","coordinates":[7.67507,47.52297]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[7.52486,47.7523]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.21085,47.44636]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.86087,45.09925]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DCL09","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03901,45.4722]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DC01","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03609,45.47127]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DC03","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03651,45.47065]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DCL07","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03997,45.47195]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DC06","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03906,45.47159]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DC05","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03817,45.47129]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DC10","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03786,45.47188]}},{"type":"Feature","properties":{"name":"Data4 Italia","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03726,45.471]}},{"type":"Feature","properties":{"name":"Data4 Italia - Campus MIL01 - DC02","operator":"Data4 Italia"},"geometry":{"type":"Point","coordinates":[9.03699,45.47157]}},{"type":"Feature","properties":{"name":"Equinix ML5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[9.03835,45.47545]}},{"type":"Feature","properties":{"name":"Equinix ML7x","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[9.03768,45.47677]}},{"type":"Feature","properties":{"name":"Avalon 2","operator":"Irideos"},"geometry":{"type":"Point","coordinates":[9.0669,45.48031]}},{"type":"Feature","properties":{"name":"Avalon 3","operator":"Retelit"},"geometry":{"type":"Point","coordinates":[9.12045,45.44814]}},{"type":"Feature","properties":{"name":"STACK MILL1A","operator":"STACK"},"geometry":{"type":"Point","coordinates":[9.20584,45.33114]}},{"type":"Feature","properties":{"name":"STACK MILL2","operator":"STACK"},"geometry":{"type":"Point","coordinates":[9.20275,45.32854]}},{"type":"Feature","properties":{"name":"STACK MILL1B","operator":"STACK"},"geometry":{"type":"Point","coordinates":[9.2036,45.33115]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.20122,45.33109]}},{"type":"Feature","properties":{"name":"Equinix Milan ML3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[9.1473,45.35406]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.30976,45.35361]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.25679,45.42234]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.38637,45.42914]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.38721,45.42932]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.3873,45.42912]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.38746,45.42873]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.38738,45.42893]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[9.38654,45.42913]}},{"type":"Feature","properties":{"name":"Datacenter MGEN","operator":"MGEN"},"geometry":{"type":"Point","coordinates":[6.13029,48.65323]}},{"type":"Feature","properties":{"name":"Datacenter Mutualis\u00e9 Lorrain","operator":"CNRS"},"geometry":{"type":"Point","coordinates":[6.15047,48.6559]}},{"type":"Feature","properties":{"name":"Bitviking","operator":""},"geometry":{"type":"Point","coordinates":[10.79865,45.14667]}},{"type":"Feature","properties":{"name":"4ServiceSolutions","operator":""},"geometry":{"type":"Point","coordinates":[10.78515,45.55331]}},{"type":"Feature","properties":{"name":"Centrale TIM Trento Nord","operator":"TIM"},"geometry":{"type":"Point","coordinates":[11.11507,46.08464]}},{"type":"Feature","properties":{"name":"Green Datacenter Zurich City (Schlieren)","operator":"Green Datacenter AG"},"geometry":{"type":"Point","coordinates":[8.43791,47.40362]}},{"type":"Feature","properties":{"name":"Equinix ZRH5","operator":"Equinix, Inc."},"geometry":{"type":"Point","coordinates":[8.46058,47.40581]}},{"type":"Feature","properties":{"name":"Equinix ZRH5","operator":"Equinix, Inc."},"geometry":{"type":"Point","coordinates":[8.46141,47.40564]}},{"type":"Feature","properties":{"name":"Rechenzentrum Albis","operator":"Organisation und Informatik der Stadt Z\u00fcrich"},"geometry":{"type":"Point","coordinates":[8.49487,47.37757]}},{"type":"Feature","properties":{"name":"coloz\u00fcri.ch","operator":"NTS Colocation AG"},"geometry":{"type":"Point","coordinates":[8.49535,47.38325]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.49964,47.39291]}},{"type":"Feature","properties":{"name":"OIZ","operator":""},"geometry":{"type":"Point","coordinates":[8.56413,47.41526]}},{"type":"Feature","properties":{"name":"GLB2","operator":"green.ch"},"geometry":{"type":"Point","coordinates":[8.55871,47.43269]}},{"type":"Feature","properties":{"name":"Advanced Mediomatrix","operator":"Advanced Mediomatrix"},"geometry":{"type":"Point","coordinates":[6.23738,49.08565]}},{"type":"Feature","properties":{"name":"Digital Realty ZUR2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.55644,47.43343]}},{"type":"Feature","properties":{"name":"Digital Realty ZUR3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.5575,47.43418]}},{"type":"Feature","properties":{"name":"Digital Realty ZUR1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.55729,47.4327]}},{"type":"Feature","properties":{"name":"NTT Zurich 1 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.54105,47.44866]}},{"type":"Feature","properties":{"name":"Green Metro-Campus Z\u00fcrich Datacenter M","operator":"Green Datacenter AG"},"geometry":{"type":"Point","coordinates":[8.46226,47.48115]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.46212,47.4818]}},{"type":"Feature","properties":{"name":"STACK Infrastructre - ZUR01A","operator":"STACK Infrastructre"},"geometry":{"type":"Point","coordinates":[8.54129,47.60114]}},{"type":"Feature","properties":{"name":"Rechenzentrum Paulstrasse 12","operator":"AXA Winterthur"},"geometry":{"type":"Point","coordinates":[8.72069,47.50086]}},{"type":"Feature","properties":{"name":"ZRH1","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[8.76125,47.50054]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.88838,47.57135]}},{"type":"Feature","properties":{"name":"Datacenter Thurgau","operator":"EKT AG"},"geometry":{"type":"Point","coordinates":[8.88755,47.56196]}},{"type":"Feature","properties":{"name":"RZ CAMPUS","operator":"Bund"},"geometry":{"type":"Point","coordinates":[8.88847,47.57128]}},{"type":"Feature","properties":{"name":"RZO - Rechenzentrum Ostschweiz","operator":""},"geometry":{"type":"Point","coordinates":[9.44977,47.35747]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.93753,48.46473]}},{"type":"Feature","properties":{"name":"DC7 - Euclyde Datacenters","operator":"Euclyde Datacenters"},"geometry":{"type":"Point","coordinates":[7.73707,48.52021]}},{"type":"Feature","properties":{"name":"Datacenter de l'Universit\u00e9 de Strasbourg","operator":""},"geometry":{"type":"Point","coordinates":[7.76336,48.58037]}},{"type":"Feature","properties":{"name":"Quiri","operator":"Cogent Communications"},"geometry":{"type":"Point","coordinates":[7.7442,48.60047]}},{"type":"Feature","properties":{"name":"Datadock","operator":""},"geometry":{"type":"Point","coordinates":[7.7824,48.56872]}},{"type":"Feature","properties":{"name":"SFR Netcenter Strasbourg","operator":"SFR"},"geometry":{"type":"Point","coordinates":[7.78215,48.56864]}},{"type":"Feature","properties":{"name":"OVHcloud Strasbourg - SBG-3","operator":"OVHcloud"},"geometry":{"type":"Point","coordinates":[7.7975,48.58607]}},{"type":"Feature","properties":{"name":"OVHcloud Strasbourg - SBG-5","operator":"OVHcloud"},"geometry":{"type":"Point","coordinates":[7.79747,48.58654]}},{"type":"Feature","properties":{"name":"Interoute Strasbourg","operator":"Interoute"},"geometry":{"type":"Point","coordinates":[7.79503,48.59324]}},{"type":"Feature","properties":{"name":"Bouygues T\u00e9l\u00e9com","operator":"Bouygues T\u00e9l\u00e9com"},"geometry":{"type":"Point","coordinates":[7.76926,48.63363]}},{"type":"Feature","properties":{"name":"LEITWERK Rechenzentrum Appenweier","operator":"Leitwerk Rechenzentren Appenweier/Lahr GmbH"},"geometry":{"type":"Point","coordinates":[7.97341,48.55001]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.1671,50.30268]}},{"type":"Feature","properties":{"name":"Building 1","operator":""},"geometry":{"type":"Point","coordinates":[8.18032,48.9551]}},{"type":"Feature","properties":{"name":"Building 2","operator":""},"geometry":{"type":"Point","coordinates":[8.18059,48.95534]}},{"type":"Feature","properties":{"name":"Hub Europe","operator":"Contabo"},"geometry":{"type":"Point","coordinates":[8.18054,48.95529]}},{"type":"Feature","properties":{"name":"1&1 Internet SE","operator":"1&1 Internet SE"},"geometry":{"type":"Point","coordinates":[8.12818,48.97227]}},{"type":"Feature","properties":{"name":"TelemaxX IPC1","operator":"TelemaxX Telekommunikation GmbH"},"geometry":{"type":"Point","coordinates":[8.34721,49.01351]}},{"type":"Feature","properties":{"name":"Scientific Computing Center","operator":""},"geometry":{"type":"Point","coordinates":[8.43266,49.09599]}},{"type":"Feature","properties":{"name":"ForHLR II","operator":"Steinbuch Centre for Computing"},"geometry":{"type":"Point","coordinates":[8.43343,49.09604]}},{"type":"Feature","properties":{"name":"Association ReptiGo","operator":""},"geometry":{"type":"Point","coordinates":[6.01115,49.22339]}},{"type":"Feature","properties":{"name":"EBRC Resilience Centre Luxembourg South","operator":""},"geometry":{"type":"Point","coordinates":[6.05202,49.49755]}},{"type":"Feature","properties":{"name":"ICT Campus Bettembourg DC 1.1","operator":"LuxConnect"},"geometry":{"type":"Point","coordinates":[6.1123,49.50496]}},{"type":"Feature","properties":{"name":"ICT Campus Bettembourg DC 1.3","operator":"LuxConnect"},"geometry":{"type":"Point","coordinates":[6.11222,49.50578]}},{"type":"Feature","properties":{"name":"ICT Campus Bettembourg DC 1.2","operator":"LuxConnect"},"geometry":{"type":"Point","coordinates":[6.11328,49.50501]}},{"type":"Feature","properties":{"name":"EBRC Resilience Centre Luxembourg West","operator":""},"geometry":{"type":"Point","coordinates":[5.95793,49.64861]}},{"type":"Feature","properties":{"name":"Johannes Gutenberg-Universit\u00e4t Mainz","operator":"Johannes Gutenberg-Universit\u00e4t Mainz"},"geometry":{"type":"Point","coordinates":[8.23008,49.98794]}},{"type":"Feature","properties":{"name":"Yondr - Rechenzentrum","operator":"Yondr Group"},"geometry":{"type":"Point","coordinates":[8.3373,49.99103]}},{"type":"Feature","properties":{"name":"DXC Technology Company","operator":""},"geometry":{"type":"Point","coordinates":[8.43223,49.97842]}},{"type":"Feature","properties":{"name":"European Business Reliance Centre (EBRC)","operator":""},"geometry":{"type":"Point","coordinates":[6.11353,49.58432]}},{"type":"Feature","properties":{"name":"Verizon Luxembourg","operator":""},"geometry":{"type":"Point","coordinates":[6.21736,49.59523]}},{"type":"Feature","properties":{"name":"Visual Online","operator":""},"geometry":{"type":"Point","coordinates":[6.22335,49.59507]}},{"type":"Feature","properties":{"name":"EBRC Resilience Centre Luxembourg East","operator":""},"geometry":{"type":"Point","coordinates":[6.32449,49.69398]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.08963,49.7874]}},{"type":"Feature","properties":{"name":"Inexio","operator":""},"geometry":{"type":"Point","coordinates":[6.75432,49.31858]}},{"type":"Feature","properties":{"name":"Dernbach 2","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78095,50.44674]}},{"type":"Feature","properties":{"name":"GasLINE","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78081,50.44666]}},{"type":"Feature","properties":{"name":"GasLINE","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78116,50.44667]}},{"type":"Feature","properties":{"name":"GasLINE","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78154,50.44669]}},{"type":"Feature","properties":{"name":"Dernbach 3","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78116,50.44689]}},{"type":"Feature","properties":{"name":"Dernbach 1","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78492,50.44577]}},{"type":"Feature","properties":{"name":"Dernbach 1","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78491,50.44592]}},{"type":"Feature","properties":{"name":"Dernbach 1","operator":"GasLINE"},"geometry":{"type":"Point","coordinates":[7.78491,50.44587]}},{"type":"Feature","properties":{"name":"Rechenzentrum K\u00dcS Data","operator":""},"geometry":{"type":"Point","coordinates":[6.80417,49.50503]}},{"type":"Feature","properties":{"name":"OVHcloud LIM1-3 Rechenzentrum","operator":"OVH GmbH"},"geometry":{"type":"Point","coordinates":[8.06221,50.40879]}},{"type":"Feature","properties":{"name":"Open Skies One","operator":"prego. services GmbH"},"geometry":{"type":"Point","coordinates":[7.03962,49.22495]}},{"type":"Feature","properties":{"name":"Rechenzentrum","operator":"Hochschul-IT-Zentrum"},"geometry":{"type":"Point","coordinates":[7.04506,49.25724]}},{"type":"Feature","properties":{"name":"Rechenzentrum PFALZKOM, DCRN II","operator":"Pfalzkom GmbH"},"geometry":{"type":"Point","coordinates":[8.35001,49.42091]}},{"type":"Feature","properties":{"name":"Rechenzentrum PFALZKOM, DCRN I","operator":"Pfalzkom GmbH"},"geometry":{"type":"Point","coordinates":[8.35937,49.42638]}},{"type":"Feature","properties":{"name":"H\u00f6chstleistungsrechenzentrum der Universit\u00e4t Stuttgart","operator":""},"geometry":{"type":"Point","coordinates":[9.09724,48.73941]}},{"type":"Feature","properties":{"name":"Nepustil RZ4","operator":""},"geometry":{"type":"Point","coordinates":[9.17072,48.70884]}},{"type":"Feature","properties":{"name":"euNetworks ColoCentre Karlsruhe","operator":"euNetworks GmbH"},"geometry":{"type":"Point","coordinates":[8.43997,49.02041]}},{"type":"Feature","properties":{"name":"TelemaxX IPC2","operator":"TelemaxX Telekommunikation GmbH"},"geometry":{"type":"Point","coordinates":[8.4398,49.01958]}},{"type":"Feature","properties":{"name":"TelemaxX IPC3","operator":"TelemaxX Telekommunikation GmbH"},"geometry":{"type":"Point","coordinates":[8.47833,49.0201]}},{"type":"Feature","properties":{"name":"TelemaxX IPC4","operator":"TelemaxX Telekommunikation GmbH"},"geometry":{"type":"Point","coordinates":[8.47324,49.02713]}},{"type":"Feature","properties":{"name":"TelemaxX IPC5","operator":"TelemaxX Telekommunikation GmbH"},"geometry":{"type":"Point","coordinates":[8.45814,49.07775]}},{"type":"Feature","properties":{"name":"EVF-Datacenter","operator":"Energieversorgung Filstal"},"geometry":{"type":"Point","coordinates":[9.68681,48.71329]}},{"type":"Feature","properties":{"name":"Rechenzentrum Ellhofen","operator":"Stack IT"},"geometry":{"type":"Point","coordinates":[9.30795,49.14589]}},{"type":"Feature","properties":{"name":"SAP Building 13","operator":""},"geometry":{"type":"Point","coordinates":[8.64363,49.24043]}},{"type":"Feature","properties":{"name":"SAP Building 6 / 16","operator":""},"geometry":{"type":"Point","coordinates":[8.64316,49.24328]}},{"type":"Feature","properties":{"name":"SAP WDF51","operator":"SAP SE"},"geometry":{"type":"Point","coordinates":[8.63138,49.29328]}},{"type":"Feature","properties":{"name":"IRZ-HIP-Heidelberg","operator":"Data Center Group"},"geometry":{"type":"Point","coordinates":[8.67259,49.39393]}},{"type":"Feature","properties":{"name":"Wavehouse","operator":"Heidelberg iT Management GmbH & Co. KG"},"geometry":{"type":"Point","coordinates":[8.68138,49.38541]}},{"type":"Feature","properties":{"name":"NSA Rechenzentrum","operator":""},"geometry":{"type":"Point","coordinates":[8.5848,49.84401]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.62692,49.86431]}},{"type":"Feature","properties":{"name":"Destination Earth Data Bridge","operator":""},"geometry":{"type":"Point","coordinates":[8.62757,49.86419]}},{"type":"Feature","properties":{"name":"DARZ - Darmst\u00e4dter Rechenzentrum","operator":""},"geometry":{"type":"Point","coordinates":[8.64258,49.87683]}},{"type":"Feature","properties":{"name":"NIC","operator":"Deutsche Telekom AG"},"geometry":{"type":"Point","coordinates":[8.63114,49.88329]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[10.90369,48.35501]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.44998,49.97491]}},{"type":"Feature","properties":{"name":"JH-Computers GmbH","operator":"JH-Computers GmbH"},"geometry":{"type":"Point","coordinates":[10.30496,49.00631]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.45004,49.97547]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.45307,49.97541]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.58348,49.98436]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.5832,49.98532]}},{"type":"Feature","properties":{"name":"Vantage Data Center FRA31","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[8.45616,50.01647]}},{"type":"Feature","properties":{"name":"Vantage Data Center FRA21","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[8.46159,50.01315]}},{"type":"Feature","properties":{"name":"Vantage Data Center FRA22","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[8.46182,50.01223]}},{"type":"Feature","properties":{"name":"Digital Realty FRA33","operator":""},"geometry":{"type":"Point","coordinates":[8.45841,50.05497]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.48678,50.06435]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.48771,50.06505]}},{"type":"Feature","properties":{"name":"NTT Global Datacenters Frankfurt 4","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.48418,50.06189]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.48526,50.06271]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.48475,50.06171]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.48582,50.06207]}},{"type":"Feature","properties":{"name":"Digital Realty FRA33","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.48786,50.06256]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.48668,50.06235]}},{"type":"Feature","properties":{"name":"Equinix FR6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.58801,50.09681]}},{"type":"Feature","properties":{"name":"FKQ I Data Center","operator":"Winthrop Technologies Ltd."},"geometry":{"type":"Point","coordinates":[8.58409,50.09551]}},{"type":"Feature","properties":{"name":"Telehouse","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[8.62998,50.09616]}},{"type":"Feature","properties":{"name":"Telehouse","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[8.63083,50.09685]}},{"type":"Feature","properties":{"name":"Telehouse","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[8.62832,50.09567]}},{"type":"Feature","properties":{"name":"Telehouse","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[8.62937,50.09555]}},{"type":"Feature","properties":{"name":"Telehouse","operator":"Telehouse"},"geometry":{"type":"Point","coordinates":[8.62888,50.09587]}},{"type":"Feature","properties":{"name":"Equinix FR7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.64312,50.09738]}},{"type":"Feature","properties":{"name":"Equinix FR7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.64372,50.09739]}},{"type":"Feature","properties":{"name":"Equinix FR4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.5878,50.09804]}},{"type":"Feature","properties":{"name":"Equinix FR7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.6441,50.09753]}},{"type":"Feature","properties":{"name":"Equinix Germany GmbH","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.64337,50.09727]}},{"type":"Feature","properties":{"name":"Interwerk Rechenzentrum","operator":"Interwerk"},"geometry":{"type":"Point","coordinates":[8.74479,50.12266]}},{"type":"Feature","properties":{"name":"iNTERWERK Rechenzentrum","operator":""},"geometry":{"type":"Point","coordinates":[8.74512,50.12247]}},{"type":"Feature","properties":{"name":"Equinix FR2.6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.73904,50.14203]}},{"type":"Feature","properties":{"name":"Equinix FR9","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.73947,50.1415]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.60246,50.12848]}},{"type":"Feature","properties":{"name":"Global Switch Frankfurt","operator":"Global Switch"},"geometry":{"type":"Point","coordinates":[8.59789,50.13047]}},{"type":"Feature","properties":{"name":"Equinix FR8.1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.58565,50.09863]}},{"type":"Feature","properties":{"name":"Equinix FR8.2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.58593,50.09816]}},{"type":"Feature","properties":{"name":"CyrusOne FRA3","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[8.57709,50.12885]}},{"type":"Feature","properties":{"name":"Colt FRA3","operator":""},"geometry":{"type":"Point","coordinates":[8.58745,50.12448]}},{"type":"Feature","properties":{"name":"CyrusOne FRA1","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[8.58279,50.12811]}},{"type":"Feature","properties":{"name":"CyrusOne FRA2","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[8.58254,50.12764]}},{"type":"Feature","properties":{"name":"Digital Realty FRA30","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.58585,50.12701]}},{"type":"Feature","properties":{"name":"MK Netzdienste GmbH FRA2","operator":"MK Netzdienste GmbH"},"geometry":{"type":"Point","coordinates":[8.58181,50.12661]}},{"type":"Feature","properties":{"name":"Digital Realty FRA32","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.58426,50.12734]}},{"type":"Feature","properties":{"name":"Digital Realty FRA29","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.58472,50.12618]}},{"type":"Feature","properties":{"name":"Colt FRA74","operator":"Colt"},"geometry":{"type":"Point","coordinates":[8.58762,50.12549]}},{"type":"Feature","properties":{"name":"Informationstechnikzentrum Bund (ITZBund)","operator":""},"geometry":{"type":"Point","coordinates":[8.58566,50.12613]}},{"type":"Feature","properties":{"name":"Digital Realty FRA31","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.58503,50.12716]}},{"type":"Feature","properties":{"name":"CyrusOne FRA 4","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[8.57844,50.13262]}},{"type":"Feature","properties":{"name":"TE Connectivety","operator":"TE Connectivety"},"geometry":{"type":"Point","coordinates":[8.59807,50.12982]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.60099,50.13024]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.60013,50.1288]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.60124,50.12859]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.59791,50.12902]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.60068,50.12953]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.60488,50.12791]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[8.6032,50.1295]}},{"type":"Feature","properties":{"name":"NTT Global Data Centers","operator":"NTT Global Data Centers"},"geometry":{"type":"Point","coordinates":[8.60449,50.12904]}},{"type":"Feature","properties":{"name":"Maincubes FRA03A","operator":"Maincubes Three GmbH"},"geometry":{"type":"Point","coordinates":[8.53479,50.16049]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.55252,50.14441]}},{"type":"Feature","properties":{"name":"Kyndryl Data Center","operator":""},"geometry":{"type":"Point","coordinates":[8.5533,50.14422]}},{"type":"Feature","properties":{"name":"Maincubes FRA02","operator":"Maincubes"},"geometry":{"type":"Point","coordinates":[8.53153,50.16553]}},{"type":"Feature","properties":{"name":"Kyndryl Data Center","operator":"Kyndryl Deutschland GmbH"},"geometry":{"type":"Point","coordinates":[8.59223,50.19253]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.59169,50.19291]}},{"type":"Feature","properties":{"name":"NorthC Frankfurt 3","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[8.61984,50.10372]}},{"type":"Feature","properties":{"name":"servinga GmbH","operator":"servinga GmbH"},"geometry":{"type":"Point","coordinates":[8.61986,50.10444]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.63266,50.09913]}},{"type":"Feature","properties":{"name":"Equinix FR5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.6319,50.09892]}},{"type":"Feature","properties":{"name":"I.T.E.N.O.S. Frankfurt - C","operator":""},"geometry":{"type":"Point","coordinates":[8.63213,50.09938]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.63134,50.09932]}},{"type":"Feature","properties":{"name":"aixit GmbH","operator":""},"geometry":{"type":"Point","coordinates":[8.629,50.10053]}},{"type":"Feature","properties":{"name":"Verizon","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[8.62868,50.10085]}},{"type":"Feature","properties":{"name":"I.T.E.N.O.S. Frankfurt - B","operator":""},"geometry":{"type":"Point","coordinates":[8.63168,50.09963]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.63292,50.09876]}},{"type":"Feature","properties":{"name":"Digital Realty FRA6","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73531,50.1199]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.7365,50.11947]}},{"type":"Feature","properties":{"name":"Digital Realty FRA1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73554,50.1196]}},{"type":"Feature","properties":{"name":"Digital Realty FRA9","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73688,50.11962]}},{"type":"Feature","properties":{"name":"Digital Realty FRA7","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73474,50.11953]}},{"type":"Feature","properties":{"name":"Digital Realty FRA10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73825,50.11938]}},{"type":"Feature","properties":{"name":"Digital Realty FRA11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73915,50.11984]}},{"type":"Feature","properties":{"name":"NorthC N\u00fcrnberg 1","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[11.17663,49.38964]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.01413,49.44958]}},{"type":"Feature","properties":{"name":"Hetzner Online GmbH - NBG1","operator":"Hetzner Online GmbH"},"geometry":{"type":"Point","coordinates":[11.01444,49.44921]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.0139,49.4493]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.01437,49.44988]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.01461,49.45018]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.73843,50.13591]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.7372,50.11972]}},{"type":"Feature","properties":{"name":"Digital Realty FRA15","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73271,50.11857]}},{"type":"Feature","properties":{"name":"Vantage Data Center (FRA1)","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[8.74369,50.10898]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.74414,50.10984]}},{"type":"Feature","properties":{"name":"maincubes FRANKFURT-01","operator":"maincubes"},"geometry":{"type":"Point","coordinates":[8.74303,50.10966]}},{"type":"Feature","properties":{"name":"Digital Realty FRA14","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73688,50.11878]}},{"type":"Feature","properties":{"name":"Digital Realty FRA4","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73492,50.11902]}},{"type":"Feature","properties":{"name":"Digital Realty FRA3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73608,50.11929]}},{"type":"Feature","properties":{"name":"Digital Realty FRA8","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73762,50.11919]}},{"type":"Feature","properties":{"name":"Digital Realty FRA2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73594,50.12033]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.73657,50.12056]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.73959,50.12143]}},{"type":"Feature","properties":{"name":"Digital Realty FRA5","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73679,50.12033]}},{"type":"Feature","properties":{"name":"Digital Realty FRA13","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73952,50.11998]}},{"type":"Feature","properties":{"name":"Digital Realty FRA16","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73849,50.12032]}},{"type":"Feature","properties":{"name":"Rechenzentrum N\u00fcrnberg Zentrum","operator":"noris network"},"geometry":{"type":"Point","coordinates":[11.06387,49.45373]}},{"type":"Feature","properties":{"name":"Rechenzentrum N\u00fcrnberg S\u00fcd","operator":"noris network"},"geometry":{"type":"Point","coordinates":[11.13141,49.40995]}},{"type":"Feature","properties":{"name":"Digital Realty FRA12","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.73774,50.11994]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.73762,50.1199]}},{"type":"Feature","properties":{"name":"Iron Mountain FRA-1","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[8.74008,50.13378]}},{"type":"Feature","properties":{"name":"Equinix FR11","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.74048,50.13832]}},{"type":"Feature","properties":{"name":"Equinix FR13","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.73967,50.13912]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.74081,50.13761]}},{"type":"Feature","properties":{"name":"Digital Realty FRA17","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.75402,50.12511]}},{"type":"Feature","properties":{"name":"Digital Realty FRA18","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[8.75204,50.12449]}},{"type":"Feature","properties":{"name":"Equinix FR2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[8.73868,50.14296]}},{"type":"Feature","properties":{"name":"Iron Mountain FRA-2","operator":"Iron Mountain, Inc."},"geometry":{"type":"Point","coordinates":[8.63979,50.19525]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.80671,50.02291]}},{"type":"Feature","properties":{"name":"CloudHQ","operator":""},"geometry":{"type":"Point","coordinates":[8.80455,50.10809]}},{"type":"Feature","properties":{"name":"Artec","operator":"Artec"},"geometry":{"type":"Point","coordinates":[8.75329,50.35526]}},{"type":"Feature","properties":{"name":"FIS-ASP GmbH","operator":"FIS-ASP GmbH"},"geometry":{"type":"Point","coordinates":[10.20337,49.99657]}},{"type":"Feature","properties":{"name":"ekom21","operator":""},"geometry":{"type":"Point","coordinates":[8.6608,50.59922]}},{"type":"Feature","properties":{"name":"Datenstelle der Rentenversicherung","operator":"Deutsche Rentenversicherung Bund"},"geometry":{"type":"Point","coordinates":[9.95619,49.746]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.85819,53.43724]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.62496,52.03074]}},{"type":"Feature","properties":{"name":"QTS Eemshaven Netherlands Data Center","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[6.85865,53.43708]}},{"type":"Feature","properties":{"name":"Nieuwbouw datacenter QTS","operator":"Quality Technology Services"},"geometry":{"type":"Point","coordinates":[6.85282,53.43946]}},{"type":"Feature","properties":{"name":"rockenstein AG","operator":""},"geometry":{"type":"Point","coordinates":[9.9083,49.83362]}},{"type":"Feature","properties":{"name":"CXD Infrastructure Solutions","operator":"DXC UKI"},"geometry":{"type":"Point","coordinates":[0.54736,51.27878]}},{"type":"Feature","properties":{"name":"The Bunker - South East Data Centre","operator":"Cyberfort"},"geometry":{"type":"Point","coordinates":[1.29642,51.27113]}},{"type":"Feature","properties":{"name":"Six Degrees Data Centre","operator":"Six Degrees"},"geometry":{"type":"Point","coordinates":[0.03001,51.49356]}},{"type":"Feature","properties":{"name":"Six Degrees Data Centre","operator":"Six Degrees"},"geometry":{"type":"Point","coordinates":[0.03098,51.49375]}},{"type":"Feature","properties":{"name":"OVH","operator":"OVH"},"geometry":{"type":"Point","coordinates":[0.16664,51.49154]}},{"type":"Feature","properties":{"name":"Fujitsu Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[0.2698,51.48101]}},{"type":"Feature","properties":{"name":"NTT London 1","operator":"NTT"},"geometry":{"type":"Point","coordinates":[0.17544,51.54753]}},{"type":"Feature","properties":{"name":"Tata Stratford","operator":"Tata Communications"},"geometry":{"type":"Point","coordinates":[0.00245,51.54245]}},{"type":"Feature","properties":{"name":"IP House London Datacentre","operator":"IP House"},"geometry":{"type":"Point","coordinates":[0.00189,51.51538]}},{"type":"Feature","properties":{"name":"Virtual Internet UK","operator":""},"geometry":{"type":"Point","coordinates":[0.0233,51.51661]}},{"type":"Feature","properties":{"name":"Imperium 315","operator":"NYSE Euronext"},"geometry":{"type":"Point","coordinates":[0.48477,51.58624]}},{"type":"Feature","properties":{"name":"CityFibre Cabinets","operator":"CityFibre"},"geometry":{"type":"Point","coordinates":[0.64478,51.57019]}},{"type":"Feature","properties":{"name":"OVHcloud Gravelines","operator":""},"geometry":{"type":"Point","coordinates":[2.15617,51.01715]}},{"type":"Feature","properties":{"name":"OVHcloud Gravelines","operator":""},"geometry":{"type":"Point","coordinates":[2.15501,51.01689]}},{"type":"Feature","properties":{"name":"Kao Data KLON-01","operator":"Kao Data"},"geometry":{"type":"Point","coordinates":[0.12917,51.76921]}},{"type":"Feature","properties":{"name":"Kao Data KLON-02","operator":"Kao Data"},"geometry":{"type":"Point","coordinates":[0.12933,51.76995]}},{"type":"Feature","properties":{"name":"West Cambridge Data Centre","operator":"University of Cambridge"},"geometry":{"type":"Point","coordinates":[0.07923,52.20889]}},{"type":"Feature","properties":{"name":"Redcentric Cambridge","operator":"Redcentric"},"geometry":{"type":"Point","coordinates":[0.15086,52.23013]}},{"type":"Feature","properties":{"name":"COLT","operator":""},"geometry":{"type":"Point","coordinates":[4.5044,50.87194]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.50237,50.87355]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.50303,50.87366]}},{"type":"Feature","properties":{"name":"BRU3 Datacenter","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.50231,50.87352]}},{"type":"Feature","properties":{"name":"BRU4 Datacenter","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.50321,50.87361]}},{"type":"Feature","properties":{"name":"Unix-Solutions BV","operator":"Unix-Solutions BV"},"geometry":{"type":"Point","coordinates":[4.49934,50.87536]}},{"type":"Feature","properties":{"name":"DC Machelen","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[4.42295,50.91151]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.30467,51.0682]}},{"type":"Feature","properties":{"name":"Datacenter Base-Telenet","operator":"Telenet Group NV"},"geometry":{"type":"Point","coordinates":[4.37845,51.1437]}},{"type":"Feature","properties":{"name":"DC Mechelen","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[4.48043,51.01696]}},{"type":"Feature","properties":{"name":"Alphacloud Datacenter","operator":"Infrabel NV"},"geometry":{"type":"Point","coordinates":[4.49678,51.01823]}},{"type":"Feature","properties":{"name":"Telenet servergebouw","operator":"Telenet Group NV"},"geometry":{"type":"Point","coordinates":[4.48536,51.03608]}},{"type":"Feature","properties":{"name":"Positive Park","operator":"Positive Internet"},"geometry":{"type":"Point","coordinates":[0.05647,52.58371]}},{"type":"Feature","properties":{"name":"US Air Force","operator":"US Air Force"},"geometry":{"type":"Point","coordinates":[0.5502,52.39884]}},{"type":"Feature","properties":{"name":"NorthC Datacenter Delft","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[4.37824,51.98765]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.4489,51.8754]}},{"type":"Feature","properties":{"name":"NorthC Datacenter Rotterdam Waalhaven","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[4.4491,51.87522]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.44897,51.87518]}},{"type":"Feature","properties":{"name":"databyte","operator":""},"geometry":{"type":"Point","coordinates":[4.41383,51.93039]}},{"type":"Feature","properties":{"name":"Smart DC","operator":""},"geometry":{"type":"Point","coordinates":[4.43162,51.92331]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.54679,51.91037]}},{"type":"Feature","properties":{"name":"Databarn Rivium","operator":"Databarn Rivium B.V."},"geometry":{"type":"Point","coordinates":[4.54671,51.91023]}},{"type":"Feature","properties":{"name":"NorthC Rotterdam Zestienhoven 1&2","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[4.44782,51.953]}},{"type":"Feature","properties":{"name":"Dataplace Rotterdam","operator":"Dataplace"},"geometry":{"type":"Point","coordinates":[4.67925,51.84584]}},{"type":"Feature","properties":{"name":"NorthC Datacenter Eindhoven 2","operator":""},"geometry":{"type":"Point","coordinates":[5.40635,51.47595]}},{"type":"Feature","properties":{"name":"NorthC Datacenter Eindhoven","operator":""},"geometry":{"type":"Point","coordinates":[5.45877,51.40785]}},{"type":"Feature","properties":{"name":"NorthC Nieuwegein","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[5.10478,52.01835]}},{"type":"Feature","properties":{"name":"BIT-2 Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[5.62426,52.02735]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.70348,52.38285]}},{"type":"Feature","properties":{"name":"Overheidsdatacenter Rijswijk","operator":"SSC-ICT"},"geometry":{"type":"Point","coordinates":[4.33536,52.03828]}},{"type":"Feature","properties":{"name":"Digital Realty (AMS15)","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.67745,52.29015]}},{"type":"Feature","properties":{"name":"Digital Realty (AMS16)","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.67862,52.29077]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.74346,52.28433]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.7418,52.28305]}},{"type":"Feature","properties":{"name":"NTT Amsterdam 1 Data Center","operator":"NTT Data"},"geometry":{"type":"Point","coordinates":[4.74434,52.28408]}},{"type":"Feature","properties":{"name":"EdgeConneX AMS06","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[4.742,52.28334]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.74271,52.27667]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.74076,52.27577]}},{"type":"Feature","properties":{"name":"Digital Realty AMS10","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.74144,52.275]}},{"type":"Feature","properties":{"name":"Digital Realty AMS8","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.74331,52.27616]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.76567,52.2839]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.76773,52.28271]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.7677,52.28103]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.76787,52.28478]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.77365,52.25983]}},{"type":"Feature","properties":{"name":"NorthC Datacenter Aalsmeer","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[4.77336,52.2598]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.75425,52.28023]}},{"type":"Feature","properties":{"name":"Digital Realty AMS5","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.75428,52.28007]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.7666,52.28332]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.76524,52.28136]}},{"type":"Feature","properties":{"name":"Digital Realty AMS7","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.76531,52.28145]}},{"type":"Feature","properties":{"name":"EdgeConneX AMS04","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[4.76778,52.28159]}},{"type":"Feature","properties":{"name":"EdgeConnex","operator":"EdgeConnex"},"geometry":{"type":"Point","coordinates":[4.76705,52.28309]}},{"type":"Feature","properties":{"name":"EdgeConneX AMS02","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[4.76763,52.28279]}},{"type":"Feature","properties":{"name":"EdgeConneX AMS03","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[4.76686,52.28368]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.76552,52.28542]}},{"type":"Feature","properties":{"name":"Digital Realty AMS11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.76512,52.28449]}},{"type":"Feature","properties":{"name":"EdgeConneX AMS01","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[4.76611,52.28406]}},{"type":"Feature","properties":{"name":"EdgeConneX AMS05","operator":"EdgeConneX"},"geometry":{"type":"Point","coordinates":[4.76723,52.28432]}},{"type":"Feature","properties":{"name":"Digital Realty AMS6","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.76598,52.28532]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.77293,52.28218]}},{"type":"Feature","properties":{"name":"LeaseWeb AMS-02","operator":"LeaseWeb"},"geometry":{"type":"Point","coordinates":[4.77286,52.28213]}},{"type":"Feature","properties":{"name":"Maincubes AMS01","operator":""},"geometry":{"type":"Point","coordinates":[4.77312,52.28232]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.77031,52.28457]}},{"type":"Feature","properties":{"name":"Digital Realty AMS3","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.77091,52.28415]}},{"type":"Feature","properties":{"name":"Gebouw 59","operator":""},"geometry":{"type":"Point","coordinates":[4.78696,52.29291]}},{"type":"Feature","properties":{"name":"NorthC Datacenter Oude Meer","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[4.78734,52.29287]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.82973,52.34434]}},{"type":"Feature","properties":{"name":"Global Switch Amsterdam","operator":"Global Switch"},"geometry":{"type":"Point","coordinates":[4.82887,52.34401]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.91938,52.33347]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.88687,52.33647]}},{"type":"Feature","properties":{"name":"Digital Realty","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.91886,52.33373]}},{"type":"Feature","properties":{"name":"KPN Haarlem","operator":""},"geometry":{"type":"Point","coordinates":[4.66941,52.38794]}},{"type":"Feature","properties":{"name":"Iron Mountain AMS1","operator":"Iron Mountain"},"geometry":{"type":"Point","coordinates":[4.66457,52.3916]}},{"type":"Feature","properties":{"name":"LeaseWeb AMS-01","operator":"LeaseWeb"},"geometry":{"type":"Point","coordinates":[4.66474,52.39172]}},{"type":"Feature","properties":{"name":"CyrusOne Amsterdam I","operator":"CyrusOne"},"geometry":{"type":"Point","coordinates":[4.7034,52.38304]}},{"type":"Feature","properties":{"name":"Cogent Halfweg","operator":""},"geometry":{"type":"Point","coordinates":[4.71688,52.38457]}},{"type":"Feature","properties":{"name":"NorthC Datacenters Amsterdam","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[4.84943,52.39341]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.83874,52.39666]}},{"type":"Feature","properties":{"name":"Equinix Amsterdam AM8","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.83907,52.3968]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.83904,52.397]}},{"type":"Feature","properties":{"name":"Equinix AM8","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.83884,52.39711]}},{"type":"Feature","properties":{"name":"Interxion AMS1 - AMS4","operator":"Interxion"},"geometry":{"type":"Point","coordinates":[4.84241,52.39981]}},{"type":"Feature","properties":{"name":"Gyro Center","operator":"Gyro Center"},"geometry":{"type":"Point","coordinates":[4.84307,52.40068]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.85108,52.39638]}},{"type":"Feature","properties":{"name":"Databarn Amsterdam","operator":"Databarn Amsterdam B.V."},"geometry":{"type":"Point","coordinates":[4.85115,52.39642]}},{"type":"Feature","properties":{"name":"KPN Telefoon Centrale","operator":"KPN"},"geometry":{"type":"Point","coordinates":[4.7428,52.63197]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.02127,52.08322]}},{"type":"Feature","properties":{"name":"Dataplace","operator":"Dataplace"},"geometry":{"type":"Point","coordinates":[5.14385,52.12327]}},{"type":"Feature","properties":{"name":"Equinix Amsterdam AM5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.94474,52.29347]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.94239,52.30058]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.95526,52.30029]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.94302,52.29992]}},{"type":"Feature","properties":{"name":"Equinix AM1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.94259,52.29978]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.93934,52.30379]}},{"type":"Feature","properties":{"name":"Verizon","operator":"Verizon"},"geometry":{"type":"Point","coordinates":[4.93533,52.30465]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.93806,52.30311]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.93871,52.3028]}},{"type":"Feature","properties":{"name":"Equinix AM7","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.93794,52.30306]}},{"type":"Feature","properties":{"name":"Verizon 2","operator":""},"geometry":{"type":"Point","coordinates":[4.93549,52.30498]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.93919,52.30236]}},{"type":"Feature","properties":{"name":"Equinix AM2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.94198,52.30063]}},{"type":"Feature","properties":{"name":"Equinix AM11","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.93931,52.30403]}},{"type":"Feature","properties":{"name":"Datacenter.com AMS1","operator":""},"geometry":{"type":"Point","coordinates":[4.93601,52.30952]}},{"type":"Feature","properties":{"name":"NorthC AMS-02","operator":"NorthC Nederland"},"geometry":{"type":"Point","coordinates":[4.9487,52.29631]}},{"type":"Feature","properties":{"name":"KPN Amsterdam","operator":"KPN"},"geometry":{"type":"Point","coordinates":[4.95496,52.30029]}},{"type":"Feature","properties":{"name":"Colt Amsterdam Van der Madeweg","operator":""},"geometry":{"type":"Point","coordinates":[4.92595,52.32814]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.93168,52.33655]}},{"type":"Feature","properties":{"name":"Digital Realty (AMS18)","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.93153,52.33659]}},{"type":"Feature","properties":{"name":"Equinix AM6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.93317,52.3372]}},{"type":"Feature","properties":{"name":"Switch Datacenters AMS4","operator":"Switch Datacenters"},"geometry":{"type":"Point","coordinates":[4.97354,52.33162]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.9507,52.35716]}},{"type":"Feature","properties":{"name":"NIKHEF Amsterdam","operator":"NIKHEF"},"geometry":{"type":"Point","coordinates":[4.95068,52.35626]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.95031,52.35722]}},{"type":"Feature","properties":{"name":"Digital Realty AMS17","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.95079,52.35711]}},{"type":"Feature","properties":{"name":"Digital Realty AMS9","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.95273,52.35611]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96145,52.35478]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96115,52.35427]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96141,52.35435]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96188,52.35453]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96059,52.35464]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96075,52.35449]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96127,52.35491]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[4.96071,52.35464]}},{"type":"Feature","properties":{"name":"Equinix AM3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96039,52.35461]}},{"type":"Feature","properties":{"name":"Winterton Cable Landing Station","operator":"Vodafone"},"geometry":{"type":"Point","coordinates":[1.69177,52.71821]}},{"type":"Feature","properties":{"name":"Equinix AM4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96109,52.35427]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[4.96083,52.35471]}},{"type":"Feature","properties":{"name":"Datacenter Almere","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[5.26845,52.36429]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.2681,52.36481]}},{"type":"Feature","properties":{"name":"Microsoft Datacenter","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03122,52.77696]}},{"type":"Feature","properties":{"name":"Microsoft Datacenter","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.02775,52.78073]}},{"type":"Feature","properties":{"name":"AMS07","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03686,52.76153]}},{"type":"Feature","properties":{"name":"AMS07","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03538,52.76153]}},{"type":"Feature","properties":{"name":"AMS08","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03833,52.76187]}},{"type":"Feature","properties":{"name":"AMS09","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03969,52.76185]}},{"type":"Feature","properties":{"name":"Microsoft Datacenter West Europe","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03854,52.76489]}},{"type":"Feature","properties":{"name":"TDF","operator":""},"geometry":{"type":"Point","coordinates":[3.04012,50.64855]}},{"type":"Feature","properties":{"name":"TDF ProxiCenter Lille Lambersart","operator":""},"geometry":{"type":"Point","coordinates":[3.03991,50.6486]}},{"type":"Feature","properties":{"name":"Centre de donn\u00e9es","operator":""},"geometry":{"type":"Point","coordinates":[3.01618,50.68002]}},{"type":"Feature","properties":{"name":"SM4","operator":"Euro Information"},"geometry":{"type":"Point","coordinates":[3.01701,50.67772]}},{"type":"Feature","properties":{"name":"SM3","operator":"Euro Information"},"geometry":{"type":"Point","coordinates":[3.01682,50.67835]}},{"type":"Feature","properties":{"name":"Lille Boitelle","operator":"Orange"},"geometry":{"type":"Point","coordinates":[3.07785,50.6273]}},{"type":"Feature","properties":{"name":"Cogent Lille","operator":"Cogent"},"geometry":{"type":"Point","coordinates":[3.09032,50.63766]}},{"type":"Feature","properties":{"name":"Ate","operator":"Ate"},"geometry":{"type":"Point","coordinates":[3.14563,50.63993]}},{"type":"Feature","properties":{"name":"Lille Etix #1","operator":""},"geometry":{"type":"Point","coordinates":[3.15787,50.69902]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX2","operator":""},"geometry":{"type":"Point","coordinates":[3.20155,50.69155]}},{"type":"Feature","properties":{"name":"AMS11","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03763,52.76748]}},{"type":"Feature","properties":{"name":"AMS05","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03815,52.76628]}},{"type":"Feature","properties":{"name":"AMS06","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03744,52.76454]}},{"type":"Feature","properties":{"name":"AMS06","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03745,52.76364]}},{"type":"Feature","properties":{"name":"AMS12","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[5.03556,52.76631]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.02907,52.79187]}},{"type":"Feature","properties":{"name":"Google Datacenter Middenmeer","operator":"Google"},"geometry":{"type":"Point","coordinates":[5.02944,52.79101]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.0385,50.77794]}},{"type":"Feature","properties":{"name":"Euregiocenter","operator":""},"geometry":{"type":"Point","coordinates":[6.05677,50.79016]}},{"type":"Feature","properties":{"name":"EURaix","operator":"regioIT;synaix"},"geometry":{"type":"Point","coordinates":[6.1314,50.77724]}},{"type":"Feature","properties":{"name":"hex/AC","operator":""},"geometry":{"type":"Point","coordinates":[6.13499,50.78355]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX1","operator":""},"geometry":{"type":"Point","coordinates":[3.20002,50.69285]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX6","operator":""},"geometry":{"type":"Point","coordinates":[3.1997,50.69185]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX7","operator":""},"geometry":{"type":"Point","coordinates":[3.19792,50.69181]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX5","operator":""},"geometry":{"type":"Point","coordinates":[3.19923,50.69251]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX3","operator":""},"geometry":{"type":"Point","coordinates":[3.19914,50.69292]}},{"type":"Feature","properties":{"name":"OVHcloud Roubaix - RBX4","operator":""},"geometry":{"type":"Point","coordinates":[3.20076,50.69115]}},{"type":"Feature","properties":{"name":"DC Moeskroen","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[3.22869,50.75219]}},{"type":"Feature","properties":{"name":"Datacenter Oostkamp","operator":"Data Center United"},"geometry":{"type":"Point","coordinates":[3.2361,51.16657]}},{"type":"Feature","properties":{"name":"LCL Datacenter (DataCloud)","operator":""},"geometry":{"type":"Point","coordinates":[4.03765,50.91335]}},{"type":"Feature","properties":{"name":"Datacenter Gent","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[3.68351,51.02709]}},{"type":"Feature","properties":{"name":"Interoute","operator":""},"geometry":{"type":"Point","coordinates":[3.76789,50.98699]}},{"type":"Feature","properties":{"name":"S10","operator":""},"geometry":{"type":"Point","coordinates":[3.71209,51.02368]}},{"type":"Feature","properties":{"name":"DELTA Fiber","operator":""},"geometry":{"type":"Point","coordinates":[3.88432,51.49314]}},{"type":"Feature","properties":{"name":"DELTA Fiber","operator":""},"geometry":{"type":"Point","coordinates":[3.88612,51.49197]}},{"type":"Feature","properties":{"name":"Data Beheer Groep","operator":"Data Beheer Groep"},"geometry":{"type":"Point","coordinates":[3.90714,51.50216]}},{"type":"Feature","properties":{"name":"WorldStream","operator":""},"geometry":{"type":"Point","coordinates":[4.21081,52.00122]}},{"type":"Feature","properties":{"name":"FoxNetwork","operator":"Louis Beke"},"geometry":{"type":"Point","coordinates":[4.25041,50.7068]}},{"type":"Feature","properties":{"name":"Nexus Datacenter","operator":"VUB;UZ Brussel"},"geometry":{"type":"Point","coordinates":[4.28885,50.88194]}},{"type":"Feature","properties":{"name":"O","operator":""},"geometry":{"type":"Point","coordinates":[4.38348,50.8148]}},{"type":"Feature","properties":{"name":"DC Evere","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[4.39396,50.8798]}},{"type":"Feature","properties":{"name":"Colt Evere","operator":"Colt Technology Services nv"},"geometry":{"type":"Point","coordinates":[4.4118,50.85767]}},{"type":"Feature","properties":{"name":"Brussels DC","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[4.45411,50.88142]}},{"type":"Feature","properties":{"name":"Colt Telecom","operator":""},"geometry":{"type":"Point","coordinates":[4.45004,50.88462]}},{"type":"Feature","properties":{"name":"LCL Belgium","operator":""},"geometry":{"type":"Point","coordinates":[4.45549,50.88741]}},{"type":"Feature","properties":{"name":"Digital Realty Brussels BRU1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[4.47614,50.87073]}},{"type":"Feature","properties":{"name":"Datacenter Burcht","operator":"Datacenter United / DCstar nv"},"geometry":{"type":"Point","coordinates":[4.34693,51.21118]}},{"type":"Feature","properties":{"name":"DC Flanders","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[4.39939,51.26408]}},{"type":"Feature","properties":{"name":"LCL Antwerp","operator":"LCL Belgium nv"},"geometry":{"type":"Point","coordinates":[4.40309,51.26422]}},{"type":"Feature","properties":{"name":"DC Antwerp","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[4.41447,51.26315]}},{"type":"Feature","properties":{"name":"DC Hasselt 1","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[5.30478,50.93178]}},{"type":"Feature","properties":{"name":"DC Hasselt 2","operator":"Datacenter United"},"geometry":{"type":"Point","coordinates":[5.36349,50.93814]}},{"type":"Feature","properties":{"name":"Dataplace Steenbergen","operator":""},"geometry":{"type":"Point","coordinates":[4.3049,51.58744]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[5.98946,51.19124]}},{"type":"Feature","properties":{"name":"NetCologne","operator":"NetCologne"},"geometry":{"type":"Point","coordinates":[6.90118,51.01565]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.3848,50.91484]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.38546,50.91435]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.38472,50.91471]}},{"type":"Feature","properties":{"name":"Equinix DU1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[6.80689,51.2198]}},{"type":"Feature","properties":{"name":"Wiit AG DUS","operator":"Wiit AG"},"geometry":{"type":"Point","coordinates":[6.81726,51.2668]}},{"type":"Feature","properties":{"name":"Digital Reality DUS2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[6.86672,51.18776]}},{"type":"Feature","properties":{"name":"NorthC D\u00fcsseldorf 1","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[6.86754,51.18794]}},{"type":"Feature","properties":{"name":"Digital Realty DUS1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[6.86786,51.18809]}},{"type":"Feature","properties":{"name":"Datacenter One GmbH","operator":"AtlasEdge"},"geometry":{"type":"Point","coordinates":[6.93868,51.19126]}},{"type":"Feature","properties":{"name":"Datacenter Gemert","operator":""},"geometry":{"type":"Point","coordinates":[5.70413,51.52634]}},{"type":"Feature","properties":{"name":"Dataplace datacenter Arnhem","operator":"Eurofiber Cloud Infra"},"geometry":{"type":"Point","coordinates":[5.93404,51.987]}},{"type":"Feature","properties":{"name":"Datacenter One","operator":"Datacenter One NRW GmbH"},"geometry":{"type":"Point","coordinates":[7.02015,51.05859]}},{"type":"Feature","properties":{"name":"RZ5 Dortmund-Huckarde","operator":"DOKOM Gesellschaft f\u00fcr Telekommunikation mbH"},"geometry":{"type":"Point","coordinates":[7.41818,51.53503]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.48818,51.5204]}},{"type":"Feature","properties":{"name":"Fiducia & GAD IT AG","operator":"Fiducia & GAD IT AG"},"geometry":{"type":"Point","coordinates":[7.53856,52.00491]}},{"type":"Feature","properties":{"name":"GAD-Rechenzentrum 2","operator":"Atruvia AG"},"geometry":{"type":"Point","coordinates":[7.59663,51.89339]}},{"type":"Feature","properties":{"name":"Servergeb\u00e4ude","operator":"Universit\u00e4t M\u00fcnster"},"geometry":{"type":"Point","coordinates":[7.60383,51.96621]}},{"type":"Feature","properties":{"name":"Rechenzentrum Citeq","operator":"Stadt M\u00fcnster"},"geometry":{"type":"Point","coordinates":[7.61029,51.97469]}},{"type":"Feature","properties":{"name":"Stadtwerke L\u00fcdenscheid GmbH (ENERVIE-Gruppe)","operator":"ENERVIE \u2013 S\u00fcdwestfalen Energie und Wasser AG"},"geometry":{"type":"Point","coordinates":[7.63505,51.22674]}},{"type":"Feature","properties":{"name":"Cellnex","operator":""},"geometry":{"type":"Point","coordinates":[5.89655,52.16809]}},{"type":"Feature","properties":{"name":"Serverius DC3","operator":"Serverius B.V."},"geometry":{"type":"Point","coordinates":[6.00106,52.24724]}},{"type":"Feature","properties":{"name":"Solcon Droten","operator":""},"geometry":{"type":"Point","coordinates":[5.70228,52.5392]}},{"type":"Feature","properties":{"name":"Serverius DC1","operator":""},"geometry":{"type":"Point","coordinates":[5.70507,52.54372]}},{"type":"Feature","properties":{"name":"Equinix Zwolle ZW1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[6.14255,52.4885]}},{"type":"Feature","properties":{"name":"Serverius DC2","operator":"Serverius B.V."},"geometry":{"type":"Point","coordinates":[6.20016,52.7178]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[6.8495,52.23706]}},{"type":"Feature","properties":{"name":"NorthC Data center Groningen","operator":""},"geometry":{"type":"Point","coordinates":[6.47402,53.20739]}},{"type":"Feature","properties":{"name":"QTS Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[6.52742,53.24585]}},{"type":"Feature","properties":{"name":"Plus Ultra Groningen","operator":""},"geometry":{"type":"Point","coordinates":[6.52911,53.24522]}},{"type":"Feature","properties":{"name":"d'ROOT","operator":"Bytesnet"},"geometry":{"type":"Point","coordinates":[6.52714,53.24462]}},{"type":"Feature","properties":{"name":"Google Datacenter Eemshaven","operator":"Google"},"geometry":{"type":"Point","coordinates":[6.86262,53.42503]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.86551,53.42555]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.86739,53.42455]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.86324,53.42543]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.86196,53.42504]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.86482,53.42404]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[6.86284,53.4231]}},{"type":"Feature","properties":{"name":"DMO","operator":""},"geometry":{"type":"Point","coordinates":[7.70012,52.13137]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[7.27831,51.45048]}},{"type":"Feature","properties":{"name":"Geb\u00e4ude 94/95","operator":"Universit\u00e4t Osnabr\u00fcck"},"geometry":{"type":"Point","coordinates":[8.02207,52.28555]}},{"type":"Feature","properties":{"name":"EWE NETZ GmbH","operator":"EWE Netz GmbH"},"geometry":{"type":"Point","coordinates":[8.20971,53.11192]}},{"type":"Feature","properties":{"name":"Telekom Vermittlungsstelle","operator":"Deutsche Telekom"},"geometry":{"type":"Point","coordinates":[9.6197,52.01592]}},{"type":"Feature","properties":{"name":"PoP-Hauptverteiler","operator":"htp GmbH"},"geometry":{"type":"Point","coordinates":[9.62023,52.01866]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.18133,53.14701]}},{"type":"Feature","properties":{"name":"EWE TEL GmbH","operator":"EWE TEL GmbH"},"geometry":{"type":"Point","coordinates":[8.24714,53.13708]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.24335,53.21844]}},{"type":"Feature","properties":{"name":"Mittwald CM Service GmbH & Co. KG","operator":"Mittwald CM Service GmbH & Co. KG"},"geometry":{"type":"Point","coordinates":[8.62362,52.38555]}},{"type":"Feature","properties":{"name":"General Logistics Systems Germany GmbH & Co. OHG","operator":"GLS IT Services GmbH"},"geometry":{"type":"Point","coordinates":[9.58545,50.90859]}},{"type":"Feature","properties":{"name":"PoP-Hauptverteiler","operator":""},"geometry":{"type":"Point","coordinates":[9.56375,52.07689]}},{"type":"Feature","properties":{"name":"PoP Hauptverteiler","operator":""},"geometry":{"type":"Point","coordinates":[9.59055,52.06115]}},{"type":"Feature","properties":{"name":"PoP-Hauptverteiler","operator":"htp GmbH"},"geometry":{"type":"Point","coordinates":[9.53329,52.12162]}},{"type":"Feature","properties":{"name":"VegaSystems NCPB","operator":"VegaSystems"},"geometry":{"type":"Point","coordinates":[8.73605,51.68106]}},{"type":"Feature","properties":{"name":"VegaSystems GmbH & Co. KG","operator":""},"geometry":{"type":"Point","coordinates":[8.73646,51.68103]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.73627,51.68102]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.44743,51.8839]}},{"type":"Feature","properties":{"name":"net.DE AG","operator":""},"geometry":{"type":"Point","coordinates":[9.7277,52.40874]}},{"type":"Feature","properties":{"name":"Rechenzentrum Th\u00fcringer Netkom","operator":""},"geometry":{"type":"Point","coordinates":[10.94852,50.68492]}},{"type":"Feature","properties":{"name":"ColocationIX","operator":""},"geometry":{"type":"Point","coordinates":[8.79056,53.09389]}},{"type":"Feature","properties":{"name":"GWDG - Au\u00dfenstelle","operator":""},"geometry":{"type":"Point","coordinates":[9.94399,51.54794]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.95747,51.56098]}},{"type":"Feature","properties":{"name":"GRASS-MERKUR GmbH & Co. KG","operator":"GRASS-MERKUR GmbH & Co. KG"},"geometry":{"type":"Point","coordinates":[9.8636,52.36842]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[10.43172,51.92982]}},{"type":"Feature","properties":{"name":"PDV Systeme GmbH","operator":"PDV Systeme GmbH"},"geometry":{"type":"Point","coordinates":[10.43175,51.92986]}},{"type":"Feature","properties":{"name":"Gau\u00df-IT-Zentrum","operator":"TU Braunschweig"},"geometry":{"type":"Point","coordinates":[10.54173,52.2765]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[8.15754,53.53704]}},{"type":"Feature","properties":{"name":"NorthC Hamburg 1","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[10.04346,53.5478]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[10.03834,53.55081]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[10.04825,53.54977]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[9.97503,53.64451]}},{"type":"Feature","properties":{"name":"Rechenzentrum Akquinet","operator":""},"geometry":{"type":"Point","coordinates":[9.99373,53.70003]}},{"type":"Feature","properties":{"name":"Conova Communications","operator":""},"geometry":{"type":"Point","coordinates":[13.08271,47.70622]}},{"type":"Feature","properties":{"name":"Podatkovni centar HR-ZOO RI","operator":"Sveu\u010dili\u0161ni ra\u010dunski centar"},"geometry":{"type":"Point","coordinates":[14.46679,45.32876]}},{"type":"Feature","properties":{"name":"Satelitsko i multimedijsko sredi\u0161te Deanovec","operator":"Oda\u0161ilja\u010di i veze d.o.o."},"geometry":{"type":"Point","coordinates":[16.47475,45.70015]}},{"type":"Feature","properties":{"name":"A1 data centar","operator":"A1 Hrvatska d.o.o."},"geometry":{"type":"Point","coordinates":[15.98157,45.76472]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[15.88751,45.81797]}},{"type":"Feature","properties":{"name":"Podatkovni centar Hrvatskog telekoma","operator":""},"geometry":{"type":"Point","coordinates":[15.94288,45.79722]}},{"type":"Feature","properties":{"name":"Podatkovni centar HR-ZOO ZG1","operator":"Sveu\u010dili\u0161ni ra\u010dunski centar"},"geometry":{"type":"Point","coordinates":[15.96965,45.79228]}},{"type":"Feature","properties":{"name":"Hrvatski Telekom","operator":"Hrvatski Telekom"},"geometry":{"type":"Point","coordinates":[15.98284,45.81116]}},{"type":"Feature","properties":{"name":"Podatkovni centar HR-ZOO ZG2","operator":"Sveu\u010dili\u0161ni ra\u010dunski centar"},"geometry":{"type":"Point","coordinates":[16.04265,45.81512]}},{"type":"Feature","properties":{"name":"Data Link","operator":""},"geometry":{"type":"Point","coordinates":[16.84614,45.90339]}},{"type":"Feature","properties":{"name":"Rechenzentrum AtlasEdge HAM002","operator":"AtlasEdge"},"geometry":{"type":"Point","coordinates":[10.27127,53.67865]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[14.92942,46.55866]}},{"type":"Feature","properties":{"name":"T-Mobile Rechenzentrum Graz","operator":"T-Mobile / Magenta"},"geometry":{"type":"Point","coordinates":[15.42488,47.04054]}},{"type":"Feature","properties":{"name":"Telekom-Tower","operator":"A1 / Telekom Austria"},"geometry":{"type":"Point","coordinates":[15.43044,47.0663]}},{"type":"Feature","properties":{"name":"earthDATAsafe","operator":"Kapsch BusinessCom AG"},"geometry":{"type":"Point","coordinates":[15.33817,47.44914]}},{"type":"Feature","properties":{"name":"Gradbi\u0161\u010de ARNES","operator":"ARNES"},"geometry":{"type":"Point","coordinates":[15.60676,46.56548]}},{"type":"Feature","properties":{"name":"Bundesnachrichtendienst Pullach Rechenzentrum","operator":"Bundesnachrichtendienst"},"geometry":{"type":"Point","coordinates":[11.53329,48.06393]}},{"type":"Feature","properties":{"name":"Siemens EAGLE Data Center","operator":"Siemens"},"geometry":{"type":"Point","coordinates":[11.53026,48.09491]}},{"type":"Feature","properties":{"name":"Equinix MU1","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[11.55586,48.14271]}},{"type":"Feature","properties":{"name":"Telekom Data-Center","operator":""},"geometry":{"type":"Point","coordinates":[11.59817,48.15153]}},{"type":"Feature","properties":{"name":"ennit GmbH","operator":"TNG Group"},"geometry":{"type":"Point","coordinates":[10.10761,54.36635]}},{"type":"Feature","properties":{"name":"Ribe Hostingcenter","operator":"Ribe Mediehus"},"geometry":{"type":"Point","coordinates":[8.77398,55.34538]}},{"type":"Feature","properties":{"name":"stoltenhoff.net","operator":""},"geometry":{"type":"Point","coordinates":[9.44329,54.98684]}},{"type":"Feature","properties":{"name":"Google Data Center Fredericia","operator":"Google"},"geometry":{"type":"Point","coordinates":[9.65255,55.55671]}},{"type":"Feature","properties":{"name":"NorthC M\u00fcnchen 1","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[11.60218,48.11915]}},{"type":"Feature","properties":{"name":"NorthC M\u00fcnchen 2","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[11.66265,48.13579]}},{"type":"Feature","properties":{"name":"noris Munich MUC5","operator":"noris"},"geometry":{"type":"Point","coordinates":[11.73754,48.16152]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[9.65571,55.558]}},{"type":"Feature","properties":{"name":"Meta Odense Data center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[10.48483,55.36666]}},{"type":"Feature","properties":{"name":"Meta Odense Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[10.4806,55.36911]}},{"type":"Feature","properties":{"name":"Set","operator":""},"geometry":{"type":"Point","coordinates":[11.57494,45.64236]}},{"type":"Feature","properties":{"name":"INGATE GmbH Rechenzentrum M\u00fcnchen","operator":""},"geometry":{"type":"Point","coordinates":[11.59252,48.19556]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.65833,48.20847]}},{"type":"Feature","properties":{"name":"Arctur","operator":""},"geometry":{"type":"Point","coordinates":[13.66371,45.95678]}},{"type":"Feature","properties":{"name":"Rechenzentrum Garching","operator":"Max-Planck Computing & Data Facility"},"geometry":{"type":"Point","coordinates":[11.67307,48.26273]}},{"type":"Feature","properties":{"name":"LRZ SuperMUC-NG","operator":"Leibniz-Rechenzentrum (LRZ) der Bayerischen Akademie der Wissenschaften"},"geometry":{"type":"Point","coordinates":[11.66655,48.26174]}},{"type":"Feature","properties":{"name":"synaforce GmbH","operator":""},"geometry":{"type":"Point","coordinates":[13.11972,48.67177]}},{"type":"Feature","properties":{"name":"WKNJ00","operator":"Deutsche Telekom"},"geometry":{"type":"Point","coordinates":[13.60333,48.73416]}},{"type":"Feature","properties":{"name":"CSA Computer Service Agentur GmbH","operator":""},"geometry":{"type":"Point","coordinates":[11.43583,49.38552]}},{"type":"Feature","properties":{"name":"CA31","operator":"Audi AG"},"geometry":{"type":"Point","coordinates":[11.47965,48.75349]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.30469,50.02919]}},{"type":"Feature","properties":{"name":"R-KOM Datacenter Ostbayern 3","operator":"R-KOM GmbH"},"geometry":{"type":"Point","coordinates":[12.08739,49.03729]}},{"type":"Feature","properties":{"name":"R-KOM Datacenter Ostbayern 1","operator":"R-KOM Regensburger Telekommunikationsgesellschaft mbH & Co. KG"},"geometry":{"type":"Point","coordinates":[12.1482,49.01338]}},{"type":"Feature","properties":{"name":"R-KOM Datacenter Ostbayern 2","operator":"R-KOM Regensburger Telekommunikationsgesellschaft mbH & Co. KG"},"geometry":{"type":"Point","coordinates":[12.14738,49.01346]}},{"type":"Feature","properties":{"name":"Rechenzentrum Ostermiething","operator":"Stack IT"},"geometry":{"type":"Point","coordinates":[12.83713,48.0323]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33717,50.47861]}},{"type":"Feature","properties":{"name":"Hetzner\u00a0\u2013 Rechenzentrumspark Falkenstein","operator":"Hetzner Online GmbH"},"geometry":{"type":"Point","coordinates":[12.33437,50.47764]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33783,50.47863]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33413,50.47724]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33377,50.47702]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33337,50.47681]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33575,50.47812]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33649,50.4786]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33535,50.4779]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33615,50.47834]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33496,50.47768]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33453,50.47744]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33644,50.47914]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.33224,50.47834]}},{"type":"Feature","properties":{"name":"Dr\u00e1vanet Zrt.","operator":"Dr\u00e1vanet Zrt."},"geometry":{"type":"Point","coordinates":[18.21046,46.07505]}},{"type":"Feature","properties":{"name":"Yettel P\u00e9cs MSc","operator":""},"geometry":{"type":"Point","coordinates":[18.20266,46.10894]}},{"type":"Feature","properties":{"name":"Podatkovni centar HR-ZOO OS","operator":"Sveu\u010dili\u0161ni ra\u010dunski centar"},"geometry":{"type":"Point","coordinates":[18.70518,45.55651]}},{"type":"Feature","properties":{"name":"Magyar Telekom","operator":"Magyar Telekom"},"geometry":{"type":"Point","coordinates":[17.63687,47.68631]}},{"type":"Feature","properties":{"name":"KBC Adatk\u00f6zpont","operator":"KBC GHB"},"geometry":{"type":"Point","coordinates":[18.74038,47.27667]}},{"type":"Feature","properties":{"name":"KBC Adatk\u00f6zpont","operator":""},"geometry":{"type":"Point","coordinates":[18.88299,47.44294]}},{"type":"Feature","properties":{"name":"Yettel T\u00f6r\u00f6kb\u00e1lint MSC","operator":"Yettel Zrt."},"geometry":{"type":"Point","coordinates":[18.93651,47.43048]}},{"type":"Feature","properties":{"name":"Magyar Telekom","operator":"Magyar Telekom"},"geometry":{"type":"Point","coordinates":[18.97277,47.44209]}},{"type":"Feature","properties":{"name":"Yettel Budafok MSC","operator":""},"geometry":{"type":"Point","coordinates":[19.05259,47.45839]}},{"type":"Feature","properties":{"name":"Hauszmann adatk\u00f6zpont","operator":""},"geometry":{"type":"Point","coordinates":[19.04605,47.46664]}},{"type":"Feature","properties":{"name":"ATW","operator":"ATW"},"geometry":{"type":"Point","coordinates":[19.0551,47.518]}},{"type":"Feature","properties":{"name":"BIX","operator":"ISZT - BUDAPEST INTERNET EXCHANGE"},"geometry":{"type":"Point","coordinates":[19.05525,47.51794]}},{"type":"Feature","properties":{"name":"ATW","operator":"ATW"},"geometry":{"type":"Point","coordinates":[19.0584,47.51776]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[19.4777,50.15856]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[20.83916,48.09856]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[22.39189,48.42203]}},{"type":"Feature","properties":{"name":"Telekom","operator":"Slovak Telekom, a.s."},"geometry":{"type":"Point","coordinates":[21.2602,48.69823]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[21.22822,48.74078]}},{"type":"Feature","properties":{"name":"IT- und Data Center Linz","operator":"LINZ NETZ GmbH"},"geometry":{"type":"Point","coordinates":[14.30832,48.28215]}},{"type":"Feature","properties":{"name":"RAITEC","operator":""},"geometry":{"type":"Point","coordinates":[14.30724,48.29847]}},{"type":"Feature","properties":{"name":"IT- und Data Center Urfahr","operator":"LINZ STROM GAS W\u00c4RME GmbH"},"geometry":{"type":"Point","coordinates":[14.30004,48.32419]}},{"type":"Feature","properties":{"name":"IT- und Data Center Linz","operator":""},"geometry":{"type":"Point","coordinates":[14.3,48.3242]}},{"type":"Feature","properties":{"name":"Centrum v\u00fdpo\u010dtovej techniky FHPV PU","operator":""},"geometry":{"type":"Point","coordinates":[21.23563,48.98853]}},{"type":"Feature","properties":{"name":"Polcom Data Center Skawina","operator":"Polcom"},"geometry":{"type":"Point","coordinates":[19.83782,49.98785]}},{"type":"Feature","properties":{"name":"T\u2011Mobile Polska\u202fcentrum danych","operator":""},"geometry":{"type":"Point","coordinates":[20.02441,50.03938]}},{"type":"Feature","properties":{"name":"DISKUS Polska","operator":""},"geometry":{"type":"Point","coordinates":[20.04799,49.98254]}},{"type":"Feature","properties":{"name":"Universit\u00e4tsrechenzentrum","operator":"Friedrich-Schiller-Universit\u00e4t Jena"},"geometry":{"type":"Point","coordinates":[11.58198,50.93209]}},{"type":"Feature","properties":{"name":"forpsi DC CZ1","operator":"forpsi"},"geometry":{"type":"Point","coordinates":[14.13201,48.91661]}},{"type":"Feature","properties":{"name":"WEDOS DC 1 Masarykova","operator":""},"geometry":{"type":"Point","coordinates":[14.43468,49.05242]}},{"type":"Feature","properties":{"name":"WEDOS DC2 Podskal\u00ed","operator":"Wedos"},"geometry":{"type":"Point","coordinates":[14.44339,49.05335]}},{"type":"Feature","properties":{"name":"Telia Carrier Austria GmbH","operator":"Telia Carrier Austria GmbH"},"geometry":{"type":"Point","coordinates":[15.61448,48.18789]}},{"type":"Feature","properties":{"name":"C","operator":""},"geometry":{"type":"Point","coordinates":[16.34151,48.15845]}},{"type":"Feature","properties":{"name":"A","operator":""},"geometry":{"type":"Point","coordinates":[16.34162,48.15992]}},{"type":"Feature","properties":{"name":"B","operator":""},"geometry":{"type":"Point","coordinates":[16.34218,48.15932]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[16.46168,48.14052]}},{"type":"Feature","properties":{"name":"Digital Realty VIE1 & VIE2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[16.40988,48.26871]}},{"type":"Feature","properties":{"name":"DC Brno - FASTER CZ","operator":"O2 Czech Republic a.s."},"geometry":{"type":"Point","coordinates":[16.65952,49.21629]}},{"type":"Feature","properties":{"name":"DC Stod\u016flky","operator":"O2 Czech Republic a.s."},"geometry":{"type":"Point","coordinates":[14.33073,50.04962]}},{"type":"Feature","properties":{"name":"DC6.cz","operator":""},"geometry":{"type":"Point","coordinates":[14.34373,50.10161]}},{"type":"Feature","properties":{"name":"DC Tower","operator":"\u010cesk\u00e9 Radiokomunikace, a.s."},"geometry":{"type":"Point","coordinates":[14.45182,50.08093]}},{"type":"Feature","properties":{"name":"MasterDC Praha","operator":""},"geometry":{"type":"Point","coordinates":[14.46389,50.06963]}},{"type":"Feature","properties":{"name":"CE Colo","operator":"CE Colo Czech s.r.o."},"geometry":{"type":"Point","coordinates":[14.48299,50.06013]}},{"type":"Feature","properties":{"name":"Datov\u00e9 centrum Coolhousing","operator":"Coolhousing s.r.o."},"geometry":{"type":"Point","coordinates":[14.47371,50.07786]}},{"type":"Feature","properties":{"name":"T-Mobile","operator":""},"geometry":{"type":"Point","coordinates":[14.47481,50.07796]}},{"type":"Feature","properties":{"name":"DC Chodov","operator":"O2 Czech Republic a.s."},"geometry":{"type":"Point","coordinates":[14.50345,50.02523]}},{"type":"Feature","properties":{"name":"Datov\u00e9 centrum DC7","operator":"T-Mobile"},"geometry":{"type":"Point","coordinates":[14.52818,50.06474]}},{"type":"Feature","properties":{"name":"VSHosting s.r.o","operator":""},"geometry":{"type":"Point","coordinates":[14.53026,50.06014]}},{"type":"Feature","properties":{"name":"TTC TELEPORT - DC2","operator":""},"geometry":{"type":"Point","coordinates":[14.52145,50.08039]}},{"type":"Feature","properties":{"name":"TTC TELEPORT - DC1","operator":""},"geometry":{"type":"Point","coordinates":[14.53357,50.08198]}},{"type":"Feature","properties":{"name":"TTC DC1","operator":""},"geometry":{"type":"Point","coordinates":[14.53334,50.082]}},{"type":"Feature","properties":{"name":"SafeDX s.r.o.","operator":""},"geometry":{"type":"Point","coordinates":[14.4952,50.09884]}},{"type":"Feature","properties":{"name":"T-Systems Biere Rechenzentrum","operator":"Deutsche Telekom"},"geometry":{"type":"Point","coordinates":[11.65374,51.98463]}},{"type":"Feature","properties":{"name":"DC Vega","operator":""},"geometry":{"type":"Point","coordinates":[14.48572,50.12563]}},{"type":"Feature","properties":{"name":"Datov\u00e9 centrum Kokura","operator":""},"geometry":{"type":"Point","coordinates":[14.59289,50.11709]}},{"type":"Feature","properties":{"name":"Datov\u00e9 centrum Zelene\u010d","operator":""},"geometry":{"type":"Point","coordinates":[14.65669,50.13799]}},{"type":"Feature","properties":{"name":"Datov\u00e9 centrum Nagoja","operator":"Seznam.cz"},"geometry":{"type":"Point","coordinates":[14.85394,50.26811]}},{"type":"Feature","properties":{"name":"Magyar Telekom Cloud & DataCenter","operator":"Telekom Rendszerintegr\u00e1ci\u00f3 Zrt."},"geometry":{"type":"Point","coordinates":[19.10346,47.49346]}},{"type":"Feature","properties":{"name":"Bel\u00fcgyminiszt\u00e9rium Nyilv\u00e1ntart\u00e1sok Vezet\u00e9s\u00e9\u00e9rt Felel\u0151s Helyettes \u00c1llamtitk\u00e1rs\u00e1g","operator":"Bel\u00fcgyminiszt\u00e9rium"},"geometry":{"type":"Point","coordinates":[19.08002,47.47825]}},{"type":"Feature","properties":{"name":"Servergarden","operator":""},"geometry":{"type":"Point","coordinates":[19.11784,47.49663]}},{"type":"Feature","properties":{"name":"Invitech DC14","operator":"Invitech Megold\u00e1sok Zrt."},"geometry":{"type":"Point","coordinates":[19.09801,47.5088]}},{"type":"Feature","properties":{"name":"Dr\u00e1vanet Zrt.","operator":"Dr\u00e1vanet Zrt."},"geometry":{"type":"Point","coordinates":[19.07413,47.55359]}},{"type":"Feature","properties":{"name":"Invitech DC10","operator":"Invitech Megold\u00e1sok Zrt."},"geometry":{"type":"Point","coordinates":[19.18119,47.48574]}},{"type":"Feature","properties":{"name":"MVM NET Adatk\u00f6zpont Kft.","operator":"MVM NET Adatk\u00f6zpont Kft."},"geometry":{"type":"Point","coordinates":[19.16251,47.69001]}},{"type":"Feature","properties":{"name":"Magyar Telekom","operator":"Magyar Telekom"},"geometry":{"type":"Point","coordinates":[20.1452,46.27145]}},{"type":"Feature","properties":{"name":"SWAN Datacentrum","operator":"SWAN"},"geometry":{"type":"Point","coordinates":[17.09369,48.12126]}},{"type":"Feature","properties":{"name":"DC Monaco","operator":"O2 Czech Republic a.s."},"geometry":{"type":"Point","coordinates":[17.48417,49.07831]}},{"type":"Feature","properties":{"name":"Internet \u00e9s KTV Fej\u00e1llom\u00e1s","operator":"DIGI T\u00e1vk\u00f6zl\u00e9si \u00e9s Szolg\u00e1ltat\u00f3 Kft."},"geometry":{"type":"Point","coordinates":[19.29408,48.07443]}},{"type":"Feature","properties":{"name":"PLAY Centrum Danych DC 2","operator":"3S Data Center S.A."},"geometry":{"type":"Point","coordinates":[19.06397,50.24572]}},{"type":"Feature","properties":{"name":"PLAY Centrum Danych DC1","operator":"3S Data Center S.A."},"geometry":{"type":"Point","coordinates":[19.06317,50.24548]}},{"type":"Feature","properties":{"name":"Polcom Data Center Alwernia","operator":"Polcom"},"geometry":{"type":"Point","coordinates":[19.5561,50.09689]}},{"type":"Feature","properties":{"name":"BER11","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[13.29445,52.32195]}},{"type":"Feature","properties":{"name":"BER12","operator":""},"geometry":{"type":"Point","coordinates":[13.29279,52.323]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[13.29632,52.32335]}},{"type":"Feature","properties":{"name":"NTT Global Data Centers EMEA GmbH","operator":"NTT Global Data Centers EMEA GmbH"},"geometry":{"type":"Point","coordinates":[13.23723,52.53724]}},{"type":"Feature","properties":{"name":"Vantage Berlin II (BER2)","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[13.57354,52.26382]}},{"type":"Feature","properties":{"name":"Vantage Berlin II (BER2)","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[13.57432,52.26284]}},{"type":"Feature","properties":{"name":"CarrierColo Berlin K","operator":"IPB"},"geometry":{"type":"Point","coordinates":[13.37384,52.43262]}},{"type":"Feature","properties":{"name":"NTT Global Data Centers EMEA GmbH","operator":"NTT Global Data Centers EMEA GmbH"},"geometry":{"type":"Point","coordinates":[13.37424,52.43847]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[13.36204,52.4492]}},{"type":"Feature","properties":{"name":"NorthC Berlin 2","operator":"NorthC"},"geometry":{"type":"Point","coordinates":[13.42841,52.45292]}},{"type":"Feature","properties":{"name":"IPB Internet Provider in Berlin GmbH","operator":""},"geometry":{"type":"Point","coordinates":[13.3693,52.50203]}},{"type":"Feature","properties":{"name":"T-Systems Magdeburg","operator":"T-Systems"},"geometry":{"type":"Point","coordinates":[11.63712,52.14879]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.63736,52.14889]}},{"type":"Feature","properties":{"name":"RZ","operator":""},"geometry":{"type":"Point","coordinates":[11.63642,52.14876]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.63788,52.14893]}},{"type":"Feature","properties":{"name":"CPH01","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[12.09962,55.58089]}},{"type":"Feature","properties":{"name":"CPH07","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[12.2591,55.64342]}},{"type":"Feature","properties":{"name":"GlobalConnect","operator":"GlobalConnect"},"geometry":{"type":"Point","coordinates":[12.30025,55.66216]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.36776,55.66793]}},{"type":"Feature","properties":{"name":"Adeo Datacenter ApS","operator":""},"geometry":{"type":"Point","coordinates":[12.36779,55.66773]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.42034,55.69317]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.62202,55.66812]}},{"type":"Feature","properties":{"name":"Korbank","operator":""},"geometry":{"type":"Point","coordinates":[16.98354,51.10645]}},{"type":"Feature","properties":{"name":"itQ Data Center","operator":""},"geometry":{"type":"Point","coordinates":[17.02934,51.07229]}},{"type":"Feature","properties":{"name":"Miejska Sie\u0107 Komputerowa CzestMAN","operator":""},"geometry":{"type":"Point","coordinates":[19.1111,50.82199]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[19.50712,51.78956]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[16.95376,52.40722]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[20.60014,52.11125]}},{"type":"Feature","properties":{"name":"NTT DATA Business Solutions Global Managed Services","operator":"NTT"},"geometry":{"type":"Point","coordinates":[14.34625,51.19401]}},{"type":"Feature","properties":{"name":"Centrum Przetwarzania Danych T\u2011Mobile Polska","operator":"T\u2011Mobile Polska"},"geometry":{"type":"Point","coordinates":[21.00586,52.07875]}},{"type":"Feature","properties":{"name":"Warsaw Data Hub","operator":"Orange Polska S.A."},"geometry":{"type":"Point","coordinates":[20.87708,52.07434]}},{"type":"Feature","properties":{"name":"ATMAN","operator":"ATMAN"},"geometry":{"type":"Point","coordinates":[20.80667,52.20364]}},{"type":"Feature","properties":{"name":"Modu\u0142owe Data Center","operator":"Exatel S.A."},"geometry":{"type":"Point","coordinates":[21.02524,52.11212]}},{"type":"Feature","properties":{"name":"Equinix WA3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[20.92265,52.19035]}},{"type":"Feature","properties":{"name":"Polkomtel","operator":"Polkomtel"},"geometry":{"type":"Point","coordinates":[21.01567,52.11948]}},{"type":"Feature","properties":{"name":"OVHcloud O\u017car\u00f3w (WAW-1)","operator":"OVH Sp. z o.o."},"geometry":{"type":"Point","coordinates":[20.80817,52.20793]}},{"type":"Feature","properties":{"name":"Vantage Warsaw WAW1","operator":"Vantage Data Centers"},"geometry":{"type":"Point","coordinates":[20.9216,52.29319]}},{"type":"Feature","properties":{"name":"DC 11.11","operator":"NASK S.A."},"geometry":{"type":"Point","coordinates":[21.03687,52.26579]}},{"type":"Feature","properties":{"name":"Centrum Technologii ICM UW","operator":""},"geometry":{"type":"Point","coordinates":[21.01666,52.32067]}},{"type":"Feature","properties":{"name":"T-Mobile Warszawa-Szlachecka","operator":""},"geometry":{"type":"Point","coordinates":[21.02176,52.31531]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[21.02173,52.31553]}},{"type":"Feature","properties":{"name":"Atman Data Center Warsaw-1","operator":""},"geometry":{"type":"Point","coordinates":[21.11662,52.23644]}},{"type":"Feature","properties":{"name":"Maan Group","operator":"Privat"},"geometry":{"type":"Point","coordinates":[5.59835,58.86011]}},{"type":"Feature","properties":{"name":"Apple","operator":"Apple"},"geometry":{"type":"Point","coordinates":[9.57397,56.48314]}},{"type":"Feature","properties":{"name":"Prime Data Centers - Saeby Campus AAL01","operator":"Prime Data Centers"},"geometry":{"type":"Point","coordinates":[10.50071,57.31867]}},{"type":"Feature","properties":{"name":"STACK Infrastructure OSL04","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[11.00494,59.63239]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.0046,59.63274]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.00308,59.63276]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[11.0061,59.63288]}},{"type":"Feature","properties":{"name":"Green Mountain Ytre Enebakk","operator":""},"geometry":{"type":"Point","coordinates":[10.9927,59.75906]}},{"type":"Feature","properties":{"name":"Green Mountain Ytre Enebakk","operator":""},"geometry":{"type":"Point","coordinates":[10.99355,59.75739]}},{"type":"Feature","properties":{"name":"Stack Infrastructure OSLO1A","operator":"Stack Infrastructure"},"geometry":{"type":"Point","coordinates":[10.80921,59.92488]}},{"type":"Feature","properties":{"name":"Bulk Data Centers Oslo Internet Exchange","operator":""},"geometry":{"type":"Point","coordinates":[10.83549,59.9387]}},{"type":"Feature","properties":{"name":"VisBook AS","operator":""},"geometry":{"type":"Point","coordinates":[9.68936,62.5944]}},{"type":"Feature","properties":{"name":"Bunkerberget","operator":"Bahnhof"},"geometry":{"type":"Point","coordinates":[12.0168,57.73101]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[14.09996,57.33791]}},{"type":"Feature","properties":{"name":"IP-Only","operator":"IP-Only"},"geometry":{"type":"Point","coordinates":[15.5546,58.39793]}},{"type":"Feature","properties":{"name":"AWS eu-north-1 Availability Zone K","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[16.23474,58.99642]}},{"type":"Feature","properties":{"name":"Green Mountain","operator":"Green Mountain"},"geometry":{"type":"Point","coordinates":[11.26485,60.84256]}},{"type":"Feature","properties":{"name":"Green Mountain","operator":"Green Mountain"},"geometry":{"type":"Point","coordinates":[11.26658,60.84251]}},{"type":"Feature","properties":{"name":"Green Mountain","operator":"Green Mountain"},"geometry":{"type":"Point","coordinates":[11.26824,60.84247]}},{"type":"Feature","properties":{"name":"AWS eu-north-1 Availability Zone E","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[16.69137,59.35842]}},{"type":"Feature","properties":{"name":"AWS eu-north-1 Availability Zone V","operator":"Amazon Web Services"},"geometry":{"type":"Point","coordinates":[16.58023,59.64955]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[15.60949,60.61138]}},{"type":"Feature","properties":{"name":"EcoDataCenter","operator":""},"geometry":{"type":"Point","coordinates":[15.60999,60.61059]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[15.60964,60.60994]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[15.60985,60.61203]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[16.73715,60.6355]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[16.73373,60.63582]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[16.73961,60.63645]}},{"type":"Feature","properties":{"name":"Equinix Stockholm SK2","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[18.10525,59.26353]}},{"type":"Feature","properties":{"name":"Bahnhof Pionen","operator":""},"geometry":{"type":"Point","coordinates":[18.08547,59.31235]}},{"type":"Feature","properties":{"name":"Bahnhof","operator":"Bahnhof"},"geometry":{"type":"Point","coordinates":[17.95292,59.40988]}},{"type":"Feature","properties":{"name":"Digital Realty Stockholm STO1-STO5","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[17.91632,59.42241]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[17.13703,60.62856]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[17.00984,60.60067]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[17.01581,60.60169]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[17.01104,60.60175]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[17.13503,60.62902]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[22.25736,60.43655]}},{"type":"Feature","properties":{"name":"Ficolo The Rock","operator":"Ficolo"},"geometry":{"type":"Point","coordinates":[21.89144,61.50013]}},{"type":"Feature","properties":{"name":"Signal","operator":""},"geometry":{"type":"Point","coordinates":[12.27704,65.97656]}},{"type":"Feature","properties":{"name":"Metas datacenter i Lule\u00e5","operator":"Meta"},"geometry":{"type":"Point","coordinates":[22.11606,65.61643]}},{"type":"Feature","properties":{"name":"Metas datacenter i Lule\u00e5","operator":"Meta"},"geometry":{"type":"Point","coordinates":[22.11281,65.62052]}},{"type":"Feature","properties":{"name":"Metas datacenter i Lule\u00e5","operator":"Meta"},"geometry":{"type":"Point","coordinates":[22.1126,65.62281]}},{"type":"Feature","properties":{"name":"Orange HDC Astra","operator":"Orange Rom\u00e2nia"},"geometry":{"type":"Point","coordinates":[25.61971,45.64899]}},{"type":"Feature","properties":{"name":"RCAST Hosting","operator":""},"geometry":{"type":"Point","coordinates":[28.0443,45.4266]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.7599,46.95737]}},{"type":"Feature","properties":{"name":"Apple Inc.","operator":"Apple Inc."},"geometry":{"type":"Point","coordinates":[23.38346,49.94207]}},{"type":"Feature","properties":{"name":"Tucha","operator":"Tucha"},"geometry":{"type":"Point","coordinates":[25.60714,49.55202]}},{"type":"Feature","properties":{"name":"Planet IC","operator":""},"geometry":{"type":"Point","coordinates":[11.41845,53.59835]}},{"type":"Feature","properties":{"name":"IPHOST Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[28.8834,47.00794]}},{"type":"Feature","properties":{"name":"Trabia-Network","operator":""},"geometry":{"type":"Point","coordinates":[28.83732,47.02313]}},{"type":"Feature","properties":{"name":"Trident server hosting","operator":"lostyawolfer"},"geometry":{"type":"Point","coordinates":[30.4923,50.44996]}},{"type":"Feature","properties":{"name":"\u041f\u0430\u0440\u043a\u043e\u0432\u0438\u0439","operator":""},"geometry":{"type":"Point","coordinates":[30.54124,50.44931]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[23.88212,53.68345]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430-\u0446\u044d\u043d\u0442\u0440 \u04101","operator":"\u0422\u0410\u0410 \u00ab\u04101 I\u041a\u0422 \u0441\u044d\u0440\u0432i\u0441\u044b\u00bb"},"geometry":{"type":"Point","coordinates":[27.73638,53.91659]}},{"type":"Feature","properties":{"name":"\u0420\u0426\u0410\u0414 beCloud","operator":"\u0422\u0410\u0410 \u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0456\u044f \u0432\u043e\u0431\u043b\u0430\u0447\u043d\u044b\u044f \u0442\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u0456"},"geometry":{"type":"Point","coordinates":[27.78427,53.96209]}},{"type":"Feature","properties":{"name":"\u0411\u0443\u0434\u0456\u0432\u043b\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u0443\u043d\u0456\u043a\u0430\u0446\u0456\u0439\u043d\u043e\u0433\u043e \u0446\u0435\u043d\u0442\u0440\u0443","operator":""},"geometry":{"type":"Point","coordinates":[30.0647,51.30369]}},{"type":"Feature","properties":{"name":"DVZ Datenverarbeitungszentrum Mecklenburg-Vorpommern GmbH","operator":""},"geometry":{"type":"Point","coordinates":[11.38062,53.64676]}},{"type":"Feature","properties":{"name":"ITSMZ","operator":""},"geometry":{"type":"Point","coordinates":[11.4467,53.88834]}},{"type":"Feature","properties":{"name":"AirNet","operator":"\u0422\u041e\u0412 \"\u0410\u0406\u0420\u041d\u0415\u0422\""},"geometry":{"type":"Point","coordinates":[35.13751,49.45477]}},{"type":"Feature","properties":{"name":"DataHarbour","operator":"\u041e\u041e\u041e \"\u0414\u0430\u0442\u0430\u041f\u043e\u0440\u0442\""},"geometry":{"type":"Point","coordinates":[39.28829,51.71775]}},{"type":"Feature","properties":{"name":"Data Harbour","operator":"\u041e\u041e\u041e \u00ab\u0414\u0430\u0442\u0430\u041f\u043e\u0440\u0442\u00bb"},"geometry":{"type":"Point","coordinates":[39.29223,51.71638]}},{"type":"Feature","properties":{"name":"\u042f\u043d\u0434\u0435\u043a\u0441 \u0414\u0426 \u041a\u0430\u043b\u0443\u0433\u0430","operator":"Yandex"},"geometry":{"type":"Point","coordinates":[36.34867,54.57669]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[36.34994,54.57535]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[36.34873,54.57554]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[36.35106,54.57738]}},{"type":"Feature","properties":{"name":"GreenBushDC","operator":"MTS"},"geometry":{"type":"Point","coordinates":[37.15671,56.00372]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.15716,56.00359]}},{"type":"Feature","properties":{"name":"CloudDC","operator":"\u041e\u041e\u041e \u0418\u041a \"\u0421\u0438\u0431\u0438\u043d\u0442\u0435\u043a\""},"geometry":{"type":"Point","coordinates":[37.149,56.00955]}},{"type":"Feature","properties":{"name":"IT- und Medienzentrum","operator":"Universit\u00e4t Rostock"},"geometry":{"type":"Point","coordinates":[12.10664,54.07739]}},{"type":"Feature","properties":{"name":"Hansestadt Rostock","operator":"Hansestadt Rostock"},"geometry":{"type":"Point","coordinates":[12.13907,54.08211]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[12.1371,54.08479]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.14912,56.00973]}},{"type":"Feature","properties":{"name":"DataPro V","operator":"DataPro"},"geometry":{"type":"Point","coordinates":[37.43428,55.69501]}},{"type":"Feature","properties":{"name":"DataPro III","operator":"DataPro"},"geometry":{"type":"Point","coordinates":[37.43129,55.69393]}},{"type":"Feature","properties":{"name":"DataPro VI","operator":"DataPro"},"geometry":{"type":"Point","coordinates":[37.42889,55.69377]}},{"type":"Feature","properties":{"name":"DataPro IV","operator":"DataPro"},"geometry":{"type":"Point","coordinates":[37.43331,55.69421]}},{"type":"Feature","properties":{"name":"Web Data Center","operator":"\u0410\u041e \u00ab\u0414\u0430\u0442\u0430\u0446\u0435\u043d\u0442\u0440\u00bb"},"geometry":{"type":"Point","coordinates":[37.40627,55.89438]}},{"type":"Feature","properties":{"name":"DataPro Moscow II","operator":"DataPro"},"geometry":{"type":"Point","coordinates":[37.4337,55.87933]}},{"type":"Feature","properties":{"name":"Selectel Berzarina","operator":"Selectel"},"geometry":{"type":"Point","coordinates":[37.46709,55.79107]}},{"type":"Feature","properties":{"name":"Datahouse","operator":""},"geometry":{"type":"Point","coordinates":[37.52438,55.76973]}},{"type":"Feature","properties":{"name":"linxdatacenter Moscow","operator":""},"geometry":{"type":"Point","coordinates":[37.55078,55.80563]}},{"type":"Feature","properties":{"name":"MSK-IX","operator":""},"geometry":{"type":"Point","coordinates":[37.55462,55.80081]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.51467,55.88541]}},{"type":"Feature","properties":{"name":"NORD-1","operator":""},"geometry":{"type":"Point","coordinates":[37.51348,55.88593]}},{"type":"Feature","properties":{"name":"NORD-2","operator":""},"geometry":{"type":"Point","coordinates":[37.51388,55.88599]}},{"type":"Feature","properties":{"name":"NORD-4","operator":"DataLine"},"geometry":{"type":"Point","coordinates":[37.51338,55.88668]}},{"type":"Feature","properties":{"name":"NORD-5","operator":""},"geometry":{"type":"Point","coordinates":[37.5137,55.88537]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.51004,55.88599]}},{"type":"Feature","properties":{"name":"NORD-6","operator":""},"geometry":{"type":"Point","coordinates":[37.51074,55.88609]}},{"type":"Feature","properties":{"name":"NORD-3","operator":""},"geometry":{"type":"Point","coordinates":[37.51221,55.88624]}},{"type":"Feature","properties":{"name":"IXcellerate North MOS 1","operator":"IXcellerate"},"geometry":{"type":"Point","coordinates":[37.57729,55.86261]}},{"type":"Feature","properties":{"name":"IXcellerate North MOS 2","operator":"IXcellerate"},"geometry":{"type":"Point","coordinates":[37.57957,55.86283]}},{"type":"Feature","properties":{"name":"IXcellerate North MOS 4","operator":"IXcellerate"},"geometry":{"type":"Point","coordinates":[37.57712,55.86327]}},{"type":"Feature","properties":{"name":"IXcellerate North MOS 3","operator":"IXcellerate"},"geometry":{"type":"Point","coordinates":[37.57813,55.86334]}},{"type":"Feature","properties":{"name":"IXcellerate South MOS5","operator":"IXcellerate"},"geometry":{"type":"Point","coordinates":[37.64423,55.60309]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.64217,55.60377]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.64138,55.60363]}},{"type":"Feature","properties":{"name":"M1 StackTelecom Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[37.61993,55.62678]}},{"type":"Feature","properties":{"name":"\u0426\u0435\u043d\u0442\u0440 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \"\u0410\u0432\u0430\u043d\u0442\u0430\u0436\"","operator":"MTS Group"},"geometry":{"type":"Point","coordinates":[37.95754,55.56774]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430\u041f\u0440\u043e","operator":"DataPro"},"geometry":{"type":"Point","coordinates":[37.72075,55.73607]}},{"type":"Feature","properties":{"name":"\u0426\u041e\u0414 \"\u041a\u043e\u043c\u043f\u0440\u0435\u0441\u0441\u043e\u0440\"","operator":""},"geometry":{"type":"Point","coordinates":[37.73142,55.74909]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430\u043b\u0430\u0439\u043d","operator":""},"geometry":{"type":"Point","coordinates":[37.71577,55.77044]}},{"type":"Feature","properties":{"name":"\u0426\u041e\u0414 \"\u0413\u043e\u0437\u043d\u0430\u043a\"","operator":""},"geometry":{"type":"Point","coordinates":[37.63626,55.81404]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[37.77987,55.93105]}},{"type":"Feature","properties":{"name":"\u0411\u0435\u0440\u0437\u0430\u0440\u0438\u043d\u0430","operator":"Selectel"},"geometry":{"type":"Point","coordinates":[37.77987,55.93108]}},{"type":"Feature","properties":{"name":"Boreus Rechenzentrum GmbH","operator":""},"geometry":{"type":"Point","coordinates":[13.06911,54.33685]}},{"type":"Feature","properties":{"name":"DigiPlex","operator":"DigiPlex"},"geometry":{"type":"Point","coordinates":[12.62211,55.66812]}},{"type":"Feature","properties":{"name":"Digital Realty Copenhagen CPH1","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[12.37762,55.72771]}},{"type":"Feature","properties":{"name":"Digital Realty Copenhagen CPH2","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[12.37595,55.72797]}},{"type":"Feature","properties":{"name":"Interxion CPH02","operator":""},"geometry":{"type":"Point","coordinates":[12.37622,55.72648]}},{"type":"Feature","properties":{"name":"Interxion CPH03","operator":""},"geometry":{"type":"Point","coordinates":[12.37983,55.72661]}},{"type":"Feature","properties":{"name":"31173 Service DC Malm\u00f6","operator":"31173 Services AB"},"geometry":{"type":"Point","coordinates":[13.03781,55.59839]}},{"type":"Feature","properties":{"name":"Wildberries","operator":"Wildberries"},"geometry":{"type":"Point","coordinates":[38.4238,55.74747]}},{"type":"Feature","properties":{"name":"\u042f\u043d\u0434\u0435\u043a\u0441 \u0414\u0426 \u0421\u0430\u0441\u043e\u0432\u043e","operator":"Yandex"},"geometry":{"type":"Point","coordinates":[41.9436,54.37158]}},{"type":"Feature","properties":{"name":"\u042f\u043d\u0434\u0435\u043a\u0441 \u0414\u0426 \u0412\u043b\u0430\u0434\u0438\u043c\u0438\u0440","operator":"Yandex"},"geometry":{"type":"Point","coordinates":[40.19027,56.10184]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[24.23185,56.88922]}},{"type":"Feature","properties":{"name":"Delska","operator":"Delska"},"geometry":{"type":"Point","coordinates":[24.23197,56.88919]}},{"type":"Feature","properties":{"name":"Delska","operator":"Delska"},"geometry":{"type":"Point","coordinates":[24.23268,56.88891]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[24.20105,56.94833]}},{"type":"Feature","properties":{"name":"Delska","operator":"Delska"},"geometry":{"type":"Point","coordinates":[24.15492,56.95789]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[24.15504,56.98038]}},{"type":"Feature","properties":{"name":"Equinix Data Center HE6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[24.77849,60.20312]}},{"type":"Feature","properties":{"name":"Equinix Data Center","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[24.77548,60.20383]}},{"type":"Feature","properties":{"name":"Equinix Helsinki HE4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[24.83814,60.28391]}},{"type":"Feature","properties":{"name":"Telia HDC","operator":"Telia Finland Oyj"},"geometry":{"type":"Point","coordinates":[24.8773,60.21598]}},{"type":"Feature","properties":{"name":"Equinix Helsinki HE3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[24.96841,60.18496]}},{"type":"Feature","properties":{"name":"Equinix Data Center HE5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[24.9857,60.22131]}},{"type":"Feature","properties":{"name":"Hetzner data center - HEL1","operator":"Hetzner Finland Oy"},"geometry":{"type":"Point","coordinates":[25.03042,60.34236]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.0298,60.34259]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.03008,60.34231]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.0304,60.34203]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.03072,60.34175]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.03107,60.34143]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.02949,60.34287]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[25.02917,60.34315]}},{"type":"Feature","properties":{"name":"Verne Global HELSINKI","operator":"Verne Global"},"geometry":{"type":"Point","coordinates":[25.1011,60.30339]}},{"type":"Feature","properties":{"name":"Tietokettu","operator":"Tietokettu"},"geometry":{"type":"Point","coordinates":[23.7572,61.31532]}},{"type":"Feature","properties":{"name":"Elisa","operator":""},"geometry":{"type":"Point","coordinates":[23.75621,61.49397]}},{"type":"Feature","properties":{"name":"Starhub Data Center @ Ang Mo Kio","operator":""},"geometry":{"type":"Point","coordinates":[103.86983,1.37569]}},{"type":"Feature","properties":{"name":"Iron Mountain Data Centers SIN-1","operator":""},"geometry":{"type":"Point","coordinates":[103.87126,1.37558]}},{"type":"Feature","properties":{"name":"Keppel DC Singapore 1","operator":""},"geometry":{"type":"Point","coordinates":[103.87508,1.37553]}},{"type":"Feature","properties":{"name":"PrincetonDG SG1 Singapore","operator":""},"geometry":{"type":"Point","coordinates":[103.87285,1.37817]}},{"type":"Feature","properties":{"name":"NTT Communications Singapore Serangoon Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.87515,1.37609]}},{"type":"Feature","properties":{"name":"Starhub Data Center @ Kaki Bukit","operator":""},"geometry":{"type":"Point","coordinates":[103.88951,1.32153]}},{"type":"Feature","properties":{"name":"Big Data Exchange Singapore Data Center SIN1","operator":""},"geometry":{"type":"Point","coordinates":[103.89161,1.32392]}},{"type":"Feature","properties":{"name":"STT Tai Seng 1","operator":""},"geometry":{"type":"Point","coordinates":[103.89047,1.33533]}},{"type":"Feature","properties":{"name":"Amazon SIN4","operator":""},"geometry":{"type":"Point","coordinates":[103.89033,1.3354]}},{"type":"Feature","properties":{"name":"Singtel Kim Chuan Telecommunications Centre","operator":""},"geometry":{"type":"Point","coordinates":[103.88895,1.34028]}},{"type":"Feature","properties":{"name":"Singtel Kim Chuan Telecommunications Centre","operator":""},"geometry":{"type":"Point","coordinates":[103.89,1.33939]}},{"type":"Feature","properties":{"name":"AIMS","operator":""},"geometry":{"type":"Point","coordinates":[103.89327,1.33688]}},{"type":"Feature","properties":{"name":"Global Switch","operator":""},"geometry":{"type":"Point","coordinates":[103.89387,1.33664]}},{"type":"Feature","properties":{"name":"Amazon SIN5","operator":""},"geometry":{"type":"Point","coordinates":[103.89377,1.33668]}},{"type":"Feature","properties":{"name":"Telin-2 Data Centre","operator":"Telin Singapore"},"geometry":{"type":"Point","coordinates":[103.89394,1.33661]}},{"type":"Feature","properties":{"name":"STT Tai Seng 2","operator":""},"geometry":{"type":"Point","coordinates":[103.89402,1.33657]}},{"type":"Feature","properties":{"name":"China Mobile International Singapore Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.89443,1.33718]}},{"type":"Feature","properties":{"name":"Equinix Data Center SG4","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[103.89317,1.33892]}},{"type":"Feature","properties":{"name":"Starhub Data Center @ Tai Seng","operator":""},"geometry":{"type":"Point","coordinates":[103.89383,1.33782]}},{"type":"Feature","properties":{"name":"Cyxtera Singapore Data Center Campus SIN1","operator":""},"geometry":{"type":"Point","coordinates":[103.89365,1.33855]}},{"type":"Feature","properties":{"name":"Inap Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.92105,1.32266]}},{"type":"Feature","properties":{"name":"Singtel Bedok Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.9298,1.31967]}},{"type":"Feature","properties":{"name":"STT Defu 1","operator":""},"geometry":{"type":"Point","coordinates":[103.89146,1.34936]}},{"type":"Feature","properties":{"name":"STT Defu 2","operator":""},"geometry":{"type":"Point","coordinates":[103.89158,1.3499]}},{"type":"Feature","properties":{"name":"Keppel DC Singapore 3","operator":""},"geometry":{"type":"Point","coordinates":[103.94393,1.34035]}},{"type":"Feature","properties":{"name":"Amazon SIN3","operator":""},"geometry":{"type":"Point","coordinates":[103.94428,1.34053]}},{"type":"Feature","properties":{"name":"Keppel DC Singapore 2","operator":""},"geometry":{"type":"Point","coordinates":[103.94425,1.34058]}},{"type":"Feature","properties":{"name":"Keppel DC Singapore 4","operator":""},"geometry":{"type":"Point","coordinates":[103.94382,1.34203]}},{"type":"Feature","properties":{"name":"Digital Realty Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.96644,1.37102]}},{"type":"Feature","properties":{"name":"Digital Realty Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.96847,1.37077]}},{"type":"Feature","properties":{"name":"The Deck","operator":"Ficolo"},"geometry":{"type":"Point","coordinates":[23.77571,61.4979]}},{"type":"Feature","properties":{"name":"Global DC OY","operator":"Yandex"},"geometry":{"type":"Point","coordinates":[25.26358,60.62896]}},{"type":"Feature","properties":{"name":"Global DC OY","operator":""},"geometry":{"type":"Point","coordinates":[25.26252,60.62894]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[27.11751,60.53722]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[27.11357,60.5396]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[27.11258,60.53798]}},{"type":"Feature","properties":{"name":"Google","operator":"Google"},"geometry":{"type":"Point","coordinates":[27.12191,60.53429]}},{"type":"Feature","properties":{"name":"IMAQLIQ Data Center","operator":""},"geometry":{"type":"Point","coordinates":[30.39889,59.89835]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[30.32911,59.88666]}},{"type":"Feature","properties":{"name":"Selectel","operator":""},"geometry":{"type":"Point","coordinates":[30.32902,59.88735]}},{"type":"Feature","properties":{"name":"Selectel","operator":""},"geometry":{"type":"Point","coordinates":[30.32942,59.8866]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[30.5775,59.91158]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430-\u0446\u0435\u043d\u0442\u0440 \"\u0412\u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0435\"","operator":""},"geometry":{"type":"Point","coordinates":[30.57781,59.91179]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430-\u0446\u0435\u043d\u0442\u0440 \u041c\u0438\u0440\u0430\u043d-2","operator":""},"geometry":{"type":"Point","coordinates":[30.33904,59.96381]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430-\u0446\u0435\u043d\u0442\u0440 \u041c\u0438\u0440\u0430\u043d-1","operator":""},"geometry":{"type":"Point","coordinates":[30.33952,59.96518]}},{"type":"Feature","properties":{"name":"DataCenter Three Seven","operator":""},"geometry":{"type":"Point","coordinates":[30.32823,59.97887]}},{"type":"Feature","properties":{"name":"\u0426\u041e\u0414 \u0420\u043e\u0441\u0442\u0435\u043b\u0435\u043a\u043e\u043c","operator":"Rostelecom"},"geometry":{"type":"Point","coordinates":[30.37192,59.97262]}},{"type":"Feature","properties":{"name":"Linxdatacenter","operator":""},"geometry":{"type":"Point","coordinates":[30.28397,60.03236]}},{"type":"Feature","properties":{"name":"\u0414\u0430\u0442\u0430-\u0446\u0435\u043d\u0442\u0440 SDN","operator":""},"geometry":{"type":"Point","coordinates":[30.27185,60.10119]}},{"type":"Feature","properties":{"name":"\u0421\u0435\u043b\u0435\u043a\u0442\u0435\u043b \"\u0414\u0443\u0431\u0440\u043e\u0432\u043a\u0430\"","operator":""},"geometry":{"type":"Point","coordinates":[30.93385,59.83446]}},{"type":"Feature","properties":{"name":"\u0426\u041e\u0414 \"\u0414\u0443\u0431\u0440\u043e\u0432\u043a\u0430-2\"","operator":"Selectel"},"geometry":{"type":"Point","coordinates":[30.93373,59.83462]}},{"type":"Feature","properties":{"name":"\u0426\u041e\u0414 \"\u0414\u0443\u0431\u0440\u043e\u0432\u043a\u0430-1\"","operator":"Selectel"},"geometry":{"type":"Point","coordinates":[30.93269,59.83437]}},{"type":"Feature","properties":{"name":"\u0426\u041e\u0414 \"\u0414\u0443\u0431\u0440\u043e\u0432\u043a\u0430-3\"","operator":"Selectel"},"geometry":{"type":"Point","coordinates":[30.93555,59.8347]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[101.52004,3.22298]}},{"type":"Feature","properties":{"name":"MAF War Gaming Simulation Center","operator":""},"geometry":{"type":"Point","coordinates":[101.72939,3.17439]}},{"type":"Feature","properties":{"name":"Server Room B2","operator":""},"geometry":{"type":"Point","coordinates":[103.09132,5.40576]}},{"type":"Feature","properties":{"name":"IRIX DC","operator":""},"geometry":{"type":"Point","coordinates":[110.35341,1.70969]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[106.6949,10.78923]}},{"type":"Feature","properties":{"name":"T\u00f2a nh\u00e0 VNPT IDC T\u00e2n Thu\u1eadn","operator":"VNPT"},"geometry":{"type":"Point","coordinates":[106.74101,10.77332]}},{"type":"Feature","properties":{"name":"SCB Chaengwattana Building","operator":""},"geometry":{"type":"Point","coordinates":[100.51034,13.906]}},{"type":"Feature","properties":{"name":"NTT BKK2 Data Center","operator":"NTT"},"geometry":{"type":"Point","coordinates":[101.04884,13.44328]}},{"type":"Feature","properties":{"name":"Telehouse","operator":""},"geometry":{"type":"Point","coordinates":[100.57368,13.75151]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[99.82912,19.90729]}},{"type":"Feature","properties":{"name":"LaoDC","operator":""},"geometry":{"type":"Point","coordinates":[102.63112,17.92406]}},{"type":"Feature","properties":{"name":"VNPT IDC H\u00f2a L\u1ea1c","operator":"VNPT"},"geometry":{"type":"Point","coordinates":[105.532,20.99986]}},{"type":"Feature","properties":{"name":"Viettel IDC H\u00f2a L\u1ea1c","operator":"Viettel"},"geometry":{"type":"Point","coordinates":[105.54179,20.99973]}},{"type":"Feature","properties":{"name":"Easylinehost Finland Oy","operator":""},"geometry":{"type":"Point","coordinates":[27.6593,62.89418]}},{"type":"Feature","properties":{"name":"LUMI (supercomputer)","operator":"EuroHPC/CSC"},"geometry":{"type":"Point","coordinates":[27.69561,64.23197]}},{"type":"Feature","properties":{"name":"CSC \u2013 IT Center for Science","operator":"CSC"},"geometry":{"type":"Point","coordinates":[27.69651,64.23164]}},{"type":"Feature","properties":{"name":"\u041e\u043f\u043e\u0440\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u041a\u043e\u043d\u0446\u0435\u0440\u043d\u0430 \u0420\u043e\u0441\u044d\u043d\u0435\u0440\u0433\u043e\u0430\u0442\u043e\u043c","operator":""},"geometry":{"type":"Point","coordinates":[35.04896,57.89108]}},{"type":"Feature","properties":{"name":"Rostelecom Nizhny Novgorod","operator":"Rostelecom"},"geometry":{"type":"Point","coordinates":[43.81147,56.33927]}},{"type":"Feature","properties":{"name":"Rostelecom Nizhny Novgorod","operator":"Rostelecom"},"geometry":{"type":"Point","coordinates":[43.81117,56.33967]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[13.06862,67.93826]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[13.11237,67.93795]}},{"type":"Feature","properties":{"name":"Trung t\u00e2m d\u1eef li\u1ec7u FPT Fornix","operator":"FPT"},"geometry":{"type":"Point","coordinates":[105.78932,21.02717]}},{"type":"Feature","properties":{"name":"Trung t\u00e2m d\u1eef li\u1ec7u FPT Duy T\u00e2n","operator":"FPT"},"geometry":{"type":"Point","coordinates":[105.78259,21.03075]}},{"type":"Feature","properties":{"name":"VNPT IDC C\u1ea7u Gi\u1ea5y","operator":"VNPT"},"geometry":{"type":"Point","coordinates":[105.79101,21.04087]}},{"type":"Feature","properties":{"name":"VNPT IDC Nam Th\u0103ng Long","operator":"VNPT"},"geometry":{"type":"Point","coordinates":[105.75828,21.08059]}},{"type":"Feature","properties":{"name":"To\u00e0 nh\u00e0 Viettel IDC Ph\u00e1p V\u00e2n","operator":"Viettel"},"geometry":{"type":"Point","coordinates":[105.84993,20.959]}},{"type":"Feature","properties":{"name":"Trung t\u00e2m D\u1eef li\u1ec7u Th\u0103ng Long","operator":"GDS"},"geometry":{"type":"Point","coordinates":[105.7717,21.11003]}},{"type":"Feature","properties":{"name":"\u7efc\u5408\u5b9e\u9a8c\u697c","operator":""},"geometry":{"type":"Point","coordinates":[110.50376,19.98286]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u79fb\u52a8(\u5e7f\u4e1c\u6e5b\u6c5f)\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[110.34684,21.20339]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[123.84546,8.24975]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[123.84558,8.24966]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[123.84555,8.24977]}},{"type":"Feature","properties":{"name":"DITO CO64","operator":""},"geometry":{"type":"Point","coordinates":[125.53941,8.93648]}},{"type":"Feature","properties":{"name":"G&D Tech","operator":""},"geometry":{"type":"Point","coordinates":[123.94827,10.31086]}},{"type":"Feature","properties":{"name":"ANH DOGE","operator":"ANH DOGE CO., LTD."},"geometry":{"type":"Point","coordinates":[124.02308,10.52291]}},{"type":"Feature","properties":{"name":"Royal\u00e8 Satellite Center","operator":""},"geometry":{"type":"Point","coordinates":[124.99927,11.2429]}},{"type":"Feature","properties":{"name":"Office of the System Administrator","operator":""},"geometry":{"type":"Point","coordinates":[125.00812,11.24716]}},{"type":"Feature","properties":{"name":"techies","operator":"techies FiberNet"},"geometry":{"type":"Point","coordinates":[125.73517,11.01861]}},{"type":"Feature","properties":{"name":"Lyceum of the Philippines University, Inc.","operator":"Lyceum of the Philippines University, Inc."},"geometry":{"type":"Point","coordinates":[120.91505,14.29148]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[120.60575,15.16834]}},{"type":"Feature","properties":{"name":"\u4e2d\u4f73 Zhongjia","operator":""},"geometry":{"type":"Point","coordinates":[120.9436,14.42496]}},{"type":"Feature","properties":{"name":"E79 Systems Inc.","operator":""},"geometry":{"type":"Point","coordinates":[121.02915,14.44414]}},{"type":"Feature","properties":{"name":"VITRO Para\u00f1aque","operator":"ePLDT"},"geometry":{"type":"Point","coordinates":[121.02736,14.46282]}},{"type":"Feature","properties":{"name":"Comclark Network And Technology","operator":""},"geometry":{"type":"Point","coordinates":[121.07403,14.57751]}},{"type":"Feature","properties":{"name":"\u6fb3\u9580\u6a94\u6848\u9928 Arquivo de Macau","operator":""},"geometry":{"type":"Point","coordinates":[113.54692,22.19876]}},{"type":"Feature","properties":{"name":"R74n Vault","operator":""},"geometry":{"type":"Point","coordinates":[23.47538,77.47549]}},{"type":"Feature","properties":{"name":"Atyrau Data Center","operator":""},"geometry":{"type":"Point","coordinates":[51.98179,47.11512]}},{"type":"Feature","properties":{"name":"Freedom Data Centers","operator":""},"geometry":{"type":"Point","coordinates":[51.98177,47.11522]}},{"type":"Feature","properties":{"name":"\u0410\u0442\u043e\u043c\u0434\u0430\u0442\u0430 \u0418\u043d\u043d\u043e\u043f\u043e\u043b\u0438\u0441","operator":""},"geometry":{"type":"Point","coordinates":[48.75495,55.75937]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[50.42835,56.00061]}},{"type":"Feature","properties":{"name":"Data Center Uralsk","operator":""},"geometry":{"type":"Point","coordinates":[51.47622,51.28383]}},{"type":"Feature","properties":{"name":"Rostelecom Ekaterinburg","operator":"Rostelecom"},"geometry":{"type":"Point","coordinates":[60.61004,56.92524]}},{"type":"Feature","properties":{"name":"\u5357\u5927\u5dbc\u5c71\u6d77\u5e95\u96fb\u7e9c\u7ad9 South Lantau Submarine Cable Station","operator":""},"geometry":{"type":"Point","coordinates":[113.92937,22.22521]}},{"type":"Feature","properties":{"name":"\u91ab\u9662\u7ba1\u7406\u5c40\u652f\u63f4\u670d\u52d9\u4e2d\u5fc3 Hospital Authority Supporting Services Centre","operator":""},"geometry":{"type":"Point","coordinates":[113.94079,22.28349]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[75.46497,51.61814]}},{"type":"Feature","properties":{"name":"\u041c\u0435\u0433\u0430\u0444\u043e\u043d","operator":"\u041c\u0435\u0433\u0430\u0444\u043e\u043d"},"geometry":{"type":"Point","coordinates":[82.82907,54.95876]}},{"type":"Feature","properties":{"name":"\u0410\u0434\u043c\u0430\u043d","operator":""},"geometry":{"type":"Point","coordinates":[82.78872,55.05759]}},{"type":"Feature","properties":{"name":"Rostelecom Novosibirsk","operator":"Rostelecom"},"geometry":{"type":"Point","coordinates":[82.96037,55.07374]}},{"type":"Feature","properties":{"name":"Meta Singapore Data Center","operator":"Meta"},"geometry":{"type":"Point","coordinates":[103.70277,1.3172]}},{"type":"Feature","properties":{"name":"Telin-3 Data Centre","operator":"Telin Singapore"},"geometry":{"type":"Point","coordinates":[103.70136,1.31667]}},{"type":"Feature","properties":{"name":"Equinix Singapore SG5","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[103.70141,1.31729]}},{"type":"Feature","properties":{"name":"Keppel DC Singapore 5","operator":""},"geometry":{"type":"Point","coordinates":[103.69999,1.31958]}},{"type":"Feature","properties":{"name":"Google: Lok Yang 1","operator":"Google"},"geometry":{"type":"Point","coordinates":[103.69502,1.32391]}},{"type":"Feature","properties":{"name":"Equinix Data Center SG2","operator":""},"geometry":{"type":"Point","coordinates":[103.69582,1.32134]}},{"type":"Feature","properties":{"name":"Inap Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.69582,1.32151]}},{"type":"Feature","properties":{"name":"Amazon SIN2","operator":""},"geometry":{"type":"Point","coordinates":[103.69583,1.32165]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.68837,1.34573]}},{"type":"Feature","properties":{"name":"Google Singapore DC","operator":""},"geometry":{"type":"Point","coordinates":[103.70918,1.35115]}},{"type":"Feature","properties":{"name":"STT MediaHub","operator":""},"geometry":{"type":"Point","coordinates":[103.7918,1.29217]}},{"type":"Feature","properties":{"name":"Starhub Data Center @ One North","operator":""},"geometry":{"type":"Point","coordinates":[103.79174,1.29217]}},{"type":"Feature","properties":{"name":"Inap Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.78983,1.2954]}},{"type":"Feature","properties":{"name":"Equinix Data Center SG1","operator":""},"geometry":{"type":"Point","coordinates":[103.78995,1.29534]}},{"type":"Feature","properties":{"name":"Equinix Data Center SG3","operator":""},"geometry":{"type":"Point","coordinates":[103.79042,1.29555]}},{"type":"Feature","properties":{"name":"Ascenix","operator":""},"geometry":{"type":"Point","coordinates":[103.86595,1.31066]}},{"type":"Feature","properties":{"name":"SG6","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[103.7131,1.32587]}},{"type":"Feature","properties":{"name":"DC West","operator":""},"geometry":{"type":"Point","coordinates":[103.72161,1.32503]}},{"type":"Feature","properties":{"name":"M1 Next-Gen Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.7488,1.32522]}},{"type":"Feature","properties":{"name":"Digital Realty Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.74603,1.3278]}},{"type":"Feature","properties":{"name":"STT Jurong","operator":""},"geometry":{"type":"Point","coordinates":[103.74623,1.32781]}},{"type":"Feature","properties":{"name":"Epsilon Telecommunications Singapore Data Center","operator":""},"geometry":{"type":"Point","coordinates":[103.86155,1.35145]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.96842,1.3772]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.96806,1.37758]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.96976,1.37573]}},{"type":"Feature","properties":{"name":"Starhub Data Center @ Loyang","operator":""},"geometry":{"type":"Point","coordinates":[103.96528,1.37459]}},{"type":"Feature","properties":{"name":"Airtrunk SGP1 Singapore","operator":""},"geometry":{"type":"Point","coordinates":[103.96851,1.37723]}},{"type":"Feature","properties":{"name":"Telin-1 Data Centre","operator":"Telin Singapore"},"geometry":{"type":"Point","coordinates":[103.97481,1.35294]}},{"type":"Feature","properties":{"name":"\u86c7\u53e3\u7f51\u8c37\u79bb\u5cb8\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.9095,22.49573]}},{"type":"Feature","properties":{"name":"MEGA Gateway","operator":""},"geometry":{"type":"Point","coordinates":[114.11904,22.36509]}},{"type":"Feature","properties":{"name":"Digital Realty Kin Tak HKG11","operator":"Digital Realty"},"geometry":{"type":"Point","coordinates":[114.12901,22.37031]}},{"type":"Feature","properties":{"name":"Data Center Kominfo Kota Dumai","operator":"Kominfo"},"geometry":{"type":"Point","coordinates":[101.46035,1.67866]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41328,1.70342]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41217,1.69206]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41152,1.69783]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.40747,1.69756]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41015,1.70301]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41695,1.69237]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41272,1.69999]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.40885,1.70194]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41059,1.6988]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41233,1.69858]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41885,1.69395]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.42073,1.69423]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41781,1.69311]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[103.41234,1.70461]}},{"type":"Feature","properties":{"name":"Global Switch","operator":""},"geometry":{"type":"Point","coordinates":[103.79851,1.42905]}},{"type":"Feature","properties":{"name":"1-Net","operator":""},"geometry":{"type":"Point","coordinates":[103.78041,1.44327]}},{"type":"Feature","properties":{"name":"TMONE Klang Valley Data Center","operator":""},"geometry":{"type":"Point","coordinates":[101.6572,2.93235]}},{"type":"Feature","properties":{"name":"AIMS","operator":""},"geometry":{"type":"Point","coordinates":[101.65729,2.93775]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[101.67218,3.06017]}},{"type":"Feature","properties":{"name":"\u9999\u6e2f\u4ea4\u6613\u6240\u5c07\u8ecd\u6fb3\u6578\u64da\u4e2d\u5fc3 HKEx Tseung Kwan O Data Centre","operator":""},"geometry":{"type":"Point","coordinates":[114.27327,22.2852]}},{"type":"Feature","properties":{"name":"\u540d\u6c23\u901a\u9999\u6e2f2\u865f\u6578\u64da\u4e2d\u5fc3 TGT Hong Kong Data Centre 2","operator":""},"geometry":{"type":"Point","coordinates":[114.2744,22.28675]}},{"type":"Feature","properties":{"name":"HKCOLO","operator":""},"geometry":{"type":"Point","coordinates":[114.27422,22.29084]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.27022,22.28624]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.27188,22.28895]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.27417,22.29329]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.27427,22.29405]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.27452,22.29487]}},{"type":"Feature","properties":{"name":"Mega Plus","operator":""},"geometry":{"type":"Point","coordinates":[114.2745,22.2934]}},{"type":"Feature","properties":{"name":"Mega IDC","operator":""},"geometry":{"type":"Point","coordinates":[114.27414,22.29493]}},{"type":"Feature","properties":{"name":"NTT\u30c9\u30b3\u30e2","operator":""},"geometry":{"type":"Point","coordinates":[134.04698,34.33847]}},{"type":"Feature","properties":{"name":"KDDI","operator":"KDDI"},"geometry":{"type":"Point","coordinates":[134.04772,34.3432]}},{"type":"Feature","properties":{"name":"STNet","operator":"STNet"},"geometry":{"type":"Point","coordinates":[134.09369,34.33582]}},{"type":"Feature","properties":{"name":"QMODZ Server","operator":"John Lloyd Quijano"},"geometry":{"type":"Point","coordinates":[121.74048,16.91729]}},{"type":"Feature","properties":{"name":"University Town Center","operator":""},"geometry":{"type":"Point","coordinates":[124.59684,12.07039]}},{"type":"Feature","properties":{"name":"\u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6 \u09a1\u09be\u099f\u09be \u09b8\u09c7\u09a8\u09cd\u099f\u09be\u09b0 \u0995\u09cb\u09ae\u09cd\u09aa\u09be\u09a8\u09bf \u09b2\u09bf\u09ae\u09bf\u099f\u09c7\u09a1(\u09ac\u09bf\u09a1\u09bf\u09b8\u09bf\u09b8\u09bf\u098f\u09b2)","operator":""},"geometry":{"type":"Point","coordinates":[90.2292,24.07129]}},{"type":"Feature","properties":{"name":"\u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6 \u099f\u09c7\u0995\u09a8\u09cb\u09b8\u09bf\u099f\u09bf \u09b2\u09bf\u09ae\u09bf\u099f\u09c7\u09a1","operator":""},"geometry":{"type":"Point","coordinates":[90.23581,24.06532]}},{"type":"Feature","properties":{"name":"\u09b8\u09be\u09ae\u09bf\u099f \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8\u09b8 \u09b2\u09bf\u09ae\u09bf\u099f\u09c7\u09a1","operator":""},"geometry":{"type":"Point","coordinates":[90.23193,24.06414]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[90.23204,24.06391]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[90.22929,24.07161]}},{"type":"Feature","properties":{"name":"mee computer education","operator":""},"geometry":{"type":"Point","coordinates":[91.781,26.18353]}},{"type":"Feature","properties":{"name":"Community Information Center","operator":"Nima Om"},"geometry":{"type":"Point","coordinates":[90.9449,27.24522]}},{"type":"Feature","properties":{"name":"Apple iCloud Gui'An data center","operator":""},"geometry":{"type":"Point","coordinates":[106.46706,26.36271]}},{"type":"Feature","properties":{"name":"\u817e\u8baf\u8d35\u5b89\u4e03\u661f\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[106.50067,26.36962]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[106.51835,26.36754]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u79fb\u52a8\uff08\u5e7f\u897f\uff09\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[108.39086,22.71603]}},{"type":"Feature","properties":{"name":"\u6c5f\u6c38\u53bf\u6b66\u8b66\u4e2d\u961f","operator":"\u6c5f\u6c38\u53bf\u6b66\u8b66\u4e2d\u961f"},"geometry":{"type":"Point","coordinates":[111.33288,25.27097]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[111.35194,25.27131]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[106.79114,28.40229]}},{"type":"Feature","properties":{"name":"\u534e\u4e3a\u56db\u5ddd\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[105.49309,28.8629]}},{"type":"Feature","properties":{"name":"\u6210\u90fd\u8d85\u7b97\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[104.10635,30.3884]}},{"type":"Feature","properties":{"name":"\u6b66\u5f53\u4e91\u8c37\u5927\u6570\u636e\u4e2d\u5fc3\u56ed\u533a","operator":"\u6b66\u5f53\u4e91\u8c37\u5927\u6570\u636e\u79d1\u6280\u6709\u9650\u516c\u53f8"},"geometry":{"type":"Point","coordinates":[111.48805,32.54769]}},{"type":"Feature","properties":{"name":"\u6b66\u5a01\u7535\u4fe1\u7efc\u5408\u5927\u697c","operator":""},"geometry":{"type":"Point","coordinates":[102.63408,37.9297]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u8054\u901a\u6b66\u5a01\u5206\u516c\u53f8","operator":""},"geometry":{"type":"Point","coordinates":[102.62685,37.93352]}},{"type":"Feature","properties":{"name":"\u7518\u8083\u7d2b\u91d1\u4e91\u5927\u6570\u636e\u5f00\u53d1\u6709\u9650\u8d23\u4efb\u516c\u53f8","operator":""},"geometry":{"type":"Point","coordinates":[102.23871,38.54943]}},{"type":"Feature","properties":{"name":"\u66f2\u6c5f\u5e02\u653f\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[109.02111,34.20578]}},{"type":"Feature","properties":{"name":"\u534e\u4e3a\u5c71\u897f\uff08\u5415\u6881\uff09\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[111.21957,37.53168]}},{"type":"Feature","properties":{"name":"IIJ","operator":"IIJ"},"geometry":{"type":"Point","coordinates":[133.06392,35.49439]}},{"type":"Feature","properties":{"name":"Key Point","operator":"Key Point"},"geometry":{"type":"Point","coordinates":[131.97175,43.32749]}},{"type":"Feature","properties":{"name":"\u30b9\u30fc\u30d1\u30fc\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u300c\u5bcc\u5cb3\u300d","operator":""},"geometry":{"type":"Point","coordinates":[135.2204,34.65343]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.19946,34.69411]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[135.49572,34.67573]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[135.4955,34.67579]}},{"type":"Feature","properties":{"name":"NTT Docomo","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.51487,34.68073]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.49107,34.69552]}},{"type":"Feature","properties":{"name":"TIS","operator":"TIS"},"geometry":{"type":"Point","coordinates":[135.49946,34.6956]}},{"type":"Feature","properties":{"name":"4","operator":"\u4e2d\u56fd\u7535\u4fe1"},"geometry":{"type":"Point","coordinates":[109.91926,39.71873]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[109.92102,39.71814]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[109.92255,39.71741]}},{"type":"Feature","properties":{"name":"3","operator":""},"geometry":{"type":"Point","coordinates":[109.92498,39.71919]}},{"type":"Feature","properties":{"name":"2","operator":""},"geometry":{"type":"Point","coordinates":[109.9237,39.72057]}},{"type":"Feature","properties":{"name":"1A","operator":""},"geometry":{"type":"Point","coordinates":[109.92261,39.72297]}},{"type":"Feature","properties":{"name":"1B","operator":""},"geometry":{"type":"Point","coordinates":[109.92365,39.72197]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1\u667a\u6167\u57ce\u5e02\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.05085,23.00783]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1\u4f5b\u5c71\uff08\u5f00\u666e\u52d2\uff09\u534e\u5357\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.04639,23.03864]}},{"type":"Feature","properties":{"name":"\u5e7f\u4e1c\u519c\u4fe1\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.15296,23.0732]}},{"type":"Feature","properties":{"name":"\u767e\u5ea6\u5730\u56fe\u987a\u5fb7\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.32399,22.77502]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u8054\u901a\u5e7f\u4e1c\u4e91\u6570\u636e\u4e2d\u5fc3\uff08\u5e7f\u5dde\u65b0\u5e7f\u57fa\u5730\uff09","operator":""},"geometry":{"type":"Point","coordinates":[113.50514,22.73327]}},{"type":"Feature","properties":{"name":"\u4e91\u7855\u79d1\u6280\uff08\u4e91\u8c37\u6570\u636e\u4e2d\u5fc3\uff09","operator":""},"geometry":{"type":"Point","coordinates":[113.52695,22.72481]}},{"type":"Feature","properties":{"name":"\u4e07\u56fd\u6570\u636e\u5e7f\u5dde\u5357\u6c99\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.53144,22.72724]}},{"type":"Feature","properties":{"name":"\u524d\u6d77\u4fe1\u606f\u67a2\u7ebd\u5927\u53a6","operator":""},"geometry":{"type":"Point","coordinates":[113.88763,22.5208]}},{"type":"Feature","properties":{"name":"\u667a\u6167\u4e91\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.89602,22.52258]}},{"type":"Feature","properties":{"name":"\u5e7f\u5dde\u5357\u7ad9RBC\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.26986,22.98238]}},{"type":"Feature","properties":{"name":"\u5e7f\u5dde\u957f\u9014\u7535\u4fe1\u7ebf\u8def\u5c40","operator":""},"geometry":{"type":"Point","coordinates":[113.26792,23.14605]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[113.31755,23.13466]}},{"type":"Feature","properties":{"name":"\u534e\u5357\u5e08\u8303\u5927\u5b66\u5e7f\u5dde\u6821\u533a\u77f3\u724c\u6821\u56ed\u7f51\u7edc\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.34434,23.13993]}},{"type":"Feature","properties":{"name":"\u5e7f\u5dde\u6c47\u4e91\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.52187,23.076]}},{"type":"Feature","properties":{"name":"\u534e\u5357\u56fd\u5bb6\u8ba1\u91cf\u6d4b\u8bd5\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.54643,23.1999]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1\uff08\u79d1\u4e91\u6570\u636e\u4e2d\u5fc3\uff09","operator":""},"geometry":{"type":"Point","coordinates":[113.532,23.21514]}},{"type":"Feature","properties":{"name":"\u767e\u5ea6\u535a\u6d69\u673a\u623f","operator":""},"geometry":{"type":"Point","coordinates":[113.56345,23.20914]}},{"type":"Feature","properties":{"name":"\u4e07\u56fd\u6570\u636e\uff08\u6df1\u5733\u798f\u7530\u6570\u636e\u4e2d\u5fc3\uff09","operator":"\u4e07\u56fd\u6570\u636e"},"geometry":{"type":"Point","coordinates":[114.0537,22.50577]}},{"type":"Feature","properties":{"name":"\u4e07\u56fd\u6570\u636e\u6df1\u57333\u53f7\u6570\u636e\u4e2d\u5fc3","operator":"\u4e07\u56fd\u6570\u636e"},"geometry":{"type":"Point","coordinates":[114.04503,22.50722]}},{"type":"Feature","properties":{"name":"\u6709\u5b5a\u6df1\u5733\u5b9d\u5b89\u4e91\u8ba1\u7b97\u6570\u636e\u4e2d\u5fc3","operator":"\u6709\u5b5a"},"geometry":{"type":"Point","coordinates":[113.91715,22.66356]}},{"type":"Feature","properties":{"name":"\u5b9d\u89c2\u79fb\u52a8\u901a\u4fe1\u67a2\u7ebd\u697c","operator":"\u4e2d\u56fd\u79fb\u52a8"},"geometry":{"type":"Point","coordinates":[114.06113,22.68973]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1 \u6df1\u5733\u4e9a\u68ee\u6570\u636e\u4e2d\u5fc3","operator":"\u4e2d\u56fd\u7535\u4fe1"},"geometry":{"type":"Point","coordinates":[114.27357,22.6867]}},{"type":"Feature","properties":{"name":"\u6df1\u5733\u8054\u901a \u540c\u4e50IDC","operator":"\u4e2d\u56fd\u8054\u901a"},"geometry":{"type":"Point","coordinates":[114.31656,22.72229]}},{"type":"Feature","properties":{"name":"\u4e07\u56fd\u6570\u636e\u6df1\u57334\u53f7\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[114.36653,22.71345]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.5032,34.69856]}},{"type":"Feature","properties":{"name":"KDDI","operator":"KDDI"},"geometry":{"type":"Point","coordinates":[135.53429,34.69302]}},{"type":"Feature","properties":{"name":"KDDI","operator":"KDDI"},"geometry":{"type":"Point","coordinates":[135.53422,34.69305]}},{"type":"Feature","properties":{"name":"netXDC","operator":"SCSK"},"geometry":{"type":"Point","coordinates":[135.18191,34.89622]}},{"type":"Feature","properties":{"name":"\uff33\uff23\uff33\uff2b\u682a\u5f0f\u4f1a\u793e","operator":"\uff33\uff23\uff33\uff2b\u682a\u5f0f\u4f1a\u793e"},"geometry":{"type":"Point","coordinates":[135.4927,34.8113]}},{"type":"Feature","properties":{"name":"\u897f\u65e5\u672c\u96fb\u8a71\u96fb\u4fe1\u767d\u5cf6\u30d3\u30eb","operator":""},"geometry":{"type":"Point","coordinates":[135.49551,34.83471]}},{"type":"Feature","properties":{"name":"Equinix","operator":""},"geometry":{"type":"Point","coordinates":[135.50789,34.86037]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.68725,34.91687]}},{"type":"Feature","properties":{"name":"\u4eac\u962a\u5948\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc","operator":""},"geometry":{"type":"Point","coordinates":[135.76632,34.74138]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.76445,34.74113]}},{"type":"Feature","properties":{"name":"Colt \u4eac\u962a\u5948\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc","operator":"Colt data centre services"},"geometry":{"type":"Point","coordinates":[135.76451,34.7466]}},{"type":"Feature","properties":{"name":"KAGOYA \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc A\u68df","operator":"\u30ab\u30b4\u30e4\u30fb\u30b8\u30e3\u30d1\u30f3\u682a\u5f0f\u4f1a\u793e"},"geometry":{"type":"Point","coordinates":[135.78474,34.74845]}},{"type":"Feature","properties":{"name":"KAGOYA \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc B\u68df","operator":"\u30ab\u30b4\u30e4\u30fb\u30b8\u30e3\u30d1\u30f3\u682a\u5f0f\u4f1a\u793e"},"geometry":{"type":"Point","coordinates":[135.78468,34.74825]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.747,34.96045]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[135.74722,34.97581]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.9934,22.83718]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.98972,22.84037]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.99228,22.83686]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.99201,22.83768]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.99287,22.83879]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.99313,22.83799]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.9891,22.83971]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[114.99175,22.83847]}},{"type":"Feature","properties":{"name":"\u4fe1\u606f\u4e2d\u5fc3","operator":"\u97f6\u5173\u5e02\u804c\u4e1a\u7efc\u5408\u9ad8\u7ea7\u4e2d\u5b66"},"geometry":{"type":"Point","coordinates":[113.62567,24.79386]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u8054\u901a\u8861\u9633\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[112.54822,26.87732]}},{"type":"Feature","properties":{"name":"\u6e56\u5357\u79fb\u52a8\u8861\u9633\u5206\u516c\u53f85G\u4e91\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[112.60702,26.85453]}},{"type":"Feature","properties":{"name":"\u987a\u5174\u901a\u8baf","operator":""},"geometry":{"type":"Point","coordinates":[112.91794,27.82334]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u8054\u901a\u4e09\u660e\u5206\u516c\u53f8","operator":""},"geometry":{"type":"Point","coordinates":[117.64782,26.28288]}},{"type":"Feature","properties":{"name":"\u4e2d\u83ef\u96fb\u4fe1\u53f0\u5357\u71df\u904b\u8655\u7b2c\u4e8c\u5ba2\u6236\u7db2\u8def\u4e2d\u5fc3","operator":"\u4e2d\u83ef\u96fb\u4fe1"},"geometry":{"type":"Point","coordinates":[120.18345,22.96949]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[120.42575,24.14031]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[120.42398,24.13892]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[120.42531,24.1386]}},{"type":"Feature","properties":{"name":"\u4e2d\u83ef\u96fb\u4fe1IDC\u53f0\u4e2d\u9ece\u660e\u6a5f\u623f","operator":"\u4e2d\u83ef\u96fb\u4fe1\u6578\u64da\u901a\u4fe1\u5206\u516c\u53f8"},"geometry":{"type":"Point","coordinates":[120.63473,24.15789]}},{"type":"Feature","properties":{"name":"\u4e2d\u83ef\u96fb\u4fe1","operator":""},"geometry":{"type":"Point","coordinates":[121.46892,22.66839]}},{"type":"Feature","properties":{"name":"KDDI","operator":"KDDI"},"geometry":{"type":"Point","coordinates":[136.8937,35.16857]}},{"type":"Feature","properties":{"name":"TOKAI\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30ba","operator":"TOKAI\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30ba"},"geometry":{"type":"Point","coordinates":[138.38206,34.97018]}},{"type":"Feature","properties":{"name":"KDDI\u5343\u5009\u6d77\u5e95\u7dda\u4e2d\u7d99\u6240","operator":"KDDI"},"geometry":{"type":"Point","coordinates":[139.96021,34.97052]}},{"type":"Feature","properties":{"name":"\u5b89\u7881\u8cc7\u8a0a","operator":""},"geometry":{"type":"Point","coordinates":[121.18186,24.84972]}},{"type":"Feature","properties":{"name":"\u4e2d\u83ef\u96fb\u4fe1 \u65b0\u5317\u4e09\u591a\u6e2c\u91cf\u53f0","operator":""},"geometry":{"type":"Point","coordinates":[121.41224,25.00732]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[121.4202,25.02842]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[121.42025,25.02863]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[121.42592,25.02918]}},{"type":"Feature","properties":{"name":"\u957f\u6c99\u5e02\u4ea4\u901a\u4e8b\u6545\u5feb\u5904\u5feb\u8d54\u670d\u52a1\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[112.92793,28.23092]}},{"type":"Feature","properties":{"name":"\u4e2d\u5357\u5927\u5b66\u540e\u52e4\u751f\u6d3b\u670d\u52a1\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[112.93533,28.22485]}},{"type":"Feature","properties":{"name":"\u8054\u60f3\u552e\u540e\u670d\u52a1\u4e2d\u5fc3(\u94f6\u76c6\u8def\u5e97)","operator":""},"geometry":{"type":"Point","coordinates":[112.94991,28.22052]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u5efa\u8bbe\u94f6\u884c\u6b66\u6c49\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[114.36885,30.49166]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1","operator":""},"geometry":{"type":"Point","coordinates":[118.82094,28.41884]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[121.49578,29.81192]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u8054\u901a\u5b81\u6ce2\u5206\u516c\u53f8\u603b\u90e8","operator":""},"geometry":{"type":"Point","coordinates":[121.63233,29.87743]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1\u5357\u4eac\uff08\u5409\u5c71\uff09\u4e91\u8ba1\u7b97\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[118.76397,31.8216]}},{"type":"Feature","properties":{"name":"\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[118.63649,32.02614]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1","operator":"\u4e2d\u56fd\u7535\u4fe1"},"geometry":{"type":"Point","coordinates":[120.66387,31.30768]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[119.57173,31.67616]}},{"type":"Feature","properties":{"name":"\u6c5f\u5357\u519c\u6751\u5546\u4e1a\u94f6\u884c\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[119.58643,31.72369]}},{"type":"Feature","properties":{"name":"Microsoft","operator":"Microsoft"},"geometry":{"type":"Point","coordinates":[121.49537,31.23915]}},{"type":"Feature","properties":{"name":"Agricultural Bank of China (Data Center)","operator":""},"geometry":{"type":"Point","coordinates":[121.60633,31.30768]}},{"type":"Feature","properties":{"name":"GDS Shanghai Data Center","operator":""},"geometry":{"type":"Point","coordinates":[121.60024,31.32308]}},{"type":"Feature","properties":{"name":"\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[121.65848,31.24186]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.38892,35.36566]}},{"type":"Feature","properties":{"name":"Americable Datacenter","operator":""},"geometry":{"type":"Point","coordinates":[139.43329,35.45709]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.34569,35.598]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.42918,35.52938]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[139.40339,35.61067]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[139.40267,35.61012]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[139.40252,35.61067]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[139.40048,35.6133]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[139.40392,35.61361]}},{"type":"Feature","properties":{"name":"\u91ce\u6751\u7dcf\u5408\u7814\u7a76\u6240 \u6771\u4eac\u7b2c\u4e00DC","operator":""},"geometry":{"type":"Point","coordinates":[139.4203,35.6283]}},{"type":"Feature","properties":{"name":"NTT\u6b66\u8535\u6751\u5c71\u96fb\u8a71\u4ea4\u63db\u5c40","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.37446,35.75552]}},{"type":"Feature","properties":{"name":"NTT\u6771\u65e5\u672c \u5c0f\u66fd\u6728\u96fb\u8a71\u4ea4\u63db\u5c40","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.26038,35.81147]}},{"type":"Feature","properties":{"name":"\uff12\uff22\u68df","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[139.31811,35.79117]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[127.75917,26.20913]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[130.33454,31.62766]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[130.51804,31.52308]}},{"type":"Feature","properties":{"name":"Next-MIC DataCenter","operator":"\u5357\u65e5\u672c\u60c5\u5831\u51e6\u7406\u30bb\u30f3\u30bf\u30fc"},"geometry":{"type":"Point","coordinates":[130.53561,31.53456]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[130.5185,31.56261]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[130.55756,31.58708]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[130.5583,31.5866]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[130.53024,31.61542]}},{"type":"Feature","properties":{"name":"NTT\u897f\u65e5\u672c","operator":"NTT\u897f\u65e5\u672c"},"geometry":{"type":"Point","coordinates":[130.55704,33.21096]}},{"type":"Feature","properties":{"name":"\uff12\uff23\u68df","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[139.31785,35.79203]}},{"type":"Feature","properties":{"name":"\uff12\uff21\u68df","operator":"AirTrunk"},"geometry":{"type":"Point","coordinates":[139.31938,35.79122]}},{"type":"Feature","properties":{"name":"\u897f\u6771\u4eac\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc 1\u53f7\u68df","operator":""},"geometry":{"type":"Point","coordinates":[139.53481,35.71693]}},{"type":"Feature","properties":{"name":"\u897f\u6771\u4eac\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc 2\u53f7\u68df","operator":""},"geometry":{"type":"Point","coordinates":[139.5342,35.71703]}},{"type":"Feature","properties":{"name":"Equinix Tokyo TY11","operator":""},"geometry":{"type":"Point","coordinates":[139.79227,35.63978]}},{"type":"Feature","properties":{"name":"Rakuten","operator":""},"geometry":{"type":"Point","coordinates":[139.62998,35.61053]}},{"type":"Feature","properties":{"name":"Rakuten","operator":""},"geometry":{"type":"Point","coordinates":[139.63018,35.61047]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[139.72534,35.63699]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.742,35.63148]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[139.74815,35.61746]}},{"type":"Feature","properties":{"name":"SoftBank","operator":""},"geometry":{"type":"Point","coordinates":[139.76061,35.65519]}},{"type":"Feature","properties":{"name":"Colt Shiohama","operator":""},"geometry":{"type":"Point","coordinates":[139.81207,35.66389]}},{"type":"Feature","properties":{"name":"@Tokyo Chuo Center (CC1 & CC2)","operator":""},"geometry":{"type":"Point","coordinates":[139.79257,35.64853]}},{"type":"Feature","properties":{"name":"\u682a\u5f0f\u4f1a\u793e\u30a2\u30c3\u30c8\u6771\u4eac","operator":"\u682a\u5f0f\u4f1a\u793e\u30a2\u30c3\u30c8\u6771\u4eac"},"geometry":{"type":"Point","coordinates":[139.79814,35.65231]}},{"type":"Feature","properties":{"name":"Equinix Tokyo TY5","operator":""},"geometry":{"type":"Point","coordinates":[139.80421,35.65561]}},{"type":"Feature","properties":{"name":"Equinix TY3","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[139.80347,35.65676]}},{"type":"Feature","properties":{"name":"NTT TK2","operator":""},"geometry":{"type":"Point","coordinates":[139.83019,35.67155]}},{"type":"Feature","properties":{"name":"NTT TK9","operator":""},"geometry":{"type":"Point","coordinates":[139.8294,35.67569]}},{"type":"Feature","properties":{"name":"NTT Docomo","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.70294,35.68451]}},{"type":"Feature","properties":{"name":"NTT Docomo","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.70307,35.68456]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[139.70322,35.68455]}},{"type":"Feature","properties":{"name":"TYO3 Tokyo Data Center","operator":"Digital Edge"},"geometry":{"type":"Point","coordinates":[139.70572,35.69784]}},{"type":"Feature","properties":{"name":"KDDI","operator":"KDDI"},"geometry":{"type":"Point","coordinates":[139.76445,35.68768]}},{"type":"Feature","properties":{"name":"KDDI","operator":""},"geometry":{"type":"Point","coordinates":[139.7506,35.70024]}},{"type":"Feature","properties":{"name":"TYO2 Tokyo Data Center","operator":"Digital Edge"},"geometry":{"type":"Point","coordinates":[139.77958,35.68755]}},{"type":"Feature","properties":{"name":"\u6771\u4eac\u7b2c6\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc","operator":"NTT\u30c9\u30b3\u30e2\u30d3\u30b8\u30cd\u30b9"},"geometry":{"type":"Point","coordinates":[139.76656,35.7395]}},{"type":"Feature","properties":{"name":"NTT\u5e02\u5ddd\u4e2d\u5c71\u30d3\u30eb","operator":"NTT\u6771\u65e5\u672c"},"geometry":{"type":"Point","coordinates":[139.94201,35.7163]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[140.03877,35.69053]}},{"type":"Feature","properties":{"name":"MC\u30c7\u30b8\u30bf\u30eb\u30fb\u30ea\u30a2\u30eb\u30c6\u30a3 NRT10","operator":"MC\u30c7\u30b8\u30bf\u30eb\u30fb\u30ea\u30a2\u30eb\u30c6\u30a3"},"geometry":{"type":"Point","coordinates":[140.12131,35.81003]}},{"type":"Feature","properties":{"name":"KDDI","operator":""},"geometry":{"type":"Point","coordinates":[130.38834,33.59253]}},{"type":"Feature","properties":{"name":"KDDI","operator":""},"geometry":{"type":"Point","coordinates":[130.42467,33.58631]}},{"type":"Feature","properties":{"name":"KDDI","operator":""},"geometry":{"type":"Point","coordinates":[130.41602,33.60039]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[130.66004,33.42293]}},{"type":"Feature","properties":{"name":"\u9ad8\u77e5\u4fe1\u7528\u91d1\u5eab\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30bb\u30f3\u30bf\u30fc","operator":"\u9ad8\u77e5\u4fe1\u7528\u91d1\u5eab"},"geometry":{"type":"Point","coordinates":[133.48791,33.50462]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[112.50114,34.63291]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[112.50257,34.63305]}},{"type":"Feature","properties":{"name":"\u9c81\u5357\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[117.34171,34.82156]}},{"type":"Feature","properties":{"name":"\u9c81\u897f\u5357\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[115.51935,35.1995]}},{"type":"Feature","properties":{"name":"\u5b8f\u6210\u96c6\u56e2\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[117.31727,35.8691]}},{"type":"Feature","properties":{"name":"\u767e\u5ea6\u4e91\u8ba1\u7b97\uff08\u9633\u6cc9\uff09\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.62182,37.85984]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[113.62277,37.85784]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[113.62134,37.85791]}},{"type":"Feature","properties":{"name":"\u7acb\u5cad\u9a7e\u9a76\u4eba\u670d\u52a1\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[117.21053,37.72505]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[117.30705,38.99757]}},{"type":"Feature","properties":{"name":"\u56fd\u5bb6\u8d85\u7ea7\u8ba1\u7b97\u5929\u6d25\u4e2d\u5fc3\uff08\u65b0\uff09","operator":""},"geometry":{"type":"Point","coordinates":[117.72023,39.04012]}},{"type":"Feature","properties":{"name":"\u56fd\u5bb6\u8d85\u7ea7\u8ba1\u7b97\u5929\u6d25\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[117.72075,39.04242]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[118.28413,34.06238]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[118.28664,34.0634]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[118.28574,34.06193]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[118.28469,34.06389]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u7535\u4fe1\u5bbf\u8fc1\u5206\u516c\u53f8\u4e91\u8ba1\u7b97\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[118.32513,33.9511]}},{"type":"Feature","properties":{"name":"\u4e34\u6c82\u534e\u4e3a\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[118.42379,35.01097]}},{"type":"Feature","properties":{"name":"\u4e34\u6c82\u534e\u4e3a\u5927\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[118.42328,35.01088]}},{"type":"Feature","properties":{"name":"\u5929\u6cb3\u8d85\u7ea7\u8ba1\u7b97\u6dee\u6d77\u5206\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[118.37697,35.19612]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[120.44172,36.11718]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u8054\u901a\u594e\u6587\u4e91\u8ba1\u7b97\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[119.12525,36.66985]}},{"type":"Feature","properties":{"name":"\u70df\u53f0\u4e2d\u91d1\u6570\u636e\u7cfb\u7edf\u6709\u9650\u516c\u53f8","operator":""},"geometry":{"type":"Point","coordinates":[121.13437,37.56426]}},{"type":"Feature","properties":{"name":"\u963f\u91cc\u5df4\u5df4\u4e4c\u5170\u5bdf\u5e03\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.24233,40.98299]}},{"type":"Feature","properties":{"name":"\u4e4c\u5170\u5bdf\u5e03\u534e\u4e3a\u4e91\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[113.23189,40.99428]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[140.11684,35.80733]}},{"type":"Feature","properties":{"name":"MC\u30c7\u30b8\u30bf\u30eb\u30fb\u30ea\u30a2\u30eb\u30c6\u30a3 NRT12","operator":"MC\u30c7\u30b8\u30bf\u30eb\u30fb\u30ea\u30a2\u30eb\u30c6\u30a3"},"geometry":{"type":"Point","coordinates":[140.11852,35.8074]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[140.11666,35.80775]}},{"type":"Feature","properties":{"name":"Equinix","operator":"Equinix"},"geometry":{"type":"Point","coordinates":[140.12614,35.807]}},{"type":"Feature","properties":{"name":"\u4e09\u83f1\u7dcf\u7814DCS","operator":""},"geometry":{"type":"Point","coordinates":[140.12126,35.80869]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[140.12158,35.80768]}},{"type":"Feature","properties":{"name":"SCSK netXDC","operator":""},"geometry":{"type":"Point","coordinates":[140.11999,35.80934]}},{"type":"Feature","properties":{"name":"Google \u5370\u897f\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc","operator":"Google"},"geometry":{"type":"Point","coordinates":[140.1325,35.81826]}},{"type":"Feature","properties":{"name":"\u96fb\u7b97","operator":"\u96fb\u7b97"},"geometry":{"type":"Point","coordinates":[138.19899,36.64455]}},{"type":"Feature","properties":{"name":"\u6771\u65e5\u672c\u96fb\u4fe1\u96fb\u8a71\u682a\u5f0f\u4f1a\u793e","operator":"\u6771\u65e5\u672c\u96fb\u4fe1\u96fb\u8a71\u682a\u5f0f\u4f1a\u793e"},"geometry":{"type":"Point","coordinates":[138.19934,36.64531]}},{"type":"Feature","properties":{"name":"\u96fb\u7b97","operator":"\u96fb\u7b97"},"geometry":{"type":"Point","coordinates":[138.18204,36.65332]}},{"type":"Feature","properties":{"name":"\u8ba1\u7b97\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[116.32214,39.95848]}},{"type":"Feature","properties":{"name":"\u4e2d\u56fd\u94f6\u884c\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[116.2633,40.03391]}},{"type":"Feature","properties":{"name":"\u6570\u5b57\u5317\u4eac","operator":""},"geometry":{"type":"Point","coordinates":[116.38178,39.99403]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[116.64112,40.31539]}},{"type":"Feature","properties":{"name":"\u5b9d\u577b\u8054\u901a","operator":""},"geometry":{"type":"Point","coordinates":[117.2684,39.6588]}},{"type":"Feature","properties":{"name":"\u5929\u6d25\u5e7f\u7535\u7f51\u7edc\u6570\u636e\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[117.28768,39.69142]}},{"type":"Feature","properties":{"name":"\u5b9d\u577b\u79fb\u52a8\u516c\u53f8","operator":""},"geometry":{"type":"Point","coordinates":[117.29298,39.68933]}},{"type":"Feature","properties":{"name":"\u5b9d\u577b\u8054\u901a","operator":""},"geometry":{"type":"Point","coordinates":[117.31731,39.72425]}},{"type":"Feature","properties":{"name":"\u5317\u4eac\u5e02\u4fe1\u606f\u5b89\u5168\u5bb9\u707e\u5907\u4efd\u4e2d\u5fc3","operator":""},"geometry":{"type":"Point","coordinates":[116.74866,40.3668]}},{"type":"Feature","properties":{"name":"\u82cf\u5c3c\u7279\u5de6\u65d7\u6863\u6848\u5c40","operator":""},"geometry":{"type":"Point","coordinates":[113.64999,43.84296]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[128.64091,34.7778]}},{"type":"Feature","properties":{"name":"\uac01 \uc138\uc885","operator":"\ub124\uc774\ubc84"},"geometry":{"type":"Point","coordinates":[127.34042,36.50815]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[128.86352,35.24998]}},{"type":"Feature","properties":{"name":"\uad6d\uac00\uc815\ubcf4\uc790\uc6d0\uad00\ub9ac\uc6d0 \ub300\uad6c\uc13c\ud130","operator":""},"geometry":{"type":"Point","coordinates":[128.70613,35.96855]}},{"type":"Feature","properties":{"name":"SK\ube0c\ub85c\ub4dc\ubc34\ub4dc IDC","operator":"SK\ube0c\ub85c\ub4dc\ubc34\ub4dc"},"geometry":{"type":"Point","coordinates":[126.88774,37.47584]}},{"type":"Feature","properties":{"name":"KR1 \uac15\ub0a8\ub370\uc774\ud130\uc13c\ud130","operator":"\uc5e0\ud53c\ub9ac\uc628 \ub514\uc9c0\ud138"},"geometry":{"type":"Point","coordinates":[127.03776,37.45809]}},{"type":"Feature","properties":{"name":"KT \uc6a9\uc0b0 IDC","operator":"KT"},"geometry":{"type":"Point","coordinates":[126.95883,37.53533]}},{"type":"Feature","properties":{"name":"\ud558\ub0a8IDC","operator":"\uc774\uc9c0\uc2a4\uc790\uc0b0\uc6b4\uc6a9"},"geometry":{"type":"Point","coordinates":[127.19505,37.55134]}},{"type":"Feature","properties":{"name":"\uc804\uc0c1\ub3d9","operator":""},"geometry":{"type":"Point","coordinates":[127.19528,37.55033]}},{"type":"Feature","properties":{"name":"IBK\uae30\uc5c5\uc740\ud589 \ud558\ub0a8\ub370\uc774\ud130\uc13c\ud130","operator":""},"geometry":{"type":"Point","coordinates":[127.19526,37.5505]}},{"type":"Feature","properties":{"name":"\ud558\ub0a8IDC","operator":"\uc774\uc9c0\uc2a4\uc790\uc0b0\uc6b4\uc6a9"},"geometry":{"type":"Point","coordinates":[127.19496,37.55125]}},{"type":"Feature","properties":{"name":"\u5bcc\u58eb\u901a","operator":"\u5bcc\u58eb\u901a"},"geometry":{"type":"Point","coordinates":[140.87722,38.26011]}},{"type":"Feature","properties":{"name":"\u60c5\u5831\u57fa\u76e4\u30bb\u30f3\u30bf\u30fc","operator":""},"geometry":{"type":"Point","coordinates":[141.1369,39.71413]}},{"type":"Feature","properties":{"name":"\u30ea\u30e2\u30fc\u30c8\u30bb\u30f3\u30b7\u30f3\u30b0\u30c7\u30fc\u30bf\u89e3\u6790\u5ba4","operator":""},"geometry":{"type":"Point","coordinates":[141.13319,39.71939]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[141.1424,39.71733]}},{"type":"Feature","properties":{"name":"\u682a\u5f0f\u4f1a\u793eI\u30fbTEC\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u30ba","operator":"\u682a\u5f0f\u4f1a\u793eI\u30fbTEC\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u30ba"},"geometry":{"type":"Point","coordinates":[141.60323,42.63479]}},{"type":"Feature","properties":{"name":"NHN","operator":"NHN"},"geometry":{"type":"Point","coordinates":[127.77358,37.88927]}},{"type":"Feature","properties":{"name":"\ub124\uc774\ubc84\ub370\uc774\ud130\uc13c\ud130 \uac01","operator":"NHN"},"geometry":{"type":"Point","coordinates":[127.77395,37.88927]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc4\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79194,33.87399]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc5\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79195,33.87365]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc3\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79193,33.87428]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc8\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79049,33.87383]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc6\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79119,33.87392]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc7\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79115,33.8744]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc1\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79276,33.874]}},{"type":"Feature","properties":{"name":"\u5317\u4e5d\u5dde\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc2\u53f7\u68df","operator":"IDC\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2"},"geometry":{"type":"Point","coordinates":[130.79275,33.87428]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[132.25559,33.78266]}},{"type":"Feature","properties":{"name":"STNet","operator":"STNet"},"geometry":{"type":"Point","coordinates":[132.77754,33.82148]}},{"type":"Feature","properties":{"name":"\u30a8\u30cd\u30b3\u30e0","operator":"\u30a8\u30cd\u30b3\u30e0"},"geometry":{"type":"Point","coordinates":[132.47587,34.40059]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[133.25569,34.4521]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[133.25568,34.45238]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[133.89838,34.6445]}},{"type":"Feature","properties":{"name":"\u30c9\u30b3\u30e2","operator":"NTT docomo"},"geometry":{"type":"Point","coordinates":[133.91805,34.6482]}},{"type":"Feature","properties":{"name":"\u307b\u304f\u3067\u3093\u60c5\u5831\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u682a\u5f0f\u4f1a\u793e","operator":"\u307b\u304f\u3067\u3093\u60c5\u5831\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u682a\u5f0f\u4f1a\u793e"},"geometry":{"type":"Point","coordinates":[141.36143,43.06176]}},{"type":"Feature","properties":{"name":"\u682a\u5f0f\u4f1a\u793e\uff28\uff22\uff21","operator":"\u682a\u5f0f\u4f1a\u793e\uff28\uff22\uff21"},"geometry":{"type":"Point","coordinates":[141.36606,43.06605]}},{"type":"Feature","properties":{"name":"NTT","operator":"NTT"},"geometry":{"type":"Point","coordinates":[133.92692,34.66323]}},{"type":"Feature","properties":{"name":"TOKAI\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30ba","operator":"TOKAI\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u30ba"},"geometry":{"type":"Point","coordinates":[133.87817,34.7262]}},{"type":"Feature","properties":{"name":"\u65e5\u7acb","operator":"\u65e5\u7acb"},"geometry":{"type":"Point","coordinates":[133.8791,34.72806]}},{"type":"Feature","properties":{"name":"\u0411\u0438\u0442\u0440\u0438\u0432\u0435\u0440 \u0420\u0443\u0441","operator":""},"geometry":{"type":"Point","coordinates":[101.71893,56.30384]}},{"type":"Feature","properties":{"name":"\u8054\u901a\u4e91\u6570\u636e\u4e2d\u5fc3\u00b7\u9f50\u9f50\u54c8\u5c14","operator":""},"geometry":{"type":"Point","coordinates":[123.94849,47.34026]}},{"type":"Feature","properties":{"name":"Data center","operator":""},"geometry":{"type":"Point","coordinates":[142.7603,46.91019]}}]} \ No newline at end of file diff --git a/css/style.css b/css/style.css index 4651ba5..d32a0a0 100644 --- a/css/style.css +++ b/css/style.css @@ -132,6 +132,8 @@ body.hud-hidden #hud-toggle { cursor: pointer; transition: all 0.15s; } +.modes.styles { margin-top: 6px; } +.modes.styles button { padding: 4px 6px; font-size: 10px; } .modes button:hover { color: var(--text); } .modes button.active { color: #04121a; diff --git a/index.html b/index.html index a56555c..839c7b5 100644 --- a/index.html +++ b/index.html @@ -23,6 +23,12 @@ +
+ + + + +
🪐 SOLARGOD diff --git a/js/layers/aircraft.js b/js/layers/aircraft.js index d8c1b9a..3878543 100644 --- a/js/layers/aircraft.js +++ b/js/layers/aircraft.js @@ -70,6 +70,7 @@ export default function create(ctx) { // the aircraft count stays stable whether or not the filter is engaged. function renderPlanes(planes) { lastPlanes = planes; // remembered so toggling the filter re-renders instantly + fixMs = Date.now(); // dead-reckoning baseline: billboards are at their fix now bc.removeAll(); let total = 0; let mil = 0; @@ -92,6 +93,8 @@ export default function create(ctx) { icao24: p.icao24, callsign: p.callsign, country: p.country, + lon: p.lon, + lat: p.lat, alt: p.alt, vel: p.vel, track: p.track, @@ -289,6 +292,28 @@ export default function create(ctx) { ui.hidePickOverlay(); } + // ---- smooth motion (Wave 4) ----------------------------------------------- + // ADS-B fixes arrive every ~90 s; without this, planes teleport per poll. + // Dead-reckon every billboard forward along its course at ~10 Hz while live + // (replay frames stay static). Stops extrapolating after 5 min of stale data. + let fixMs = 0; + let lastDrMs = 0; + viewer.scene.preRender.addEventListener(() => { + if (!isLive || !enabled || !bc.show || !fixMs) return; + const nowMs = Date.now(); + if (nowMs - lastDrMs < 100) return; + lastDrMs = nowMs; + const dt = (nowMs - fixMs) / 1000; + if (dt <= 0 || dt > 300) return; + for (let i = 0; i < bc.length; i++) { + const b = bc.get(i); + const d = b.id; + if (!d || d.lon == null || !d.vel) continue; + const p = lib.deadReckon(d.lon, d.lat, d.vel, d.track, dt); + b.position = Cesium.Cartesian3.fromDegrees(p.lon, p.lat, d.alt || 0); + } + }); + // Self-heal when the tab regains focus. A backgrounded tab kills the poll // loop (canPoll() is false, so tick() returns without rescheduling); if the // clock is also paused, onClockTick never fires again to restart it (its diff --git a/js/layers/cables.js b/js/layers/cables.js new file mode 100644 index 0000000..fc542cf --- /dev/null +++ b/js/layers/cables.js @@ -0,0 +1,94 @@ +// Submarine cables — TeleGeography routes + landing points, bundled in +// assets/cables/ (CC BY-NC-SA 3.0, © TeleGeography; see assets/README.md). +// Static context like infra.js: no time dynamics, loaded once at boot. + +export default function create(ctx) { + const { viewer, lib, ui, Cesium } = ctx; + + const ds = new Cesium.CustomDataSource('cables'); + viewer.dataSources.add(ds); + + let enabled = true; + ui.addLayer('cables', 'Submarine cables', true, (on) => { enabled = on; ds.show = on; }, 'Context'); + ui.setStatus('cables', 'loading…', 'warn'); + + const CREDIT = '

© TeleGeography — submarinecablemap.com (CC BY-NC-SA 3.0). Routes are schematic.

'; + + // Landing-point labels only appear zoomed well in; the dots a bit earlier. + const labelFade = new Cesium.NearFarScalar(2.0e5, 1.0, 1.2e6, 0.0); + const dotFade = new Cesium.NearFarScalar(1.0e6, 1.0, 8.0e6, 0.0); + + async function load() { + let cables, landings; + try { + [cables, landings] = await Promise.all([ + fetch('assets/cables/cable-geo.json').then((r) => r.json()), + fetch('assets/cables/landing-point-geo.json').then((r) => r.json()), + ]); + } catch (err) { + ui.setStatus('cables', 'failed to load bundled data', 'err'); + return; + } + + let nCables = 0; + for (const f of cables.features || []) { + const g = f.geometry; + if (!g || g.type !== 'MultiLineString') continue; + const p = f.properties || {}; + const color = lib.cz(p.color || '#5aa7d0', 0.85); + const name = p.name || 'Submarine cable'; + for (const line of g.coordinates) { + if (!Array.isArray(line) || line.length < 2) continue; + ds.entities.add({ + name: `Cable — ${name}`, + polyline: { + positions: Cesium.Cartesian3.fromDegreesArray(line.flat()), + width: 1.4, + material: color, + }, + description: `

${lib.escapeHtml(name)} — international submarine cable system.

` + CREDIT, + }); + } + nCables++; + } + + let nLandings = 0; + for (const f of landings.features || []) { + const g = f.geometry; + if (!g || g.type !== 'Point') continue; + const [lon, lat] = g.coordinates; + if (!isFinite(lon) || !isFinite(lat)) continue; + const name = (f.properties || {}).name || 'Landing point'; + ds.entities.add({ + name: `Landing — ${name}`, + position: Cesium.Cartesian3.fromDegrees(lon, lat), + point: { + pixelSize: 4, color: lib.cz('#8fd8ff'), + outlineColor: Cesium.Color.BLACK, outlineWidth: 1, + translucencyByDistance: dotFade, + disableDepthTestDistance: Number.POSITIVE_INFINITY, + }, + label: { + text: name, + font: '10px "Segoe UI", system-ui, sans-serif', + fillColor: lib.cz('#8fd8ff'), + outlineColor: Cesium.Color.fromCssColorString('#0a0f14'), + outlineWidth: 3, + style: Cesium.LabelStyle.FILL_AND_OUTLINE, + verticalOrigin: Cesium.VerticalOrigin.BOTTOM, + pixelOffset: new Cesium.Cartesian2(0, -6), + translucencyByDistance: labelFade, + disableDepthTestDistance: Number.POSITIVE_INFINITY, + }, + description: `

${lib.escapeHtml(name)} — cable landing point.

` + CREDIT, + }); + nLandings++; + } + + ds.show = enabled; + ui.setStatus('cables', `${nCables} cables · ${nLandings} landings`, 'ok'); + } + + load(); + return { id: 'cables' }; +} diff --git a/js/layers/military.js b/js/layers/military.js index 51af494..ff57802 100644 --- a/js/layers/military.js +++ b/js/layers/military.js @@ -71,6 +71,7 @@ export default function create(ctx) { } const list = Array.isArray(data && data.ac) ? data.ac : []; + fixMs = Date.now(); // dead-reckoning baseline bc.removeAll(); let count = 0; let emergencies = 0; @@ -89,6 +90,8 @@ export default function create(ctx) { id: { layer: 'military', hex: a.hex, + lon: a.lon, + lat: a.lat, callsign: (a.flight || '').trim(), type: a.t, reg: a.r, @@ -132,6 +135,25 @@ export default function create(ctx) { function clearPick() { ui.hidePickOverlay(); } + // Smooth motion between the 60 s polls (see aircraft.js) — gs is KNOTS here. + let fixMs = 0; + let lastDrMs = 0; + viewer.scene.preRender.addEventListener(() => { + if (!isLive || !enabled || !bc.show || !fixMs) return; + const nowMs = Date.now(); + if (nowMs - lastDrMs < 100) return; + lastDrMs = nowMs; + const dt = (nowMs - fixMs) / 1000; + if (dt <= 0 || dt > 300) return; + for (let i = 0; i < bc.length; i++) { + const b = bc.get(i); + const d = b.id; + if (!d || d.lon == null || !d.gs) continue; + const p = lib.deadReckon(d.lon, d.lat, d.gs * 0.51444, d.track, dt); + b.position = Cesium.Cartesian3.fromDegrees(p.lon, p.lat, (d.altFt || 0) * 0.3048); + } + }); + document.addEventListener('visibilitychange', () => { if (!document.hidden) kick(); }); kick(); diff --git a/js/lib.js b/js/lib.js index 8179c78..2731214 100644 --- a/js/lib.js +++ b/js/lib.js @@ -105,3 +105,18 @@ export function cz(hex, alpha) { export function headingToRotation(headingDeg) { return -Cesium.Math.toRadians(headingDeg || 0); } + +// Dead-reckon a fix forward along its course: equirectangular advance, good to +// well under a pixel for the few minutes between ADS-B polls (mirrors the +// open-sourced God's Eye View "smooth motion from choppy data" idea). +// ponytail: flat-earth step, swap for geodesic if we ever extrapolate >10 min. +const EARTH_R = 6371000; +export function deadReckon(lon, lat, velMps, trackDeg, dtSec) { + const d = (velMps || 0) * dtSec; + if (!d || !isFinite(d)) return { lon, lat }; + const th = (trackDeg || 0) * Math.PI / 180; + const latR = lat * Math.PI / 180; + const newLat = lat + (d * Math.cos(th) / EARTH_R) * 180 / Math.PI; + const newLon = lon + (d * Math.sin(th) / (EARTH_R * Math.max(0.05, Math.cos(latR)))) * 180 / Math.PI; + return { lon: ((newLon + 540) % 360) - 180, lat: Math.max(-89.9, Math.min(89.9, newLat)) }; +} diff --git a/js/main.js b/js/main.js index 148b08c..e3a4c33 100644 --- a/js/main.js +++ b/js/main.js @@ -23,6 +23,7 @@ import { createGeoJsonLayer } from './layers/geojson-layer.js'; import { ADSB_LAYERS } from './adsb-registry.js'; import { createAdsbLayer } from './layers/adsb-layer.js'; import initSolarSystem from './solarsystem.js'; +import * as styles from './styles.js'; const Cesium = window.Cesium; @@ -90,6 +91,9 @@ document.getElementById('live-chip').addEventListener('click', () => { viewer.clock.currentTime = clampToWindow(Cesium.JulianDate.now()); }); +// ---- sensor styles (NVG/FLIR/CRT post-process; must init before hash parse) ---- +styles.initStyles(viewer); + // ---- portal to SOLARGOD (sibling orrery) ---- // Deep-links to the solar-system app at GODSIGH's current sim moment via its // shared `#t=@` convention; the href is rebuilt fresh at click time. @@ -137,6 +141,9 @@ function applyHashState() { if (m === 'p') { setMode('photo'); state.modeApplied = true; } else if (m === 'd') { setMode('data'); state.modeApplied = true; } + const s = params.get('s'); + if (s) styles.setStyle(s); // unknown ids are ignored by setStyle + const t = params.get('t'); if (t !== null && t !== '' && Number.isFinite(Number(t))) { viewer.clock.currentTime = clampToWindow( @@ -171,7 +178,9 @@ function serializeState() { const curMs = Cesium.JulianDate.toDate(viewer.clock.currentTime).getTime(); const offset = Math.round((curMs - Date.now()) / 1000); const t = Math.abs(offset) <= CONFIG.liveThresholdSec ? 0 : offset; // 0 = live - return `#c=${lon},${lat},${height},${heading},${pitch}&m=${mode}&L=${onLayers.join(',')}&t=${t}`; + const style = styles.getStyle(); + const s = style !== 'none' ? `&s=${style}` : ''; + return `#c=${lon},${lat},${height},${heading},${pitch}&m=${mode}${s}&L=${onLayers.join(',')}&t=${t}`; } function startHashSync() { @@ -190,6 +199,7 @@ const ctx = { viewer, CONFIG, lib, ui, Cesium, start, stop, now }; const LAYER_MODULES = [ './layers/satellites.js', './layers/infra.js', + './layers/cables.js', './layers/events.js', './layers/ships.js', './layers/ais.js', diff --git a/js/registry.js b/js/registry.js index 2941c69..f512d0d 100644 --- a/js/registry.js +++ b/js/registry.js @@ -180,6 +180,46 @@ export const REGISTRY = [ status: ({ shown }) => `${shown} upcoming launches`, }, + // ─────────────────────────── Context ─────────────────────────── + // Bundled static datasets (assets/*.geojson) — OSM-derived, ODbL 1.0. + // Served locally, so refreshMs is just a token daily re-read. + { + id: 'datacenters', name: 'Datacenters (OSM)', category: 'Context', defaultOn: false, + url: 'assets/datacenters.geojson', + refreshMs: 86_400_000, + style: (f, { Cesium, lib }) => ({ + point: { pixelSize: 4, color: lib.cz('#35e0ff'), outlineColor: Cesium.Color.BLACK, outlineWidth: 1, disableDepthTestDistance: Number.POSITIVE_INFINITY }, + label: { text: f.properties.name, font: '10px "Segoe UI", system-ui, sans-serif', fillColor: lib.cz('#35e0ff'), fade: [1.5e5, 9.0e5] }, + }), + description: (f, { lib }) => { + const p = f.properties || {}; + return `` + + `` + + `
Name${lib.escapeHtml(p.name || '—')}
Operator${lib.escapeHtml(p.operator || '—')}
` + + `

© OpenStreetMap contributors (ODbL) via Open Infrastructure Map. Bundled snapshot.

`; + }, + status: ({ shown }) => `${shown} datacenters (bundled)`, + }, + + { + id: 'dams', name: 'Dams (OSM)', category: 'Context', defaultOn: false, + url: 'assets/dams.geojson', + refreshMs: 86_400_000, + style: (f, { Cesium, lib }) => ({ + point: { pixelSize: 4, color: lib.cz('#7bff9d'), outlineColor: Cesium.Color.BLACK, outlineWidth: 1, disableDepthTestDistance: Number.POSITIVE_INFINITY }, + label: { text: f.properties.name, font: '10px "Segoe UI", system-ui, sans-serif', fillColor: lib.cz('#7bff9d'), fade: [2.0e5, 1.2e6] }, + }), + description: (f, { lib }) => { + const p = f.properties || {}; + return `` + + `` + + `` + + `
Name${lib.escapeHtml(p.name || '—')}
Output${lib.escapeHtml(p.output || '—')}
Source${lib.escapeHtml(p.source || '—')}
` + + `

© OpenStreetMap contributors (ODbL) via Open Infrastructure Map. Bundled snapshot.

`; + }, + status: ({ shown }) => `${shown} dams (bundled)`, + }, + // ──────────────────── Regional — Australia ──────────────────── { id: 'rfs', name: 'NSW bushfires (RFS)', category: 'Regional — Australia', defaultOn: false, diff --git a/js/styles.js b/js/styles.js new file mode 100644 index 0000000..d657ef5 --- /dev/null +++ b/js/styles.js @@ -0,0 +1,120 @@ +// Sensor styles — full-screen GLSL post-process skins over the whole globe, +// ported (compacted) from the open-sourced God's Eye View style system. +// NVG = night vision · FLIR = Ironbow thermal ramp · CRT = phosphor console. +// Keyless and client-side: Cesium PostProcessStage, no imagery change. + +const STYLES = { + none: null, + + nvg: ` + uniform sampler2D colorTexture; + uniform float time; + in vec2 v_textureCoordinates; + float hash(vec2 p){ vec3 p3 = fract(vec3(p.xyx) * 0.1031); p3 += dot(p3, p3.yzx + 33.33); return fract((p3.x + p3.y) * p3.z); } + void main() { + vec2 uv = v_textureCoordinates; + vec3 c = texture(colorTexture, uv).rgb; + float lum = dot(c, vec3(0.299, 0.587, 0.114)); + lum = pow(lum, 0.62); // intensifier gain lifts shadows + lum += (hash(uv * 900.0 + time * 60.0) - 0.5) * 0.13; // photon noise + lum *= 0.94 + 0.06 * sin(uv.y * 800.0); // faint scanlines + float d = distance(uv, vec2(0.5)); + lum *= smoothstep(0.78, 0.42, d); // tube vignette + out_FragColor = vec4(vec3(0.06, 1.0, 0.28) * lum, 1.0); + }`, + + flir: ` + uniform sampler2D colorTexture; + uniform float time; + in vec2 v_textureCoordinates; + // Ironbow "Predator" ramp: black→purple→magenta→red→orange→yellow→white. + vec3 ironbow(float t) { + t = clamp(t, 0.0, 1.0); + float s = t * 6.0; + if (s < 1.0) return mix(vec3(0.0), vec3(0.13, 0.0, 0.30), s); + if (s < 2.0) return mix(vec3(0.13, 0.0, 0.30), vec3(0.49, 0.0, 0.45), s - 1.0); + if (s < 3.0) return mix(vec3(0.49, 0.0, 0.45), vec3(0.86, 0.10, 0.18), s - 2.0); + if (s < 4.0) return mix(vec3(0.86, 0.10, 0.18), vec3(1.0, 0.55, 0.0), s - 3.0); + if (s < 5.0) return mix(vec3(1.0, 0.55, 0.0), vec3(1.0, 0.91, 0.32), s - 4.0); + return mix(vec3(1.0, 0.91, 0.32), vec3(1.0), s - 5.0); + } + float hash(vec2 p){ vec3 p3 = fract(vec3(p.xyx) * 0.1031); p3 += dot(p3, p3.yzx + 33.33); return fract((p3.x + p3.y) * p3.z); } + void main() { + vec2 uv = v_textureCoordinates; + // Sensor pixelation grid. + vec2 grid = floor(uv * vec2(640.0, 360.0)) / vec2(640.0, 360.0); + vec3 c = texture(colorTexture, grid).rgb; + float t = dot(c, vec3(0.299, 0.587, 0.114)); + t = clamp((t - 0.08) * 1.5, 0.0, 1.0); // stretch the "temperature" range + t += (hash(grid * 700.0 + time * 30.0) - 0.5) * 0.05; // thermal noise + out_FragColor = vec4(ironbow(t), 1.0); + }`, + + crt: ` + uniform sampler2D colorTexture; + uniform float time; + in vec2 v_textureCoordinates; + void main() { + vec2 uv = v_textureCoordinates - 0.5; + uv *= 1.0 + 0.12 * dot(uv, uv); // barrel distortion + uv += 0.5; + if (uv.x < 0.0 || uv.x > 1.0 || uv.y < 0.0 || uv.y > 1.0) { out_FragColor = vec4(0.0, 0.0, 0.0, 1.0); return; } + // Chromatic aberration at the edges. + float ab = 0.0015 * distance(uv, vec2(0.5)) * 4.0; + vec3 c = vec3( + texture(colorTexture, uv + vec2(ab, 0.0)).r, + texture(colorTexture, uv).g, + texture(colorTexture, uv - vec2(ab, 0.0)).b); + c *= 0.82 + 0.18 * sin(uv.y * 1200.0); // scanlines + c *= 0.97 + 0.03 * sin(time * 90.0); // flicker + c = mix(c, vec3(0.1, 0.85, 0.45) * dot(c, vec3(0.333)), 0.35); // phosphor cast + float d = distance(uv, vec2(0.5)); + c *= smoothstep(0.85, 0.45, d); // vignette + out_FragColor = vec4(c, 1.0); + }`, +}; + +let viewer = null; +let activeId = 'none'; +let activeStage = null; + +export function initStyles(v) { + viewer = v; + viewer.scene.preUpdate.addEventListener(() => { + if (activeStage) activeStage.uniforms.time = performance.now() / 1000; + }); + + for (const id of Object.keys(STYLES)) { + const btn = document.getElementById(`style-${id}`); + if (btn) btn.addEventListener('click', () => setStyle(id)); + } + // Keyboard 1–4, matching the upstream project's style hotkeys. + const keys = Object.keys(STYLES); + document.addEventListener('keydown', (e) => { + if (e.target && /INPUT|TEXTAREA/.test(e.target.tagName)) return; + const i = Number(e.key) - 1; + if (i >= 0 && i < keys.length) setStyle(keys[i]); + }); +} + +export function setStyle(id) { + if (!viewer || !(id in STYLES) || id === activeId) return; + if (activeStage) { + viewer.scene.postProcessStages.remove(activeStage); // remove() also destroys + activeStage = null; + } + if (STYLES[id]) { + activeStage = viewer.scene.postProcessStages.add(new window.Cesium.PostProcessStage({ + fragmentShader: STYLES[id], + uniforms: { time: 0.0 }, + })); + } + activeId = id; + for (const k of Object.keys(STYLES)) { + document.getElementById(`style-${k}`)?.classList.toggle('active', k === id); + } +} + +export function getStyle() { + return activeId; +}