HMS Seagull (J85)

Multi tool use
For other ships with the same name, see HMS Seagull.

Seagull in May 1946
|
History |
United Kingdom
|
Name: |
HMS Seagull (J85) |
Operator: |
Royal Navy
|
Builder: |
HMNB Devonport
|
Laid down: |
15 February 1937 |
Launched: |
28 October 1937 |
Commissioned: |
30 May 1938 |
Fate: |
Scrapped in May/July 1956. |
General characteristics |
Class and type: |
Halcyon-class minesweeper
|
Displacement: |
- 815–835 long tons (828–848 t)
- 1,310–1,372 long tons (1,331–1,394 t), full load
|
Length: |
245 ft 3 in (74.75 m) |
Beam: |
33 ft 6 in (10.21 m) |
Draught: |
9 ft (2.7 m) |
Propulsion: |
Vertical triple-expansion, 2,000 ihp |
Speed: |
17 knots (31 km/h) |
Range: |
7,200 nmi (13,330 km) at 10 knots (19 km/h) |
Complement: |
80 |
Armament: |
- 2 × QF 4 in Mk.V (L/45 102 mm) guns, single mounts HA Mk.III
- 4 × QF 0.5-inch Mk.III (12.7 mm) Vickers machine guns, quad mount HA Mk.I
- 8 × .303-inch (7.7 mm) Lewis machine guns
|
HMS Seagull was a Halcyon-class minesweeper, and the first Royal Navy ship to be built entirely without rivets. She was completed on 30 March 1938.
She was adopted by the civil community of Christchurch, Hampshire after a successful Warship Week National Savings campaign in February 1942
During the Second World War she helped escort 21 Arctic convoys, and participated in Operation Neptune. She was also involved in the accidental sinking of the Polish submarine ORP Jastrząb, along with HNoMS St Albans, during the passage of Arctic Convoy PQ 15. Five crewmen were killed.
A court of Enquiry found that Jastrząb was 100 nautical miles (190 km) out of position, in an area where U-boats were expected to operate, and no blame could be attached to either commander.[1][2]
However, other sources maintain the convoy changed its course and entered Jastrząb's patrol sector. Also that the Allied ships ignored identification marks, while on surface, and that Seagull's commander was later found guilty by the Admiralty.[3]
These accounts are not reconcilable.
In late 1945 she was converted in Rotterdam to a Survey Ship. Until 1950 she operated in home waters, after which she was paid off into the reserve. She became the naval drill ship at Leith in 1955 before being scrapped by Demmelweek and Redding in Plymouth in 1956.[4]
References
^ Kemp p47
^ Hague p35
^ Jerzy Pertek, Wielkie dni małej floty, Poznań, 1976 (Polish language, no ISBN)
^ Halcyon-Class.co.uk HMS Seagull Page
Halcyon-class minesweepers
|
- Bramble
- Britomart
- Franklin
- Gleaner
- Gossamer
- Halcyon
- Harrier
- Hazard
- Hebe
- Hussar
- Jason
- Leda
- Niger
- Salamander
- Scott
- Seagull
- Sharpshooter
- Skipjack
- Speedwell
- Speedy
- Sphinx
|
List of mine countermeasure vessels of the Royal Navy |
0lQw8 VPCIJPQSgw GfwWHX,P3,ePQMvg ngLK,Qe,KOhnyrFice2FCcrWju
Popular posts from this blog
1
I am trying to find out how to save and close to an existing workbook using xlwings after writing in it: import xlwings as xw list_of_values = [1, 2, 3] workbook_path = 'abc.xlsx' wb = xw.Book(workbook_path) ws = wb.sheets['sheet1'] ws.range('E35').value = list_of_values wb.save() wb.close() When I get to wb.save(workbook_path) , there is a prompt stating: 'A file named abc.xlsx' already exists in this location. Do you want to replace it?' I want to overwrite the file immediately without the prompt coming up. According to the docs, wb.save() should automatically overwrite (see: https://docs.xlwings.org/en/v0.6.4/api.html). I have also tried wb.save(workbook_path) but the pop-up still appears. Appreciate any help on this please. p.s. - I am basically try...
Ne doit pas être confondu avec freeware, open source ou copyleft. Logo du projet GNU, initiateur du mouvement du logiciel libre. Un logiciel libre est un logiciel dont l'utilisation, l'étude, la modification et la duplication par autrui en vue de sa diffusion sont permises, techniquement et légalement [ 1 ] , ceci afin de garantir certaines libertés induites, dont le contrôle du programme par l'utilisateur et la possibilité de partage entre individus [ 2 ] . Ces droits peuvent être simplement disponibles – cas du domaine public – ou bien établis par une licence, dite « libre », basée sur le droit d'auteur. Les « licences copyleft » garantissent le maintien de ces droits aux utilisateurs même pour les travaux dérivés. Les logiciels libres constituent une alternative à ceux qui ne le sont pas, qualifiés de « propriétaires » ou de « privateurs » [ Note 1 ] . Ces derniers sont alors considérés par une partie de la communauté du logiciel libre comme étant l...
1
1
I'm still learning PostgreSQL. During my testing, I have only been using INSERT statement in either psycopg2 and now asyncpg. I now have the need to UPDATE data in my test database, instead of replacing all of it. I'm currently trying to do a simple replacement test in a testing table, before I move to development table with more data. I want to replace any $1 name that is in CONFLICT with a name that is already in the table users. I'm trying the query code, which is passed to the DB via asyncpg. I keep getting a syntax errors, so I'm a little lost on how to correct these errors. What is the proper syntax for this query? '''INSERT INTO users(name, dob) VALUES($1, $2) ON CONFLICT (name) DO UPDATE "users" SET name = 'TEST' W...