Getting started Registration for the Mountaineering and Climbing Instructor qualification is an application process and you need to meet the following prerequisites: As with all Mountain Training qualifications, these are the minimum requirements. As a general indication, the logged experience should be a representative sample rather than a candidate’s total experience. Candidates who have only the bare minimum of experience will find the training and assessment less worthwhile than candidates who have a broader and more extensive mountaineering background. The Mountaineering and Climbing Instructor scheme is UK and Ireland orientated and the experience recorded should reflect this. While experience gained trekking or climbing in the High Atlas Mountains, for example, is undoubtedly valuable, it is not necessarily the most appropriate experience for the scheme. The Board is looking for both depth and breadth of experience since candidates who have only the minimum experience are unlikely to benefit fully from either the training or assessment course. If you can meet all of the above requirements, here's what to do next: Please note it can take up to 30 days for your registration to be reviewed. You will be notified by email by Mountain Training with the result of your application. Applications with less than the minimum experience cannot be approved. The registration fee is non-refundable. However, if your application is not successful, you will receive feedback on how best to fulfil the experience requirements and your registration application will be held open for six months, during which you can submit an updated record at no extra cost. Do you have a physical or mental impairment or disability which may require a provider to make reasonable adjustments so that you can take part in a training or assessment course? Find out more. If this doesn't sound like the right qualification for you, consider the following: You could also read through our 'Which scheme is right for me?' page. Training course bookings must not be made until your Mountaineering and Climbing Instructor registration application has been approved by Mountain Training. There are three providers of Mountaineering and Climbing Instructor training: Glenmore Lodge, Plas y Brenin and Tollymore. Courses are delivered in a continuous nine-day block. At the end of the training course feedback and advice on consolidation will be given individually. In order to assist this process candidates must present a completed logbook at the start of the course. The training course includes knowledge and skills not assessed on the final course. For this reason there is no exemption from training. How to get the most out of your MCI training This document can be used during or shortly after your training course to help you identify areas of the syllabus that may require attention. "; $(modalBox).insertBefore("body"); $("#divDownloadModal").dialog({ autoOpen: false, resizable: false, draggable: true, width: 415, modal: true, title: "Register to Receive Access", dialogClass: "ui-download-modal", buttons: [ { text: "Download", class: "download-download-button", click: function () { var fileId = $("#hdnDownloadID").val(); var company = $("#divDownloadModal .company").val(); var jobTitle = $("#divDownloadModal .job-title").val(); var title = $("#divDownloadModal .title").val(); var fName = $("#divDownloadModal .first-name").val(); var lName = $("#divDownloadModal .last-name").val(); var email = $("#divDownloadModal .email-address").val(); var tel = $("#divDownloadModal .telephone").val(); var postCode = $("#divDownloadModal .postcode").val(); if (IsDownloadFormStringEmpty(company)) { jAlert("Company Required"); } else if (IsDownloadFormStringEmpty(jobTitle)) { jAlert("Job Title Required"); } else if (IsDownloadFormStringEmpty(fName)) { jAlert("First Name Required"); } else if (IsDownloadFormStringEmpty(lName)) { jAlert("Last Name Required"); } else if (IsDownloadFormStringEmpty(email)) { jAlert("Email Required"); } else if (!ValidateDownloadFormEmail(email)) { jAlert("Email Invalid"); } else if (IsDownloadFormStringEmpty(tel)) { jAlert("Telephone Required"); } else if (!ValidateDownloadFormPhone(tel)) { jAlert("Telephone Invalid"); } else if (IsDownloadFormStringEmpty(postCode)) { jAlert("Postcode / ZIP Required"); } else { company = company.replace(/'/gi, '`'); jobTitle = jobTitle.replace(/'/gi, '`'); title = title.replace(/'/gi, '`'); fName = fName.replace(/'/gi, '`'); lName = lName.replace(/'/gi, '`'); email = email.replace(/'/gi, '`'); tel = tel.replace(/'/gi, '`'); postCode = postCode.replace(/'/gi, '`'); var country = $("#divDownloadModal .country").val().replace(/'/gi, '`'); var message = $("#divDownloadModal .comments").val().replace(/'/gi, '`'); $.ajax({ type: "POST", url: "/Download.aspx/SaveDownloadFormCustomer", data: '{companyName: "' + company + '", jobTitle: "' + jobTitle + '", title: "' + title + '", forename: "' + fName + '", surname: "' + lName + '", email: "' + email + '", telephone: "' + tel + '", postcode: "' + postCode + '", message: "' + message + '", country: "' + country + '" }', contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { SaveDownloadFormCookie(msg.d); downloadCustomerId = msg.d; window.location.href = "/download.aspx?f=" + fileId; $("#divDownloadModal").remove(); }, failure: function(response) { console.log(response.d); } }); } } }, { text: "Skip Form", class: 'download-skip-button', click: function () { var dID = $("#hdnDownloadID").val(); if(typeof window.recordUserInteraction == 'function'){recordUserInteraction('File Download','1493');} window.location.href = "/download.aspx?f=" + dID; $(this).remove(); }, }, { text: "Cancel", class: "download-cancel-button", click : function () { $(this).remove(); } } ], close: function () { $(this).remove(); } }).parent().css({position : "fixed"}).end().dialog("open"); $(".ui-widget-overlay").css("z-index","9998"); $(".ui-download-modal").css('z-index', 9999); var skip = false; if(!skip) { $(".download-skip-button").remove(); } } function ValidateDownloadFormEmail(emailAddress) { var filter = new RegExp("[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?"); if (!filter.test(emailAddress)) { return false; } return true; } function IsDownloadFormStringEmpty(tempString) { return (tempString == null || tempString == undefined || tempString.length < 1); } function ValidateDownloadFormPhone(number) { var match = number.match(/^\+?[\d\s]+\(?[\d\s]{10,}$/); return (match != null); } function DoRequiredWorkLink(fileId, title) { $("#hdnDownloadTitle").val(title); if (!IsDownloadFormStringEmpty(downloadCustomerId)) { ShowMasterLoading(); $.ajax({ type: "POST", url: "/Download.aspx/SetDownloadCustomerId", data: '{customerId: "' + downloadCustomerId + '" }', contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { window.location.href = '/download.aspx?f=' + fileId; MasterPostbackComplete(); }, failure: function(response) { console.log(response.d); } }); } else { createDownloadModal(); $("#hdnDownloadID").val(fileId); } } function SaveDownloadFormCookie(customerDownloadID) { var exdate=new Date(); var expiredays=90; var c_name="blahCMSDownloadFormId" exdate.setDate(exdate.getDate()+expiredays); document.cookie=c_name+ "=" +escape(customerDownloadID)+ ((expiredays==null) ? "" : ";expires="+exdate.toUTCString()); } Rock climbing experience at registration
Mountaineering and Climbing Instructor candidate handbook
Do you have additional needs?
Not quite right?
Use the Skills Checklist
" + "
" + "*Company " + "*Job Title " + "*Title " + "*First Name " + "*Last Name " + "*Email " + "*Telephone " + "*Postcode / ZIP " + "Country " + "Additional Comments Mountaineering and Climbing Instructor Skills Checklist
The Syllabus
Mountaineering and Climbing Instructors should be competent in the following key areas.
- Personal summer mountaineering
- Summer mountaineering instruction
- Rock climbing instruction
- Problem solving and rescue skills
- National awards and local accreditation schemes
- The mountain environment
- Development and history of mountaineering
- Assessment of risk and its application
Detailed information on each of the above topics can be found in the Mountaineering and Climbing Instructor candidate handbook and the onus is on you to be competent in all of them by the time you come to assessment.
ConsolidationThe period between training and assessment (often referred to as the consolidation period) varies in length for each person. The Mountaineering and Climbing Instructor syllabus is extensive and you should make every effort to develop your skills, paying particular attention to any weaknesses identified during the training course. We have carried out some research into candidates' preparation for Mountaineering and Climbing Instructor assessment in an effort to identify what helps candidates be successful. A summary and the full report can be found here: Preparing for your assessment - research results. (The research was carried out prior to the qualification name change.) Rock Climbing has been written specifically for people working their way through Mountain Training's climbing schemes and it's packed with colourful diagrams, photographs and simple language. It covers the full spectrum of modern climbing practice including movement skills, knots, bouldering, sport, trad and indoor climbing as well as risk management and problem solving. AMI supports trainee and qualified Mountaineering and Climbing Instructors and offers a range of workshops to assist with their development as well as a quarterly magazine, gear deals/discounts and an insurance deal. After you have completed Mountaineering and Climbing Instructor training you will be invited to join AMI as an trainee member for free until the end of the membership year (31st March). Join now Created by the Met Office for Mountain Training, this free module is packed full of useful information about weather systems, forecasts and how to use this information as a leader to plan your journey. The module takes approximately 1 hour to complete and is available to anyone who has registered on one of our schemes. These three modules are free for members of the Mountain Training Association - they have been developed in partnership with Paul Gannon, author of the Rock Trails series of books. Mountain building Mountain landscapes and rock types Mountain destruction Assessments are run by either Glenmore Lodge, Plas y Brenin or Tollymore.The Book - Rock Climbing
Association of Mountaineering Instructors
E-learning
E-learning modules can be accessed through the 'Awards & Training' tab of your CMS account.Mountain weather
Geology
This module covers a basic understanding of mountain building and plate tectonics.
This module covers a basic understanding of various rock types and how they appear in the landscape.
This module explores the ways in which weathering and erosion slowly dismantle mountain ranges and should help you spot signs of the on-going processes of mountain destruction.
The Mountaineering and Climbing Instructor assessment is 5 days long.
FAQs
How do you become a certified alpinist? ›
- Gain experience. Before pursuing your certification, it's beneficial to gain initial climbing and mountaineering experience. ...
- Select a certification. ...
- Choose a climbing association. ...
- Take the courses. ...
- Pass the exam.
Mountaineering, or mountain climbing, is the sport of reaching, or trying to reach, high points in mountainous areas, mainly for the joy and thrill of the climb. The sport involves intense physical activity. It includes hiking, rock climbing, and traversing slopes covered with ice and snow.
How much do people get paid to climb? ›The average salary for a tower climber in the United States is $41,248. Tower climber salaries typically range between $28,000 and $59,000 a year. The average hourly rate for tower climbers is $19.83 per hour.
How much do climbers make? ›The best professional climbers can earn as much as $300,000 per year, although most get paid less than $10,000 per year. The range of professional climber's salaries varies greatly.
Can mountaineering be a career? ›Mountaineering As A Career Option
However, scientific advancements have changed this industry and made it a viable career option that is both respected and well-paid. Mountaineers live a vibrant and fierce lifestyle, and a career in this field is a mountain lover's dream come true.
- Step 1: Getting into the outdoors. Chances are you're probably well on your way to being a competent outdoors person. ...
- Step 2: Take a course. ...
- Step 3: Find partners. ...
- Step 4: Get the gear. ...
- Step 5: Get out there and practice your skills.
Hire a guide or take a class: A qualified guide will lead the way and teach you essential skills for climbing a mountain. If you want to go without a guide, first sign up for a class (or several) to learn how to travel on snow and glaciers, how to use an ice axe and how to rescue a fallen climber from a crevasse.
How do you make money from mountaineering? ›You can be at the front desk or teaching other people who want to learn climbing skills. Being a climbing gym employee will allow you to earn a decent amount of money. However, if you want higher pay, then you can transition to more advanced mountaineering jobs such as teaching climbing courses or even route settings.
How do you get paid for mountaineering? ›Sponsorships are the main way that professional climbers get paid. Other income can come from public speaking events, guiding, or books/movies. Unfortunately for the sport, there isn't really a climbing 'league' in the way that you have organizations like the MLB, NBA, and NHL to pay their athletes.
What is the difference between alpinist and mountaineer? ›So, what's the difference between mountaineering and alpinism? Mountaineers will ascend and descend a mountain several times to acclimatize, whereas alpinists traditionally climb the mountain in one continuous 'push'.
What is Class 5 mountaineering? ›
Class 5: Where rock climbing begins in earnest. Climbing involves the use of a rope, belaying, and protection (natural or artificial) to protect the leader from a long fall. Fifth class is further defined by a decimal and letter system – in increasing and difficulty.
What is mountain climbing as a hobby called? ›mountaineering, also called mountain climbing, the sport of attaining, or attempting to attain, high points in mountainous regions, mainly for the pleasure of the climb.
What do you call a person who climbs mountains? ›mountaineer. noun. moun·tain·eer ˌmau̇nt-ᵊn-ˈi(ə)r. : a person who lives in the mountains. : a mountain climber.
Can you make a living as a climber? ›The website comparably.com suggests a yearly income of between 26k and 35k for climbing guides in the US. Some people can make that work. For an average rock climbing guide, this works out at around one hundred dollars per day. To make more money as a climbing guide, you'll need something that helps you stand out.
What is the highest paying occupation? ›OCCUPATION | 2021 MEDIAN PAY |
---|---|
Airline pilots, copilots, and flight engineers | $202,180 per year |
Anesthesiologists | Equal to or greater than $208,000 per year |
Cardiologists | Equal to or greater than $208,000 per year |
Dermatologists | Equal to or greater than $208,000 per year |
A successful operation, depending on its size, will have up to 1,000 members and earn up to $650,000 in gross revenues per year. After facility expenses and paying employees' salaries, the owner of such a business could earn around $250,000 in gross profits before taxes.
What do mountaineers do for a living? ›Explore to find what Mountaineers do, how they do it and how to become one. Mountaineers are involved in climbing, hiking, snow trekking and camping on mountains.
Is Rock Climbing a career? ›There are a variety of careers and jobs available in the climbing, trekking, backpacking and mountaineering industries. Manufacturers are comprised of companies who distribute and or manufacture outdoor apparel, gear, equipment, gear and accessories.
Are mountain climbers worth doing? ›They are incredibly efficient.
As a compound exercise, mountain climbers work multiple muscle groups and joints at the same time. In other words, they deliver serious “bang for your buck,” targeting core muscles, such as back, hips, and abs, as well as glutes, leg muscles, and even your shoulders.
Yes, you can start climbing at age 30 and 40 and still become a pretty good climber. In rock climbing, each route is graded, so you start out easy and progress to more challenging routes. I know of many climbers who started late and were able to improve fast. Can you start Climbing in your 50s and 60s?
Am I too old to start mountaineering? ›
Definitely keep going. Keep being consistent. Keep doing the training, it's gonna benefit you for your entire life if you keep on going. And it's much easier to continue into your 40s and 50s than to start in your 40s and 50s.
How long does it take to learn mountaineering? ›If you are just starting out, it takes about 3 years of hard practice indoors and outdoors to get to this skill level. It's not only about the skill level, but the ease with which you use your skills. You can't just learn how to climb today and tackle mountains like the Matterhorn tomorrow.
Do you have to be good at rock climbing to mountaineer? ›You don't need to be a master rock climber to be a mountaineer, but you need to acquire skills such as using a harness, tying a rope, belaying, and rappelling. You can learn these by spending a few days at a climbing gym or by taking a mountaineering class.
What are the hazards of mountaineering? ›In terms of objective hazards, the dangers mountaineers face include loose or falling rocks, falling ice, snow-avalanches, the climber falling, falls from ice slopes, falls down snow slopes, falls into crevasses, and the dangers from altitude and weather.
What is the mindset of a mountaineer? ›Everybody sees the summit, but not everybody sees the mountain. his/her safety and success. Having a mountain mindset is willing to walk into an adventure while keeping your eyes open for possibilities, bifurcations and new experiences.
Can you make a living as a mountain guide? ›Mountain Guides in America make an average salary of $47,584 per year or $23 per hour. The top 10 percent makes over $187,000 per year, while the bottom 10 percent under $12,000 per year.
Can you start mountaineering in your 40s? ›There are no limits to learn and start anything. You can start mountaineering at any age of your life.
Can I just do mountain climbers? ›The mountain climber is a simple enough exercise to perform, requires no equipment, and is great for working your core and building upper body strength. Simply start in a plank position, and then alternate driving your knees up towards your chest.
What are at least 2 advantages of mountaineering? ›IMPROVED PHYSICAL FITNESS
It requires strength, endurance, and coordination. Plus, it's a lot of fun! Mountaineering is an excellent aerobic workout. Research suggests that it can help reduce symptoms of chronic diseases like type II diabetes, heart disease, obesity, and cancer.
This estimate is pretty uncommon for athletes in this discipline. Yet, he manages to cram in an annual amount of $200,000, while an average climber may only earn $15,000 annually. Since Honnold prioritizes a modest and humble lifestyle, it adds to his great income.
How do you ask for climbing sponsorship? ›
Be specific about what would be helpful, like name specific pieces of gear & how you'd use them or speak to funding a specific part of the project — don't just say “any donation would be helpful!” because that means more work for the other person to figure out what would actually work well and be beneficial to both ...
How do you get paid to travel? ›- Telecommute to your current job. ...
- Explore your company's other locations. ...
- Teach English or another language. ...
- Become a tour guide. ...
- Write a research guide. ...
- Become a flight attendant. ...
- Start a side gig. ...
- Find a new remote opportunity.
Sherpas make at least $2,000 per climbing season, considerably more than the median income of Nepal, which comes in at around $540 per year. Elite Sherpas can make as much as $4,000 – $5,000 in just two months. By comparison, Western guides make as much as $50,000, plus tips.
What is the hardest mountain to climb? ›At 28,251 feet, K2, which straddles the Pakistan-China border, is about two and a half football fields shorter than Everest, but it's widely considered the planet's toughest and most dangerous mountain to climb, earning the nickname “Savage Mountain.” Unlike Everest, it is not possible to “walk” to the top; all sides ...
Is Alex Honnold an alpinist? ›In 2007, he bought a 2002 Ford Econoline E150 van, which allowed him to focus on climbing and following the weather. According to a 2011 Alpinist profile: In the mind of the climbing world, Honnold emerged from the goo fully formed.
What are the two types of mountain climbing? ›There are two main styles of mountaineering: Alpine and Expedition.
What does C0 mean in climbing? ›A0 / C0: Occasional aid moves, often without aiders, on fixed gear or very solid placements. Also known as “French free.” A1 / C1: All placements are solid and easy, long enough stretches of aid that aiders are normally used.
What does 9a mean in rock climbing? ›9a (5.14d YDS) is the international climbing grade standard for elite free climbing. Many Olympic-caliber climbers send 9a or harder, but it is rare for climbers who don't get paid to do it. Ceuse, France is legendary for hard sport climbing.
What is a 5.11 climb? ›Route Classifications | |
---|---|
Class 1 | |
5.11-5.12 | Hard to Difficult |
5.13-5.15 | Very Difficult |
6.0 | Can't be free climbed |
Free soloing is when a climber is alone and uses no ropes or any other equipment that aids or protects him as he climbs, leaving no margin of error.)
What is mountain climbing without equipment called? ›
Free solo climbing, or free soloing, is a form of technical rock climbing where the climbers (or free soloists) climb alone without ropes, or other protective equipment, only using their climbing shoes and their climbing chalk.
What is a climbing guide called? ›A mountain guide is a specially trained and experienced professional mountaineer who is certified by local authorities or mountain guide associations.
What is the most important thing in mountaineering? ›1. NAVIGATION. Modern tools have revolutionized backcountry navigation. Today's mountaineer carries five essential tools while navigating the backcountry: map, altimeter, compass, GPS device, and a personal locator beacon (“PLB”) or other device to contact emergency first responders.
What is a synonym for mountaineering? ›synonyms for mountaineering
On this page you'll find 7 synonyms, antonyms, and words related to mountaineering, such as: hiking, alpinism, backpacking, hill-climbing, and rock climbing.
synonyms for mountaineer
On this page you'll find 9 synonyms, antonyms, and words related to mountaineer, such as: climber, hiker, alpinist, backpacker, cragsman, and cragswoman.
There are a variety of careers and jobs available in the climbing, trekking, backpacking and mountaineering industries. Manufacturers are comprised of companies who distribute and or manufacture outdoor apparel, gear, equipment, gear and accessories.
What is a climbing certification called? ›The Authorized Climber/Rescuer course is a 2-day program that will teach new and experienced climbers how to climb safely, descend with various descent tools and perform rescues.
How long does it take to become a competent climber? ›Getting “good” at climbing usually takes about 4 years of indoor climbing, but obviously this depends on a number of factors here, and it also depends on what you class as “good”. The grades V5 in bouldering (V scale), or 5.11 in rock climbing (YDS scale) are classed as better than average.
Is rock climbing stressful? ›Rock climbing can quickly induce stress due to the fear and anxiety of falling, as well as the elevated cognitive attention it requires to plan movement sequences, recovery positions, speed of the climb, and timing of clipping the safety rope [2].
Is rock climbing a mental sport? ›Climbing is “deeply meditative,” says Blount, who credits the sport with helping her cope better with stress. Even if you're having a subpar day, you'll have no choice but to block out unpleasant thoughts. “It really helps give this deep mental break, because you're focusing on doing this one thing.”
Is climbing a skill or a sport? ›
Rock climbing is an indoor and outdoor recreational sport that is one of the world's fastest growing mainstream sporting activities. It pushes you and makes you want to achieve more, and that's a skill that's useful not only on the climbing wall, but in every aspect of your life!!
What is a climbing rigger? ›Theatrical hands (flymen), Swing Stage, Crane, Wire Rope Fabricators, and Sailboats are a few of the trades that have people with the job title "rigger". Although each trade has different skills associated with a rigger, they all work with rope and hardware to lift, secure, hold and move.
How do you make money as a professional climber? ›Sponsorships are the main way that professional climbers get paid. Other income can come from public speaking events, guiding, or books/movies. Unfortunately for the sport, there isn't really a climbing 'league' in the way that you have organizations like the MLB, NBA, and NHL to pay their athletes.
How many grades are there in climbing? ›USA grades
The number at the start is the class, and ranges from 1-5. Classes 1-4 cover hikes and scrambles, and when you hit 5 you are into rock climbing territory. Sub-classes kick in here, and range from 5.0 to 5.15 at time of writing, with finer gradations appearing at 5.10 (5.10a, 5.10b, 5.10c etc).
In free climbing, the term first free ascent (abbreviated FFA) is used where a mountain or climbing route was ascended without any artificial aid (devices for protection in the event of a fall could be used as long as they did not aid progression).
What is a professional mountaineer? ›What does a Professional Mountain Climber do? The Professional Mountain Climber is an agile, adventurous soul motivated by the thrill of scaling mountains and the enjoyment of helping others appreciate all that nature has to offer.
What is a V5 in climbing? ›The "5" refers to the “Class” of the hike, scramble, or climb. A "1" would be relatively flat land while a 5 is a rock wall that requires a rope and/or other gear to climb. A Grade 4 would require the use of hands and feet to scramble over terrain.
Do you need to be strong to be a climber? ›Climbing requires balance, muscular strength, muscular endurance, and good cardiorespiratory fitness. A strong heart helps pump blood to your working muscles, while strong muscles pull up and hold your body weight ( 1 ). Thus, make sure your workout program includes balance, strength, and cardio training.