Skip to main content

Day hike at Queen Charlotte track - Ship Cove to Furneaux Lodge

Queen charlotte track

Summary: Whilst the 70 km Queen Charlotte track which is located at Marlborough, New Zealand can be walked in 3 - 5 days, for those short in time it is also possible to just do a section of the track in 1 day. The easy and tranquil day hike from Ship Cove to Furneaux Lodge (Endeavour Inlet) offers beautiful views of the Queen Charlotte Sound as well as an opportunity to relax half way through the hike in the secluded Schoolhouse Bay.


Rating: 4.5/5 - A beautiful day hike offering great coastal scenery

Getting there: Water taxis from Picton can take passengers on a 1 hour cruise to Ship Cove in the morning before returning to pick up passengers from Endeavour Inlet in the afternoon (I used Cougar Line).

Time: 5 hours worth of walking + a 1 - 2 hours of lazing/swimming at one of the bays.

Distance: 14km

Difficulty: Easy. (Track quality: good, Signage: great, elevation: not flat but manageable)

Facilities: Toilet, tap water (consider treating water before drinking) and mobile phone coverage are available. Bring your own lunch as there are no shops between Ship Cove and Endeavour Inlet (though Furneaux Lodge has a restaurant/cafe at Endeavour Inlet).

The Route: Download my route to your ViewFinder app  (iOS/Android) or download the official map.

Points of Interest:
  • Ship Cove
  • Schoolhouse Bay
  • Resolution Bay
  • Furneaux Lodge at Endeavour Inlet

The hike



View my recorded trail at ViewFinder

The only way to get to Ship Cove is to get is via a boat (the return journey be prebooked beforehand), luckily there are a number of water taxi companies departing from Picton that provides a great cruise through the sounds to Queen Charlotte track. Upon disembarking at the Ship Cove pier you can take a quick detour to view the information panels that describe the history of captain cook and Ship Cove.

Queen charlotte track

The track is well formed (though can be fairly muddy during/after periods of recent rain) and whilst there are some elevation it is fairly mild. As you walk away from the pier much of the next 1.5 hours of the walk is under the cover of trees and as such provides great cover from the heat of the sun.

Queen charlotte track

Queen charlotte track

Queen charlotte track

Queen charlotte track

Schoolhouse bay campsite is the next major point of interest on this trail and has a picnic table, toilet and water tap making it a great place to have a lunch break.

Queen charlotte track

Queen charlotte track

As you continue the trail you will pass by resolution bay before going back into the bush. Whilst the coastal scenery is perhaps the most unique and beautiful parts of this trail, the walk in the bush is still nice offering waterfalls and sometimes native birds.

Queen charlotte track

Queen charlotte track

Queen charlotte track

As you start to emerge from the bush, Endeavour Inlet comes into view and the final hour or so hugs the coastline rewarding you with a nice coastal scenery to wind down your walk.

Queen charlotte track

Queen charlotte track

Before you know it, the gates of Furneaux Lodge comes into view and the walk comes into an end. If you have time to spare before the water taxi arrives and would like to buy something to eat, there is a restaurant/bar here. Otherwise relaxing by the waters whilst waiting for the water taxi back to Picton is an excellent way to end the day.

Queen charlotte track

Queen charlotte track

Queen charlotte track

Have you visited the Queen Charlotte track before and have other recommendations for this walk? Leave your comments below...

Comments

Popular posts from this blog

SharePoint | Set default value of date field to last day of the month

One of the things, that I needed to do recently is find a way to set the default value of a date field to the last day of the month. Though some content were really helpful in getting me on the way to solving the problem, I thought I'd post the formula required to make it easier for others looking to do the same in the future. What I wanted to do  The steps below describe what I wanted to achieve: User uploads a file into a document library A date column will automatically be populated with the date representing the end of the month (calculated based on the date the file was uploaded) How do we do this? Open your column settings for your date field Under the Additional Column Settings, set the default value option to Calculated Value Enter the the formula below: =(DATE(YEAR(TODAY()),MONTH(TODAY())+1,DAY("1-Apr-2008"))) - (1) Click save and that's all you need to do What does the formula above do? The formula above is quite simple.

Only show a control to an employee's manager in PowerApps (using SharePoint as a data source)

The Problem In my previous blog post , I wrote a basic tutorial on configuring PowerApps to conditionally show/hide and make mandatory/optional a control based on the answer provided in a previous control. In this blog post we will expand on that scenario to create a form that only shows a control called approval status to a user if that logged in user is the manager of the user specified in the employee control. This means when the manager is using the application, they can change the status to approved. Meanwhile, a user that is not a manager of the person specified in the employee cannot change the status to approved. The Solution Aside from containing a variety of native functions, PowerApps also allow us to add connections to add functionalities into our app. In this case we will add the Office 365 Users connection so that we can get information on: The user that is logged on The manager of the user specified in the employee control Note: Whilst this soluti

Uploading a file from a SharePoint document library into an Azure Blob Storage with Microsoft Flow (or Logic App)

The Problem One of the things that I've been experimenting with lately is Microsoft Flow . The service allows you to build process automation to facilitate transfer of information from one system to another easily. One scenario I wanted to try out is to be able to copy/move a file from SharePoint to an Azure Blob Storage. There are a number of reasons that you may want to do this: Archive files that are no longer needed Upload a copy of a file (usually an image) into a Blob Storage so that images can be hosted in a CDN to optimize page load performance In the past doing something like this would have required some form of custom development e.g. a remote event receiver. However the introduction of Microsoft Flow and Logic Apps has created another alternative that is worth exploring.... Update 30/09/16:  If you are looking to put your assets into a CDN to make it load faster, then it's worth checking out the new Preview Release  Office 365 Public Content Delivery