Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/update-gpx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libgeos-dev libproj-dev

- name: Install dependencies
run: pip install requests beautifulsoup4 cartopy matplotlib
run: pip install -r requirements.txt

- name: Run update script
run: python scripts/update_gpx.py --url "${{ vars.NAMING_URL }}"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Mapping Tezos protocol names on the globe
* => no clear list for those AFAIK.

* *cities* for protocols testnets and protocols applied on mainnet
* => cf. https://tezos.gitlab.io/protocols/naming.html
* => cf. https://octez.tezos.com/docs/protocols/naming.html
* can be mapped :-)
8 changes: 7 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<style>
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
#map { height: 100vh; width: 100%; }
#title { height: 36px; display: flex; align-items: center; padding: 0 14px; background: #1a1a2e; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.3px; }
#title span { opacity: 0.6; margin-left: 8px; font-weight: 400; }
#map { height: calc(100vh - 36px); width: 100%; }
.legend { background: white; padding: 8px 12px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.3); line-height: 1.6; font-size: 13px; }
.legend i { width: 12px; height: 12px; display: inline-block; margin-right: 6px; border-radius: 50%; vertical-align: middle; }
.legend .line { width: 20px; height: 0; border-top: 2px dashed #888; display: inline-block; margin-right: 6px; vertical-align: middle; }
</style>
</head>
<body>
<div id="title">Tezos Protocol Cities</div>
<div id="map"></div>
<script>
(function () {
Expand Down Expand Up @@ -52,6 +55,9 @@
return a.number - b.number;
});

document.getElementById("title").innerHTML =
"Tezos Protocol Cities" + "<span>\u2014 " + entries.length + " protocols</span>";
Comment on lines +58 to +59

var trailCoords = [];

entries.forEach(function (d) {
Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
requests>=2.31,<3
beautifulsoup4>=4.12,<5
cartopy>=0.22,<1
matplotlib>=3.8,<4