Iron Range's Soudan underground mine tours to resume



A man wearing a hardhat drives a mining train

For the first time in two years, visitors to a state park in northern Minnesota can once again travel nearly a half mile underground into the dark bowels of a historic iron ore mine.

Underground tours at the Lake Vermillion-Soudan Underground Mine State Park near Tower, resume May 23, two years after they were shut down in 2024 after severe flooding damaged the mine following a massive rainstorm.

Prior to the flooding, the tours were also closed for two years beginning in 2022 for a $9 million project to reconstruct the mine shaft.

The mine opened in 1882, supplying iron ore that was shipped to blast furnaces around the Great Lakes to forge the steel that was vital to the nation’s rapid industrial growth.

Students ride a train through a mining tunnel
Students in Jean Brascugli-Clusiau’s 5th grade class ride an electric train into the deepest sections the Soudan Underground Mine.
Ben Hovland | MPR News 2024

Tours were offered starting just three years after the mine closed in 1962. Every year, about 35,000 visitors from around the world travel 2,341 feet underground in the mine’s vintage equipment.

Park staff were ecstatic when tours resumed for a few weeks in 2024 after the long construction project, said Andrea Doerr, interpretive supervisor for the Minnesota Department of Natural Resources, which manages the park.

Then, in June, seven and a half inches of rain fell in less than 24 hours. At the same time, the mine was hit with a power outage.

“It was essentially the perfect storm,” said Doerr. Without the electric pumps used to keep the mine dry, rainwater and silt flooded into the mine. At Level 27, the deepest section of the mine where tourists ride an electric train into a giant cavern where the iron ore was dug out of the earth, tunnels were flooded with nine feet of water and dirty sludge.

Students walk past mining equipment underground
Students in Jean Brascugli-Clusiau’s 5th grade class walk through the lobby on the 27th level of the Soudan Underground Mine.
Ben Hovland | MPR News 2024

"Everything that's electrical down there was essentially ruined, destroyed,” said Doerr. “Our locomotives, all of the lighting, all of that needed to get rebuilt and replaced.”

It was a big blow to staff who had worked so hard to reopen the mine following the shaft restoration project, Doerr said. They’ve worked every day since the flooding to get the mine ready to reopen.

“To be able to travel a half mile underground, experience brief total darkness, to imagine what it would have been like to work in an underground iron mine, it’s a really unique experience,” Doerr added.

If you go

Tours lasting 90 minutes are offered through the third week of October. The temperature in the mine is a constant 51 degrees year-round. Visitors are encouraged to wear a jacket and sturdy boots or shoes.

Tours cost $15 for adults, $10 for children 5-12, and are free for children under five. Reservations are recommended. Officials expect pent-up demand.

No purses, backpacks, or strollers are allowed underground. The three-minute cage ride down to the mine is in a dimly lit, closed, confined space.



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Python Partial Function – Table of Content

Python partial function

A partial function is one of the tools in the Functools module. ‘Functools’ is a module provided by python for higher-order functions, i.e., act on or return other functions. ‘Functools’ contains tools for functional-style programming. 

Partial functions help in calling another function with the positional arguments (args) and keyword arguments (keywords). We can fix some values in certain arguments.We can create new functions without having to replicate the body of the original function. 

  Become a python Certified professional  by learning this HKR Python Training !

Python Training Certification

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Creating a partial function

Let us create a partial function that calculates the cube roots of the given numbers.

from functools import partial

#Create a function

def exponent(a,b):        

return a ** b

#Create a partial function that calculates cube roots

result = partial(exponent,3)

print(result(4))

The first function is for defining exponent arguments. The second function ‘result’ is created for fixing the value ‘3’ in the arguments to send to the main function – exponent. The output for the above program will be 81. If you want to generate square roots of given numbers, you can just replace the value ‘3’ with ‘2’ in the result partial function.


Here is one more program which performs multiplication of different numbers. 

from functools import partial

def expression(a,b,c,d):

return a*2 + b*3 + c*4 + d

result = partial(expression,5,6,7)

print(result(10))

The output for this program will be 66.

 

Big Data Analytics, python-partial-function-description-0, Big Data Analytics, python-partial-function-description-1

Subscribe to our YouTube channel to get new updates..!

Benefits of partial functions

Here are some benefits of using partial functions in your code.

  • We can construct variants of existing functions.
  • Partial functions are used to derive values from normal functions.
  • A partial function is similar to bind functionality in c++.
  • We can call the partial functions in multiple places of our code.It helps in code reusability.
  • Reduce the number of lines in your code.

   Top 50 frequently asked Python interview Question and answers !

Python Training Certification

Weekday / Weekend Batches

Conclusion

Partial functions help in removing redundancy.It also improves your coding capability.It is especially used in applying a range of different inputs to a single object (or) set somethings as constant in arguments of a function.So what are you waiting for? Try out creating different kinds of partial functions and have fun.Do check out our other python tutorials and blogs on python to increase your skill level.

Related Articles:

1. Python Operators

2. Python Split Method

3. Python Generators

4. Python List Length

5.Highest paying jobs in India



Source link