Skip to content
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
13 changes: 6 additions & 7 deletions ssg/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 4 additions & 0 deletions ssg/content/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file modified ssg/static/longest_line_2.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ssg/static/longest_line_3.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion website/src/Home.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
}

const upperLatitudeBound = 85;
const lowerLatitudeBound = -75;
const lowerLatitudeBound = -80;

const worldSize = 512 * 2 ** zoom;
const mercatorYOffset = viewportHeight / 2 / worldSize;
Expand Down
30 changes: 15 additions & 15 deletions website/src/TopLines.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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',
),
];
</script>

Expand Down