DEV Community

Ido Green
Ido Green

Posted on • Originally published at greenido.wordpress.com on

The Everest Challenge on Wheels – Finding the Best Climbs for Everesting on Your Bike

Everesting is fiendishly simple: Pick any hill, anywhere in the world, and complete repeats of it in a single activity until you climb 8,848m – the equivalent height of Mt Everest.

The Everest Challenge, initially popularized by mountaineers, has now extended its allure to cycling. “Everesting” on your bike involves the formidable task of climbing the equivalent elevation gain of Mount Everest, a staggering 8,848 meters (29,029 feet), in a single ride. To conquer this extraordinary feat, selecting the best climbs becomes paramount.

In this blog post, we will explore the key factors to consider when searching for the best climbs to Everest on your bike. As a bonus, you can use the script below to search Strava for the best hills in your area.

“fiendishly simple, yet brutally hard.

Everesting is the most difficult climbing challenge in the world.”

Research and Elevation Gain

Thorough research is vital before embarking on your Everest Challenge. Identify potential climbs in your region that offer significant elevation gain. Look for routes with sustained climbs and gradients that will allow you to accumulate the required ascent in minimum loops.

This script will help you find the best routes in terms of gradient and length:

/**
 * Get from Strava segments in an area to check for the optimal one for eversting challange 🌋
 * 
 * @author @greenido
 * @update May 2020
 * 
 * @see
 * 🏉 API: https://www.strava.com/settings/api
 *  
 * 🦊 Get long/lat on map: https://www.latlong.net/ or just google maps
 * 
 * 🏇🏽 Strava segment view: https://www.strava.com/segments/838277
 * 
 * 🏄🏼‍♂️ The challange calculator and rules:
 * https://everesting.cc/
 * https://everesting.cc/the-rules/
 * 
 */
const fs = require('fs');
const strava = require('strava-v3');

/**
 * An Area near Palo Alto / Mountain View: 37.227467, -122.252343 , 37.392468, -122.147393
 * 
 * Sunborn: '37.223952, -122.082204 , 37.247273, -122.050983
 * Castel Rock: 37.210512, -122.155736 , 37.260993, -122.088351
 * Fremont Older: 37.274807, -122.082686 , 37.305592, -122.046764
 * Windy Hill: 37.342399, -122.248591 , 37.375964, -122.210654
 * Huddart Park: 37.426549, -122.313672 , 37.456754, -122.282049
 * El Corte de Madera Creek: 37.380227, -122.335745 , 37.419812, -122.294035
 * MtDiablo: 37.827981, -122.003592 , 37.924660, -121.866957
 * Joaquin Miller Park: 37.796745, -122.203074 , 37.838225, -122.140281
 * Golden Gate Park: 37.818253, -122.571099 , 37.898337, -122.478872
 * MtTam: 37.868871, -122.637926 , 37.947287, -122.564110
 */

 const areasObj = {
  // "Sunborn": [37.223952, -122.082204 , 37.247273, -122.050983] ,
  // "CastelRock": [37.210512, -122.155736 , 37.260993, -122.088351] ,
  // "FremontOlder": [37.274807, -122.082686 , 37.305592, -122.046764] ,
  // "WindyHill": [37.342399, -122.248591 , 37.375964, -122.210654] ,
  // "HuddartPark": [37.426549, -122.313672 , 37.456754, -122.282049] ,
  // "ElCortedeMaderaCreek": [37.380227, -122.335745 , 37.419812, -122.294035] ,
  // "MtDiablo": [37.827981, -122.003592 , 37.924660, -121.866957] ,
  // "JoaquinMillerPark": [37.796745, -122.203074 , 37.838225, -122.140281] ,
  // "GoldenGatePark": [37.818253, -122.571099 , 37.898337, -122.478872] ,
  // "MtTam": [37.868871, -122.637926 , 37.947287, -122.564110]
  "Old La Honda Area": [37.369504, -122.261283 , 37.398757, -122.237941]
 }

 const areasArray = Object.entries(areasObj);

 //
 //
 //
async function fetchSegments(strava, parkName, geoPoint, csvStr) {
  strava.segments.explore({
    access_token: "TODO-PUT-YOUR-TOKEN",
    bounds:  geoPoint,
    activity_type: 'riding' //  running
  }, function (err, payload) {
    if (!err) {
      const areaName = parkName;
      console.log('=================== 🥎 ======================');
      for (let i = 0; i < payload.segments.length; i++) {
        const segment = payload.segments[i];
        let segmentName = segment.name.replace(","," ");
        let tmpStr = segment.id + " , " + segmentName + " , " + segment.climb_category + " , " + segment.distance + " , " +
              segment.elev_difference + " , " + (segment.elev_difference / segment.distance * 100).toFixed(3) + "% , " + areaName + " \n"; 
        csvStr += tmpStr;
      }
      console.log(csvStr);
      fs.writeFileSync("./data/" + areaName + ".csv", csvStr);
    } else {
      console.log("ERR: " + err);
      //console.log(err)
      process.exit(1);
    }
  });
} 

let csvStr = "id , name , climb_category , distance , elevation difference , RATIO , Area \n";
for (const [parkName, geoPoint] of areasArray) {
  console.log(`🍌 Working on ${parkName}: ${geoPoint} `);
  fetchSegments(strava, parkName, geoPoint.toString(), csvStr);
}
Enter fullscreen mode Exit fullscreen mode

Climbing Difficulty and Gradient

Evaluate the difficulty level and gradient of the climbs you are considering. Steep slopes may provide more elevation gain in a shorter distance but can be physically demanding. Since it’s an effort of a day (more or less), you want to make sure you can climb it with ~75% of your FTP (or less if you need to be in better shape).

Balancing gradient with your own fitness level and climbing abilities is crucial. Gradual ascents, while requiring more distance, can offer a more sustainable pace and reduce the risk of burnout during your Everesting attempt.

Another important aspect is to make sure there aren’t sharp turns. That will slow you down on the downhill and cause you to lose time.

Traffic and Safety

Ensure the climbs you choose prioritize cyclist safety. Consider roads with less vehicular traffic or those that are cyclist-friendly. Look for routes with wider shoulders, designated bike lanes, or less-traveled roads to minimize the risk of accidents.

It is always best to ask locals about the path you are evaluating.

Accessibility and Support

Evaluate the accessibility and support available on your chosen climbs. Consider factors like proximity to your home/hotel, parking availability, and access to water and restrooms.

Accessibility becomes crucial during long rides, as you must refuel and replenish supplies periodically. Planning your Everesting route around easily accessible climbs can help ensure a smoother experience.

Try to create a feeding station in your car and park it at the climb’s bottom (or the top). That will allow you to drink/eat without wasting time and energy during the challenge.

Weather Considerations

Be mindful of weather patterns in the area where you plan to Everesting. Extreme heat, cold, snow, rain, or strong winds can significantly impact your ride and overall experience.

Research historical weather data for the climbs you are considering and choose a good season for your attempt.

You should also check the sunrise and sunset times to maximize the riding time with light. It’s better to start in the dark and finish while enjoying the sunset.

Here is an example to the best climbs in the Bay Area:

Conclusion

Everesting on your bike is an extraordinary endeavor that demands meticulous planning and strategically choosing climbs.

By conducting thorough research and assessing the difficulty, safety, accessibility, and scenic beauty of potential climbs, you can optimize your chances of a successful and rewarding Everesting experience. The Everest Challenge is not merely about conquering elevation gain—it’s about embracing the adventure, pushing your limits, and immersing yourself in the moment.

Happy Everesting!

Keep your simple on your face.

It will make it easy(er).

Top comments (0)