Address: Trinity House, Tower Hill, London, EC3N 4DH, United Kingdom.
What this organisation does
Trinity House is a long-established maritime charity and the General Lighthouse Authority for England, Wales, the Channel Islands and Gibraltar. Alongside its navigation safety role, it provides education, welfare and support for mariners and their dependants through the Trinity House Maritime Charity.
The charity supports the welfare, education and training of seafarers at different stages of life, from people seeking a maritime career through to retired mariners and their families.
Who can use the service
Support is available to various groups within the maritime community, including:
Serving seafarers and mariners.
Prospective Merchant Navy officer cadets and young people considering a maritime career.
Serving seafarers and mariners
Maritime charities whose objectives align with the charity's aims.
Eligibility varies depending on the specific programme, scholarship, grant or welfare service being accessed.
Support available
The Trinity House Maritime Charity provides or supports a range of services, including:
Welfare support and charitable assistance for mariners and their dependants.
Financial support for young people training as Merchant Navy officers through the Merchant Navy Scholarship Scheme (MNSS).
Retirement accommodation through purpose-built almshouses for retired mariners and their dependants in Walmer, Kent.
Education, training and skills development initiatives for the maritime sector.
Grants and funding support for maritime charities and charitable projects.
Career development opportunities, cadet sponsorship and professional progression support.
Scholarship opportunities including maritime training and yachtmaster development programmes.
Features and benefits
Seafarers and maritime families may benefit from:
Access to one of the UK's largest endowed maritime charities.
Support for maritime education, training and career progression.
Financial assistance opportunities for eligible cadets pursuing Merchant Navy officer training.
Long-term welfare support for retired mariners and their dependants.
Access to a wider network of maritime charities supported through Trinity House grants.
Continued professional connections and career guidance through initiatives such as the Trinity House Yeomen network.
How to get help
Visit the Supporting Seafarers section of the Trinity House website.
Identify the most relevant service, such as scholarships, welfare support, grants or almshouses.
Review the eligibility requirements for the specific programme.
Contact Trinity House using the published telephone number, email address or online contact form for guidance.
Follow any application or referral process required for the chosen service.
Things to check before contacting them
Confirm that the service you need is delivered directly by Trinity House rather than a partner organisation.
Check any eligibility requirements for scholarships, grants or accommodation schemes before applying.
Have relevant information available, such as maritime employment history, training details or supporting documentation if applying for a specific programme. Eligibility requirements vary by scheme.
Address: Trinity House, Tower Hill, London, EC3N 4DH, United Kingdom.
What this organisation does
Trinity House is a long-established maritime charity and the General Lighthouse Authority for England, Wales, the Channel Islands and Gibraltar. Alongside its navigation safety role, it provides education, welfare and support for mariners and their dependants through the Trinity House Maritime Charity.
The charity supports the welfare, education and training of seafarers at different stages of life, from people seeking a maritime career through to retired mariners and their families.
Who can use the service
Support is available to various groups within the maritime community, including:
Serving seafarers and mariners.
Prospective Merchant Navy officer cadets and young people considering a maritime career.
Retired mariners and their dependants.
Maritime charities whose objectives align with the charity's aims.
Eligibility varies depending on the specific programme, scholarship, grant or welfare service being accessed.
Support available
The Trinity House Maritime Charity provides or supports a range of services, including:
Welfare support and charitable assistance for mariners and their dependants.
Financial support for young people training as Merchant Navy officers through the Merchant Navy Scholarship Scheme (MNSS).
Retirement accommodation through purpose-built almshouses for retired mariners and their dependants in Walmer, Kent.
Education, training and skills development initiatives for the maritime sector.
Grants and funding support for maritime charities and charitable projects.
Career development opportunities, cadet sponsorship and professional progression support.
Scholarship opportunities including maritime training and yachtmaster development programmes.
Features and benefits
Seafarers and maritime families may benefit from:
Access to one of the UK's largest endowed maritime charities.
Support for maritime education, training and career progression.
Financial assistance opportunities for eligible cadets pursuing Merchant Navy officer training.
Long-term welfare support for retired mariners and their dependants.
Access to a wider network of maritime charities supported through Trinity House grants.
Continued professional connections and career guidance through initiatives such as the Trinity House Yeomen network.
How to get help
Visit the Supporting Seafarers section of the Trinity House website.
Identify the most relevant service, such as scholarships, welfare support, grants or almshouses.
Review the eligibility requirements for the specific programme.
Contact Trinity House using the published telephone number, email address or online contact form for guidance.
Follow any application or referral process required for the chosen service.
Things to check before contacting them
Confirm that the service you need is delivered directly by Trinity House rather than a partner organisation.
Check any eligibility requirements for scholarships, grants or accommodation schemes before applying.
Have relevant information available, such as maritime employment history, training details or supporting documentation if applying for a specific programme. Eligibility requirements vary by scheme.
Contact details Website: https://www.trinityhousehull.org.uk/ General enquiries: secretary@trinityhousehull.org.uk Telephone: 01482 324956 Postal address: The Corporation of The Hull Trinity House Trinity House Lane Hull HU1 2JG Contact page: ...
Provided by Seafarers Hospital Society (SHS) Telephone: 020 8858 3696 Email: admin@seahospital.org.uk Website: www.seahospital.org.uk Address: 29 King William Walk, Greenwich, London, SE10 9HJ, United Kingdom The Seafarers Hospital Society (SHS) is a ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();