Ventouris Ferries
Ventouris Ferries is a Greek company that operates ferry services from Italy to Greece and Albania.
Founded | 1978 |
---|---|
Headquarters | Piraeus, Greece |
Area served | Adriatic Sea |
Services | Passenger transportation, Freight transportation |
Website | ventourisferries |
Routes
Ventouris Ferries operates two routes across the Adriatic Sea.
- Bari - Durres (Rigel II & Rigel III)
- Bari - Corfu - Igoumenitsa (Rigel I & Bari)
- Bari - Corfu - Igoumenitsa - Sami (Kefalonia) - Zante (Rigel I)
Fleet
Ventouris Ferries currently operates a fleet of three RORO ferries.[1]
Ship | Flag | Built | Entered service | Gross Tonnage | Length | Breadth | Passengers | Vehicles | Speed |
MS Rigel I | 1973 | 2008 | 12,281 GRT | 122 m | 22,1 m | 1,120 | 330 | 17 (20 max) knots | |
MS Bari | 1980 | 2010 | 12,705 GRT | 129,7 m | 21,6 m | 1,125 | 330 | 17 (18 max) knots | |
MS Rigel II | 1980 | 2015 | 23,842 GRT | 146,1 m | 25,5 m | 1,800 | 500 | 17 (20 max) knots | |
MS Rigel III | 1979 | 2017 | 16,405 GRT | 136,1 m | 24,2 m | 1,550 | 450 | 19 knots | |
MS Rigel VII | 1994 | 2020 | 9.917 GRT | 163,5 m | 25,6 m | 750 | 22,5 knots |
Former ships
Ship | Years of service |
---|---|
Captain Constantinos | 1978-1981 |
Georgios B | 1983-1984 |
Patra Express | 1984-1990 |
Grecia Express | 1987-1993 |
Italia Express | 1987 |
Venus | 1989-2003 |
Ydra | 1990-1993 |
Saturnus | 1990-2003 |
Vega | 1990-2004 |
Pollux | 1994-1995 |
Athens | 2003-2010 |
Siren | 2003-2010 |
Polaris | 1991-2011 |
Seatrade | 2008-2011 |
gollark: Ah...
gollark: It should be okay with regexes or something non-turing-complete.
gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.