Stella Maris

Charity Number: 1069833
Contact: Tim Hill MBE
Address: 39 Eccleston Square ,London.
Postcode: SW1V 1BX
Phone: 020 7901 1931
Website: www.stellamaris.org.uk
Email: info@stellamarismail.org
Summary: Stella Maris is a Catholic charity supporting seafarers worldwide.
We provide practical and pastoral care to all seafarers, regardless of nationality, belief or race. Our port chaplains and volunteer ship visitors welcome seafarers, offer welfare services and advice, practical help, care and friendship. Stella Maris is part of an international network working in more than 250 ports around the world.
90% of world trade is transported by ship. However the life of a modern seafarer can be dangerous and lonely. They may spend up to a year at a time away from home, separated from their family and loved ones and often working in harsh conditions.
Stella Maris relies wholly on voluntary contributions. We are only able to continue our work through the generous donations of our supporters and volunteers.
Related Articles
Stella Maris
Website: https://stellamaris.org.uk/ Get Help: https://stellamaris.org.uk/get-help/ (access via the provider's "Get Help" section) Find a Chaplain: https://stellamaris.org.uk/find-a-chaplain/ Contact Page: https://stellamaris.org.uk/contact/ What ...
Sailors' Society
Charity Number: 237778 Address: Seafarer House, 74 St. Annes Road, Woolston, Southampton Postcode: SO19 9FF Phone: 02380 515 950 Website: www.sailors-society.org Email: enquiries@sailors-society.org Summary: Sailors’ Society has been bringing people ...
Seafarers’ Christian Friend Society (SCFS)
Contact details Website: https://scfs.org Head Office Address: Ch18 Colvin House, Inspire Business Park, 16 Carrowreagh Road, Dundonald, Belfast, BT16 1QT Telephone: +44 28 9521 7770 Email: headquarters@scfs.org Contact page: ...
Mission to Seafarers
Mission to Seafarers Charity Number: 1123613 Address: St Michael Paternoster, Royal College Hill, London Postcode: EC4R 2RL Phone: 0207 248 5202 Website: www.missiontoseafarers.org Email: general@missiontoseafarers.org Summary: A voluntary society of ...
The Mission to Seafarers
Website: https://www.missiontoseafarers.org/ Head Office Address: 1st Floor, 6 Bath Place, Rivington Street, London, EC2A 3JE, United Kingdom. Contact a Chaplain: https://www.missiontoseafarers.org/contact-a-chaplain Port Directory: ...
(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);
})();