diff --git a/ssg/content/_index.md b/ssg/content/_index.md index 410bc6e..cb28a86 100644 --- a/ssg/content/_index.md +++ b/ssg/content/_index.md @@ -12,16 +12,15 @@ Based on the method we detail [here](/faq/), we present the greatest view of all Longest lines of sight tend to group together around peaks and ridges. So the following are more of our own curated list rather than the technically correct runners up. We chose them based on being in notably different regions of the world. -## [2. Telkik Shan to Kongur Tagh (507km) ↗](https://map.alltheviews.world/longest/80.29535675048828_36.52555465698242) -![Second Longest Line Of Site](/longest_line_2.webp 'The second longest line of sight, at 507km, between the Telkik Shan and Kongur Tah') +## [2. Antioquia to Pico Cristobal (504km) ↗](https://map.alltheviews.world/longest/-75.72223663330078_6.75514030456543) +![Second Longest Line Of Site](/longest_line_2.webp 'The second longest line of sight, at 504km, from Antioquia to Pico Crostobal in Colombia') -Another long line of sight in the Himalays, over the Tarim Basin and Tibetan Plateau. With such tall mountain -ranges on either side, they're everywhere! +Now we go right to the other side of the world to Colombia in South America. We've found a line of sight from the department of Antioquia to Pico Cristobal, Colombia's highest mountain. -## [3. Antioquia to Pico Cristobal (504km) ↗](https://map.alltheviews.world/longest/-75.72223663330078_6.75514030456543) -![Third Longest Line Of Site](/longest_line_3.webp 'The third longest line of sight, at 504km, from Antioquia to Pico Crostobal in Colombia') +## [3. Mount Elbrus to the Pontic Mountains (483km) ↗](https://map.alltheviews.world/longest/42.43996810913086_43.34897232055664) +![Third Longest Line Of Site](/longest_line_3.webp 'The third longest line of sight, at 483km, from Mount Elbrus in Russia to the Pontic Mountains in Turkey') -Now we go right to the other side of the world to Colombia in South America. We've found a line of sight from the department of Antioquia to Pico Cristobal, Colombia's highest mountain. +Our pick for the third greatest view is from Mount Elbrus in Russia to the Pontic Moutains in Turkey. Notably Russia does not share a land border with Turkey, so it's interesting that you can still see one from the other. ## Explore For Yourself diff --git a/ssg/content/faq.md b/ssg/content/faq.md index 0ad45ad..ba9f096 100644 --- a/ssg/content/faq.md +++ b/ssg/content/faq.md @@ -28,6 +28,10 @@ Yes. [The core algorithm](https://github.com/AllTheLines/CacheTVS). [The pipelin The sea actually has above average visibility, due to it generally not being blocked by hills and mountains. As such it can generate some often interesting and sometimes beautiful heatmaps, like around [the islands of South Korea](https://map.alltheviews.world/longest/126.9141495423105_33.956726689880966). +## What Is The Longest View From Mount Everest? + +[It is 453.3km, looking South to the peaks of Parasnath in India](https://map.alltheviews.world/longest/86.92073822021484_27.988929748535156). Even though Mount Everest is the tallest mountain on Earth, its longest view is nearly 100km shorter than the world's longest. + ## How Do I Contact You? 💌 hello@alltheviews.world diff --git a/ssg/static/longest_line_2.webp b/ssg/static/longest_line_2.webp index 84b3f56..6842332 100644 Binary files a/ssg/static/longest_line_2.webp and b/ssg/static/longest_line_2.webp differ diff --git a/ssg/static/longest_line_3.webp b/ssg/static/longest_line_3.webp index 6842332..3c2a86a 100644 Binary files a/ssg/static/longest_line_3.webp and b/ssg/static/longest_line_3.webp differ diff --git a/website/src/Home.svelte b/website/src/Home.svelte index bd46063..3ff7be1 100644 --- a/website/src/Home.svelte +++ b/website/src/Home.svelte @@ -80,7 +80,7 @@ } const upperLatitudeBound = 85; - const lowerLatitudeBound = -75; + const lowerLatitudeBound = -80; const worldSize = 512 * 2 ** zoom; const mercatorYOffset = viewportHeight / 2 / worldSize; diff --git a/website/src/TopLines.svelte b/website/src/TopLines.svelte index a62a01e..c004d5f 100644 --- a/website/src/TopLines.svelte +++ b/website/src/TopLines.svelte @@ -11,26 +11,11 @@ 530.8 * 1000, '🇨🇳🇰🇬 Hindu Kush/Pik Dankova', ), - new LongestLineH3( - new LngLat(80.29535675048828, 36.52555465698242), - 506.8 * 1000, - '🇨🇳 Telkik Shan/Kongur Tagh', - ), new LongestLineH3( new LngLat(-75.72223663330078, 6.75514030456543), 504.1 * 1000, '🇨🇴 Antioquia/Pico Cristobal', ), - new LongestLineH3( - new LngLat(78.37439727783203, 36.64704895019531), - 494.0 * 1000, - '🇨🇳🇰🇬 Kunlun/Nochnaya Babochka', - ), - new LongestLineH3( - new LngLat(76.53218078613281, 36.620765686035156), - 488.2 * 1000, - '🇨🇳 Hindu Kush/Tian Shan', - ), new LongestLineH3( new LngLat(42.43996810913086, 43.34897232055664), 483.1 * 1000, @@ -56,6 +41,21 @@ 470.1 * 1000, '🇵🇰🇺🇿 Noshaq/Aghbai Kalon', ), + new LongestLineH3( + new LngLat(162.6785430908203, -78.0618667602539), + 463.8 * 1000, + '🇦🇶 Antarctica', + ), + new LongestLineH3( + new LngLat(46.122562408447266, 42.21756362915039), + 462.9 * 1000, + '🇷🇺🇮🇷 Balakuri/Sabalan', + ), + new LongestLineH3( + new LngLat(146.864501953125, -6.220884323120117), + 451.6 * 1000, + '🇵🇬 Kotewon/Suckling', + ), ];