Today's Digital Newspaper

The Gazette

Weather Block Here



Air Force Academy cadets ‘learn the ropes’ of teamwork on new outdoor leadership tower

The Air Force Academy says it defines character as “one’s moral compass; the sum of those qualities of moral excellence which move a person to do the right thing despite pressures to the contrary.”

Currently, the right thing for this cadet, and the next, is to take one small step forward. The pressure is that the step is into open air, 55 feet above the ground, with a downward plummet to surely follow.

“One … two … two … three.”

He closes his eyes and falls, but the plummet is short-lived. The bungee cord clipped to his harness pulls taut, and he descends more slowly to the ground with a smile and arms outstretched.

070722-news-outdoortower 7.jpg

Ruth Anand jumps off the ledge at the Outdoor Leadership Tower on Wednesday, July 6.

John Stember, The Gazette

070722-news-outdoortower 7.jpg

Ruth Anand jumps off the ledge at the Outdoor Leadership Tower on Wednesday, July 6.






Today, a portion of the academy’s rising sophomores, the Class of 2025, is navigating the Center for Character and Leadership Development’s new outdoor leadership tower, which replaces the base’s wooden ropes challenge used since 1997. A combination of individual and team training challenges have been designed to augment the CCLD’s purpose of forging cadets’ skills in critical thinking, teamwork, innovation and leadership.

Preseason magazine heaps praise on Air Force football team, individuals

The tower, rigged with a rappelling element and ropes course, erupts out of a clearing within a wooded area not far from the academy’s sports complexes. It boasts three total platforms that support a winding staircase, a web of loose ropes and a series of suspended wooden obstacles. More than 700 cadets have completed this training course since the tower opened on June 2.

After the summer, squadrons, clubs, organizations, faculty and others on base will be able to schedule time on the tower.

Another cadet rappels from the top platform, this time facing backward. One more strains to reach the next swinging rung of a sideways ladder with little other support than that coming from a classmate holding the securing rope below.

“You’re almost there,” she assures. “Stay balanced.”

070722-news-outdoortower 1.jpg

A cadet launches into the air 50 feet above the ground at the Outdoor Leadership Tower on Wednesday, June 6, 2022.

John Stember/The Gazette

070722-news-outdoortower 1.jpg

A cadet launches into the air 50 feet above the ground at the Outdoor Leadership Tower on Wednesday, June 6, 2022.






Kristina Book, instructor of adventure and experiential learning and the manager of the academy’s Outdoor Leadership Complex, says the tower helps simulate what she calls the “crucible experience,” when one must execute a mission under pressure and mitigate physical and emotional response to that pressure.

“What does (being high off the ground) elicit physiologically as well as mentally, and how do we work through that?” she says over the clanging of carabiners on metal poles. “There’s other things that (airmen) experience that may have similar biological or mental responses. So, if we can work on understanding that here, then it’s gonna be easier to deal with that in more of those mission-critical situations that they may find themselves in later.”

Cadets Asha Swann and Tristan Trax stand before a grand view of the mountains on the see-through floor of the top platform as they await their jumps. Swann had jumped a moment before. “I stepped forward, so it was a little nerve-wracking looking at the ground right in front of me, but it was super-cool,” she says.

CDC issues report on 'forever chemicals' from Peterson Air Force Base

Trax says the outdoor element is the most rewarding aspect of instruction, as it allows cadets hands-on experience not only in communication and teamwork but in physical maneuvers required in combat.

070722-news-outdoortower 3.jpg

Cadets put on their helmets and harnesses before they get off the ground on Wednesday.

John Stember, The Gazette

070722-news-outdoortower 3.jpg

Cadets put on their helmets and harnesses before they get off the ground on Wednesday.






“It seems fun but in actuality, it may help with other aspects,” he says. “If you were to go different routes in the armed forces, you may have to rappel out of a helicopter.”

Others are less confident about the process.

“This is actually terrifying,” a cadet says as he traverses eight boards spaced apart like a kind of floating hopscotch, four stories high.

He and his classmate huddle on one of the tower’s tallest crow’s nests before being coaxed onto the next apparatus.

Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else if (fullPath.includes(‘outtherecolorado’)) {
pathVariable = ‘outtherecolorado’;
pathVariable2 = ‘Out There Colorado Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();
setupFormSubmitListener();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}

Featured Local Savings

“Use each other,” an instructor yells from below. “Let go of your rope.”

The two grab each other’s arms to stabilize their balance, and the classmate murmurs something between laughs.

“This is not romantic,” the other says. “This is terrifying.”

070722-news-outdoortower 9.jpg

In teams of two, cadets traverse the highest level of the Outdoor Leadership Tower on Wednesday.

John Stember, The Gazette

070722-news-outdoortower 9.jpg

In teams of two, cadets traverse the highest level of the Outdoor Leadership Tower on Wednesday.






Given their academy of choice, it is little wonder that these cadets spend an above-average amount of time getting familiar with higher altitudes.

Col. Kurt Wendt, director of the CCLD, says cadets are expected to cope with more extreme heights or circumstances, as when parachuting from a plane or into a pool from a 10-meter-high board during water training.

He watches the handful of cadets from the mulch below. “This gives them an opportunity to visualize and sort of overcome those fears before they face them.”

070722-news-outdoortower 2.jpg

Two cadets lean on each other for balance 50 feet above the ground at the Outdoor Leadership Tower on Wednesday.

John Stember, The Gazette

070722-news-outdoortower 2.jpg

Two cadets lean on each other for balance 50 feet above the ground at the Outdoor Leadership Tower on Wednesday.






The tower’s 21st-century design process was completed in 2021, when the academy examined potential interest for funding by public-private partnership.

Wendt says alumni from the AFA Class of 1963 “latched” onto the project and have since given $1.07 million toward the tower. The other $1.10 million came from the Dorothy D. and Joseph A. Moller Foundation trust at the Association of Graduates, the academy said.

Second chance for a Colorado veteran thanks to breakthrough IT training program

Wendt says the tower’s “flash to bang” was quick, with construction beginning in August and ending in May.

Retired Col. Hank Hoffman is a member of the class and nods his head emphatically as Wendt says the tower was an “easy sell.”

070722-news-outdoortower 11.jpg

A cadet reaches for solid ground while suspended high up in the air at the Outdoor Leadership Tower on Wednesday.

John Stember, The Gazette

070722-news-outdoortower 11.jpg

A cadet reaches for solid ground while suspended high up in the air at the Outdoor Leadership Tower on Wednesday.






“You don’t have to convince cadets that this is going to be a good time.” Wendt says. “You don’t have to convince cadets that they’re going to not only learn about leadership and character, but they’re going to enjoy themselves. They’re excited about it.”

Retired Gen. Bill Ball, an officer for the 1963 class, treads around the base and grins at the scene above. His class was the AFA’s fifth graduating class but the first to enter at the academy’s current location.

The tower, in a way, has been nearly 60 years in the making. Ball says the class got word of the need for a new ropes challenge and immediately wanted to donate the money the class had been pooling for decades.

“Our class decided that that’s exactly the kind of gift we’d like to fund,” he says.

070722-news-outdoortower 12.jpg

Two cadets catch some laughs while belaying at the Outdoor Leadership Tower on Wednesday.

John Stember, The Gazette

070722-news-outdoortower 12.jpg

Two cadets catch some laughs while belaying at the Outdoor Leadership Tower on Wednesday.






Ball says the tower will be dedicated on Aug. 10, 2023, when cadets will demonstrate their training on the ropes and the Class of 1963 will hold a presentation in honor of fellow graduate Ron Fogleman, the first academy graduate to become chief of staff of the Air Force. The event will also fall on the class’s 60th reunion.

“I think it’ll be quite an occasion to come here and see this, and maybe even walk up a stair or two,” he says, chuckling.

But Ball doesn’t wait for next year before ascending more than a stair or two up, making it all the way to the platform. He shuffles slowly but confidently to the edge and steps off, to the cheers of cadets from just one of many classes to use the tower in years to come.

d571e6cd-e049-55e5-a770-ef63b1195eaf

View Original Article | Split View
Tags

PREV

PREVIOUS

After another large bust, drug enforcement officials warn the public not to get weary of fentanyl news

Facebook Twitter WhatsApp SMS Email Print Copy article link Save The fentanyl flooding Colorado this summer is cheaper, now comes in pink and white, and is sometimes laced with the taste of monk fruit.  Law enforcement officials said cartels have designed the latest batches to be attractive to young people, with one official comparing their […]

NEXT

NEXT UP

Watch out for da bears: Colorado among highest in US auto/bear collisions

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Watch out for bears … on the highway. Colorado ranks No. 6 in the country for auto/bear collisions, according to State Farm Insurance. The company reports it had claims for 116 auto/bear collisions in Colorado in 2020 and 2021, out of 2,350 nationwide claims for […]