BWCA Canoe & Hiking Trip 2023

This year’s trip was a return to a familiar locale…

Duncan and Rose Lakes!

BWCA Route Map, Source USGS
BWCA Route Map, Source USGS (Click to Enlarge)
Video with Loons and Beavers

Complete Photo Gallery

Day 1 (Portage to Duncan Lake)

We started at Bearskin Lake and paddled across to the Duncan Lake Portage.

Starting Out
Starting Out

After exploring options on the north shore of Duncan we decided to stay on the campsite closest to the portage on the south shore (conveniently vacated by the prior group as we waited).

Duncan Lake Campsite
Duncan Lake Campsite

Overall this was a great site and not affected by blowdowns like the others we looked at. It had a nice fire area, lots of big trees, adequate tentsites, and a small pebble beach. (4/5 rating)

Hammock Housekeeping
Hammock Housekeeping

I’ve been a Hammock Camper for the past ten years. This was the first trip where I used an Underquilt and it performed very well. On the warmer nights (50s) I barely needed a sleeping bag. Going to bed felt like entering a warm bath!

After setting up camp, we had Happy Hour and veggie burgers for dinner!

Happy Hour
Happy Hour
Veggie Burgers
Veggie Burgers

The smoke haze from the Canadian Forest Fires gave us a very red sunset that night.

Smoky Sunset
Smoky Sunset

Day 2 (Canoe to Rose Lake)

The next morning we were treated to the largest gathering of Loons I’ve ever seen! We counted nine in all. It started with three or four calling and others flying in over about twenty minutes. Then they socialized and fished together for at least an hour. I called it the Loon equivalent of a breakfast club!

We read that at this time of year Loons are after fish called Cisco or lake herring. These are very oily and help the birds fatten up before they fly a thousand miles to the ocean for the winter.

Loons Gathering
Loons Gathering

We paddled down the long eastern arm of the lake to the famous “Staircase Portage” to Rose Lake.

Down the Staircase Portage
Down the Staircase Portage

We consolidated into one canoe to cruise around Rose. We saw where Ross and I camped during the The Boys 40th Birthday Trip back in 1996.

Group Photo on Rose
Group Photo on Rose

We stopped by Rose Falls to have lunch before heading up the stairs and back to Duncan.

Rose Falls
Rose Falls (Click to Enlarge)
Swimmers in Rose Falls
Swimmers in Rose Falls
Up the Staircase Portage
Up the Staircase Portage
Happy Hour Again
Happy Hour Again

Day 3 (Caribou Rock Trail, 4.3 Miles)

Group on the Trail
Group on the Trail

The next day we decided to hike on the nearby Caribou Rock Trail. This would ultimately take us to Rose Lake, but we did not go that far. Afterwards we read this is one of the “most difficult trails in Minnesota!”

Steep Climb
Steep Climb
Ross Above Duncan Lake
Ross Above Duncan Lake

That night we recovered with an elaborate taco meal prepared by Ross.

Taco Dinner
Taco Dinner

Day 4 (Rose Lake Cliffs, 6.5 Miles)

Our final full day was a mix of canoeing and hiking the Border Route Trail to the Cliffs over Rose Lake. It was difficult at times, but the view once we got there was worth it!

Rose, Rat, and South Lakes
Rose, Rat, and South Lakes

Way down on the lake we noticed two large white birds. These turned out to be a pair of [Trumpeter?] Swans! At the top I was able to take a photo through the binoculars with my phone.

Two Swans Thru Binoculars
Two Swans Thru Binoculars
Top of the World!
Top of the World!
Pileated Woodpecker Holes
Pileated Woodpecker Holes
Going for an Evening Swim!
Going for an Evening Swim!

Day 5 (Return to Civilization)

Leaving Paradise
Leaving Paradise

The next day was pretty simple. We broke camp early because the day was going to be hot (high 80s). When we later drove through Duluth the dash thermometer said it was 101!

Knots of Note

Bear Rope Hitch

Bear Rope Hitch
Bear Rope Hitch

We saw this one on a video about bear ropes. It is somewhat counter-intuitive as you get started and may require two people if the rope is heavily loaded. The first loop eliminates the need to “wrap the tree” with a long rope. The second vertical loop locks under the taught working end. As a slip knot it is extremely easy to untie so you can add one or two half-hitches for more security when needed.

Soft Shackle

Soft Shackle
Soft Shackle

These are referred to “Aussie Bowlines”. They are specifically used to secure a loaded line to a sail or other object. The cinch cords shown here already have stopper knots on their ends so it is easy to “shackle” them to the hammock strap.

Treehugger Hitch (or Tree-Hook Knot)

Treehugger Hitch
Treehugger Hitch

This is an idea I’ve been incubating for some time as a non-destructive “place anywhere” alternative to nails in trees or breaking branches to hang things on. Shown here is my first successful field test! It is tied using a short stick or similar object found locally.

  • Starting with the middle of the rope, wrap the tree at least twice and tie loosely with a reef (square) knot.
  • Catch the lower loop with the stick and add turns to partially tighten the loops.
  • Tie the upper end of the stick as tightly as possible in front of the reef knot.
  • Adjust everything to use the resulting hook to best advantage.
  • The excess rope will just hang down out of the way.

It performed well holding about ten pounds of equipment and it even let me hang up my hat! The main flaws with this implementation are the stretch in the second reef knot and the tendency for the loops to converge, allowing the hook to turn sideways. I plan to address these in the next version.

Once perfected this bit of knot-craft should help eliminate the need for nails in trees!

Old Nail in Tree
Old Nail in Tree

“Wisdom” Bot for Mastodon

I left the Birdsite about six months ago when the new owner started mucking about.

No regrets! Mastodon has been so much better! I decided to try my hand at creating an automated “robot” to post quotations alongside some of my photographs.

Wisdom in Space Posts Every Four Hours

Mastodon is much more civilized and well organized—including best practices for social media bots. There is even a server dedicated to bots called “botsin.space”–so I called my new bot “Wisdom in Space“.

There are many helpful websites to get started. Most use the mastodon interface package for Python. This is the first time I’ve written code in the python language, but fortunately the learning curve isn’t very steep. The biggest conceptual hurdle for me was understanding and using virtual environments on the shared server. Once I got those pesky details worked out I set up a cron job to post every four hours. The quotes are in a tab-delimited text file and the images are in a nearby directory. Note the development code below works locally on my laptop. The directory paths and other details are different on the server. I hope someone finds this useful!

#
#	wisdombot 0.2
#	quote of the day service for mastodon
#	copyright richard rathe 2023
#	(cc) attrib-noncomm-share-alike
#

import re

import glob

import random

from mastodon import Mastodon

quote_list = []

with open('wisdom.dat') as file:

	for line in file:

		line = line[:-1]  # remove newline

		quote_list.append(line)


qmax = str(len(quote_list))

image_list = glob.glob('images/*.jpg')

imax = str(len(image_list))

qrand = random.randrange(int(qmax))

line = quote_list[qrand]

line = line.replace('—'  , '--')	# fix entities
line = line.replace('"'   , '\"')
line = line.replace('é' , 'e')
line = line.replace('ø' , 'o')
line = line.replace('ö'   , 'o')
line = line.replace('&'    , '&')

data_list = line.split('\t\t')		# double tab delimited

irand = random.randrange(int(imax))	# pick image at random

img = image_list[irand]

match = re.search(r'^images/([a-z0-9-]+)', img, re.I)

if match:
	stem = match.group(1)
else:
	stem = ''

ikeyw = ''

for i in stem.split('-'):
	i = i[0].upper() + i[1:]	# capitalize
	ikeyw += " #" + i

ikeyw = ikeyw[1:]	# nuke leading space

keyw = ''

for i in data_list[2].split('/'):	# keywords are '/' delimited
	i = i.replace(' ', '')
	i = i.replace('-', '')
	keyw += " #" + i

keyw = keyw[1:]		# nuke leading space

quote = data_list[3]

name = data_list[0]				# author name

ntag = re.sub('[^0-9a-zA-Z]+', '', name)	# author hashtag
ntag = '#' + ntag

other = data_list[1]				# source info (if available)

if other == 'None':
	other = '';
else:
	other = ' (' + other + ')'

out = quote + '\n    -- ' + name + other + '\n\n'

out += '⬆ #Quotes ' + ntag + ' ' + keyw + '\n\n⬇ #Photography ' + ikeyw

if len(out) < 500:		# limited to 500 chars

	print('\n' + out + '\n')

	mastodon = Mastodon(
		access_token = 'token.secret',
		api_base_url = 'https://botsin.space/'
	)

	media = mastodon.media_post(img, description="photo by richard rathe")
 	mastodon.status_post(out, media_ids=[media])

Everglades Kayak Trip 2023

map source: nps.gov (click to enlarge)

This year we returned to the northern part of the park. The original plan had been a “grand tour” loop with two beach sites and two chickees. However, the forecast was calling for high winds on the last two days where we would be exposed out on the Gulf of Mexico. On the drive down I called and amended our permit to camp at Lopez River on the last night. [Photo Gallery]

Day 1 (Rabbit Key)

We left a day after the new moon (the beginning of the lunar Year of the Rabbit) so the tide was especially low. We had to motor through the mud with our legs to get out to where there was enough water to float. We would later have to fight an incoming tide going through Sandfly Pass.

Sandfly Island & Pass

We did a bit of walking around the old homestead and saw what was left of the old cistern and artesian well. Also saw our first dolphin fishing along the shore there.

Carl At The Well

Soon afterward my drive failed (while fighting the current of course!). Specifically one of the “flippers” delaminated and pulled away from the steel rod that supports it. Thus started a series of field repairs (outlined below) as we continued to limp along out to Rabbit Key.

Rabbit Key at Sunset

The best campsites have moved around over the years as hurricanes have remodeled the island. Our usual site in front of the sand spit (left point above) was taken so we explored a site further down near the high tide line. The only problem was the central tree was broken and stunted so we were hanging pretty low with ground cloths under our butts. The breeze blew all night so there were no bugs.

Rabbit Key Campsite (click to enlarge)

The next day when the tide was out we took a walk around our little isle. Because of the recent new moon the Horseshoe Crabs (Limulus polyphemus) were about.

Ring of Horseshoe Crab Shells
One Tough Mangrove!

Field Repairs

I used duct tape for my first attempt to repair my drive. This lasted about an hour. The adhesive would not stand up to submersion in salt water. Next I tried a mummy wrap with paracord. This worked better, but the bottom knot kept falling off. On the second day I cut out strips of plastic water bottle and attached these with rope using scaffold knots. [Click for Example] This did the trick and I was able to complete the trip — peddling all the way!

Selected Video Clips

Day 2 (Crooked Creek Chickee)

We waited for the tide to turn and start rising before we left Rabbit Key. This lead to an easy passage through Rabbit Key Pass and up the Lopez River to Crooked Creek Chickee. We had a nice swim, started cooking dinner, and hung our hammocks before the wind died and it got buggy.

Crooked Creek Chickee

Day 3 (Sweetwater Chickee)

The next day was mostly spent crossing four large bays. We had a bit of a cross/tailwind but no real problems. When we got to the chickee however we had a bit of unwelcome attention from an eight foot alligator that was acting like it expected to be fed. Normally gators will be curious but generally do not hang around and get progressively closer!

Sweetwater Chickee with Gator

The evening was nice with a bit of breeze and only a few bugs. We had a comfortable night except for the heavy breathing! I woke upseveral times in the night and could hear wet, sonorous breathing a few feet away from the chickee. It was not a dolphin. Every ten minutes or so there would be 2-3 breaths in exactly the same place! I thought “Gee, is that gator stalking us?!” I looked several times with a flashlight and never saw a thing. If a gator was there on the surface I should have seen its eyes reflecting orange. Very strange! In the morning the breathing was occuring and the mystery was solved. A small manatee had come to sleep next to us overnight! Very cool!!

Well-Pitched Hammocks
Sweetwater Chickee

Day 4 (Lopez River)

Apparently the Park Service has a new rule that you can’t stay on the same chickee twice in one trip, so we camped at the Lopez River ground site on our last night. I had stopped there for lunch before but never stayed overnight. There was a party already on the primary site, so we took the secondary next to the large ruin of the cistern. Both sites have nice deep shell mound approaches, and we sat down by the water while we ate our dinner and finished our box of wine. There was a breeze and it was about ten degrees cooler so bugs were few.

Lopez River Campsite Shell Mound Landing

The site itself is small and set within mangroves, with a compacted mud surface and a picnic table. The hammocks were perfect in this setting!

Hanging in the Mangrove

Day 5 (Return to Civilization)

We got up before dawn the next day to beat the incoming tide. We circled around Chokoloskee Island rather than take the narrow canal behind the causeway. As predicted the wind rose and was probably every bit of 12-15 mph with gusts. We were glad not to be out on the Gulf!

Chokoloskee Island

Even after all these years this was the first time I’d gone this way, giving us a chance to see the Smallwood Store from the water. This is where, in 1910 the alleged murderer Edgar J. Watson (see “The Watson Place” campsite within the Park) met his end at the hands of a local posse who had gathered to arrest him. The excellent historical novel “Killing Mister Watson” is based on these events.

Smallwood Store

We peddled across the lagoon and back to the ranger station without difficulty. And thus ended an eventful but enjoyable trip!

Home Again!

More Photos…