diff --git a/apps/portolano/CMakeLists.txt b/apps/portolano/CMakeLists.txt deleted file mode 100644 index bc803a4..0000000 --- a/apps/portolano/CMakeLists.txt +++ /dev/null @@ -1,28 +0,0 @@ - -find_package (SQLite3) - -include_directories(${SQLite3_INCLUDE_DIRS}) - - -find_package(Qt5 REQUIRED COMPONENTS Widgets Network Sql Positioning) - -set(PORTOLANO_RESOURCE resourcesPortolano.qrc) -qt5_add_resources(PORTOLANO_RESOURCE_ADDED ${PORTOLANO_RESOURCE}) - -add_library(Portolano SHARED - Portolano.cpp - Portolano.hpp - ${PORTOLANO_RESOURCE_ADDED} - MainPage.cpp MainPage.hpp MainPage.ui ResultItem.cpp ResultItem.hpp ResultItem.ui) - -add_dependencies(Portolano FairWindSdk) -target_link_libraries(Portolano PRIVATE Qt5::Widgets Qt5::Network Qt5::Sql Qt5::Positioning ${LIBFAIRWINDSDK} ${SQLite3_LIBRARIES}) -target_compile_options(Portolano PRIVATE ${COMPILE_OPTIONS}) - -add_custom_command( - TARGET Portolano - POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy - $ - $/apps/$ -) diff --git a/apps/portolano/MainPage.cpp b/apps/portolano/MainPage.cpp deleted file mode 100644 index 6970481..0000000 --- a/apps/portolano/MainPage.cpp +++ /dev/null @@ -1,243 +0,0 @@ -// -// Created by Raffaele Montella on 14/01/22. -// - -// You may need to build the project (run Qt uic code generator) to get "ui_MainPage.h" resolved - -#include -#include -#include -#include -#include -#include - -#include "MainPage.hpp" -#include "ui_MainPage.h" -#include "ResultItem.hpp" -#include "Portolano.hpp" - - -namespace fairwind::apps::portolano { - MainPage::MainPage(QWidget *parent, FairWindApp *fairWindApp) : - PageBase(parent, fairWindApp), ui(new Ui::MainPage) { - - // Get the FairWind singleton - auto fairWind = fairwind::FairWind::getInstance(); - - // Get the signalk document from the FairWind singleton itself - auto signalKDocument = fairWind->getSignalKDocument(); - - // Get app config - auto config = fairWindApp->getConfig(); - - ui->setupUi((QWidget *)this); - - // Set values from config - ui->checkBox_Range->setChecked(config["userRange"].toBool()); - ui->doubleSpinBox_Range->setValue(config["range"].toDouble()); - - oldPosition.setLatitude(0.0); - oldPosition.setLongitude(0.0); - - // Get the signalk document's string - QString self = signalKDocument->getSelf(); - - // Subscribe to signalk and make sure that navigation infos are updated accordingly - signalKDocument->subscribe(self + ".navigation.position.value", this, SLOT(fairwind::apps::portolano::updateNavigationPosition)); - - connect(ui->comboBox_Search, &QComboBox::editTextChanged,this, &MainPage::onEditTextChanged); - connect(ui->checkBox_Range, &QCheckBox::stateChanged, this, &MainPage::onBoolChanged); - connect(ui->doubleSpinBox_Range, &QDoubleSpinBox::textChanged, this, &MainPage::onNumberTextChanged); - connect(ui->doubleSpinBox_Range, QOverload::of(&QDoubleSpinBox::valueChanged), this, - &MainPage::onNumberSelectChanged); - } - - MainPage::~MainPage() { - delete ui; - } - - void MainPage::onNumberTextChanged(const QString &text) { - qDebug() << "MainPage::onNumberTextChanged()"; - // Get app config - auto config = getFairWindApp()->getConfig(); - config["range"] = text.toDouble(); - getFairWindApp()->setConfig(config); - - oldPosition.setLatitude(0.0); - oldPosition.setLongitude(0.0); - } - - void MainPage::onNumberSelectChanged(double value) { - qDebug() << "MainPage::onNumberSelectChanged()"; - // Get app config - auto config = getFairWindApp()->getConfig(); - config["range"] = value; - getFairWindApp()->setConfig(config); - - oldPosition.setLatitude(0.0); - oldPosition.setLongitude(0.0); - } - - void MainPage::onBoolChanged(int state) { - qDebug() << "MainPage::onBoolChanged: state: " << state; - // Get app config - auto config = getFairWindApp()->getConfig(); - config["userRange"] = static_cast(state); - getFairWindApp()->setConfig(config); - } - - void MainPage::insertIntoList(QSqlQuery query){ - ui->listWidget_Results->clear(); - - QMap map; - - while (query.next()) { - double lat = query.value(3).toDouble(); - double lon = query.value(2).toDouble(); - - QGeoCoordinate currentPoint(lat, lon); - - QString strJsonFeature = query.value(4).toString(); - QJsonDocument doc = QJsonDocument::fromJson(strJsonFeature.toLatin1()); - - double dist = getDistanceBetweenTwoPoints(currentPoint, mPosition); - - if (!ui->checkBox_Range->isChecked() || (ui->checkBox_Range->isChecked() && dist <= radius)){ - auto item = doc.object(); - if (item.contains("properties") && item["properties"].isObject()){ - auto tmp = item["properties"].toObject(); - tmp["dist"] = dist; - item["properties"] = tmp; - } - map[dist] = item; - } - } - - for (auto item: map) { - // qDebug() << "MainPage::insertIntoList: item: " << item; - auto widget = new ResultItem(ui->listWidget_Results, item); - widget->setMinimumWidth(150); - - auto listWidgetItem = new QListWidgetItem(); - listWidgetItem->setSizeHint(widget->sizeHint()); - - ui->listWidget_Results->addItem(listWidgetItem); - ui->listWidget_Results->setItemWidget(listWidgetItem, widget); - } - } - - void MainPage::onEditTextChanged(const QString &text) { - if (ui->checkBox_Range->isChecked()){ - // Get app config - auto config = getFairWindApp()->getConfig(); - config["userRange"] = false; - ui->checkBox_Range->setChecked(false); - getFairWindApp()->setConfig(config); - } - - auto *fairWindApp = (Portolano *)getFairWindApp(); - auto db = fairWindApp->getDb(); - if (db->open()) { - - QSqlQuery query(*db); - QString q = QString("SELECT * FROM ports WHERE name LIKE \"%%1%\" LIMIT 10;").arg(text); - query.prepare(q); - query.exec(); - - insertIntoList(query); - } - } - - void MainPage::updateNavigationPosition(const QJsonObject update) { - if (ui->checkBox_Range->isChecked()){ - mPosition.setLatitude(update["updates"][0]["values"][0]["value"].toObject()["latitude"].toDouble()); - mPosition.setLongitude(update["updates"][0]["values"][0]["value"].toObject()["longitude"].toDouble()); - - if (getDistanceBetweenTwoPoints(oldPosition, mPosition) >= (ui->doubleSpinBox_Range->value()) * mNm2m /2){ - radius = ui->doubleSpinBox_Range->value() * mNm2m; // m - double mult = 1.1; - auto p1 = calculateDerivedPosition(mPosition, mult * radius, 0); - auto p2 = calculateDerivedPosition(mPosition, mult *radius, 90); - auto p3 = calculateDerivedPosition(mPosition, mult *radius, 180); - auto p4 = calculateDerivedPosition(mPosition, mult *radius, 270); - - auto *fairWindApp = (Portolano *)getFairWindApp(); - auto db = fairWindApp->getDb(); - if (db->open()) { - QSqlQuery query(*db); - QString q = QString("SELECT * FROM ports WHERE lat > %1 AND lat < %2 AND lon < %3 AND lon > %4;") - .arg(p3.latitude()).arg(p1.latitude()) - .arg(p2.longitude()).arg(p4.longitude()); - query.prepare(q); - query.exec(); - - insertIntoList(query); - } - - oldPosition = mPosition; - } - } - } - - // Private functions - - double MainPage::getDistanceBetweenTwoPoints(QGeoCoordinate p1, QGeoCoordinate p2){ - double R = 6378137; //m - double dLat = degreeToRadians(p2.latitude() - p1.latitude()); - double dLon = degreeToRadians(p2.longitude() - p1.longitude()); - double lat1 = degreeToRadians(p1.latitude()); - double lat2 = degreeToRadians(p2.latitude()); - - double a = sin(dLat / 2) * sin(dLat / 2) + sin(dLon / 2) * sin(dLon / 2) * cos(lat1) * cos(lat2); - double c = 2 * atan2(sqrt(a), sqrt(1 - a)); - double d = R * c; - - return d; - } - - bool MainPage::pointIsInCircle(QGeoCoordinate p1, QGeoCoordinate p2) { - if (getDistanceBetweenTwoPoints(p1, p2) <= radius) - return true; - else - return false; - } - - double MainPage::degreeToRadians(double degrees){ - return degrees * M_PI / 180; - } - - double MainPage::radiansToDegree(double radians){ - return (radians * (180 / M_PI)); - } - - QGeoCoordinate MainPage::calculateDerivedPosition(QGeoCoordinate point, double radius, double bearing) { - double EarthRadius = 6378137; // m - - double latA = degreeToRadians(point.latitude()); - double lonA = degreeToRadians(point.longitude()); - double trueCourse = degreeToRadians(bearing); - - double angularDistance = radius / EarthRadius; - - double lat = asin(sin(latA) * cos(angularDistance) + cos(latA) * sin(angularDistance) * cos(trueCourse)); - - double dlon = atan2(sin(trueCourse) * sin(angularDistance) * cos(latA), cos(angularDistance) - sin(latA) * sin(lat)); - - double lon = fmod((lonA + dlon + M_PI), (M_PI * 2)) - M_PI; - - lat = radiansToDegree(lat); - lon = radiansToDegree(lon); - - QGeoCoordinate new_point(lat, lon); - - return new_point; - } - - void MainPage::onResume() { - // Get app config - auto config = getFairWindApp()->getConfig(); - - ui->checkBox_Range->setChecked(config["userRange"].toBool()); - ui->doubleSpinBox_Range->setValue(config["range"].toDouble()); - } -} // fairwind::appls::portolano diff --git a/apps/portolano/MainPage.hpp b/apps/portolano/MainPage.hpp deleted file mode 100644 index 42c972a..0000000 --- a/apps/portolano/MainPage.hpp +++ /dev/null @@ -1,68 +0,0 @@ -// -// Created by Raffaele Montella on 14/01/22. -// - -#ifndef PORTOLANO_MAINPAGE_HPP -#define PORTOLANO_MAINPAGE_HPP - -#include -#include -#include -#include -#include - -#include "MainPage.hpp" -#include "ui_MainPage.h" - -namespace fairwind::apps::portolano { - QT_BEGIN_NAMESPACE - namespace Ui { class MainPage; } - QT_END_NAMESPACE - - class MainPage : public fairwind::apps::PageBase { - Q_OBJECT - - public: - explicit MainPage(QWidget *parent = nullptr, FairWindApp *fairWindApp = nullptr); - - ~MainPage(); - - void onResume(); - - public slots: - void onEditTextChanged(const QString &text); - - void onBoolChanged(int state); - - void onNumberTextChanged(const QString &text); - - void onNumberSelectChanged(double value); - - void updateNavigationPosition(const QJsonObject update); - - private: - Ui::MainPage *ui; - - QGeoCoordinate mPosition; - - QGeoCoordinate oldPosition; - - double radius; - - const double mNm2m = 1852; - - QGeoCoordinate calculateDerivedPosition(QGeoCoordinate point, double range, double bearing); - - double degreeToRadians(double degree); - - double radiansToDegree(double radians); - - void insertIntoList(QSqlQuery query); - - bool pointIsInCircle(QGeoCoordinate p1, QGeoCoordinate p2); - - double getDistanceBetweenTwoPoints(QGeoCoordinate p1, QGeoCoordinate p2); - }; -} // fairwind::appls::portolano - -#endif //PORTOLANO_MAINPAGE_HPP diff --git a/apps/portolano/MainPage.ui b/apps/portolano/MainPage.ui deleted file mode 100644 index 17667c3..0000000 --- a/apps/portolano/MainPage.ui +++ /dev/null @@ -1,77 +0,0 @@ - - - fairwind::apps::portolano::MainPage - - - - 0 - 0 - 675 - 201 - - - - MainPage - - - - - - - - - - Search - - - - - - - - 0 - 0 - - - - true - - - - - - - - - - Range - - - - - - - - - - nm - - - - - - - - - background-color: rgba(14, 18, 60, 128); -color: rgb(250, 255, 255); - - - - - - - - - - diff --git a/apps/portolano/Portolano.cpp b/apps/portolano/Portolano.cpp deleted file mode 100644 index 4c7c348..0000000 --- a/apps/portolano/Portolano.cpp +++ /dev/null @@ -1,159 +0,0 @@ -// -// Created by __author__ on 16/07/2021. -// - -#include - -#include -#include -#include -#include -#include - -#include "Portolano.hpp" -#include "MainPage.hpp" - -namespace fairwind::apps::portolano { - void Portolano::onCreate() { - FairWindApp::onCreate(); - - mDb = QSqlDatabase::addDatabase("QSQLITE"); - - - - auto geoJsonFileName = getDataPath()+QDir::separator()+"ports.json"; - auto databaseFileName = getDataPath()+QDir::separator()+"ports.sqlite"; - - mDb.setDatabaseName(databaseFileName); - if (mDb.open()) { - - QSqlQuery query(mDb); - query.exec("PRAGMA case_sensitive_like = true;"); - - auto filePorts = QFile(geoJsonFileName); - if (!filePorts.exists()) { - auto filePortsFromResources = QFile(":/resources/data/ports.json"); - filePortsFromResources.open(QFile::ReadOnly); - filePorts.open(QFile::WriteOnly); - filePorts.write(filePortsFromResources.readAll()); - filePorts.flush(); - filePorts.close(); - filePortsFromResources.close(); - - query.exec("DROP TABLE IF EXISTS ports;"); - query.exec( - "CREATE TABLE ports (id INTEGER NOT NULL PRIMARY KEY, name TEXT NOT NULL, lon DOUBLE NOT NULL, lat DOUBLE NOT NULL,feature TEXT NOT NULL);"); - - - auto filePortsFromData = QFile(geoJsonFileName); - filePortsFromData.open(QFile::ReadOnly); - - auto jsonDocument = QJsonDocument::fromJson(filePortsFromData.readAll()); - QJsonObject jsonObjectPorts = jsonDocument.object(); - if (jsonObjectPorts.contains("features") && jsonObjectPorts["features"].isArray()) { - auto jsonArrayFeatures = jsonObjectPorts["features"].toArray(); - for (auto jsonFeature: jsonArrayFeatures) { - if (jsonFeature.isObject()) { - auto jsonObjectFeature = jsonFeature.toObject(); - - if (jsonObjectFeature.contains("type") && jsonObjectFeature["type"].isString() && - jsonObjectFeature["type"].toString() == "Feature") { - if (jsonObjectFeature.contains("properties") && - jsonObjectFeature["properties"].isObject()) { - auto jsonObjectProperties = jsonObjectFeature["properties"].toObject(); - - if (jsonObjectFeature.contains("geometry") && - jsonObjectFeature["geometry"].isObject()) { - auto jsonObjectGeometry = jsonObjectFeature["geometry"].toObject(); - - if (jsonObjectGeometry.contains("type") && - jsonObjectGeometry["type"].isString()) { - auto type = jsonObjectGeometry["type"].toString(); - - if (type == "Point") { - - if (jsonObjectGeometry.contains("coordinates") && - jsonObjectGeometry["coordinates"].isArray()) { - auto jsonArrayCoordinates = jsonObjectGeometry["coordinates"].toArray(); - - - double lon = jsonArrayCoordinates[0].toDouble(); - double lat = jsonArrayCoordinates[1].toDouble(); - - if (jsonObjectProperties.contains("id") && - jsonObjectProperties["id"].isDouble()) { - - int id = jsonObjectProperties["id"].toInt(); - - if (jsonObjectProperties.contains("name") && - jsonObjectProperties["name"].isString()) { - auto name = jsonObjectProperties["name"].toString(); - - QJsonDocument doc(jsonObjectFeature); - QString strJsonFeature(doc.toJson(QJsonDocument::Compact)); - - QString q = QString( - "INSERT INTO ports(id, name, lon, lat, feature) VALUES (%1, '%2', %3, %4, '%5');") - .arg(id) - .arg(name) - .arg(lon) - .arg(lat) - .arg(strJsonFeature); - qDebug() << "q:" << q; - query.prepare(q); - if (!query.exec()) { - qDebug() << "Query failed: " << query.lastError(); - qDebug() << " : " << query.lastQuery(); - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - /* - * Called by the FairWind framework when the app is invoked for the first time - */ - void Portolano::onStart() { - FairWindApp::onStart(); - - auto mainPage = new MainPage(nullptr, this); - add(mainPage); - show(); - } - - void Portolano::onResume() { - FairWindApp::onResume(); - } - - void Portolano::onPause() { - FairWindApp::onPause(); - } - - void Portolano::onStop() { - FairWindApp::onStop(); - } - - void Portolano::onDestroy() { - - mDb.close(); - FairWindApp::onDestroy(); - } - - void Portolano::onConfigChanged() { - FairWindApp::onConfigChanged(); - } - - QSqlDatabase *Portolano::getDb() { - return &mDb; - } - -} diff --git a/apps/portolano/Portolano.hpp b/apps/portolano/Portolano.hpp deleted file mode 100644 index f35ee28..0000000 --- a/apps/portolano/Portolano.hpp +++ /dev/null @@ -1,42 +0,0 @@ -// -// Created by Raffaele Montella on 15/07/21. -// - -#ifndef PORTOLANO_HPP -#define PORTOLANO_HPP - -#include -#include -#include - -#include - - -namespace fairwind::apps::portolano { - class Portolano : public IFairWindApp { - Q_OBJECT - Q_PLUGIN_METADATA(IID IID_FAIRWIND_APPS FILE "manifest.json") - Q_INTERFACES(fairwind::apps::IFairWindApp) - - public: - ~Portolano() = default; - - // App lifecycle - void onCreate() override; - void onStart() override; - void onResume() override; - void onPause() override; - void onStop() override; - void onDestroy() override; - - void onConfigChanged() override; - - QSqlDatabase *getDb(); - - private: - - QSqlDatabase mDb; - }; -} - -#endif //PORTOLANO_HPP diff --git a/apps/portolano/ResultItem.cpp b/apps/portolano/ResultItem.cpp deleted file mode 100644 index 3ae2ade..0000000 --- a/apps/portolano/ResultItem.cpp +++ /dev/null @@ -1,238 +0,0 @@ -// -// Created by Raffaele Montella on 31/01/22. -// - -// You may need to build the project (run Qt uic code generator) to get "ui_ResultItem.h" resolved - -#include -#include -#include -#include -#include -#include "ResultItem.hpp" -#include "ui_ResultItem.h" - -namespace fairwind::apps::portolano { - ResultItem::ResultItem(QWidget *parent, QJsonObject feature) : - QWidget(parent), ui(new Ui::ResultItem), mFeature(feature) { - ui->setupUi(this); - - // qDebug() << "fairwind::apps::portolano: " << feature; - - // Get the FairWind singleton - auto fairWind = fairwind::FairWind::getInstance(); - - // Get the signalk document from the FairWind singleton itslef - auto signalKDocument = fairWind->getSignalKDocument(); - - if (mFeature.contains("geometry") && - mFeature["geometry"].isObject()) { - auto jsonObjectGeometry = mFeature["geometry"].toObject(); - - if (jsonObjectGeometry.contains("type") && - jsonObjectGeometry["type"].isString()) { - auto type = jsonObjectGeometry["type"].toString(); - - if (type == "Point") { - - if (jsonObjectGeometry.contains("coordinates") && - jsonObjectGeometry["coordinates"].isArray()) { - auto jsonArrayCoordinates = jsonObjectGeometry["coordinates"].toArray(); - - - double lon = jsonArrayCoordinates[0].toDouble(); - double lat = jsonArrayCoordinates[1].toDouble(); - mPosition = QGeoCoordinate(lat,lon); - ui->label_Position->setText(mPosition.toString(QGeoCoordinate::DegreesMinutesSecondsWithHemisphere)); - } - } - } - } - if (mFeature.contains("properties") && mFeature["properties"].isObject()) { - auto jsonObjectProperties = mFeature["properties"].toObject(); - - if (jsonObjectProperties.contains("mapId") && jsonObjectProperties["mapId"].isString()) { - auto mapId = jsonObjectProperties["mapId"].toString(); - QStringList list = mapId.split("_"); - QString iconPath = ":/resources/images/ports/"+list[0]+QDir::separator()+mapId+".jpg"; - QFile iconFile(iconPath); - if(!iconFile.exists()){ - ui->label_Icon->setPixmap(QPixmap::fromImage(QImage(":/resources/images/ports/no_icon.png"))); - }else{ - // qDebug() << "iconPath: " << iconPath; - ui->label_Icon->setPixmap(QPixmap::fromImage(QImage(iconPath))); - } - iconFile.close(); - } - - if (jsonObjectProperties.contains("name") && jsonObjectProperties["name"].isString()) { - auto name = jsonObjectProperties["name"].toString(); - ui->label_Name->setText(name); - } - if (jsonObjectProperties.contains("description") && jsonObjectProperties["description"].isString()) { - auto description = jsonObjectProperties["description"].toString(); - ui->textEdit_Description->setText(description); - } - - if (jsonObjectProperties.contains("contacts")) { - - if (jsonObjectProperties["contacts"].isString()) { - auto contact = jsonObjectProperties["contacts"].toString(); - ui->listWidget_Contacts->addItem(contact); - - } else if (jsonObjectProperties["contacts"].isArray()) { - auto contacts = jsonObjectProperties["contacts"].toArray(); - for (auto contact: contacts) { - if (contact.isString()) { - ui->listWidget_Contacts->addItem(contact.toString()); - } - } - } - } - - if (jsonObjectProperties.contains("seaFloor") && jsonObjectProperties["seaFloor"].isObject()) { - auto jsonObjectSeaFloor = jsonObjectProperties["seaFloor"].toObject(); - if (jsonObjectSeaFloor.contains("minDepth") && jsonObjectSeaFloor["minDepth"].isDouble()) { - ui->label_Seafloor_Min_value->setText(QString::number(jsonObjectSeaFloor["minDepth"].toDouble())); - } else { - ui->label_Seafloor_Min_value->setVisible(false); - ui->label_Seafloor_Min->setVisible(false); - } - - if (jsonObjectSeaFloor.contains("maxDepth") && jsonObjectSeaFloor["maxDepth"].isDouble()) { - ui->label_Seafloor_Max_value->setText(QString::number(jsonObjectSeaFloor["maxDepth"].toDouble())); - } else { - ui->label_Seafloor_Max_value->setVisible(false); - ui->label_Seafloor_Max->setVisible(false); - } - - - if (jsonObjectSeaFloor.contains("type") && jsonObjectSeaFloor["type"].isArray()) { - auto jsonArraySeaFloorType = jsonObjectSeaFloor["type"].toArray(); - for (auto item:jsonArraySeaFloorType) { - if (item.isString()) { - auto seafloorType = item.toString(); - QString seaFloorIconName = ":/resources/images/icons/seafloor/"; - if (seafloorType == "sand") { - seaFloorIconName+="sand_icon.png"; - } else if (seafloorType == "mud") { - seaFloorIconName+="mud_icon.png"; - } else if (seafloorType == "rock") { - seaFloorIconName+="rocks_icon.png"; - } else if (seafloorType == "algae") { - seaFloorIconName+="algae_icon.png"; - } else if (seafloorType == "coral") { - seaFloorIconName+="corals_icon.png"; - } if (seafloorType == "good") { - seaFloorIconName+="good_icon.png"; - } if (seafloorType == "bad") { - seaFloorIconName+="bad_icon.png"; - } - - auto seaFloorTypeButton = new QToolButton(); - seaFloorTypeButton->setIcon(QIcon(QPixmap::fromImage(QImage(seaFloorIconName)))); - seaFloorTypeButton->setIconSize(QSize(32,32)); - seaFloorTypeButton->setToolTip(seafloorType); - ui->horizontalLayout_Seafloor->addWidget(seaFloorTypeButton); - } - } - } - - } else { - ui->groupBox_Seafloor->setVisible(false); - } - - // Get the signalk document's string - QString self = signalKDocument->getSelf(); - - // Subscribe to signalk and make sure that navigation infos are updated accordingly - signalKDocument->subscribe(self + ".navigation.position.value", this, SLOT(ResultItem::updateNavigationPosition)); - signalKDocument->subscribe(self + ".navigation.speedOverGround.value", this, - SLOT(TopBar::updateNavigationSpeedOverGround)); - } - } - - ResultItem::~ResultItem() { - delete ui; - } - -/* - * updateNavigationCourseOverGroundTrue - * Method called in accordance to signalk to update the navigation course over ground - */ - void ResultItem::updateNavigationPosition(const QJsonObject update) { - // Get the FairWind singleton - auto fairWind = fairwind::FairWind::getInstance(); - - // Get the signalk document from the FairWind singleton itself - auto signalKDocument = fairWind->getSignalKDocument(); - - // Set the search path - QString path = signalKDocument->getSelf() + ".navigation.position.value"; - - // Get the position value - QJsonValue positionValue = signalKDocument->subtree(path); - - // Check if the value is valid - if (positionValue.isObject()) { - - // Get latitude - double latitude = positionValue.toObject()["latitude"].toDouble(); - - // Get longitude - double longitude = positionValue.toObject()["longitude"].toDouble(); - - QGeoCoordinate vesselPosition = QGeoCoordinate(latitude,longitude); - - if (vesselPosition.isValid() && mPosition.isValid()) { - - ui->label_DTG_value->setText( - QString{"%1"}.arg(vesselPosition.distanceTo(mPosition)/1852, 3, 'f', 1, '0') - ); - - ui->label_BTG_value->setText( - QString{"%1"}.arg(vesselPosition.azimuthTo(mPosition), 3, 'f', 0, '0') - ); - } else { - ui->label_DTG_value->setText("n/a"); - ui->label_BTG_value->setText("n/a"); - } - - } - } - - /* - * updateNavigationSpeedOverGround - * Method called in accordance to signalk to update the navigation speed over ground - */ - void ResultItem::updateNavigationSpeedOverGround(const QJsonObject update) { - // Get the FairWind singleton - auto fairWind = fairwind::FairWind::getInstance(); - // Get the signalk document from the FairWind singleton itself - auto signalKDocument = fairWind->getSignalKDocument(); - // Set the search path - QString path = signalKDocument->getSelf() + ".navigation.speedOverGround"; - - // Get the position value - QJsonValue positionValue = signalKDocument->subtree(path); - // Check if the value is valid - if (positionValue.isObject()) { - // Get the speed value - double speedverGround = positionValue.toObject()["value"].toDouble() * 1.94384; - - double distanceTo = ui->label_DTG_value->text().toDouble(); - double timeTo = 3600*distanceTo/speedverGround; - - int hours = timeTo / 3600; - int minutes = (timeTo-hours)/60; - int seconds = ((timeTo-hours)/60.0 - minutes)/60; - auto ttg = QTime(hours,minutes,seconds); - - auto eta = QDateTime::currentDateTime(); - eta = eta.addSecs(timeTo); - - ui->label_TTG_value->setText(ttg.toString()); - ui->label_ETA_value->setText(eta.toString()); - } - } -} // fairwind::apps::portolano diff --git a/apps/portolano/ResultItem.hpp b/apps/portolano/ResultItem.hpp deleted file mode 100644 index a2fe21a..0000000 --- a/apps/portolano/ResultItem.hpp +++ /dev/null @@ -1,37 +0,0 @@ -// -// Created by Raffaele Montella on 31/01/22. -// - -#ifndef FAIRWIND_RESULTITEM_HPP -#define FAIRWIND_RESULTITEM_HPP - -#include -#include - -namespace fairwind::apps::portolano { - QT_BEGIN_NAMESPACE - namespace Ui { class ResultItem; } - QT_END_NAMESPACE - - class ResultItem : public QWidget { - Q_OBJECT - - public: - explicit ResultItem(QWidget *parent = nullptr, QJsonObject feature = QJsonObject()); - - ~ResultItem() override; - - - public slots: - - void updateNavigationPosition(const QJsonObject update); - void updateNavigationSpeedOverGround(const QJsonObject update); - - private: - Ui::ResultItem *ui; - QGeoCoordinate mPosition; - QJsonObject mFeature; - }; -} // fairwind::apps::portolano - -#endif //FAIRWIND_RESULTITEM_HPP diff --git a/apps/portolano/ResultItem.ui b/apps/portolano/ResultItem.ui deleted file mode 100644 index 6c69a70..0000000 --- a/apps/portolano/ResultItem.ui +++ /dev/null @@ -1,700 +0,0 @@ - - - fairwind::apps::portolano::ResultItem - - - - 0 - 0 - 979 - 365 - - - - ResultItem - - - false - - - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - - 300 - 300 - - - - background-color: rgba(255, 255, 255, 0); - - - - - - - - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - - - - Qt::RichText - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - background-color: rgba(255, 255, 255, 0); - - - true - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Contacts - - - - - - - - 0 - 0 - - - - background-color: rgba(255, 255, 255, 0); - - - - - - - - - - - - - - 0 - 0 - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Vessel (max, m) - - - - - 10 - 10 - 216 - 80 - - - - - 5 - - - 5 - - - - - 5 - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Loa: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - 0 - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Bmax: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - 0 - - - - - - - - - - - background-color: rgba(255, 255, 255, 0); - - - Max H: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - 0 - - - - - - - - - - - - - - 0 - 0 - - - - - 75 - true - - - - Qt::LeftToRight - - - background-color: rgba(255, 255, 255, 0); - - - Slips - - - - - 30 - 20 - 213 - 80 - - - - - 5 - - - 5 - - - - - background-color: rgba(255, 255, 255, 0); - - - - - - - - - - - - - false - - - - - - - - - - - - 0 - 0 - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Seafloor (m) - - - Qt::AlignCenter - - - - - 30 - 20 - 213 - 80 - - - - - - - - - - 0 - 0 - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Max - - - - - - - background-color: rgba(255, 255, 255, 0); - - - - - - - - - - - 75 - true - - - - Min - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - Services - - - - - 10 - 10 - 160 - 80 - - - - - - - - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - DTG: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - 0 - - - - - - - - 0 - 0 - - - - background-color: rgba(255, 255, 255, 0); - - - nm - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - BTG: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - - - - - - - - background-color: rgba(255, 255, 255, 0); - - - ° - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - TTG: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - 00:00:00 - - - - - - - - - - - - 75 - true - - - - background-color: rgba(255, 255, 255, 0); - - - ETA: - - - - - - - background-color: rgba(255, 255, 255, 0); - - - 12:00:00 - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - background-color: rgba(255, 255, 255, 0); -border-color: rgb(98, 98, 98); -border-width : 3px; -border-style:inset; - - - Info - - - - - - - background-color: rgba(255, 255, 255, 0); -border-color: rgb(98, 98, 98); -border-width : 3px; -border-style:inset; - - - Find - - - - - - - background-color: rgba(255, 255, 255, 0); -border-color: rgb(98, 98, 98); -border-width : 3px; -border-style:inset; - - - Goto - - - - - - - - - - - - - background-color: rgba(255, 255, 255, 128); - - - QFrame::Sunken - - - 1 - - - Qt::Horizontal - - - - - - - - diff --git a/apps/portolano/manifest.json b/apps/portolano/manifest.json deleted file mode 100644 index 210023e..0000000 --- a/apps/portolano/manifest.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "Name" : "Portolano", - "Version" : "0.0.1", - "CompatVersion" : "0.0.1", - "Vendor" : "University of Naples Parthenope", - "Copyright" : "(C) 2021 The FairWind Team", - "License" : "Apache 2.0", - "Category" : "Apps", - "Description" : "A list for harbours and anchoring bays in the Mediterranean Sea", - "Url" : "http://fairwind.uniparthenope.it/", - "FairWind": { - "App": { - "Email": "fairwind@uniparthenope.it", - "Id": "fairwind.apps.portolano", - "Icon": ":/resources/images/icons/portolano_icon.png", - "Settings": { - "$schema": "http://json-schema.org/draft-04/schema#", - "type": "object", - "properties": { - "userRange": { - "title": "Use Range", - "description": "User range filter or (if not selected), just search", - "default": false, - "type": "boolean" - }, - "range": { - "title": "Range", - "description": "The range in selected distance measure unit (i.e. nautical miles)", - "default": 6.5, - "type": "number" - }, - "lastSearched": { - "type": "array", - "items": [ - { - "type": "string" - } - ] - } - }, - "required": [ - "userRange", - "range" - ] - } - } - } -} diff --git a/apps/portolano/resources/data/ports.json b/apps/portolano/resources/data/ports.json deleted file mode 100644 index 67ada09..0000000 --- a/apps/portolano/resources/data/ports.json +++ /dev/null @@ -1,26201 +0,0 @@ -{ - "features": [ - { - "type": "Feature", - "properties": { - "id": 1, - "mapId": "GR_079", - "name": "PORTO KHELI", - "description": "Browsing the Peloponnese always counterclockwise and rounded up a promontory, left Koiladhia find 6-7 miles a series of gulfs that offer good anchors.Until a large bay is reached, Port Kheli, facing the island of Spetsai.This is a safe retreat at all times.The bay has a conformation that ends in an almost round basin, where in its left side the village of Porto Kheli has arisen.This is a town with tourist propensity and with good nautical services.Almost all the sea front of the country is quack.Here you can give bottom to your own and accumulate at the pier, while alternatively there are the numerous anchors on the two sides of the access channel to the basin itself." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.13083333, - 37.31116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 2, - "mapId": "GR_078", - "name": "BALTIZA CREEK - DAPIA", - "description": "Baltiza Creek and Dapia are two tourist towns located in the northeast promontory of the island of Spetsai.There are numerous landings here, with many possibilities of moorings.Once placed in one of the two locations, Baltiza and Dapia anchors, you can dedicate yourself to interesting land excursions.Here tourism, both traditional and nautical, offers excellent services;For boats: water and fuel in a quay, Ship Chandler, taverns, shops and supermarkets." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.16416667, - 37.26416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 3, - "mapId": "GR_077", - "name": "LIMIS IDHRA", - "description": "Idthra is an elongated island that extends horizontally offshore, from 3 to 5 miles, of the promontory of Khersonisos Erminios in the Peloponnese. Eros is the highest hill on the island, 590 meters, the top of which is around the center; The island is arid and devoid of vegetation.\n\nIdthra is the location that takes the name of the island of the same name, has a landing with a tooled pier and good nautical services. Located in the inner side of the Idhra steno canal, the port is exposed to the wind from the north-north west that when it reinforces it is dangerous for the horms of the Frangiflutti pier; Inside the basin there is another smaller pier, frequented by fishing boats. Conspicuous point to spot the entrance to the port is, on the right side, a large monastery. A good land and quiet anchor, less than a mile east of Idthra, is Mandraki, bay clearly visible for the presence at the bottom of a hotel; The anchor is on a backdrop of 5-10 meters, facing the hotel beach." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.46666667, - 37.35016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 4, - "mapId": "GR_076", - "name": "KOLPOS IDHRAS ERMIONI", - "description": "The Great Kolpos Idhras, between the Peloponnese Coast and the Dhokos and Idhra Islands, offers a significant number of bays and boat shelters.The largest bay is Ermioni, who in the deepest part has a fishing marina.The town arose on a long peninsula.The landing of Ermioni is not always able to offer hospitality, however there are several possibilities of anchoring, at the bottom of the bay on seabed from 2 to 4 meters and on the south side of the peninsula in points with fish on 4-5 meters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.26133333, - 37.38733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 5, - "mapId": "GR_071", - "name": "ORMOS SKINDOS", - "description": "Skindos is a large bay in the north side of the island of Dhokos.It offers numerous anchoring possibilities according to weather conditions, in well-backed winders.The most frequented anchoring is the small bay Derrik Cove around which there are a number of houses." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.335, - 37.34933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 6, - "mapId": "GR_083", - "name": "NISOS POROS", - "description": "Continuing to navigate along the eastern Peloponnese coast towards the Corinth Canal, we enter the Gulf of Saronico Interesting for the numerous islands and the many landings.Poros is the first island that becomes, after leaving Idthra which is about ten miles.Among the island of Poros and the mainland a channel is narrowed where two suggestive locations arose, Galatas on the peloponnese side and Poros in the island of the same name.Both locations have numerous moorings, reserved however with fish boats less than 2 meters.Better therefore circumnavigate for the north the island of Poros and enter from this side in the canal, thus being able to choose more security the most suitable anchorage to your boat.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.42183333, - 37.527 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 7, - "mapId": "GR_084", - "name": "METHANA", - "description": "A good landing before passing the Corinth Channel and conclude the anti-clock navigation of the Peloponnese, is Methana.The location has a port that offers a good strategic refuge to visit the islands of the Gulf of Saronico.Methana could be exchanged for an island, in reality it is a peninsula, being connected with the mainland in the southern slope from a narrow strip of land.The port of Methana is easily identifiable because it is located at the end of the inhabited center, it is easily identified following the long sea towards the south.It is a quiet town frequented by a popular popular tourism Greek.The basin has a draft between 2 and 3 meters.The harbor water is sulphurous and therefore several yachts use a textile cable for the mooring to avoid the corrosive action of water to the chain.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.38983333, - 37.5745 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 8, - "mapId": "GR_081", - "name": "CORINTH YACHT HARBOUR", - "description": "The Corinth Yacht Harbor is difficult to identify especially at night due to the lights of the inhabited center of Corinth.It is the approad closer to the canal, useful for various supplies, water in the jetty, fuel with mini-tanker with transport to the moor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.93633333, - 37.941 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 9, - "mapId": "GR_090", - "name": "CORINTH CANAL (Est)", - "description": "The Corinth Canal is 3 miles long, 25 meters wide and has an average depth of 8 meters. In addition to merchant traffic, the canal represents an advantage for boats from the Adriatic intend to go on a cruise in the Aegean sea islands and Turkey. The alternative is the peloponnese dungeon that for small boats means stretching the navigation at least a few days. For the transit of the Corinth Canal, the control tower must be contacted via the VHF radio channel 11. Payment, both in cash and by credit card, is carried out in the offices of the Customers Service Dept. which are located in the building at the base of the control tower. The cost of transit it is possible to know him with a convenient calculation system on the Corinth Canal website (http: //www.CorinthCanal. Com / fees1.php) indicating the characteristics of the boat. For example, for a 12-meter sailboat the cost is 166.00 euros, including VAT. For information you can contact Customer Service (tel. +30 27410 30886)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.95083333, - 37.95416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 10, - "mapId": "GR_089", - "name": "ORMOS KORINTHOU", - "description": "The Ormos Korinthou is the Gulf of the west side of the Corinth Canal.Here there are different possibilities of mooring useful before or later to the passage of the channel.A good landing is Kiato (38 * 00.88 N - 22 * 45.24 and) well protected from Western winds while it is open to the eastern ones.Good nautical services of the marina and the country that has fishing traditions, good taverns in the long sea, mini-market, bus service for Athens." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.948, - 37.95483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 11, - "mapId": "GR_082", - "name": "KIATO", - "description": "The Ormos Korinthou is the Gulf of the west side of the Corinth Canal.Here there are different possibilities of mooring useful before or later to the passage of the channel.A good landing is Kiato (38 * 00.88 N - 22 * 45.24 and) well protected from Western winds while it is open to the eastern ones.Good nautical services of the marina and the country that has fishing traditions, good taverns in the long sea, mini-market, bus service for Athens." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.754, - 38.01466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 12, - "mapId": "LI_001", - "name": "VENTIMIGLIA", - "contacts": [ - "0184 231444 Capitaneria", - "0184 34820 Circolo velico" - ], - "description": "It is the first Italian citizen after the border with France.The landing area in Marina S. Giuseppe, has a pier unpanned elbow\nprotected to and partially in S. other suggestive park (daytime only) in front of the beach Balzi Rossi, immediately before the French border;oval bowls,\nImpressive cliffs, clear waters.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.596833333, - 43.78816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 13, - "mapId": "LI_002", - "name": "BORDIGHERA", - "contacts": [ - "0184 265656 Capitaneria", - "0184 266688 Direz. Porto", - "E-mail: ufficioporto@comune.bordighera.it", - "Vhf 9" - ], - "description": "Pleasant marina to Ne of Capo S. Campeglio, at municipal management.Free mooring 48 hours to transit.", - "slips": 220, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.678333333, - 43.78133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 14, - "mapId": "LI_003", - "name": "CAPO PINO", - "contacts": [ - "0184 689184 Capo Pino sas" - ], - "description": "Porto Private refuge A and Capo Nero suitable for poor fishing boats and practicable only in summer.It is moored at the dock of overflow, equipped with rings, with a dead body or even its own.Traversie: And if.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.743, - 43.79783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 15, - "mapId": "LI_010A", - "name": "SANREMO - PORTO PUBBLICO", - "contacts": [ - "0184 505531 Capitaneria", - "0184 502023 Yacht Club", - "Vhf 14" - ], - "description": "Sanremo is recognizable from the extension of its buildings among which the mole of the cathedral stands out, reference for the entrance into the port even at night because illuminated.A single large basin hosts the moorings of the public harbor at W (100 m of free moor pier for transit and 8 floating piers managed by private individuals) and the private marina of Portosole to E. At the entrance to the port the backdrop is 10m;The basin is easy even for large boats, but is reduced to 3 m inside.", - "slips": 450, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.784666667, - 43.81616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 16, - "mapId": "LI_010B", - "name": "SANREMO - PORTOSOLE", - "contacts": [ - "0184 505531 Capitaneria", - "0184 5371 Portosole Spa", - "Vhf 9", - "E-mail: portosole@uno.it" - ], - "description": "Sanremo is recognizable from the extension of its buildings among which the mole of the cathedral stands out, reference for the entrance into the port even at night because illuminated.A single large basin hosts the moorings of the public harbor at W (100 m of free moor pier for transit and 8 floating piers managed by private individuals) and the private marina of Portosole to E. At the entrance to the port the backdrop is 10m;The basin is easy even for large boats, but is reduced to 3 m inside.", - "slips": 827, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.786833333, - 43.81716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 17, - "mapId": "LI_046", - "name": "ARMA DI TAGGIA", - "contacts": [ - "0184 42538 Capitaneria", - "0184 41021 Circolo Nautico", - "E-mail: cna.arma@tiscali.it" - ], - "description": "The municipal marina is managed by the Nautical Circle (Onlus), and is located in the mouth of Argentine stream with Escavo of a dock in the shore W. Access is conditioned by the insogabiente that undergoes the mouth with sea formed.It is possible to stop to the transit for a few boats (Maximum fish 1,8 m) in the quack pier to Ponente of the river.", - "slips": 195, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.2, - "maxDepth": -1.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.86, - 43.8305 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 18, - "mapId": "LI_053", - "name": "MARINA DEGLI AREGAI", - "contacts": [ - "0184 481006 Capitaneria", - "0184 4891 Marina Aregai Spa", - "0184 489213 Cantiere degli Aregai", - "E-mail: marinaregai@libero.it", - "www.marinadegliaregai.it", - "Vhf 9" - ], - "description": "The port is at Levante of the graceful village of Santo Stefano al Mare.The Marina Tower is the reference for entry.The transit are reserved 70 seats, quality services, construction site equipped with a 100 ton travel lift.Possibility of anchoring in the face of the village town, 5-12 m of seabed.", - "slips": 989, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.918666667, - 43.83966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 19, - "mapId": "LI_006", - "name": "MARINA DI SAN LORENZO AL MARE", - "contacts": [ - "0183 481006 Capitaneria", - "0183 91773 Direzione porto turistico", - "349 6994229 Circ. Nautico \u201cI Delfini\u201d", - "www.marinadisanlorenzo.it", - "Vhf 9" - ], - "description": "At 200 m east from the old haven of Capo San Lorenzo there is the new Marina.Work on the ground are underway.Contact the direction for mooring authorization.", - "slips": 365, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.9675, - 43.85383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 20, - "mapId": "LI_007", - "name": "IMPERIA - PORTO MAURIZIO", - "contacts": [ - "0183 666333 Capitaneria", - "0183 667453 Porto Imperia", - "www.portodimperia.it", - "Vhf 9" - ], - "description": "The dome and the two bell towers of the Duomo of San Maurizio are good conspicuous points of the water.a new tourist port is under construction that will lead to double the number of moorings;In the meantime, Barc seats remain accessible and the services.Mooring for transit at the Gold Medal Dock (max 8 days).Entertaining 40 m from the piers to be submerged.A little more A and there is the marina of S. Lazzaro for small boats.In February 2007, the excluding excades and realization works have begun that he will see the Union of the historic port of San Maurizio with that of San Lazzaro.", - "slips": 711, - "temporarySlips": 50, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -7.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.032166667, - 43.8765 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 21, - "mapId": "LI_009", - "name": "DIANO MARINA", - "contacts": [ - "0183 497458 Capitaneria", - "0183 495131 Porticciolo" - ], - "description": "Recognizable for high bell tower with red dome, in the center of the town, with punched banks on the shore W of the St. Peter's Torrent.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.086333333, - 43.9075 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 22, - "mapId": "LI_011", - "name": "MARINA DI ANDORA", - "contacts": [ - "0182 88899 Capitaneria", - "0182 88313 Direzione Porto", - "Vhf 9" - ], - "description": "The marina is A and of the village of Andora, with the entrance to Levante;Follow the \"S\" channel of the mouth.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.1605, - 43.95066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 23, - "mapId": "LI_012", - "name": "ALASSIO PORTO LUCA FERRARI", - "contacts": [ - "0182 640861 Capitaneria", - "0182 645012 Marina di Alassio Spa", - "0182 642516 CN Al Mare", - "E-mail: info@marinadialassio.net", - "Vhf 9" - ], - "description": "Immediately at Levante di Capo Appe the port is made under the mountain at the foot of Capo S. Croce;The Votive Chapel Stella Maris, dominates the port.Porto Dealer is the Marina di Alassi company and part of the quays is managed by the Nautical Circle by the sea.You can navigate to 1 mile from the coast around the Gallinara island but the landing is prohibited.", - "slips": 400, - "temporarySlips": 40, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.194666667, - 44.0205 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 24, - "mapId": "LI_015", - "name": "MARINA DI LOANO", - "contacts": [ - "019 666131 Capitaneria", - "019 675445 Portobello Spa", - "www.marinadiloano.it" - ], - "description": "From Levante, to identify the entrance, there is the yellow cathedral.From the west follow the horizontal building of a shipyard.Sixty M of a quay are reserved for the transit and first 24 hours of mooring are free.Working for expansion marked by a yellow flashing light.", - "slips": 490, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.274666667, - 44.13683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 25, - "mapId": "LI_016", - "name": "FINALE LIGURE", - "contacts": [ - "019 690985 Capitaneria", - "019 603290 Direz. Porto (Comunale)", - "019 600440 Lega Navale Italiana", - "E-mail: porto@comunefinaleligure.it", - "Vhf 69" - ], - "description": "The port of Capo S. Donato, at the levante of the town, has its own oriented mouth and you can encounter entry difficulties with libeccio fort and sea from rising.Update and renovation of buildings are underway.Moorings to free transit for the first 24 hours.", - "slips": 540, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.374333333, - 44.17616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 26, - "mapId": "LI_017", - "name": "SAVONA", - "contacts": [ - "019 856666 Capitaneria", - "019 821451 Assonautica", - "019 801311 Lega Navale Italiana", - "019 488405 Nautica Savonese", - "Vhf 9 - 13" - ], - "description": "The high construction of the cereal silos is located at the root of the old breakwater pier;Almost by the sea the chimneys of the steel plant and the ramparts of the Priamar fortress stand out.\nThe entrance to the port is oriented to Levante and the pleasure boats must keep way.On the right, the housing of the capacity and a dock managed by the Naval League.Continuing you arrive at the Old Darsena reserved for pleasure with the assembly management whose access is regulated by a mobile bridge (opening by reservation at the VHF Can. 9).Mooring on the subfluy jetty managed by Nautica Savonese." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.503666667, - 44.317 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 27, - "mapId": "LI_018", - "name": "MARINA DI VARAZZE", - "contacts": [ - "019 97271 Capitaneria", - "019 935321 Marina di Varazze", - "www.marinadivarazze.it", - "info@marinadivarazze.it", - "Vhf 9" - ], - "description": "The new marina, with oriented mouth, is located in the town.", - "slips": 707, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.570666667, - 44.353 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 28, - "mapId": "LI_019", - "name": "ARENZANO", - "contacts": [ - "010 9124537 Capitaneria", - "010 9125172 Porto Arenzano Spa", - "010 9111839 Lega Navale Italiana", - "www.portodiarenzano.it", - "Vhf 9" - ], - "description": "The marina is located SW SW.Extension and Escavo works allow moorings on a quay on 3 m backdrops.At the construction of the shipbuilding part.", - "slips": 185, - "temporarySlips": 21, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.6875, - 44.40066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 29, - "mapId": "LI_020", - "name": "SESTRI PONENTE", - "contacts": [ - "010 27771 Capitaneria", - "010 6512476 Cantieri Navali di Sestri", - "010 6512654 Lega Navale Italiana", - "Vhf 67 - 11 - 69" - ], - "description": "The entrance to the port (Mouth of Ponente) is signaled to the left from Green buoys and to the right Dala the terminal part of the Genoa airport track.The basin houses several floating piers for over 1,200 moorings managed by shipyards and associations, including the Italian Naval League.Numerous slides for the launch of small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.844, - 44.41716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 30, - "mapId": "LI_055D", - "name": "GENOVA - DUCA DEGLI ABRUZZI", - "contacts": [ - "010 27777 Capitaneria", - "www.porto.genova.it/turismo/diporto", - "010 2461206 Yacht Club Italiano", - "Vhf 11" - ], - "description": "From Ponente to Levante in Genoa, and vice versa, pleasure boats must browse only outside the dam.The identification of the entrance to the levant mouth is facilitated by the buildings of the Genoa Fair.From here, browsing to the west, on the right there are several landings for pleasure with backdrops from 3 to 8 m and all services and repairs.The first dock that meets is the Marina Fiera di Genova (150 places), later the Marina Duca degli Abruzzi, Darsena of the Italian Yacht Club (180 seats).Following the large port of the old port (difficult entrance with Libeccio, which bears large sea.) After the restorations of the ancient port warehouses, they were used for the recreational mooring some traits of moli: Marina Porto Antico and Piero Vecchio, respectively AN EA s of the Genoa Aquarium." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.927833333, - 44.39933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 31, - "mapId": "LI_055B", - "name": "GENOVA - MARINA DI PORTO ANTICO", - "contacts": [ - "010 27777 Capitaneria", - "www.porto.genova.it/turismo/diporto", - "010 2470039 Marina Porto Antico", - "Vhf 74" - ], - "description": "From Ponente to Levante in Genoa, and vice versa, pleasure boats must browse only outside the dam.The identification of the entrance to the levant mouth is facilitated by the buildings of the Genoa Fair.From here, browsing to the west, on the right there are several landings for pleasure with backdrops from 3 to 8 m and all services and repairs.The first dock that meets is the Marina Fiera di Genova (150 places), later the Marina Duca degli Abruzzi, Darsena of the Italian Yacht Club (180 seats).Following the large port of the old port (difficult entrance with Libeccio, which bears large sea.) After the restorations of the ancient port warehouses, they were used for the recreational mooring some traits of moli: Marina Porto Antico and Piero Vecchio, respectively AN EA s of the Genoa Aquarium." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.9245, - 44.41066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 32, - "mapId": "LI_055C", - "name": "GENOVA - MOLO VECCHIO", - "contacts": [ - "010 27777 Capitaneria", - "www.porto.genova.it/turismo/diporto", - "010 27011 Marina Molo Vecchio", - "Vhf 71" - ], - "description": "From Ponente to Levante in Genoa, and vice versa, pleasure boats must browse only outside the dam.The identification of the entrance to the levant mouth is facilitated by the buildings of the Genoa Fair.From here, browsing to the west, on the right there are several landings for pleasure with backdrops from 3 to 8 m and all services and repairs.The first dock that meets is the Marina Fiera di Genova (150 places), later the Marina Duca degli Abruzzi, Darsena of the Italian Yacht Club (180 seats).Following the large port of the old port (difficult entrance with Libeccio, which bears large sea.) After the restorations of the ancient port warehouses, they were used for the recreational mooring some traits of moli: Marina Porto Antico and Piero Vecchio, respectively AN EA s of the Genoa Aquarium." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.924166667, - 44.4095 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 33, - "mapId": "LI_055E", - "name": "GENOVA - MARINA FIERA DI GENOVA", - "contacts": [ - "010 27777 Capitaneria", - "010 580760 Ma.Ri.Na Service", - "Vhf 74" - ], - "description": "From Ponente to Levante in Genoa, and vice versa, pleasure boats must browse only outside the dam.The identification of the entrance to the levant mouth is facilitated by the buildings of the Genoa Fair.From here, browsing to the west, on the right there are several landings for pleasure with backdrops from 3 to 8 m and all services and repairs.The first dock that meets is the Marina Fiera di Genova (150 places), later the Marina Duca degli Abruzzi, Darsena of the Italian Yacht Club (180 seats).Following the large port of the old port (difficult entrance with Libeccio, which bears large sea.) After the restorations of the ancient port warehouses, they were used for the recreational mooring some traits of moli: Marina Porto Antico and Piero Vecchio, respectively AN EA s of the Genoa Aquarium." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.9355, - 44.39416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 34, - "mapId": "LI_025", - "name": "CAMOGLI", - "contacts": [ - "0185 770032 Capitaneria", - "0185 773673 Nautica Sta" - ], - "description": "Camogli is recognizable for the houses leaning against the coast.The marina is above all a landscape of fishermen.40 gavitelli are set up in the summer period in 4 m of water in the audience.Rocks upgraded at the entrance and along the ponytop of overflow (hold at 50 m)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.148666667, - 44.3525 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 35, - "mapId": "LI_027", - "name": "PORTOFINO", - "contacts": [ - "0185 269040 Capitaneria", - "0185 269388 Addetti ormeggio", - "Vhf 1" - ], - "description": "First Ligurian village in the Gulf of Tigullio with a characteristic marina almost entirely quack.Navigation and anchoring are regulated by the prescriptions of the protected marine area.", - "slips": 234, - "seaFloor": { - "type": [ - "mud", - "sand", - "good" - ], - "minDepth": -1.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.213666667, - 44.30466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 36, - "mapId": "LI_028", - "name": "SANTA MARGHERITA LIGURE", - "contacts": [ - "0185 287029 Capitaneria", - "0185 205455 Serv. Ormeggi Transito", - "0185 284797 Lega Navale Italiana", - "Vhf 11" - ], - "description": "Many pontoons with numerous private operators.When entering 100 m from the extremity of the casting.Short anchors to levante in small inlets: the breast of Pagana and the port of S. Michele.Strong stand with wind from S-S-SW.", - "slips": 600, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.218333333, - 44.3325 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 37, - "mapId": "LI_056A", - "name": "RAPALLO - PORTO PUBBLICO", - "contacts": [ - "0185 50583 Capitaneria", - "0185 55253 Lega Navale Italiana", - "Vhf 16 - 25" - ], - "description": "A bell tower and a skyscraper are conspicuous points in the center of the town, within the Tigullio G..The port, a mile in Levante di S. Margherita, is divided into two basins, a municipal and a private one.Traversie from the dial II.\n\nPlaces to the transit available at the Boate pier, by contacting the captain.Maximum stop of 72 hours.", - "slips": 517, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -1.2, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.232333333, - 44.34566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 38, - "mapId": "LI_031", - "name": "CHIAVARI", - "contacts": [ - "0185 308240 Capitaneria", - "0185 364081 Marina di Chiavari Srl", - "0185 301769 Lega Navale Italiana", - "www.marinachiavari.tigullio.it", - "Vhf 10" - ], - "description": "Recognizable by a high white tower with red stripes, the port of Chiavari has the entrance to Ponente.The foranee pier is reserved for transit with free parking for 5 days in the forane dam.", - "slips": 459, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.3165, - 44.31316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 39, - "mapId": "LI_032", - "name": "LAVAGNA", - "contacts": [ - "0185 321732 Capitaneria", - "0185 312626 Porto turistico Spa", - "www.portodilavagna.com", - "Vhf" - ], - "description": "Half a mile to Chiavari two skyscrapers\nand a remarkable red smack report\nFrom the tourist port off.", - "slips": 1500, - "temporarySlips": 140, - "seaFloor": { - "minDepth": -2.9, - "maxDepth": -5.9 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.3445, - 44.30366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 40, - "mapId": "LI_033", - "name": "SESTRI LEVANTE", - "contacts": [ - "0185 41295 Capitaneria", - "0185 44810 Lega Navale Italiana", - "0185 466916 Ass. Motonautica", - "0185 42935 Y.C. Sestri" - ], - "description": "Two rades distinguish this location, one in Ponente (fairytale bay), with a little fingern pier suitable for pleasure (sleepers n and ne) and another (bay of silence) to SE (southern sleepers).The second is only accessible to boats with little draft.For transit (max 72 h) you can approach the pier's head (Att.Ne clenching rocks): contact the captain before.", - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.8, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.388166667, - 44.2735 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 41, - "mapId": "LI_034", - "name": "RIVA TRIGOSO", - "contacts": [ - "0185 41602 Capitaneria" - ], - "description": "The Fincantieri plants (Boa Gialla reports sea water suction suction: berthage prohibition) indicate this resort, good refuge from northern winds.The bottom is sandy and good car." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.420666667, - 44.25416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 42, - "mapId": "LI_066", - "name": "FRAMURA", - "contacts": [ - "0187 808150 Capitaneria" - ], - "description": "The town is recognized for a dark quadrangular tower with clock surmounted by a minor tower.", - "slips": 50, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.2, - "maxDepth": -1.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.551166667, - 44.203 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 43, - "mapId": "LI_035", - "name": "BONASSOLA", - "contacts": [ - "0187 808150 Capitaneria" - ], - "description": "Rada with inhabited at the bottom of a small inlet;In the country, a white church with dome bell tower is visible.\nVertentable only with good weather (ravished only by the dial).", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.580166667, - 44.18016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 44, - "mapId": "LI_036", - "name": "LEVANTO", - "contacts": [ - "0187 808150 Capitaneria", - "0187 802050 Azienda Speciale Levanto", - "0187 760000 Ente Parco 5 Terre" - ], - "description": "It's a beach with sand and gravel background.The two bridges of the railway are recognizable, the building on a peak hill and the municipal casino.Attention to the Galera Scoglio, 100 m to W of the dam (water-haired protrusions along 6 m of punched pier)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.602666667, - 44.17066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 45, - "mapId": "LI_058", - "name": "LA PIETRA", - "contacts": [ - "0187 808150 Capitaneria" - ], - "description": "Rada with a hikel that allows the landing to small boats", - "slips": 80, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.607, - 44.1665 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 46, - "mapId": "LI_038", - "name": "MONTEROSSO PONENTE", - "contacts": [ - "0187 808150 Capitaneria", - "0187 817484 Circolo Velico", - "0187 760000 Ente Parco 5 Terre", - "E-mail: cvelicomonterosso@libero.it" - ], - "description": "The town is on a rock buttress that divides the beach into two.The marina and the dock are used for the pleasure for the 4 summer months, in concession to the Velico circle and can be a good refuge for small boats.", - "slips": 40, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.8, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.644333333, - 44.14333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 47, - "mapId": "LI_037", - "name": "MONTEROSSO LEVANTE", - "contacts": [ - "0187 808150 Capitaneria", - "0187 760000 Ente Parco 5 Terre" - ], - "description": "Behind for small boats behind a holly for landing and boarding with cliff in the small promontory of the ancient point traffic light.Pay attention to low backdrops.Between Punta Mesco and Monterosso there are 15 gavitelli in 8-18 m of seabed managed by the 5 Terre National Park.", - "slips": 15 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.655833333, - 44.144 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 48, - "mapId": "LI_039", - "name": "VERNAZZA", - "contacts": [ - "0187 808150 Capitaneria", - "0187 760000 Ente Parco 5 Terre" - ], - "description": "Fed pier with low backs (0.50-2.50 m);Outside there are 15 telematic buoys managed by Marpark (899100001) for the park in 8-15 m of the backdrop.At Levante there are landings of Manarola and reomaggiore both practicable with small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.680333333, - 44.13566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 49, - "mapId": "LI_040", - "name": "PORTOVENERE", - "contacts": [ - "0187 790768 Capitaneria", - "0187 793042 Direzione Porto", - "www.portodiportovenere.it", - "Vhf 9" - ], - "description": "Portovenere is a tourist port in Ponente of the Gulf of La Spezia which also runs 10 berths in Le Grazie (pier with chain).It is essential to book.Coming from W you reach the passage of Portovenere, between the Palmaria Island and the mainland.Already a mile from this passage the bell tees of San Lorenzo and the fortress are identified.From and the town of Portovenere is very characteristic and is a reference to locate the marina.Close to Palmaria, near the mussel farming, there is a good anchor.", - "slips": 32, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.837, - 44.05083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 50, - "mapId": "LI_041", - "name": "LE GRAZIE", - "contacts": [ - "0187 782177 Capitaneria", - "0187 791687 Cantiere Valdettero", - "E-mail: info@valdettaro.it", - "Vhf 09" - ], - "description": "Good anchor in the backdrop of 6-8 m of mud and sand.Quay of 200 m for mooring in 6 m of water, managed by the Valdettero shipyard with all the services and possibility of all repairs.Strong stand with winds from the dial." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.839, - 44.068 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 51, - "mapId": "LI_057", - "name": "LA SPEZIA - PORTO LOTTI", - "contacts": [ - "0187 778015 Capitaneria", - "0187 5321 Porto Lotti", - "E-mail: direzione@portolotti.com", - "Vhf 9" - ], - "description": "Private tourist port in the Levante side of La Spezia Gulf.The whole structure is sized for medium-large hulls with high docks.Landing are visible on the hill an old villa, down a large white brackets;At night pay attention to the tuning buoys inside the Gulf Dam of La Spezia.", - "slips": 557, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.8575, - 44.09783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 52, - "mapId": "LI_043", - "name": "LERICI", - "contacts": [ - "0187 964545 Capitaneria", - "0187 967840 Az. Sviluppo Turistico", - "0187 966770 Circolo della Vela", - "Vhf 11" - ], - "description": "The bay of Lerici is protected to a pier, and is scattered with gavitelli managed by the Azinda of tourist development that also deals with transit.Impractive in summer, with a favorable time you can give bottom to the anchor to the outside of the gavitelli in a backdrop on 6-7 m.The Velico circle manages the only floating dock.", - "slips": 480, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.906833333, - 44.0755 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 53, - "mapId": "LI_044", - "name": "BOCCA DI MAGRA", - "contacts": [ - "0187 648066 Capitaneria", - "0187 676370 Marina 3B (Sarzana)", - "0187 608037 Bocca di Magra", - "Vhf 8" - ], - "description": "The canal port in the mouth of the Magra river,\nIn Ameglia, it is recognizable\nFor tall trees in the two shores.\nSand benches often prevent access to boats with draft over 2 m.Entering the left there is a small mouth marina for 256 berths (draw 2-2.50 m; at the entrance 4 m subject to covered).In the two shores of the river there are numerous piers and construction sites;In winter there are about 2,000 boats refuge.2 miles inside a bridge does not allow the transition to sailboats (useful height of 6 m).Beyond the bridge there is the private dock of the Marina 3 B.", - "slips": 2000, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.9895, - 44.04483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 54, - "mapId": "TO_001", - "name": "MARINA DI CARRARA", - "contacts": [ - "0585 787205 Capitaneria", - "0585 785150 Club Nautico", - "Vhf 6" - ], - "description": "A gray bell tower is visible from the wide and indicates the location of the port.\nEntering 30-40 m from the dam head and from the levant pier to submerged cliffs.Continuing, at the bottom there are on the right the pontoons of the Marina di Carrara nautical club.By calling the phone or VHF you can ask for hospitality (free the first 24 h).Further south after Marina di Massa, inside the mouth of Brugiano (delimited by cliffs) there are gavitelli for small natants, from May to September.", - "slips": 200, - "seaFloor": { - "type": [ - "sand", - "mud" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.044, - 44.02766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 55, - "mapId": "TO_002", - "name": "CINQUALE", - "contacts": [ - "0585 869977 Capitaneria", - "0585 308032 Darsena", - "0585 309013 Soc. Victor", - "Vhf 9", - "Web: www.portocinquale.i" - ], - "description": "In Marina di Montignoso, in the Cinquale river there is a mooring for boats with a fish less than 2 m.In summer the entrance is dredged: in case of burglary, with SW sea, red flag is raised to the mouth.It is advisable to contact the quotarian for news on the effective depth of the seabed.\nLanding for little fishing boats (Soc. Victor) upstream of the second bridge (max height 4.80 m).", - "slips": 260, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.2, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.1385, - 43.97616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 56, - "mapId": "TO_003", - "name": "VIAREGGIO", - "contacts": [ - "0584 43931 Capitaneria", - "0584 32033 La Madonnina", - "0584 31444 Club Nautico Versiglia", - "0584 30811 D. Italia", - "Vhf 12" - ], - "description": "From the largo the port is located for a large Travel Lift, two large gray buildings and a long shed, also gray, located in s of the port entrance.In the case of strong storms, the sand dry on the prolongation of the foraneum pier widens by reducing the draft two m and forming wave.Then it is necessary to give up in favor of Livorno to S or Carrara to N, or round off the pier pointing practically on the beach, then, once the pier has been bored, directing the center between the entry lights.\nThe port is configured as a large basin from where it is entered in five docks, often occupied.For the transit, apart from the inconvenient public stop with authorization of the ratio, in the burlamca channel, request availability to one of the companies or circles that manage the moorings.", - "slips": 2000, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -2.0, - "maxDepth": -4.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.2335, - 43.8635 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 57, - "mapId": "TO_004", - "name": "BOCCA D\u2019ARNO - MARINA DI PISA", - "contacts": [ - "050 35922 Capitaneria", - "050 35030 Marina Arnovecchio", - "050 36652 Lega Navale Italiana", - "050 35588 Punto Arno", - "050 960002 Tecnonautica", - "050 35572 Nautica 180", - "050 525500 Ente Parco" - ], - "description": "In the area of the park of Migliarino and S. Rossre there is the Canale port of the Arno river (Mouth of Arno) it is recognizable for the casting that prolong the two shores;Along the river moorings managed by private and complete nautical assistance for boats with a fish less than 2 m.Following the storm the foce seabed vary and the transit for boats with a 1,60 m is problematic.Contact local capabilities or yachts, to have signs on the movement of the benches.Avoid entry with strong libeccio and mistral." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.26633333, - 43.6795 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 58, - "mapId": "TO_014", - "name": "CASTIGLIONCELLO NORD" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.41266667, - 43.40116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 59, - "mapId": "TO_050", - "name": "CASTIGLIONCELLO SUD", - "contacts": [ - "0586 753104 Capitaneria", - "0586 754867 Circolo Nautico (Nord)", - "0586 752331 Bagni Tre Scogli (Sud)", - "www.cncastiglioncello.org" - ], - "description": "A medicean tower will be in the center and a flap castle plus a and;Visible, coming from S is the Villa Patrone.The bay has two summer landings, that in S with backdrops from 0.70 to 1.50 m, protected by a cliff oriented to e-if and attended by piccole fishing and pleasure boats (lonely entrance to trailer).In summer a corridor with orange buoys is set up.The ORPRODO N is protected and quack inside, with backdrops from 0.80 to 2 m.The entrance corridor is of yellow buoys with green flags to the right and red left.", - "slips": 167, - "seaFloor": { - "minDepth": -0.8, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.41883333, - 43.40216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 60, - "mapId": "TO_033", - "name": "PORTOFERRAIO - ELBA", - "contacts": [ - "0565 914000 Capitaneria", - "0565 919311 Esaom Cesa", - "0565 914121 Darsena Medicea", - "Vhf 9 - 11 - 12" - ], - "description": "Arriving in Portoferraio, the main landing of the island of Elba, we can see the buildings of three fortresses: the British castle, to W, the Fort Falcone, in the center, and the strong star, with the lighthouse A E. Coming from Ponente, ofNight, a guide to pass away from the dry white head and the river consists of Palmaiola's lighthouse which - reads the Portolano - \"until you see (you only lose to s of the detection 95 *) you are sure to make a good oneroute\".", - "slips": 502, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.3285, - 42.81116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 61, - "mapId": "TO_034", - "name": "CAVO - ELBA", - "contacts": [ - "0565 949910 Capitaneria", - "0565 949634 Circolo Nautico Cavo", - "www.lamarinadirioecavo.it" - ], - "description": "Marina ravished by all twenty excluded Tramontana and the Greek-Levante, the latter particularly dangerous.\nBoat backdrops with fish in less than 2.20 m, not good car.The pier to the left entering is managed by the sport fishing association, the floating piers on the right (for 120 moorings) are managed by the nautical cable circle that reserves about 20 places to transit (VHF 9).The Marina di Rio and Cable company manages the moorings on the dock on behalf of the municipalities of the two locations.", - "slips": 250, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -0.8, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.42416667, - 42.8615 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 62, - "mapId": "TO_035", - "name": "RIO MARINA - ELBA", - "contacts": [ - "0565 962109 Capitaneria", - "0565 925511 Comune", - "338 5097341 Marina di Rio e Cavo", - "www.lamarinadirioecavo.it" - ], - "description": "An octagonal tower surmounted by a yellow stained square turret with clock, is visible at the root of the pier.The marina has a backdrop of about 4 m, 6 m at the entrance.Seasonal floating pontiens in management to individuals and mooring on the tail of the Voltoni in southern drops with bollards and rings for about 130 m.", - "slips": 200, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.431, - 42.8175 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 63, - "mapId": "TO_041", - "name": "PIANOSA - CALA S. GIOVANNI", - "contacts": [ - "0565 977980 Capitaneria", - "0565 919411 E. P. Arcip. Toscano" - ], - "description": "The island is entirely protected by the Tuscan Archipelago National Park;It is home to criminal colony." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.09933333, - 42.58983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 64, - "mapId": "TO_021", - "name": "FIUMARA DEL PUNTONE DI SCARLINO", - "contacts": [ - "0566 45240 Capitaneria", - "0566 866302 Etrusca Marina", - "www.etruscamarina.it", - "Vhf 12-72" - ], - "description": "The old canal port was enlarged, dredged and restored and is flanked by a modern port structure, at the foot of the Medieval Rocca of Scarlino.", - "slips": 394, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.8, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.78233333, - 42.88833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 65, - "mapId": "TO_022", - "name": "PUNTA ALA", - "contacts": [ - "0564 933489 Capitaneria", - "0564 922784 Torre controllo", - "www.marinadipuntaala.it", - "Vhf 9" - ], - "description": "At the end of the Gulf of Follonica, the conspicuous strong tower surmounted by a stroke quadrangular tower is recognized.The marina is a safe refuge provided with all nautical services.", - "slips": 893, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.73816667, - 42.81066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 66, - "mapId": "TO_023", - "name": "CASTIGLIONE DELLA PESCAIA", - "contacts": [ - "0564 933489 Capitaneria", - "0564 937098 Club Velico", - "0564 933602 Soc. Coaro (Darsena)" - ], - "description": "The town is located on the shore of the Canale port dominated by the Aragonese castle.Coming from W the church with bell tower in N of the castle is clearly visible.With twenty from Scirocco and Libeccio the foce cover is formed: inquire in advance.", - "slips": 800, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.8745, - 42.76033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 67, - "mapId": "TO_024", - "name": "MARINA DI S. ROCCO", - "contacts": [ - "0564 34434 Capitaneria", - "0564 330075 Soc. Marina di S. Rocco", - "0564 330000 Circolo Nautico Maremma", - "www.marinadisanrocco.it", - "Vhf 9" - ], - "description": "Former Marina di Grosseto, the canal port, has 3 m backdrops.The mouth is 40 meters.All the services.", - "slips": 561, - "temporarySlips": 56, - "seaFloor": { - "type": [ - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.98166667, - 42.71233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 68, - "mapId": "TO_026", - "name": "TALAMONE", - "contacts": [ - "0564 887003 Capitaneria", - "0564 887605 Cantiere", - "0564 886338 Pontile Cardosa", - "0564 887030 Pontile Blue Point", - "Vhf 9" - ], - "description": "A s of the head of man begins the bay of Talamone and the same name location, which rises on a promontory overlooking the sea, at the end of the ridge of the Urbin Mountains, the current Natural Park of the Maremma.\nThe marina is limited by old walls dominated by an ancient fort.On the quay Possibility of transit for 48 hours.\nPontibles in private management.In the area a good behind II and III quadrant is Cala Oven.", - "slips": 400, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.13983333, - 42.55566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 69, - "mapId": "TO_055", - "name": "FOCE DELL\u2019ALBEGNA", - "contacts": [ - "0564 812529 Capitaneria" - ], - "description": "The Albegna flows into the stretch of coast between Talamone and Porto S. Stefano.There are two piers parallel to the shore where small boats can moor.The bottom is often impractical (0.5 m) and without light signals: exclusively daytime access.", - "slips": 60 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.18616667, - 42.50166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 70, - "mapId": "TO_027", - "name": "SANTA LIBERATA", - "contacts": [ - "0564 812529 Capitaneria", - "0564 820116 Biba Boats srl" - ], - "description": "It is the waterway that connects the pond of Orbetello with the sea.10 m wide, it is 1.5 m deep.", - "slips": 300, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -0.6, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.1565, - 42.435 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 71, - "mapId": "TO_028", - "name": "PORTO S. STEFANO - PORTO DEL VALLE", - "contacts": [ - "0564 812529 Capitaneria", - "0564 810845 Porto Domiziano", - "0564 818433 Yacht Club S. Stefano", - "0564 813777 Soc. Argentario Approdi", - "0564 811967 Comune", - "Vhf 14" - ], - "description": "The village of Porto S. Stefano is on the sea and on the slope of the Retrosthe Hills.Visible among the houses a strong surmounted by radio and radar antennas.Two port basins: the port of the valley, where there are floating piers of the Domitian tourist port and those of the Yacht Club S. Stefano;The old port, in Ponente del Valle, exposed to the twenty of the quadrants.", - "slips": 500, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.1245, - 42.43933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 72, - "mapId": "LA_003", - "name": "CIVITAVECCHIA", - "contacts": [ - "0766 366201 Capitaneria", - "0766 20374 Lega Navale Italiana", - "0766 21852 Circolo Nau. Civitavecchia", - "Vhf 16" - ], - "description": "The fumaill of the Enel plant, and ferries to Sardinia are a good conspicuous point to identify the port.Civitavecchia is the first landing after the Argentario (unique intermediates for small boats are the mouth of the Fiora in Montalto di Castro and the Mattonara, near P. Mattonara, both subjects with seafood and with backdrops from 0.50 and 1.50m; Live entry).It is reserved largely to commercial traffic and line ferries for Sardinia and Corsica.For the pleasure, there are pontiens in management at clubs and associations and the Roman dock (50 seats, backdrops 4 m).SNA Between the port of Civitavecchia and Riva di Traiano there is a small dock for 80 boats in concession to the Italian Naval League.(0.70-1,20 m).", - "slips": 700, - "seaFloor": { - "type": [ - "mud", - "sand", - "good" - ], - "minDepth": -4.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.76883333, - 42.10416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 73, - "mapId": "LA_033", - "name": "RIVA DI TRAIANO", - "contacts": [ - "0766 366401 Capitaneria", - "0766 30201 Riva di Traiano", - "0766 505260 Circolo Nautico", - "Vhf 9", - "www.rivaditraiano.com" - ], - "description": "Private tourist port 2 miles to N of Capo Linaro.Coming from the south is visible the Marangone Tower at the H end of the port, and the towers of control of the marina.The entrance can be difficult with winds from SW and W.", - "slips": 1182, - "temporarySlips": 113, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.80816667, - 42.06733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 74, - "mapId": "LA_005", - "name": "SANTA MARINELLA - PORTO ODESCALCHI", - "contacts": [ - "0766 511834 Capitaneria", - "0766 513005 Porto Romano Spa", - "0766 511970 Lega Navale Italiana", - "www.portoodescalchi.com", - "Vhf" - ], - "description": "Ben-integrated marina in the village of S. Marinella to 7 miles in Civitavecchia, it is identified for the dark color Odescalchi castle surmounted by a turret.Entrusted to a private company, the port offers all the services.", - "slips": 285, - "seaFloor": { - "minDepth": -1.6, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.87583333, - 42.03533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 75, - "mapId": "LA_006", - "name": "SANTA SEVERA", - "contacts": [ - "0766 511834 Capitaneria", - "0766 572093 Ass. Nautica Il Moletto" - ], - "description": "Practical basin for launching and hauling for inflatable boats and small boats with a beach equipped with crane.", - "slips": 38, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.8, - "maxDepth": -1.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.93916667, - 42.0245 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 76, - "mapId": "LA_011", - "name": "ANZIO", - "contacts": [ - "06 9844683 Capitaneria", - "06 9831385 Coop. Ormeggiatori", - "06 9846665 Lega Navale Italiana", - "Vhf 12" - ], - "description": "From the wide you note the impressive church of S. Teresa with red roof.For the entrance to round the pier, standing very wide and, reached on the first bright meda, aligning, on the right or left, on the most internal buoy;frequent seafood coatings;Transit at a dock maximum 48 hours, with authorization of the capacity.", - "slips": 400, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.638, - 41.44666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 77, - "mapId": "LA_012", - "name": "MARINA DI NETTUNO", - "contacts": [ - "090 9281180 Marina del Nettuno", - "Vhf 9" - ], - "description": "Inside the port of Milazzo between the very foranee and the Luigi Rizzo dock." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.65983333, - 41.4515 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 78, - "mapId": "LA_016", - "name": "SAN FELICE CIRCEO", - "contacts": [ - "0773 548072 Capitaneria", - "0773 547336 Cooperativa Ormeggiatori", - "Vhf 9" - ], - "description": "The marina for 380 berths is protected by a wholly foxed underflower pier.At the end of the pier overflights are permanently placed breaking docks. The entrance is facilitated by a corridor with green and red buoys, in 3 m scarce of water.Attention to the dry that forms in front of the improvement, especially with sea from SE - SW.", - "slips": 380, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.8, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.09816667, - 41.226 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 79, - "mapId": "LA_018", - "name": "FOCE SISTO", - "contacts": [ - "0773 720060 Capitaneria", - "0773 740415 Punto Nautica", - "0773 781543 Motonautica Valenti" - ], - "description": "Popper Canal Harbor, for poor draft boats, later in concession to private individuals;A bridge limits Max height to 2.50 m.", - "slips": 1200, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.15033333, - 41.26416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 80, - "mapId": "LA_019", - "name": "PORTO BADINO", - "contacts": [ - "0773 720060 Capitaneria", - "0773 731500 Soc. Nautiland", - "0773 730725 Nautica Ricchi", - "Vhf 8" - ], - "description": "Harbor fing tube for 200 berths of the river bearer, five miles to Ne of San Felice Circeo;Many other more upstream moorings, after the bridge, for minor boats.", - "slips": 200, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.202, - 41.28083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 81, - "mapId": "LA_020", - "name": "TERRACINA", - "contacts": [ - "0773 720060 Capitaneria", - "0773 725063 Fratelli De Luca", - "0773 726544 Nautica Aprea cantier" - ], - "description": "The old town of Terracina is on the southern slope of a rocky hill where two Turrite buildings are noted and a conspicuous brown bell tower, located little to NW of the Tower of Ponente.Two docks, the new one right immediately entering and the old inside in the southern shore.The mooring along the docks is reserved for fishing boats.Free mooring at the Gregorian pier after authorization from the Master's Office (max 3 days).", - "slips": 120, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.2625, - 41.28416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 82, - "mapId": "LA_043", - "name": "CANALE S. ANASTASIA", - "contacts": [ - "0773 720060 Capitaneria" - ], - "description": "Foce of the S. Anastasia canal, precarious wooden piers along the two sponds, for 250 m, guard only summer.", - "slips": 100, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -1.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.34216667, - 41.28916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 83, - "mapId": "LA_021", - "name": "SPERLONGA", - "contacts": [ - "0773 720060 Capitaneria", - "0773 548890 CSMD S. Leone" - ], - "description": "Small marina with 100 berths with access from a narrow channel.", - "slips": 100, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -0.9 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.43683333, - 41.25233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 84, - "mapId": "LA_022", - "name": "GAETA - SANTA MARIA", - "contacts": [ - "0771 460100 Capitaneria", - "0771 470843 Cantiere Di Donna", - "0771 452020 Cantiere S. Maria", - "Vhf 11" - ], - "description": "Three landings of Gaeta: S. Maria, marina between the peak of the banner and peak of health;S. Antonio who is military;Nautica Base Flavio Gioia, at the Red Municipal Tower with clock, a private landing landing landing, with all the services.\nAlso Porto Salvo, more to N, inside the Darsena S. Carlo for fishing boats, can occasionally accommodate pleasure boats.", - "slips": 30, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.58733333, - 41.211 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 85, - "mapId": "LA_024", - "name": "GAETA - SANT\u2019ANTONIO", - "contacts": [ - "0771 460100 Capitaneria", - "0771 470843 Cantiere Di Donna", - "0771 452020 Cantiere S. Maria" - ], - "description": "Three landings of Gaeta: S. Maria, marina between the peak of the banner and peak of health;S. Antonio who is military;Nautica Base Flavio Gioia, at the Red Municipal Tower with clock, a private landing landing landing, with all the services.\nAlso Porto Salvo, more to N, inside the Darsena S. Carlo for fishing boats, can occasionally accommodate pleasure boats.\n\nExclusively military landing." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.5765, - 41.21566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 86, - "mapId": "LA_031", - "name": "VENTOTENE - CALA ROSSANO", - "contacts": [ - "0771 85291 Capitaneria", - "0771 85014 Comune (Uff. Tecnico)", - "0771 85122 Cirosub (Porto Vecchio)", - "348 2525982 N. Ventotene (Porto Nuovo)", - "Vhf 18" - ], - "description": "Ventotene has two marinas, the ancient one (Porto Vecchio or Porto Nicola) of the Roman era dug into the tuff, and the new one (Cala Rossano);The first allows the entrance to boats from the maximum fish of 2.50 m, the second, Cala Rossano offers moorings in a quay and a floating dock where there is a fuel station.The curvilinear pier is under the management of the municipality.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.43183333, - 40.7995 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 87, - "mapId": "LA_032", - "name": "VENTOTENE - PORTO NICOLA", - "contacts": [ - "0771 85291 Capitaneria", - "0771 85014 Comune (Uff. Tecnico)", - "0771 85122 Cirosub (Porto Vecchio)", - "348 2525982 N. Ventotene (Porto Nuovo)", - "Vhf 14" - ], - "description": "Ventotene has two marinas, the ancient one (Porto Vecchio or Porto Nicola) of the Roman era dug into the tuff, and the new one (Cala Rossano);The first allows the entrance to boats from the maximum fish of 2.50 m, the second, Cala Rossano offers moorings in a quay and a floating dock where there is a fuel station.The curvilinear pier is under the management of the municipality.", - "slips": 40, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.43533333, - 40.79733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 88, - "mapId": "CA_002", - "name": "FOCE DEL VOLTURNO", - "contacts": [ - "0823 764336 Capitaneria", - "0823 766103 Club Nautico Volturno", - "Vhf 16" - ], - "description": "Porto Canal on the southern shore of the mouth of the Volturno river, subject to bureau.It is recognized for the Church of the village Castelvolturno, with the silvery dome and white bell tower.Going back the river there is a fixed wooden jetty while on the left there is a dock for the mooring of small boats.\nContact your nautical club for information on the seabed.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.7, - "maxDepth": -2.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.91883333, - 41.0215 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 89, - "mapId": "TO_006", - "name": "LIVORNO NORD", - "contacts": [ - "0586 826098 Capitaneria", - "0586 807354 Circolo Nautico Livorno", - "0586 422780 Cantiere Mare Blu", - "0586 896567 Lega Navale Italiana", - "0586 580529 Il Molo", - "Vhf 9 -13" - ], - "description": "For landing from and the city skyscraper is a good recognition, while coming from s you can see well the great cranes of the Orlando shipyard;From n to s some large tanks appear and at the height of the calambrone canal some smoke.The port has two mouths, a northern and a southern one.Large spaces of the basin are intended for commercial activity.Generally lacks attention to the pleasure, but numerous yards for every type of work, ground storage, mechanics, ax masters, etc.Coming from N to move to W of the drows of the meloria and at the entrance hold in the center.For the pleasure, there is the mediceo port basin managed by the Nautical Club \"Il Molo\", with Backdrops from 2 to 6 m.(contact before entering).", - "slips": 250, - "seaFloor": { - "minDepth": -3.6, - "maxDepth": -11.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.28833333, - 43.55866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 90, - "mapId": "TO_008", - "name": "ARDENZA", - "contacts": [ - "0586 826089 Capitaneria", - "0586 500295 Circolo Pesca e Nautica" - ], - "description": "Marina with 2 m bottom at the entrance and 1.50 m to the internal docks.\nEntrance corridor with red buoys (2 - 2.5 m).For transit contact the fisheries circle.", - "slips": 268, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -1.6 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.31433333, - 43.518 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 91, - "mapId": "TO_009", - "name": "ANTIGNANO", - "contacts": [ - "0586 826011 Capitaneria", - "0586 580295 Circolo Velico", - "0586 580779 Circolo Pesca" - ], - "description": "Marina for low fishing boats, with 1.50 m on the mouth and about 1 m to the internal docks managed by three circles.", - "slips": 300, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.8, - "maxDepth": -1.6 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.31966667, - 43.49616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 92, - "mapId": "TO_017", - "name": "MARINA DI CECINA", - "contacts": [ - "0586 621064 Capitaneria", - "0586 620602 Circolo Foce Cecina", - "Vhf 9" - ], - "description": "Looking close to Donoratico, in the mouth of the Cecina river, inside quack and with a small dock.The backdrop at the entrance rises on marsh occasions.The marina and the mooring docks on the two sides of the river are managed by the Nautico Foce Cecina circle." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.48433333, - 43.302 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 93, - "mapId": "TO_018", - "name": "SAN VINCENZO", - "contacts": [ - "0565 221000 Capitaneria", - "0565 702025 Marina di S. Vincenzo", - "0565 968692 Cantiere Golfo Mola", - "www.marinadisanvincenzo.it", - "Vhf 9" - ], - "description": "The significant parish church with bell tower stands out from the wide.The marina is in Capoliveri (shuttle bus to the center), not recommended the entrance with Libeccio and Ponente." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.53616667, - 43.09866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 94, - "mapId": "TO_020", - "name": "PIOMBINO", - "contacts": [ - "0565 221000 Capitaneria", - "Vhf 13" - ], - "description": "The port is intended for commercial traffic.However, pleasure boats can find refuge in case of bad weather or failure, subject to authorization of the unit.", - "seaFloor": { - "type": [ - "mud", - "good" - ], - "minDepth": -3.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.5535, - 42.93466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 95, - "mapId": "TO_032", - "name": "CAPRAIA", - "contacts": [ - "0586 905290 Capitaneria", - "338 3744102 Marina Capraia Spa" - ], - "description": "The town of Capraia is in the eastern side, more sliced as a territory than the Western one.The marina is almost entirely quack.In the summer a BOE field is added in a radiation for 40 boats (up to 20 m).With libeccio and fresh scirocco, they go down from the violent hills that vary of direction;It has a slide.The island is under the protection of the Tuscan Archipelago National Park: see the provisions governing navigation, anchoring and fishing.", - "slips": 260, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.839, - 43.051 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 96, - "mapId": "TO_036", - "name": "PORTO AZZURRO - ELBA", - "contacts": [ - "0565 951095 Capitaneria", - "0565 921158 P.to Luna", - "0565 968692 Cala di Mola" - ], - "description": "Behind tip of the banner there is Porto Azzurro.The port consists of a pier of about 80 m oriented for SW, where there is a distributor.There is a quay with floating piers.The anchor can be given to the piers of the nearby radius or moor in Cala di Mola." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.398, - 42.76133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 97, - "mapId": "TO_038", - "name": "MARINA DI CAMPO - ELBA", - "contacts": [ - "0565 914000 Capitaneria" - ], - "description": "A reddish color cylindrical tower dominates the promontory.Two piers protect the marina, backdrops between 1 and 4 m.There is an alage stop for small boats.Free dock merging, boe field near the beach and rada, with landing and boarding service.Pollveraia is a finged cove.", - "slips": 50, - "seaFloor": { - "type": [ - "sand", - "bad" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.23983333, - 42.744 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 98, - "mapId": "TO_040", - "name": "MARCIANA MARINA - ELBA", - "contacts": [ - "0565 99169 Capitaneria", - "0565 99027 Circolo della Vela", - "Vhf 9" - ], - "description": "At the root of the pier there is the medicean tower, cylindrical and whitish.On the hills we can see the villages of Poggio (250 m) and Marciana (375 m).The marina offers a reduced from southern and western winds but it is to be avoided with sirocco;The tramontana raises stand.", - "slips": 350, - "seaFloor": { - "type": [ - "sand", - "algae", - "rock", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -6.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.20183333, - 42.80866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 99, - "mapId": "TO_052", - "name": "PORTO S. STEFANO - PORTO VECCHIO", - "contacts": [ - "0564 812529 Capitaneria", - "0564 810845 Porto Domiziano", - "0564 818433 Yacht Club S. Stefano", - "0564 813777 Soc. Argentario Approdi", - "0564 811967 Comune", - "Vhf 14" - ], - "description": "The village of Porto S. Stefano is on the sea and on the slope of the Retrosthe Hills.Visible among the houses a strong surmounted by radio and radar antennas.Two port basins: the port of the valley, where there are floating piers of the Domitian tourist port and those of the Yacht Club S. Stefano;The old port, in Ponente del Valle, exposed to the twenty of the quadrants.", - "slips": 110, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.11733333, - 42.441 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 100, - "mapId": "TO_029", - "name": "PORTO ERCOLE", - "contacts": [ - "0564 833923 Capitaneria", - "0564 832372 Circolo Nautico", - "0564 830231 Teodori", - "0564 833263 Nuova Scotto" - ], - "description": "Creek between two fortresses and characteristic houses in red roofs.The moorings are all in concession to associations and circles.Hardly the boats in summer transit find mooring, the water mirror is covered with gavitelli.Do not give an anchors.", - "slips": 800, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -0.7, - "maxDepth": -3.9 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.21166667, - 42.39483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 101, - "mapId": "TO_030", - "name": "CALA GALERA", - "contacts": [ - "0564 833923 Capitaneria", - "0564 833010 Marina Cala Galera", - "www.marinacalagalera.com", - "Vhf 9" - ], - "description": "Little to N of Porto Ercole, between Punta S. Caterina and Punta Perthuso is the marina of Cala Galera for about 700 boats.All the services", - "slips": 680, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.21283333, - 42.405 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 102, - "mapId": "TO_042", - "name": "GIGLIO PORTO", - "contacts": [ - "0564 809480 Capitaneria", - "335 6093300 Ormeggi Comunali", - "0564 809523 Cantiere Cavero", - "Vhf 14" - ], - "description": "Marina Giglio is on the marina on which the church with light fa\u00e7ade and white quadrangular bell tower stands out.The marina is always crowded and exposed to Tramontana, Grecale and Levante.Work is underway for the prolongation of the Levante pier.Other anchors: C. Palazzolo Little A s of the port;C. Of the Cannelle and C. of the Caldane immediately to s of the rocks and the Cala di Campese exposed to mistral.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.8, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.92116667, - 42.36183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 103, - "mapId": "LA_007", - "name": "LADISPOLI", - "contacts": [ - "06 99220174 Capitaneria" - ], - "description": "A NW of a row of houses is the white bell tower.The mouth of the vaccine canal is used for the launch and the alage of inflatable boats and small vessels.Near the right bank there is an area destined to small boats protected by a cliff: incoming attention to cliffs.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -1.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.0715, - 41.94866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 104, - "mapId": "LA_008", - "name": "FIUMICINO - PORTO CANALE", - "contacts": [ - "06 656171 Capitaneria" - ], - "description": "The arrival stands on the mouth of the Fiumicino canal.Visible from the large buildings at Leonardo da Vinci airport and the control tower.Near the mouthpiece, left bank, you can see a white storage tank and a bright tower on four pillars, then the silhouettes of the lights.\nThe backdrops at the entrance are on 3-4 m and, in the Darsena Traiano that opens up, on average they are 3 m.The inhabited channel has developed around the canal.There are all nautical services and all types of refueling.\nPossibility of parking for transit on the can's side of the canal, both before the openable bridge and upstream, where yards and moorings follow one another for at least 400 mooring places.", - "slips": 400, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.21633333, - 41.772 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 105, - "mapId": "LA_039", - "name": "FIUMICINO - DARSENA TRAIANO", - "contacts": [ - "06 6506120 Circolo Velico Fiumicino", - "06 6582361 Darsena Traiano", - "Vhf 14" - ], - "slips": 90, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -1.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.22566667, - 41.77066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 106, - "mapId": "LA_009", - "name": "FIUMARA GRANDE", - "contacts": [ - "06 656171 Capitaneria", - "06 6502651 Porto Romano", - "06 6580706 Stella Polare", - "06 6521966 Netter Italia", - "06 6581221 Nautilus Marina", - "06 6580691 Tecnomar", - "www.tecnomar.net", - "www.nautilusmarina.com", - "www.portoromano.com", - "www.netter.it", - "Vhf 09 - 7" - ], - "description": "It is the mouth of the Tiber river, a great tourist port of the capital with over 3,000 boats moored along the two banks.\nNumerous storage is in water and ground, for every type of nautical requirement and with all services.The entrance is risky due to the sand bar that forms the mouth with strong winds from SE and SW.A dock for 200 boats, Roman port (VHF 73), is present in the right shore (to sin. For those who enter);Later there is the other dock of the Netter.Further on there are the Tecnomar piers, storage even on the ground and shipbuilding for each type of processing and material.", - "slips": 3000, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.2315, - 41.7395 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 107, - "mapId": "LA_037", - "name": "PORTO DI ROMA", - "contacts": [ - "06 656171 Capitaneria", - "06 561881 Direzione Porto", - "E-mail: direzione.porto@portodiroma.it", - "www.portodiroma.it", - "Vhf 74 - 09" - ], - "description": "Tourist port for 806 seats, immediately a s of the mouth of the Tiber river (large fiumara).The Marina proposes itself as one of the most modern structures of Italy, with a forced exchange rate of port waters.Two piers meet and bifurcano forming an embodiment for entry.A great avamporta operates from \"calm basin\" to enter in two water mirrors: one on the left with a depth of 4.50 m destined for large units, and one on the right with 3 m backdrops.A floating dock for the transit has been set up which can accommodate 38 boats up to 10m.\nIn Ostia, in the fishermen's channel, going up the canal there is a dock with low backdrops (1.50-1,80 m) for natants without bulb and with a maximum height of 2.50 m, with 120 seats, live extra access(Mr. Quiani 06 5622959).", - "slips": 806, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.24333333, - 41.73483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 108, - "mapId": "LA_025", - "name": "GAETA - BASE NAUTICA FLAVIO GIOIA", - "contacts": [ - "0771 460100 Capitaneria", - "0771 470843 Cantiere Di Donna", - "0771 452020 Cantiere S. Maria", - "0771 311013 Direzione", - "www.basenautica.com", - "Vhf 9" - ], - "description": "Three landings of Gaeta: S. Maria, marina between the peak of the banner and peak of health;S. Antonio who is military;Nautica Base Flavio Gioia, at the Red Municipal Tower with clock, a private landing landing landing, with all the services.\nAlso Porto Salvo, more to N, inside the Darsena S. Carlo for fishing boats, can occasionally accommodate pleasure boats.", - "slips": 200, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.573, - 41.21533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 109, - "mapId": "LA_026", - "name": "FORMIA - CAPOSELE", - "contacts": [ - "0771 21552 Capitaneria", - "0771 771443 CN Caposele", - "0771 25025 Soc. Servizi Portuali", - "Vhf 10" - ], - "description": "Small port to N of the Gaeta rada.", - "slips": 100, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.2, - "maxDepth": -1.6 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.60066667, - 41.25016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 110, - "mapId": "LA_026B", - "name": "FORMIA - PORTO NUOVO", - "contacts": [ - "0771 21552 Capitaneria", - "0771 771443 CN Caposele", - "0771 25025 Soc. Servizi Portuali", - "Vhf 10" - ], - "description": "Small port to N of the Gaeta rada.", - "slips": 450, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.61416667, - 41.254 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 111, - "mapId": "LA_029", - "name": "PONZA", - "contacts": [ - "0771 80027 Capitaneria", - "0771 809830 Porzio", - "0771 80679 Coop. Ponza Mare", - "338 2046080 Ecomare Ponza", - "Vhf 14" - ], - "description": "It is the largest island of the Pontine and the town is around the port.The anchor is a good surveyor in the bottom of 8 m;especially in summer it is problematic to find mooring in the quay.There are eight floating piers and the fuel distributor (it 0771 80692).With the levante strong it is prudent to seek refuge in N of the island in Cala di Feola and the Forne;or the Moonlight and Chiaia;A ridiculous anchorage is in Palmarola between the two rocks Le Galer.", - "seaFloor": { - "type": [ - "sand", - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.96783333, - 40.89883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 112, - "mapId": "CA_003", - "name": "MARINA DI CASTELVOLTURNO", - "contacts": [ - "081 764336 Capitaneria", - "081 5093461 Lega Navale", - "081 5097373 Darsena S. Bartolomeo", - "Vhf 12" - ], - "description": "It is identified from the wide construction of a residential complex.Marina in the dock canal, consisting of a protected avamport of two long cliff moles.Port subject to underlay;Keeping up 30 m from the right bank to N, due to parallel submerged cliff to the beach indicated by 6 yellow tetrapods.Before contacting the Darsena S. Bartolomeo, equipped with numerous mooring piers.Stay at 30 m from the cliff of overflow;Contact the dock for information on the backdrops.", - "slips": 190, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.7, - "maxDepth": -2.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.9725, - 40.97083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 113, - "mapId": "CA_042", - "name": "PROCIDA - MARINA GRANDE", - "contacts": [ - "081 8967381 Capitaneria", - "081 8101475 Lega Navale", - "081 8969668 Marina Sancio Cattolico", - "Vhf 11 - 06" - ], - "description": "The port is delimited by a long fed shore reserved for ferries and three moles: of west, of subfluy and levante (a cliff).The subfluy pier houses a floating dock used for pleasure and divides the commercial port from the new tourist marina, still being completed, where you can moor two floating piers with water and electricity service.", - "slips": 100, - "temporarySlips": 15, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.03183333, - 40.77016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 114, - "mapId": "CA_044", - "name": "PROCIDA - CORRICELLA", - "contacts": [ - "081 8969063 CTP Gestore porto" - ], - "description": "Small landing prior to fishing boats, recognizable by the widespread for the Church of S. Maria delle Grazie, to E. Limited possibility of landing for pleasure boats.Stone when the northern winds prevent the landing to the Procida marina.", - "slips": 70, - "seaFloor": { - "type": [ - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.029, - 40.75933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 115, - "mapId": "CA_043", - "name": "PROCIDA - CHIAIOLELLA", - "contacts": [ - "081 8101437 Ippocampo", - "081 8968074 Yachting S. Margherita", - "081 8101481 Procida Yachting Club", - "081 8101934 Meditur" - ], - "description": "Natural creek protected from the rising pier and from the one of west.Both the finged shore and both moles are reserved for pleasure.", - "slips": 350, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.00616667, - 40.746 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 116, - "mapId": "CA_045", - "name": "ISCHIA - PORTO", - "contacts": [ - "081 991417 Capitaneria", - "081 983771 Francesco Ferrandino", - "081 3334070 Porto Salvo Marina", - "Vhf 13-74-15" - ], - "description": "Ischia is the largest of the Flegreen Islands.Volcanic nature, it is green and dominated by Mount Epomeo (787 m).The port is a natural creek, almost entirely quack.There are 4 floating piers for the pleasure, on the left entering;The docks are used by ferries.", - "slips": 250, - "temporarySlips": 25, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.2, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.94383333, - 40.748 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 117, - "mapId": "CA_046", - "name": "ISCHIA - CASAMICCIOLA", - "contacts": [ - "081 980175 Capitaneria", - "081 980686 Cala degli Aragonesi", - "081 5072511 Pontili Comunali", - "www.marinadicasamicciola.it", - "Vhf 8 - 9" - ], - "description": "Marina protected from the moles of levante and west.Entering inside the port, pay attention to the red buoys located on the left side indicating low backdrop (0.50 m): leave them to the left.Summer gavitelli set up outside the Levante pier.", - "slips": 264, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -1.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.91133333, - 40.75183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 118, - "mapId": "CA_047", - "name": "LACCO AMENO", - "contacts": [ - "081 900685 Capitaneria", - "081 3330811 Comune", - "081 3330696 Yanching It", - "Vhf 10 - 69" - ], - "description": "Two docks are reserved for the pleasure of the beach, opposite the laco stone called \"the fungus\".On the W arm, external side, 12 berths were positioned which can accommodate large boats, managed by yachting.it (from May to October);Inside the dock there are two new floating piers, parallel to the cliff (60 and 35 m).", - "slips": 400, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.89016667, - 40.7545 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 119, - "mapId": "CA_048", - "name": "FORIO D\u2019ISCHIA", - "contacts": [ - "081 5071272 Capitaneria", - "081 997439 Mazzara Dario", - "081 Comune Uff. Porto", - "Vhf 16" - ], - "description": "Forio is the most important center of the island's side.Conspicuous point is the church of the white rescue, which rises to W of the town.A W, pier of a quench undersigned for pleasure that the Municipality gives in concession to private individuals.", - "slips": 40, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -1.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.85833333, - 40.74233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 120, - "mapId": "CA_049", - "name": "S. ANGELO D\u2019ISCHIA", - "contacts": [ - "081 991417 Capitaneria", - "081 999102 Centro Nautico S. Angelo", - "www.ischiayacht.it", - "Vhf 9" - ], - "description": "Punta S. Angelo is the extreme tip to S of Ischia.Behind a large boulder of gray tuff is the landing, opposite the fishing village with white, red and yellow houses.Two cliffs repair the marina;Inside a jetty of about 50 m perpendicular to the dock of 100 m equipped with bollards and dead bodies.", - "slips": 100, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.89583333, - 40.6965 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 121, - "mapId": "CA_006", - "name": "PORTO MISENO", - "contacts": [ - "081 8687059 Capitaneria" - ], - "description": "The arrival is immediately in N of the poisonous tip, between tip tip and pendant tip.The lake of Miseno behind, at the time of the Romans, constituted an integral part of the port.Natural bay, whose docks are reserved exclusively for the Guardia di Finanza;The dead bodies with buoys in the rada are reserved for boaters.", - "slips": 200, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -1.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.09116667, - 40.78766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 122, - "mapId": "CA_007", - "name": "BAIA", - "contacts": [ - "081 8687059 Capitaneria", - "081 8687215 Samop", - "081 8545491 Capuano Guardascione", - "Vhf 9" - ], - "description": "The bay castle, of gray, dominates the natural basin protected by a cliff of 50 m, and from a large panty protruding and equipped with numerous floating piers arranged on the w. Other moorings at private construction sites.", - "slips": 200, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -0.6, - "maxDepth": -4.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.07566667, - 40.819 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 123, - "mapId": "CA_008", - "name": "MARINA DI MAGLIETTA - POZZUOLI", - "contacts": [ - "081 5261160 Capitaneria", - "081 3030063 Lega Navale", - "081 5261140 Nautica Maglietta", - "Vhf 72" - ], - "description": "In the town of Pozzuoli, the Church of the Madonna delle Grazie is conspicuous, with yellow dome surmounted by spire and a low bell tower to gray cusp.The port has two docks, marina of T-shirt to N and Pozzuoli: the first destination for pleasure, the other reserved for commercial traffic.", - "slips": 150, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -1.5, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.112, - 40.8245 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 124, - "mapId": "CA_010", - "name": "POSILLIPO", - "contacts": [ - "081 2445111 Capitaneria", - "081 5751282 Circolo Nautico Posillipo" - ], - "description": "Four-arm cliff jetty 150 m long.From the main quay there are two floating piers managed by the nautical circle.", - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.21916667, - 40.822 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 125, - "mapId": "CA_011", - "name": "MERGELLINA - SANNAZZARO", - "contacts": [ - "081 2445111 Capitaneria", - "081 7611633 Ormeggio", - "081 660585 AS.NA. (Darsena Nord)", - "Vhf 9" - ], - "description": "It is one of the largest lands in the city of Naples, overlooking the train station.Aliscafi airport for the islands, there is good pleasure service.Along FrangiFlutti a s pier, small subfluy pier to N;In the internal part there are several floating piers.", - "slips": 450, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.2265, - 40.828 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 126, - "mapId": "CA_013", - "name": "MOLOSIGLIO", - "contacts": [ - "081 2445111 Capitaneria", - "081 5511738 Lega Navale", - "081 5512331 Circolo Canottieri" - ], - "description": "Small marina with poor backdrops that opens at the root of the Foraneo pier, externally to the shopping port basin.Some pontoons are reserved for pleasure.", - "slips": 150, - "seaFloor": { - "type": [ - "mud", - "sand", - "algae" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.25583333, - 40.834 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 127, - "mapId": "CA_018", - "name": "MARINA DI VICO EQUENSE", - "contacts": [ - "081 8015445 Capitaneria" - ], - "description": "Marina consisting of 20 m of a quay and 150 m of cliff, used by local fishermen and for landing-boarding of tourists.Seasonal dead bodies.Bass backdrops;Possibility of transit only to small boats.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.9, - "maxDepth": -1.1 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.42916667, - 40.66766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 128, - "mapId": "CA_019", - "name": "MARINA DI EQUA", - "contacts": [ - "081 8015445 Capitaneria", - "368 3972863 Coop. S. Antonio", - "www.marinaequa.it" - ], - "description": "The port is located in SW of Vico Equense and at the foot of the hamlet of Seiano, recognizable for a quadrangular tower leaning against a red building.It is protected by a long-oriented quay used as a transit of small boats and a breakwater cliff;Only the small water mirror behind the frangiflutti cliff is used for pleasure.", - "slips": 150, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.41733333, - 40.66216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 129, - "mapId": "CA_020", - "name": "MARINA DI META DI SORRENTO", - "contacts": [ - "081 8015445 Capitaneria" - ], - "description": "Harbor inapped sprinkled with neighboring rocks.Access to small boats is dangerous.Useful mooring only in the last stretch (unpan) of the Frangiflutti pier.", - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -1.1 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.40583333, - 40.648 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 130, - "mapId": "CA_021", - "name": "MARINA DI CASSANO", - "contacts": [ - "081 8788339 Capitaneria", - "081 5342412 Nauticambiale", - "339 7063960 Raffaele Russo", - "339 5803485 Lauro A. Di Michele" - ], - "description": "Marina in the places of Sorrento consisting of a quack pier and a fingered cliff oriented to N, with a buoy area for pleasure.", - "slips": 150, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.4005, - 40.64016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 131, - "mapId": "CA_012", - "name": "SANTA LUCIA", - "contacts": [ - "081 2445111 Capitaneria", - "081 403196 Lega Navale", - "081 7645517 Coop. Ormeggiatori", - "081 7646266 CanottieriSavoia" - ], - "description": "Dock with pontiens for pleasure in the typical Marinaro village of Naples, with entry to Levante of the imposing Castel dell'Ovo;Alarging scales and complete nautical assistance.The Royal Yacht Club CanoTieri Savoia has 80 berths inside the marina.The moorings are reserved for members, but upon request and subject to availability they are hosted for 2-3 days transit boats.", - "slips": 200, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.25183333, - 40.82966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 132, - "mapId": "CA_014", - "name": "PORTICI", - "contacts": [ - "081 7767827 Capitaneria", - "328 2742537 Antromira", - "Vhf 11" - ], - "description": "The Royal Palace is the main conspicuous point of the town of Portici, visible from the sea.A pier of approximately elbow patch 300 m is reserved mainly to fishing vessels;However, some gavitelli are used for pleasure.", - "slips": 100, - "temporarySlips": 20, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.3, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.33233333, - 40.811 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 133, - "mapId": "CA_015", - "name": "TORRE DEL GRECO", - "contacts": [ - "081 8812200 Capitaneria", - "081 8814135 Circolo Nautico Torre", - "081 8817811 Mi.Sa.Gi.", - "Vhf 14" - ], - "description": "Foraneous pier of shed brush with 10 floating piers are placed for pleasure for May to October;The sandy bottom is an excellent scenery, only in the levy.", - "slips": 500, - "seaFloor": { - "type": [ - "sand", - "rock", - "sand" - ], - "minDepth": -3.3, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.3625, - 40.78266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 134, - "mapId": "CA_016", - "name": "TORRE ANNUNZIATA", - "contacts": [ - "081 8611855 Capitaneria", - "081 5364136 Nautica Gi. Ga.", - "081 8623157 Soc. Servizi Portuali", - "Vhf 13 - 06" - ], - "description": "The city extends by the sea.For the landing, the bell tower of the Sanctuary of Pompeii is recognized inside the starboard, in the vicinity of the sea, the small church of S. Michele, with quadrangular bell tower.Marina enclosed between two piers, E and A W: the perpendicular floating piers to the pier of the west are used for pleasure.", - "slips": 300, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.45316667, - 40.742 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 135, - "mapId": "CA_017", - "name": "CASTELLAMMARE DI STABIA", - "contacts": [ - "081 8711077 Capitaneria", - "081 8717187 Circolo Nautico", - "081 8724564 Posti barca", - "Vhf 13 - 11" - ], - "description": "The foraneum pier and the subfluy pier, both quacks, are mainly reserved for commercial airports, but with some space for pleasure.", - "slips": 400, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.47583333, - 40.703 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 136, - "mapId": "CA_050", - "name": "CAPRI - MARINA GRANDE", - "contacts": [ - "081 8370226 Capitaneria", - "081 8378950 Porto Turistico di Capri", - "Vhf 71" - ], - "description": "The port is on the side of the island and is protected by two large internally quack piers.A further subfluy jetty divides the harbor into two basins, that of west intended for commercial traffic and the levante for pleasure with floating pontiens.Inside the latter there is a dock derived between the subfluy pier, the shore and a two-arm hedge.S of the Marina Small island is a rade that can offer temporarily shed by northern winds to small boats.", - "slips": 300, - "temporarySlips": 30, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.245, - 40.55933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 137, - "mapId": "CA_024", - "name": "AMALFI", - "contacts": [ - "089 871366 Capitaneria", - "089 873091 Pontili Coppola", - "333 2193421 Pontili Aniello", - "Vhf 12 - 16" - ], - "description": "Marina protected by a foraneous pier and from a hat of subfluy to and, beyond which a dock develops, not practicable, enclosed by a new rising pier.From the fing shore there are 4 seasonal pontoons used for pleasure.", - "slips": 300, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.603, - 40.63066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 138, - "mapId": "CA_025", - "name": "CETARA", - "contacts": [ - "089 261136 Capitaneria", - "089 262921 Comune" - ], - "description": "Marina with a 150 m shore quay and a 250 m pier of overflow.Seasonal pontiens (from May to October) managed by the Municipality.In the rest of the year, pleasure boats can occupy only the first section of the pier of overflow.", - "slips": 50, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -4.3 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.70483333, - 40.646 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 139, - "mapId": "CA_026", - "name": "SALERNO - PORTO COMMERCIALE", - "contacts": [ - "089 2587911 Capitaneria", - "089 237419 Ormeggio Autori", - "338 5366569 Astra Sub", - "089 253572 Azimut", - "089 241037 Salerno Mare" - ], - "description": "From the wide and above all from s we notice, even at great distance, the viaducts and the walls of support of the road and railway works.Two piers enclose the internal basins: of east, median and west.\n\nThe port is predominantly commercial;To the pleasure, the Manfredi pier is destined in the Levante basin, with pontiens managed by private individuals.", - "slips": 1175, - "temporarySlips": 117, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.6, - "maxDepth": -9.45 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.74183333, - 40.66533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 140, - "mapId": "CA_027", - "name": "SALERNO - MASUCCIO SALERNITANO", - "contacts": [ - "089 2587911 Capitaneria", - "089 225739 Lega Navale", - "089 252738 Yacht Club Salerno" - ], - "description": "From the wide and above all from s we notice, even at great distance, the viaducts and the walls of support of the road and railway works.Two piers enclose the internal basins: of east, median and west.\n\nMarina in the area and the commercial port, consisting of a pier of elbow elbow of about 500 m and a large pest square with floating pontiens intended for pleasure.The park in transit is allowed for no more than 72 hours, subject to availability.", - "slips": 414, - "temporarySlips": 31, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.7, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.763, - 40.671 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 141, - "mapId": "CA_030", - "name": "AGROPOLI", - "contacts": [ - "0974 826810 Capitaneria", - "0974 823094 Comune", - "0974 828325 Lega Navale", - "0974 824545 Consorzio Euromar" - ], - "description": "Agropoli is partly on a promontory from steep and rocky sides, on which the \"Grotte\" features open.Marina formed by an elbow pier, from a bank of shore and a subfluy pier.From the bank of the shore and from the second arm of the subfluct pier they depart several floating piers destined for pleasure drowners.Four other cement piers are concession to the municipality;The final trait of the pier of overflow is reserved for transit.", - "slips": 1000, - "seaFloor": { - "minDepth": -0.3, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.9845, - 40.3555 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 142, - "mapId": "CA_031", - "name": "SAN MARCO DI CASTELLABATE", - "contacts": [ - "0974 966688 Capitaneria", - "0974 966049 Società Nautica S. Marco", - "0974 966542 Coop. Off Shore" - ], - "description": "The portfolio is located in St. Mark, a hamlet of Castellabate.Among the houses we note a church and a flapped tower (quadrangular and with clock).At the root of the pier of overflight a three-bodied building is recognized: the side ones are brown and the central one is light colored.Overfluotto pier with three punched arms on the inner side, small cliff underflower hedge A and entirely quack, reserved for mooring-disormement of the hydrofoil inside the basin there are about 50 gavitelli operated by private individuals.", - "slips": 300, - "temporarySlips": 20, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.93616667, - 40.27166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 143, - "mapId": "CA_032", - "name": "ACCIAROLI", - "contacts": [ - "0974 904477 Capitaneria", - "0974 904210 Guariglia Pasquale", - "0974 904623 Del Sorbo Ruben" - ], - "description": "7 miles to Punta Licosa there is the village of Acciaroli;A church with white pyramidal dome bell tower and a large tower are clearly visible from afar.The port is composed of an elbow pier, from a subfluy pier and a bank of shore;It is completely quack and is raveroed by all winds.Direct to Acciaroli with routes between 000 * and 090 *;On the vicinity of the pier of overflow avoid the dried passing to no more than 100 m from the headlight to the head, then 600 m from the shore.", - "slips": 100, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.03033333, - 40.17466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 144, - "mapId": "CA_037", - "name": "PALINURO", - "contacts": [ - "0974 938383 Capitaneria", - "0974 931604 Coop. Porto di Palinuro", - "Vhf 12" - ], - "description": "Conspicuous promontory with flat summit, protected towards w;The buildings of the former traffic light, of the lighthouse and the radio antenna, placed on the s side of the garment, are visible from a large distance both from N and from S. Approdo composed of a finged shore for 200 m protected to N from a pier ofOverflower of about 150 mA elbow.In fact of Capo Palinuro there is the Bay of Good Sleeping, sheltered by I and from the IV Dial.", - "slips": 150, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.27883333, - 40.0335 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 145, - "mapId": "CA_038", - "name": "MARINA DI CAMEROTA", - "contacts": [ - "0974 932644 Capitaneria", - "0974 939813 Marina Leone di Caprera", - "www.portodicamerota.it", - "Vhf 9" - ], - "description": "The marina for 400 berths is located in the eastern cove, where the village of Marina di Camerota rises and has the mouthpiece facing E. Tre-armed overflow pier of about 450 m and a subfluy pier of 150 m;Between the two there is a quay where the floating piers have arranged for pleasure.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.3795, - 39.99916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 146, - "mapId": "CA_039", - "name": "PORTO SCARIO", - "contacts": [ - "0974 986822 Capitaneria", - "0974 986665 Cooperativa Mare Blu", - "0974 986149 Cooperativa S. Anna" - ], - "description": "A church with cylindrical bell tower, on a square-based pyramidal tower, three-orders of windows, indicates the village of Scario.Marina consisting of a pier of overflow of 260 m, from an internal pier of 80 m and a finged shore of 210 m.Moorings for your pleasure are granted to cooperatives.", - "slips": 160, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.49566667, - 40.05333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 147, - "mapId": "CA_040", - "name": "MARINA DI POLICASTRO", - "contacts": [ - "0974 986822 Capitaneria", - "0974 989005 Comune" - ], - "description": "Port subject to garments.Every year dredging works are needed that carry the draft from 3.50 to 5 m.Recently it was raised about 1 m the pier of overflow.The entrance has low backdrops reported by a permanent buoy.Inside the port there are areas reserved for pleasure and seasonal floating pontiens.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.52633333, - 40.07016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 148, - "mapId": "SA_002", - "name": "GOLFO ARANCI", - "contacts": [ - "0789 46880 Capitaneria", - "Vhf 16" - ], - "description": "The Gulf opens between Figarolo and tip of the houses (Punta Hare) and offers you from the I and IV Dial.Commercial port without moorings for pleasure.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.619166667, - 40.993 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 149, - "mapId": "SA_003", - "name": "PUNTA MARANA", - "contacts": [ - "0789 94498 - 0789 46880 Capitaneria", - "0789 32088 Yachting C. P.ta Marana", - "Vhf 9" - ], - "description": "Marina in the Gulf of Marinella, with a well protected mouth.", - "slips": 320, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.558, - 41.00466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 150, - "mapId": "SA_057", - "name": "PORTO ORO", - "contacts": [ - "0789 32005 Capitaneria", - "Vhf 9" - ], - "description": "Private circular marina;Reserved for low draft boats.", - "slips": 47, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.8, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.554, - 41.00983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 151, - "mapId": "SA_004", - "name": "PORTO ROTONDO", - "contacts": [ - "0789 34380 Capitaneria", - "0789 34203 Marina Porto Rotondo", - "Vhf 9" - ], - "description": "Private port with tourist settlement homonymous that surrounds the landing.All nautical services, yacht club.", - "slips": 642, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -5.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.542, - 41.03016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 152, - "mapId": "SA_077", - "name": "PORTO ASFODELI", - "contacts": [ - "0789 51734 Approdo", - "Vhf 9" - ], - "description": "Fixed pontibles for about 100 boats inserted in the residential tourist center.", - "slips": 120, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.524666667, - 41.02366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 153, - "mapId": "SA_009", - "name": "CALA BITTA", - "contacts": [ - "0789 94498 Capitaneria", - "0789 99243 Sitas di Molinas & C" - ], - "description": "Rough creek from the islet of white piles and the tip of Li Cossi.Inside a moor for mooring.", - "slips": 183, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.466333333, - 41.1285 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 154, - "mapId": "SA_010", - "name": "CANNIGIONE", - "contacts": [ - "0789 709419 Capitaneria", - "0789 88422 Sardamar", - "0789 88485 Destriero", - "Vhf 11" - ], - "description": "At the end of the Gulf of Arzachena, the port consists of an ancient cement pier and floating piers to private management.Extension works are underway.", - "slips": 400, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.444666667, - 41.10783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 155, - "mapId": "SA_011", - "name": "PALAU", - "contacts": [ - "0789 709419 Capitaneria", - "0789 708435 Comune", - "Vhf 9" - ], - "description": "The pier n is reserved, even inside the Navy;different interior floating piers;Difficult to find a place for a long stop in the summer.", - "slips": 400, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.387, - 41.18366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 156, - "mapId": "SA_066", - "name": "ISOLA S. STEFANO - CALA VILLAMARINA", - "description": "Creek in the southern coast of the island, well rawy;An old pier in depths from 2 to 8 m", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.4055, - 41.18833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 157, - "mapId": "SA_047", - "name": "CAPRERA - PORTO PALMA", - "contacts": [ - "0789 737095 Capitaneria", - "0789 738529 Centro Velico Caprera" - ], - "description": "The island is under the protection of the Park of the Archipelago de la Maddalena\n\nCreek where the CAPRERA VELICO Sailing School is located" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.449, - 41.186 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 158, - "mapId": "SA_097", - "name": "LA MADDALENA - CALA CAMICIA", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "Vhf 9 - 11" - ], - "description": "It is the largest island of the archipelago, the only one with a town" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.434666667, - 41.21366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 159, - "mapId": "SA_061", - "name": "LA MADDALENA - CALA SPALMATORE", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "Vhf 9 - 11" - ], - "description": "With a pistiletto at the bottom, it is a natural bay not reported at night and surrounded by numerous rocks.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.433666667, - 41.25 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 160, - "mapId": "SA_050", - "name": "LA MADDALENA - PORTO MASSIMO", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "0789 793601/02 Hotel Cala Lunga", - "Vhf 9 - 16" - ], - "description": "Private marina for 170 berths.", - "slips": 170, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.43, - 41.25666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 161, - "mapId": "SA_073", - "name": "LA MADDALENA - CALA CAPO FERRARI", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "Vhf 9 - 11" - ], - "description": "Bay scattered in the summer of dead bodies, gavitelli and small piers, very frequented by small boats and dinghies.", - "slips": 200, - "seaFloor": { - "type": [ - "rock", - "sand", - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.408166667, - 41.26283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 162, - "mapId": "SA_068", - "name": "RAZZOLI - CALA LUNGA", - "contacts": [ - "0789 754502 Capitaneria" - ], - "description": "Cala Lunga is the only landing of the island, exposed to twenty from the west.", - "seaFloor": { - "type": [ - "rock", - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.3385, - 41.29766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 163, - "mapId": "SA_069", - "name": "CALA SANTA MARIA", - "contacts": [ - "0789 754502 Capitaneria" - ], - "description": "Good anchor in the rada of Cala Santa Maria;Boat gavitelli service up to 15 m.\nBeheading to the island, giving bottom on 6 m of water in the middle of the bay, paying attention to the dry and to the clenching rocks.", - "seaFloor": { - "type": [ - "rock", - "sand", - "algae" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.3735, - 41.29133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 164, - "mapId": "SA_070", - "name": "SANTA MARIA - CALA MURO", - "contacts": [ - "0789 754502 Capitaneria" - ], - "description": "Stone to N of the island, give bottom on 6 m of water to the center of the bay, well forward from the clenching rocks.", - "seaFloor": { - "type": [ - "rock", - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.373, - 41.30583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 165, - "mapId": "SA_058", - "name": "PORTO PUDDU", - "description": "Natural inlet also called Pollo (\"Puddu\" in Sardinian language), offers good night;The major boats must remain outdoors.", - "seaFloor": { - "type": [ - "mud", - "sand", - "algae" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.3275, - 41.204 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 166, - "mapId": "SA_012", - "name": "PORTO POZZO", - "contacts": [ - "338 9542094 Sarda Nautica" - ], - "description": "Very deep inlet with the \"Peschiera\" at the bottom, it offers an anchor protected by all winds.", - "slips": 360, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.2845, - 41.22216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 167, - "mapId": "SA_013", - "name": "SANTA TERESA DI GALLURA", - "contacts": [ - "0789 754602 Capitaneria", - "0789 751936 Comune Ufficio approdo", - "0789 753030 Lega Navale Italiana", - "Vhf 9" - ], - "description": "The marina of Santa Teresa of Gallura, has the town in the elevated part of the promontory. The creek is quack and the management is entrusted to the Municipality; The pontoons of the Italian Naval League are at the levante of the cement pier. In the approximation from and, top toe falcone is seen well the Aragonese tower on the promontory to the right of the port entrance. Staying from the cliff to the left and attention to the dried reported by two floating buoys, sometimes removed from the storm. At night entering leaving the lead leader (white and red striped quadrangular) in alignment with red lights found on the external tooth of the pier of the west and the alignment place on the hill of the port. From W: exceeded the rock of \"Municchedda\", to leave to the left, direct on the leading lamp in the white sector, until you see the headlight of the pier of Ponente. Attention to the dries marked by floating buoys, to bonifacio line ferries that always have precedence and maneuver near the harbor's entrance by making an 180 * to enter a stern.", - "slips": 600, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.196166667, - 41.24416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 168, - "mapId": "CA_041", - "name": "SAPRI", - "contacts": [ - "0973 604001 Capitaneria", - "0973 391358 Base Nautica Mandola", - "0973 603305 Base Nautica San Giorgio", - "0973 391305 Pontile Giannetti" - ], - "description": "Sapri rises on the internal shore of a creek with rock sides.Among the houses of the town you can see the white cylindrical bell tower and, in the center, a building with a turret surmounted by a pagoda-shaped roof.Marina consisting of a pier of overflower of 250 m punched on the inside side, and from a pier of an elbow.At the latter there is a jetty from which three floating peeks depart, reserved for boaters.", - "slips": 250, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.625, - 40.06666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 169, - "mapId": "BA_001", - "name": "MARATEA", - "contacts": [ - "0973 876859 Capitaneria", - "0973 876594 Lega Navale Italiana", - "0973 877307 Porto Turistico Maratea", - "Vhf 12 - 6" - ], - "description": "The statue of the Redeemer, high white 22 m is visible at the top of a rocky spur, at an altitude of 631 m, and indicates the landing at Maratea.The port is protected by a pier or elbow along 275 m and from pier s of 260 m.Inside there are pontoons floating for pleasure.Between Maratea and Diamond there is Praia a Mare, a water mirror ravished on the side of the island of Dino (39 * 53.90 n - 15 * 46.66 e) with 200 gavitelli positioned for the summer in 7-13 m background, managedFrom Nautica Lo Bosco (Tel. 0985/764424).", - "slips": 600, - "temporarySlips": 50, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.70683333, - 39.98716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 170, - "mapId": "SA_001", - "name": "OLBIA", - "contacts": [ - "0789 21243 Capitaneria", - "0789 26165 Lega Navale Italiana", - "0789 57081 Nautisarda", - "0789 53060 Olbia Boat Service", - "0789 26187 Circolo Nautico Olbia", - "Vhf 72 - 11" - ], - "description": "The town is established in the most internal part of the narrow and long creek that opens at the end of the homonymous gulf and is visible from the wide.Access is facilitated for alignment with the conspicant lighthouse that rises on the mouth island.\nThe port is ravished by all winds and includes three zones: maritime station, the internal port and the industrial area.\nThe pleasure boats moor at the dock of the Benedetto Brin pier, or to the two floating piers in concession to the Italian Naval League in Idroscalo.Moorings also from: Nautankard, with services, stop and 50 ton cranes;Olbia Boat Service, 40 ton services and cranes.", - "slips": 250, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.531166667, - 40.92333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 171, - "mapId": "SA_056", - "name": "BAIA CADDINAS", - "contacts": [ - "0789 46880 Capitaneria", - "0789 32005 Approdo", - "Vhf 9" - ], - "description": "Creek in the northwestern part of the Gulf.At about 1 millet to W NW of the Port of Golfo Aranci is the private marina for 110 boats.", - "slips": 110, - "seaFloor": { - "type": [ - "sand", - "mud", - "rock", - "sand." - ], - "minDepth": -1.8, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.603833333, - 40.99533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 172, - "mapId": "SA_078", - "name": "GOLFO DI CUGNANA", - "contacts": [ - "0789 94498 Capitaneria", - "349 6605635 Gestione ormeggi" - ], - "description": "Bay between the Marina di Portisco and Punta Nuraghe.Inside there are two landing: Porto Asphodeli and Marina di Cugnaga.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.517, - 41.0185 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 173, - "mapId": "SA_005", - "name": "MARINA DI PORTISCO", - "contacts": [ - "0789 94498 Capitaneria", - "0789 33520 Marina di Portisco", - "Vhf 69" - ], - "description": "Recently expanded marina, with all services, medical guard (330/927064).", - "slips": 574, - "vesselMaxSize": { - "maxLoA": 80.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.525833333, - 41.03183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 174, - "mapId": "SA_006", - "name": "CALA DI VOLPE", - "contacts": [ - "0789 906008 Approdo" - ], - "description": "Deep causes pontiens managed by the Hotel Cala di Volpe.A BOE field (tel. 899 1000001) was installed at the center of the bay.", - "slips": 32, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand", - "algae" - ], - "minDepth": -0.8, - "maxDepth": -1.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.5405, - 41.086 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 175, - "mapId": "SA_007", - "name": "PORTO CERVO MARINA", - "contacts": [ - "0789 94498 Capitaneria", - "0789 905111 Porto Cervo Marina", - "Vhf 9" - ], - "description": "Tourist port made in a natural cove.Outside a Straight of the entrance there is a reserved area for a buoy field with 50 mooring points (tel. 0789 935000).", - "slips": 700, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -1.7, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.5415, - 41.13783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 176, - "mapId": "SA_008", - "name": "LISCIA DI VACCA", - "contacts": [ - "0789 94498 Capitaneria" - ], - "description": "Pontot for boat parking;Several anchorages nearby", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.508833333, - 41.146 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 177, - "mapId": "SA_064", - "name": "POLTU QUATU", - "contacts": [ - "0789 94498 Capitaneria", - "0789 99477 Marina dell’Orso", - "Vhf 9" - ], - "description": "Poltu Quatu (in Sardinian language: \"Hidden port\") arose in a natural fjord between smooth cow and bay Sardinia, around a tourist village.", - "slips": 410, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.492333333, - 41.14416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 178, - "mapId": "SA_067", - "name": "CAPRERA - CALA COTICCIO", - "contacts": [ - "0789 737095 Capitaneria" - ], - "description": "The island is under the protection of the Park of the Archipelago de la Maddalena\n\nThe base tip is ros\u00e9;The Cala is righted to the winds from NW.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.482666667, - 41.2135 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 179, - "mapId": "SA_048", - "name": "CAPRERA - CALA STAGNALI", - "contacts": [ - "0789 737095 Capitaneria", - "" - ], - "description": "The island is under the protection of the Park of the Archipelago de la Maddalena\n\nCala very wide but with low backdrops.Access is allowed to small fish boats", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.45, - 41.20166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 180, - "mapId": "SA_087", - "name": "CAPRERA - CALA NAPOLETANA", - "contacts": [ - "0789 737095 Capitaneria", - "" - ], - "description": "The island is under the protection of the Park of the Archipelago de la Maddalena\n\nCala located before Punta Galera, in the tip W of the island;With boats with low backs you can reach the beach at the bottom of the bay.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.458833333, - 41.24166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 181, - "mapId": "SA_049", - "name": "LA MADDALENA - PORTO MERCANTILE", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "0789 730121 Servizio pontili", - "Vhf 9 - 11" - ], - "description": "Four piers floating for boats up to 13.50 m, the largest moor at the outside root.For hauling and launch services: Moviterramar (0789/727854);Fara shipyard (0347/5873207).", - "slips": 130, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.406166667, - 41.20966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 182, - "mapId": "SA_040", - "name": "LA MADDALENA - CALA MANGIAVOLPE", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "Vhf 9 - 11" - ], - "description": "Two floating piers to private management, in a quay water and electricity.", - "slips": 100, - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.410333333, - 41.212 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 183, - "mapId": "SA_018", - "name": "STINTINO - PORTO MANNU", - "contacts": [ - "079 523381 Capitaneria", - "079 523721 Nautilus", - "079 527085 Ancora Yacht Club", - "079 523053 Porto Mannu" - ], - "description": "The village of Stintino is on a small peninsula with white and low houses; Noteworthy is the visibility of the bell tower. The minor port has seabed of 1.50 m up to 2.50 m in the center. The deeper the backdrop in Porto Mannu (\"Porto Grande\") that welcomes larger boats. At night the approach is difficult due to the lights on the coast and the poor lighting of the pier. Arriving from N-N-N-N-N-N-N-N-n-partially covers the entry lights, inducing the sailing to pass between the isthmus (rather low) and the pier of overflight. The passage of the stoves - is regulated by white and black dromes located on the flat island that must be placed in perfect alignment both incoming and leaving the Gulf. Do not position yourself on the sides of the strait. The draft in some points is 3 m and the width of 20 m (incoming from s).\n\nThe passage of the hairy - A s of the plain island does not have great difficulties, if not with a very rough sea from W. Attention to the dries out of the height of the Pelosa Tower. The fish at the entrance is between 10 and 4 m.\n\nDry of scanna kids - It is located in itself on the Piana island and continued to and for about 200 m from the island. During the summer there is a small green buoy that delimits the boundary more to E. On the official cards is not well reported." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.233, - 40.93616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 184, - "mapId": "SA_018", - "name": "STINTINO - PORTO MINORE", - "contacts": [ - "079 523381 Capitaneria", - "079 523721 Nautilus", - "079 527085 Ancora Yacht Club" - ], - "description": "The village of Stintino is on a small peninsula with white and low houses; Noteworthy is the visibility of the bell tower. The minor port has seabed of 1.50 m up to 2.50 m in the center. The deeper the backdrop in Porto Mannu (\"Porto Grande\") that welcomes larger boats. At night the approach is difficult due to the lights on the coast and the poor lighting of the pier. Arriving from N-N-N-N-N-N-N-N-n-partially covers the entry lights, inducing the sailing to pass between the isthmus (rather low) and the pier of overflight. The passage of the stoves - is regulated by white and black dromes located on the flat island that must be placed in perfect alignment both incoming and leaving the Gulf. Do not position yourself on the sides of the strait. The draft in some points is 3 m and the width of 20 m (incoming from s). The passage of the hairy - A s of the plain island does not have great difficulties, if not with a very rough sea from W. Attention to the dries out of the height of the Pelosa Tower. The fish at the entrance is between 10 and 4 m. Dry of scanna kids - It is located in itself on the Piana island and continued to and for about 200 m from the island. During the summer there is a small green buoy that delimits the boundary more to E. On the official cards is not well reported." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.230333333, - 40.93433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 185, - "mapId": "SA_080", - "name": "ANCORA YACHT CLUB", - "contacts": [ - "079 523381 Capitaneria", - "079 527085 Ancora Yacht Club", - "Vhf 16 - 72" - ], - "description": "Private marina with 150 places ravished boat thanks to a large elbow pier;Inside is quack and offers all the services for boats with a fish not exceeding 2.5 m.", - "slips": 150, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.8, - "maxDepth": -2.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.218166667, - 40.96016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 186, - "mapId": "SA_081", - "name": "PORTO CONTE - CALA TRAMARIGLIO", - "contacts": [ - "079 930565 Capitaneria", - "079 942013 Centro Nautico", - "079 946638 Club Nautico Capo Caccia", - "Vhf 9" - ], - "description": "Cala Tramariglio (079/985490), a private arrival for 80 seats;At the bottom of the bay there is Porto Count Marina, backdrops from 2 to 4 m.", - "slips": 120, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand", - "algae" - ], - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.170666667, - 40.5925 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 187, - "mapId": "SA_020", - "name": "PORTO CONTE MARINA", - "contacts": [ - "079 930565 Capitaneria", - "079 942013 Centro Nautico", - "079 946638 Club Nautico Capo Caccia", - "Vhf 9" - ], - "description": "Cala Tramariglio (079/985490), a private arrival for 80 seats;At the bottom of the bay there is Porto Count Marina, backdrops from 2 to 4 m.", - "slips": 330, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.2145, - 40.59533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 188, - "mapId": "SA_021", - "name": "FERTILIA", - "contacts": [ - "079 930565 Capitaneria", - "Vhf 16" - ], - "description": "Marina with 250 berths and access from the Rio Cuga river canal.", - "slips": 250, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.29, - 40.59116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 189, - "mapId": "SA_023", - "name": "BOSA MARINA - PORTO COMMERCIALE", - "contacts": [ - "0785 375550 Gestione posti barca", - "Vhf 16 - 14" - ], - "description": "The port is recognizable, for those coming from N, for the tower located in the middle of the pier of overflight which delimits the mouth of the river I fear.There is only one entry light placed at the top of the pier of overflight.The basin is located immediately to s of the mouth of the fear river and is formed by a single pier of overflight that does not guarantee a good full shock from the winds from SW and W. The Maestrale strong stand in a quay.The bottom is a goodger (sand).In the summer two floating piers are positioned.", - "slips": 150, - "seaFloor": { - "minDepth": -0.0, - "maxDepth": -6.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.477333333, - 40.28533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 190, - "mapId": "SA_074", - "name": "TORREGRANDE", - "contacts": [ - "0783 359933 Ufficio Circondariale", - "0783 72262 Circomare Oristano", - "0783 22189 Marine Oristanesi", - "www.marineoristanesi.it", - "Vhf 9" - ], - "description": "The private tourist port for 440 berths is located in the Gulf of Oristano, N of the Cabras pond.", - "slips": 440, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.8, - "maxDepth": -2.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.494833333, - 39.90216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 191, - "mapId": "SA_024", - "name": "ORISTANO - SANTA GIUSTA", - "contacts": [ - "0783 72262 Capitaneria" - ], - "description": "It is the port of the city of Oristano to the center of the homonymous Gulf, about 1.5 miles to s of the mouth of the Tirso river.The port is protected by two pier arms oriented for W and NW;There is a minor pier of a subfluy.", - "slips": 20, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.532333333, - 39.869 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 192, - "mapId": "SA_025", - "name": "BUGGERRU", - "contacts": [ - "0781 800815 Capitaneria", - "0781 54023 Marina di Buggerru" - ], - "description": "This port has serious coverage problems.For some years it has been used only by small hulls with low draft.The arrival was expanded a few years ago and quack, but the problems of burdens remain unresolved.The local fishermen have mooring problems near the docks.In the southern part of the pelvis a \"beach\" is resisted where there were 2,50 m of draft before.", - "slips": 200, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.397333333, - 39.404 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 193, - "mapId": "SA_028", - "name": "PORTOSCUSO", - "contacts": [ - "0781/509114 Capitaneria", - "0781 507248 Saromar", - "Vhf 9" - ], - "description": "Marina located in the inhabited center, with all services for the pleasure, partly occupied by fishing boats, has been renovated and guarantees hospitality and good capacity.During the summer, the spaces surrounding the marina, are often the theater of festivals and shows.", - "slips": 387, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.381666667, - 39.19933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 194, - "mapId": "LI_045", - "name": "OSPEDALETTI", - "contacts": [ - "0184 265656 Capitaneria" - ], - "description": "Arrador-beach for small boats, on the Porrina torrent, subject to sanding, managed by the absoc.Sea people for your members.", - "slips": 200, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.712, - 43.80016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 195, - "mapId": "LI_048", - "name": "VADO LIGURE", - "contacts": [ - "019 85541 Capitaneria", - "019 880102 Cantiere Marina di Vado" - ], - "description": "Commercial port that rises under the head of Vado;For your pleasure, moorings can be available in the area reserved for fishing vessels.", - "slips": 90, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.4545, - 44.27166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 196, - "mapId": "SA_109", - "name": "SANTA REPARATA", - "description": "It is a bay where you can find a shelter at anchor with good time declared.A starboard in a creek there is an old stone hedge", - "seaFloor": { - "type": [ - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.1655, - 41.24233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 197, - "mapId": "SA_014", - "name": "CALA SPINOSA", - "description": "Bay in the northern part of head head with a pontot for small boats.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.148166667, - 41.24633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 198, - "mapId": "SA_089", - "name": "PORTOBELLO DI GALLURA", - "contacts": [ - "079 631249 Pintus" - ], - "description": "Creek protected from a boulder arm with docks for small boats and rafts.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.0, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.021, - 41.12716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 199, - "mapId": "SA_016", - "name": "CASTELSARDO", - "contacts": [ - "079 470916 Capitaneria", - "079 471339 Direzione Porto", - "Vhf 16" - ], - "description": "Coming from the west the bell tower similar to a lighthouse is distinguished.The port is the only one in the Gulf of Asinara to own a Travel Lift up to 50 tons.Pay attention by entering heavy and majral sea conditions.A new landing is a red island at 9.5 miles n of Castelsardo, with water and electricity.A water pier and three floating piers can accommodate about 100 boats.Good hospitalization with twenty from the I and 2, Jarsia from NW.", - "slips": 650, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.705, - 40.91616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 200, - "mapId": "SA_017", - "name": "PORTO TORRES - COMMERCIALE", - "contacts": [ - "079 502258 Capitaneria", - "079 512290 Cormorano Marina", - "079 514413 Lega Navale Italiana", - "079/500887 Comune", - "Vhf 74" - ], - "description": "It is the port of Sassari. The city recognizes itself for industrial settlements with fumaioli. There are two docks: the commercial port and the industrial port of distant about 1 mile, in Levante the first, to the second one.\n\nThe dock of it is managed by the Municipality with floating pontiens. The dock to SW is managed by Cormorano Marina. Arriving from N is visible the industrial area with chimneys and infrastructures of Enichem (A W of the city) which at night is illuminated by rather intense white lights. The entrance to the port is visible from about three miles daily and two miles at night, although the yellow lights of the city can overlap with entry lights. Once you have entered the left (SE) to enter one of the two docks for your pleasure. Attention to passenger ships entering port from 7am to 9am and start from 7.30 pm to 8.30 pm in the evening. The dock to S for those who enter the port is reserved for fishing vessels and tugboats and the mooring of pleasure boats is prohibited. The \"Cormorano Marina\" manages two piers floating for transit, with light, water and mooring assistance. The dock of it is managed by the Municipality (130 places) with floating piers for boats up to 12 m.", - "slips": 350, - "temporarySlips": 100, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.400833333, - 40.847 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 201, - "mapId": "TO_019", - "name": "PORTO BARATTI", - "contacts": [ - "0565 221000 Capitaneria", - "330 451745 Della Nave" - ], - "description": "Natural harbor that offers excellent back from the II and III quadrant.Many dead bodies that especially in summer serve as a stable mooring for numerous minor boats and for sailboats whose fishing allows stops in depth between 1 and 2 m;The rada has a slide.It is close to the important archaeological site of Populonia.", - "slips": 250, - "seaFloor": { - "type": [ - "sand", - "good" - ], - "minDepth": -0.6, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.50433333, - 42.99933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 202, - "mapId": "CA_023", - "name": "MARINA DELLA LOBRA", - "contacts": [ - "081 8789295 Capitaneria", - "081 8089380 Coop. Marina della Lobra", - "081 8780628 F. Persico" - ], - "description": "Marina protected by a long cliff: inside a jetty is used as a commercial navigation, while the other reserved for pleasure is completely occupied by settled boats.", - "slips": 150, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.33516667, - 40.61016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 203, - "mapId": "SA_029", - "name": "PORTOVESME", - "contacts": [ - "0781 509114 Capitaneria", - "Vhf 12" - ], - "description": "Commercial and stopover port for Carloforte - Island of St. Peter.In case of need it is possible to find shelter in Rada.", - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -7.0, - "maxDepth": -13.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.387666667, - 39.19066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 204, - "mapId": "SA_062", - "name": "ISOLA PIANA - VILLAMARINA", - "contacts": [ - "0781 854023 Capitaneria", - "0781 854460 Villamarina", - "Vhf 9-72" - ], - "description": "In the northern part of the S. Pietro canal, between Sardinia and the island, there is a islet (Is. Piana) with buildings of a former Tonnara;Here a tourist village of 750 beds was built, served by a small private marina.", - "slips": 87, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -2.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.323, - 39.18916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 205, - "mapId": "SA_052", - "name": "CARLOFORTE - ISOLA S. PIETRO", - "contacts": [ - "0781 854023 Capitaneria", - "0781 854110 Marinatur", - "0781 854437 Sifredi Rimessaggio", - "0781 857002 Lega Navale Italiana", - "0781 854138 Marinaservice", - "Vhf 15" - ], - "description": "The port of Carloforte is located on the coast\nEast of S. Pietro.Inside there are various backdrops and docks managed by private individuals.The inhabited in Carloforte is typically Ligurian because the settlements were original of a pegli fishermen colony cast from Tabarka (Tunisia).From the Largo you notice the Tower S. Vittorio to the country and the bell tower of the Duomo, tall and white.The port has a background of sand, seaweed and mud and is a goodger.For the pleasure, part of the Sanit\u00e0 pier is reserved for the pleasure, and the jetty of the Italian Naval League.", - "slips": 450, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.3185, - 39.14516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 206, - "mapId": "SA_053", - "name": "CALASETTA", - "contacts": [ - "0781 83071 Capitaneria", - "0781 88083 Torre controllo", - "0781 88930 Centralino", - "www.portocalasetta.it" - ], - "description": "A cylindrical tower and a white church, the latter visible only by N, are the conspicuous points for landing in Calasetta, in the northern part of the Sant'Antioco island.The marina is reserved for commercial traffic and stopover from and to Carloforte - Isola S. Pietro.On the Wife W a tourist arrival was completed from the bottom limited to 2 m that adds 158 places to already available in the main stop.Supermarkets, pharmacy and other commercial services overlook the harbor.In the municipal library premises (Lungomare Colombo, 1) free Internet access.", - "slips": 158, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.375166667, - 39.11233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 207, - "mapId": "SA_054", - "name": "SANT\u2019ANTIOCO - PORTO PONTE ROMANO", - "contacts": [ - "0781 83173 Circolo Nautico Mura", - "Vhf 16" - ], - "description": "Coming from s the arrival is at the end of the Gulf of Palmas.The isthmus that unites the island at Sardinia has an ancient Roman bridge, from here Porto Romano.It is mainly mercantile-commercial.An access channel guide to the pier where the capitating can be found in which can be stopped if in transit.Immediately to and there is a dock used by the nautical circle.\n\nMooring: with one another;In Rada;Outside the canal in space identified by \"Sierra 1 to Sierra 6\".With strong mistral you can request the mooring in the quay in front of the captain.", - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -7.0, - "maxDepth": -7.3 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.475666667, - 39.05166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 208, - "mapId": "SA_031", - "name": "PORTO TEULADA", - "contacts": [ - "0781 840815 Capitaneria", - "0781 9272042 Centralino", - "www.infoteulada.it" - ], - "description": "Before the Malfatano boss and in front of the red island there is a minor landing, mainly for fishing boats, it is a discreet full of northern winds.Depth in a quay 5 meters.Once the municipality is completed for the management.Ideal place for those looking for pristine Sardinia.", - "slips": 150, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -5.5, - "maxDepth": -5.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.722166667, - 38.92866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 209, - "mapId": "SA_051", - "name": "CAGLIARI", - "contacts": [ - "070 605171 Capitaneria", - "070 300240 Lega Navale Italiana", - "Vhf 9 - 11 - 12" - ], - "description": "It is the largest port of the island, which inside the two large piers, of the west and east, has numerous docks and destined for pleasure.Four destinations, from the west towards Levante: Motomar Sarda, quay ichnusa (without services), Italian Naval League, Darsena del Sole, Marina S. Elmo.Warnings: The capacity manages the transit and parking of pleasure boats to which the mooring point is generally assigned to the ichnusa drop.", - "seaFloor": { - "type": [ - "mud", - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.104833333, - 39.19733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 210, - "mapId": "SA_034", - "name": "POETTO", - "contacts": [ - "070 605179 Capitaneria", - "Vhf 74" - ], - "description": "Tourist port in the seaside area (Poetto beach) a s of the city of Cagliari.Internally quack, it has floating piers.", - "slips": 350, - "seaFloor": { - "type": [ - "rock", - "sand", - "algae" - ], - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.1635, - 39.19383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 211, - "mapId": "SA_090", - "name": "MARINA DI CAPITANA", - "contacts": [ - "070 805460 Marina di Capitana", - "Vhf 74-9" - ], - "description": "Private marina for 450 seats, with all services in two docks inside", - "slips": 450, - "seaFloor": { - "minDepth": -0.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.298666667, - 39.206 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 212, - "mapId": "SA_035", - "name": "VILLASIMIUS", - "contacts": [ - "070 605179 Capitaneria", - "070 7978006 Marina di Villasimius", - "Vhf 9" - ], - "description": "Well-rotten tourist port, it has complete services for transit with a good level of recreational assistance.", - "slips": 740, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -6.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.507, - 39.1225 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 213, - "mapId": "SA_037", - "name": "PORTO CORALLO", - "contacts": [ - "0782 667093 Capitaneria", - "070 997178 Direzione Porto" - ], - "description": "Tourist port and fishing boat at about 30 miles of Arbatax in the east coast of the island, municipality of Villaputzu.Inaugurated in 2000 at the end of expansion work, which also eliminated the problem of access failure.The approach does not show dangers, during the day is facilitated by the Aragonese tower placed at 200 m on the W side of the port.Regulatory lights on the entrance heads.", - "slips": 380, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -3.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.639666667, - 39.43683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 214, - "mapId": "SA_039", - "name": "ARBATAX", - "contacts": [ - "0782 667093 Capitaneria", - "0782 667405 Marina di Arbatax", - "www.marinadiarbatax.it", - "Vhf 11" - ], - "description": "The Bellavista chief with its lighthouse, is the conspicuous point for landing in Arbatax, a town of the Municipality of Tortol\u00ec of which the bell tower, a s of the town, and the Torre S. Gemiliano Grigiastra and Troncoconica, a s ofCapo Bellavista;Other conspicuous spots are the two smaiioli and the tanks of the Arbatax a n of the habit.The port is a good authentic retreat in Olbia.Mostly merchant, in recent years it has opened up to the pleasure with the realization of the Marina di Arbatax dock with floating pontiens and nautical services.", - "slips": 250, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.698, - 39.94683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 215, - "mapId": "SA_104", - "name": "SANTA MARIA NAVARRESE", - "contacts": [ - "0782 667093 Capitaneria", - "0782 614020 Marina Baunei", - "Vhf 16 - 74" - ], - "description": "Quiet marina at 2.5 miles to N of Arbatax, located in the town that takes its name from the tower of S. Maria Navarrese, cylindrical, white with small windows at the top, the village arose.Pontibles for 370 berths.", - "slips": 370, - "temporarySlips": 150, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.693166667, - 39.98983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 216, - "mapId": "SA_041", - "name": "CALA GONONE", - "contacts": [ - "0784 93261 Capitaneria" - ], - "description": "Unique close to the Gulf of Orosei, recognizable for the group of houses on the coast;Behind the village on the slopes of a hill there is a large white bodies.The port is almost entirely intended for fishing but in the floating piers you find mooring small boats.Impracticable in August.", - "slips": 100, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.638, - 40.27966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 217, - "mapId": "SA_043", - "name": "LA CALETTA", - "contacts": [ - "0784 810137 Capitaneria", - "0784 810631 Circolo Nautico", - "Vhf 9" - ], - "description": "The tourist port in the municipality of Siniscola recognizable for a building with four orders of Arcate and the Torre S. Giovanni, cylindrical and white, located immediately to N of the port.Two dock inside the basin for fishing boats and the other for pleasure.The latter is managed by the local nautical circulation that has 174 mooring ports.The dotted portions in the plate indicate that they are accessible but not equipped.", - "slips": 420, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.755666667, - 40.60833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 218, - "mapId": "SA_059", - "name": "PORTO OTTIOLU", - "contacts": [ - "0789 21243 Capitaneria", - "0784 846205 Direzione Marina", - "Vhf 9" - ], - "description": "Arriving from s passing distant from the islet off at least one mile to avoid slums;Arriving from N Turning Largo the Ottiolu Punta and the Pedrama Islet between Porto Ottiolu and La Caletta.Going out.", - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.714833333, - 40.73816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 219, - "mapId": "SA_083", - "name": "MARINA DI PUNTALDIA", - "contacts": [ - "0789 21243 Capitaneria", - "0784 864590 Direzione Marina", - "www.marinadipuntaldia.it", - "Vhf 9" - ], - "description": "A s chief of horse, the private marina for 400 berths is reserved for pleasure.All services on the quay.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.691, - 40.817 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 220, - "mapId": "SA_044", - "name": "PORTO BRANDINGHI", - "contacts": [ - "0789 21243 Capitaneria" - ], - "description": "Natural Rada Immediately to SW of Head of Tail Horse, good back to the Western winds.Open instead of twenty from the I and the II quadrant.The area from Cala Fennocchio up to the Gulf of Olbia is regulated for navigation, anchoring and fishing from the provisions of the protected area Tavern - Capo Coda Cavallo.See provisions", - "seaFloor": { - "type": [ - "rock", - "sand" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.695666667, - 40.82566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 221, - "mapId": "CL_003", - "name": "DIAMANTE", - "contacts": [ - "0985 876075 Capitaneria", - "0985 81208 Yacht Marine" - ], - "description": "A s by Punta Diamante stands the homonymous town whose white houses are scattered on a small plateau;At the country there is a tower on a square plan.The marina is protected by a curvilinear cliff oriented to S. from the fing shore, seasonal housing for pleasure.", - "slips": 200, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.81616667, - 39.67583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 222, - "mapId": "CL_005", - "name": "CETRARO", - "contacts": [ - "0982 971415 Capitaneria", - "0982 999413 Lega Navale Italiana" - ], - "description": "The port of Cetraro has the foranee pier that repairs it by west;The winds of Scirocco and Libeccio are of a trash.Entering straight a pier bordering the access of a dock to which you access after about 90 m from the entry lights.Asking permission to the capacity you can enter and give a bottom to the anchor but don't approach the piers because the port because of the work in progress is not available.The backdrops may undergo variations causing flap problems." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.923, - 39.52416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 223, - "mapId": "CL_009", - "name": "PIZZO", - "contacts": [ - "0963 531470 Capitaneria" - ], - "description": "Lace is built on a large boulder of tufa cut to peak, it is identified from the wide;The cathedral with dome is surmounted by a structure on a square plan so \"as a residual tower of a castle. The marina consists of a pier of about 100 m with Swing direction; mooring for small boats", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.15683333, - 38.73533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 224, - "mapId": "CL_010", - "name": "VIBO VALENTIA MARINA", - "contacts": [ - "0963 5739 Capitaneria", - "0963 572630 Pontile da Carmelo", - "0963 573202 Pontile Stella del Sud", - "Vhf 11 - 12" - ], - "description": "Vibo Valentia Marina is the town of the city located at 3 miles to the port, at an altitude of 557 m.The port is located in the southern part of the Gulf of S. Eufemia and is the safest on the coast, before Reggio Calabria.Various floating piers and part of the quay are used for pleasure.In the distributor pier spaces are reserved for transit, subject to authorization.", - "slips": 450, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.13116667, - 38.72416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 225, - "mapId": "CL_011", - "name": "TROPEA", - "contacts": [ - "0963 62233 Capitaneria", - "0963 61548 Porto di Tropea Spa", - "www.portoditropea.it", - "Vhf 9" - ], - "description": "Tropea is on a high-rise plateau on a sandy beach where two boulder boulders arise, the island A W, and S. Leonardo A and;The first is surmounted by a small sanctuary.Modern tourist port with all the most modern services, consisting of a pier of overflow of 235 m with direction ne and a dam of a subfluy from which the pontoons floated by the pleasure are internally departed.The port is subject to burdening and at seaware variations.", - "slips": 620, - "temporarySlips": 200, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.90666667, - 38.683 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 226, - "mapId": "SI_027", - "name": "PANTELLERIA - SCAURI", - "contacts": [ - "0923 911027 Capitaneria", - "Vhf 14" - ], - "description": "The highest peak of Pantellrria is the great mountain (836 m) on which a circular section tower is about 40 m high with the upper part painted with white and red chess.The ridge is often wrapped in the clouds.The village is located in the side of the island and extends to a semicircle around the port.Conspicuous points for landing are the former traffic lights on Monte S. Elmo a whom of the country, the headlight on the Punta S. Leonardo and S if the headlight a radio antenna.Two basins form the harbor, old port and new port.In the latter works are underway to lengthen the cidonium pier from which two floating piers reserved for pleasure are extended.Another landing is located in the southern part of the island, in Scauri, where there is a new marina.Different anchors on the island: Cala di Levante, Cala Tramontana and port behind the island." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.96266667, - 36.7675 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 227, - "mapId": "CL_013", - "name": "GIOIA TAURO", - "contacts": [ - "0966 766415 Capitaneria", - "Vhf 12 - 9" - ], - "description": "Marina that develops in the hinterland of the country.The entrance is protected by two converging piers respectively 1,100 m (n) and 350 m (s).The port is composed of a large expansion basin, from a canal and a trapezoidal dock.The recreational moorage is expected within the dock services, in the expansion basin, for about 80 boats on two floating piers.Another 30 places are available in a trait of a quay.", - "slips": 110, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -4.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.8815, - 38.447 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 228, - "mapId": "CL_047", - "name": "BAGNARA CALABRA", - "contacts": [ - "0966 371303 Capitaneria", - "Vhf 11" - ], - "description": "BAGNARA rises on declers buttocks that descend to the sea and partly on the beach;Conspicuous point is the highway viaduct.Small fishing port consisting of a pier of overflower of 330 m and a clustered moles of approximately 50 m, completely quacks.The marina is accessible but has only a toilet.Part of the subfluy pier is reserved for transit (unforgettable mole).", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -5.0, - "maxDepth": -12.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.81533333, - 38.3005 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 229, - "mapId": "CL_016", - "name": "VILLA S. GIOVANNI", - "contacts": [ - "0965 751598 Capitaneria" - ], - "description": "Villa S. Giovanni is the city of Scalo and docking of ferries that make the shuttle between Calabria and Sicily.The mooring for the pleasure is permitted in the event of an emergency, subject to contact with the unit.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.62866667, - 38.22133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 230, - "mapId": "CL_017", - "name": "REGGIO CALABRIA", - "contacts": [ - "0965 656111 Capitaneria", - "0965 47914 Comp. Portuale T. Gulli", - "Vhf 11 - 13" - ], - "description": "The port consists of an artificial basin protected to west by a pier with NS direction.In the area of the mouth (dock of Levante) there is a tourist dock for pleasure with numerous floating piers and the fuel station.", - "slips": 100, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -5.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.64916667, - 38.13033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 231, - "mapId": "RO_009", - "name": "MARINA DI RAVENNA", - "contacts": [ - "0544 443011 Capitaneria", - "0544 538855 Marinara", - "0544 530513 Circolo Velico Ravennate", - "0544 538373 Lega Navale Italiana", - "0544 531162 Ravenna Yacht Club", - "www.marinadiravenna.it", - "Vhf 9 - 11", - "Vhf 12 Corporazione Piloti" - ], - "description": "From the Largo the city of Marina di Ravenna is visible only in the part near the port, some large buildings and, between the pine forest, and a hinterland made of chimneys. Two very long cliffs of almost 3 km protect the port of Ravenna. The lighthouse is the conspicuous point located at the root of the guardian pier s; It is a white octagonal tower erected on a three-storey brick building. During the landing maneuver it is advised to port just have the lighthouse in the cross. The moorings in transit of Marina di Ravenna are located between the guardian pier s and the root of the forane dam; Some pontoons are managed by various circles. Between the foraneous dam and the southern pier is the marina, marinara, equipped with all services. Porto Corsini is on the left bank of the Baona canal and is reserved for merchant ships. The canal traffic is forbidden to pleasure boats. The Marina is managed by the Velico Ravenna circle (390 moorings) and the Ravenna Yacht Club (268 moorings).", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.314, - 44.49633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 232, - "mapId": "RO_008", - "name": "CERVIA - MILANO MARITTIMA - PORTO CANALE", - "contacts": [ - "0544 72355 Capitaneria", - "0544 973109 Il Sestante", - "0544 71709 Marina di Cervia", - "0544 71731 Lega Navale Italiana", - "Vhf 14 - 16" - ], - "description": "The two locations are separated from the Saline Canal where, in the mouth, the port of Cervia stands.A s of the port, inwards, the cylindrical tower on cement structure, white in the upper and dark part in the lower part;The old red lantern is hidden.The shores of the canal are punched and on the south shore there is the entrance to the dock and from this to the Marina di Cervia.In transit it is also moored side by fishing boats.Very crowded in the summer.\n\nThe mouth of the Canale port is affected by continuous interraments, even if with dredging the municipal administration tries to bring back the bottom to about 3 m.Before taking the channel, ask the Captainer the authorization to the entrance to the port, if the boat has a fish greater than 1.5 m.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.36016667, - 44.269 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 233, - "mapId": "RO_008", - "name": "MARINA DI CERVIA", - "contacts": [ - "0544 72355 Capitaneria", - "0544 973109 Il Sestante", - "0544 71709 Marina di Cervia", - "0544 71731 Lega Navale Italiana", - "Vhf 14-16" - ], - "description": "The two locations are separated from the Saline Canal where, in the mouth, the port of Cervia stands.A s of the port, inwards, the cylindrical tower on cement structure, white in the upper and dark part in the lower part;The old red lantern is hidden.The shores of the canal are punched and on the south shore there is the entrance to the dock and from this to the Marina di Cervia.In transit it is also moored side by fishing boats.Very crowded in the summer.", - "slips": 280, - "vesselMaxSize": { - "maxLoA": 22.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.35683333, - 44.26733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 234, - "mapId": "RO_006", - "name": "CESENATICO - PORTO CANALE", - "contacts": [ - "0547 83911 Circolo Vela Cesenatico", - "0547 81094 Circ. Nautico Cesenatico", - "0547 81677 Darsena - Onda Marina" - ], - "description": "A light color skyscraper, at about 1,000 m to s from the canal port, is visible with clear time at 20 mgl.A cylindrical tank in the center of the village is also conspicuous.The marina is frequented by fishing boats and pleasure boats.\n\nMooring along the docks.Grounding at the entrance to winter periods.The entry with E - ne is not recommended.", - "slips": 96, - "vesselMaxSize": { - "maxLoA": 26.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.405, - 44.20916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 235, - "mapId": "RO_006", - "name": "CESENATICO - ONDA MARINA", - "contacts": [ - "0547 83911 Circolo Vela Cesenatico", - "0547 81094 Circ. Nautico Cesenatico", - "0547 81677 Darsena - Onda Marina", - "www.ondamarina.com" - ], - "description": "A light color skyscraper, at about 1,000 m to s from the canal port, is visible with clear time at 20 mgl.A cylindrical tank in the center of the village is also conspicuous.The marina is frequented by fishing boats and pleasure boats.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 23.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.3995, - 44.205 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 236, - "mapId": "MA_011", - "name": "PESARO", - "contacts": [ - "0721 400016 Capitaneria", - "0721 402125 Club Nautico Pesaro", - "0721 25726 Lega Navale Italiana", - "Vhf 12 -16" - ], - "description": "From the sea Pesaro it comes with a row of modern buildings, including the long and gray marine colony with the green dome of a church;On the shore in Ponente del Porto there is a complex of ten buildings near the hill of Monte San Bartolo where the lighthouse dominates.The entrance to the canal port is subject to continuous basis variations due to the full of the leaf river, adjacent to the pier, and which houses the mouth small boats.", - "slips": 400, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.90666667, - 43.92666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 237, - "mapId": "MA_020", - "name": "FANO", - "contacts": [ - "0721 828315 Capitaneria", - "0721 830702 Lega Navale Italiana", - "0721 807909 Club Nautico", - "0721 801484 Fisherman Club", - "Vhf 16" - ], - "description": "The port of Fano is composed of the Albani dock pipette (A W), Darsena Giugin (A e), Nova Darsena and Marina dei Cesari.I mainly carry fishing boats, the pleasure boats can find place along the Albani canal (pesagroimo maximum2 m) and in the new dock (fish maximum 2.30 m. The moorings are managed by the various nautical clubs. The mouth is subject to balancing and withAgitated sea can be risky for boats with upper draw I 2 m.", - "slips": 640, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.01566667, - 43.85566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 238, - "mapId": "RO_004", - "name": "RIMINI - MARINA BLU", - "contacts": [ - "www.marinadirimini.it", - "0541 28505 Blu Service", - "0541 29488 Marina", - "Vhf 69" - ], - "description": "A significant height skyscraper helps to identify Rimini;To the skyscraper there is the bell tower at the beach and the cylindrical airport tank, large and 50 m high.In the river canal Marecchia, the fishing boats and pleasure boats find the mooring of the river.On the opposite bank in the shore of the slide of the Carrini shipyards can moor a number of boats in transit.\n\nIn the water mirror A W of the harbor levante pier is the new tourist port.The entrance is about 150 m from the mouth of the channel by entering the right.The backdrop both in the canal and in the marina is 4 m.The moorings for transit in the marina are located on the tip entering and on the left.", - "slips": 620, - "vesselMaxSize": { - "maxLoA": 35.0 - }, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.57366667, - 44.07666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 239, - "mapId": "MA_013B", - "name": "ANCONA - MARINA DORICA", - "contacts": [ - "071 227581 Capitaneria", - "071 206656 Lega Navale Italiana", - "071 2075324 Stamura", - "071 54800 Marina", - "Vhf 16 - 12 - 8", - "www.marinadorica.it" - ], - "description": "The arrestings of Ancona are three: the commercial port, reserved for merchant traffic where it is possible to temporary attractions to free docks after authorizing the Master's Office and the two docks dedicated to pleasure, the Marina Dorica and that of the Sports Society Velica Stamura.The latter is located inside the commercial port in the part, with the berths made around the wheel Vanvitelliana.\n\nThe access to the mouthpiece is aimed at W NW and the headlights are inverted coming from.Make the approach by leaving the light to 200 m to the left.", - "slips": 1190, - "vesselMaxSize": { - "maxLoA": 39.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.47833333, - 43.61066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 240, - "mapId": "MA_005", - "name": "NUMANA NORD", - "contacts": [ - "071 9332134 Comune", - "071 7360377 Capitaneria", - "071 9330847 Coop. Ormeggiatori", - "071 9331363 Lega Navale Italiana", - "071 9331542 Circolo Nautico Massaccesi" - ], - "description": "On the promontory we notice the high bell tower of Sirolo and the old tower that looks like an isolated bow.The marina has two \"inputs\" for the protection of a long forage dam parallel to the shore.The port is often covered and filled in the summer.In transit there is hospitality to pontoons s where you enter since the mouth to N is only for the output.", - "slips": 780, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.8, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.6275, - 43.51216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 241, - "mapId": "MA_009", - "name": "SENIGALLIA", - "contacts": [ - "071 7929669 Gestimport Senigallia", - "071 7925917 Capitaneria", - "071 63983 Lega Navale Italiana", - "Vhf 16 - 11" - ], - "description": "Porto Canal in the mouth of the river misa prolonged to sea from two piers.Three interior docks: the one towards the sea is larger, the tourist dock is managed by the company Gestimport Senigallia;The others are intended for fishing vessels.A swivel bridge for pedestrian traffic opens to boats when they emit 3 whistles in succession.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.22233333, - 43.7245 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 242, - "mapId": "MA_008", - "name": "ANCONA - PORTO COMMERCIALE", - "contacts": [ - "071 2074697 Capitaneria", - "Vhf 10 (Piloti 12)" - ], - "description": "The arrestings of Ancona are three: the commercial port, reserved for merchant traffic where it is possible to temporary attractions to free docks after authorizing the Master's Office and the two docks dedicated to pleasure, the Marina Dorica and that of the Sports Society Velica Stamura.The latter is located inside the commercial port in the part, with the berths made around the wheel Vanvitelliana.", - "slips": 100, - "vesselMaxSize": { - "maxLoA": 150.0 - }, - "seaFloor": { - "minDepth": -7.0, - "maxDepth": -12.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.49383333, - 43.63033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 243, - "mapId": "MA_008", - "name": "ANCONA - DARSENA CANTIERISTICA", - "contacts": [ - "071 227581 Capitaneria", - "071 206656 Lega Navale Italiana", - "071 2075324 Stamura", - "Vhf 12 - 8" - ], - "description": "The arrestings of Ancona are three: the commercial port, reserved for merchant traffic where it is possible to temporary attractions to free docks after authorizing the Master's Office and the two docks dedicated to pleasure, the Marina Dorica and that of the Sports Society Velica Stamura.The latter is located inside the commercial port in the part, with the berths made around the wheel Vanvitelliana.\n\nA s of the industrial area of the commercial port." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.488, - 43.61583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 244, - "mapId": "MA_005", - "name": "NUMANA SUD", - "contacts": [ - "071 7360377 Capitaneria", - "071 9330847 Coop. Ormeggiatori", - "071 9331363 Lega Navale Italiana", - "071 9331542 Circolo Nautico Massaccesi", - "Vhf 11" - ], - "description": "On the promontory we notice the high bell tower of Sirolo and the old tower that looks like an isolated bow.The marina has two \"inputs\" for the protection of a long forage dam parallel to the shore.The port is often covered and filled in the summer.In transit there is hospitality to pontoons s where you enter since the mouth to N is only for the output.", - "slips": 780, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.8, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.62366667, - 43.507 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 245, - "mapId": "AB_003", - "name": "ORTONA", - "contacts": [ - "085 9063290 Capitaneria", - "334 1032220 Marina di Ortona", - "085 9061042 Lega Navale Italiana", - "Vhf 15 - 12 (Ormeggiatori)", - "www.marinadiortona.it" - ], - "description": "Notable the dome of the cathedral with the red quadrangular bell tower and the ruins of the Aragonese castle.Between the root of the pier N and the Mandracchio pier is a dock for fishing vessels.You can moor in transit in pier S or at the quay managed by the naval alloy.Between the Mandracchio pier and the pier s there is the Ortona marina with 3 toppiti floats", - "slips": 310, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.42566667, - 42.35 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 246, - "mapId": "AB_001", - "name": "VASTO", - "contacts": [ - "0873 310340 Capitaneria", - "0873 801482 Circolo Nautico Vasto", - "www.circolonauticovasto.it", - "Vhf 12" - ], - "description": "The transit is at the Mandracchio pier, in front incoming, in concession to the Vasto nautical circle.", - "slips": 100, - "vesselMaxSize": { - "maxLoA": 18.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.7135, - 42.179 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 247, - "mapId": "MO_001", - "name": "TERMOLI", - "contacts": [ - "0875 706484 Capitaneria", - "0875 702230 Marinucci Yacth Club", - "www.myc.it" - ], - "description": "The arrival of Termoli is mainly fishing boat and transit boats find hospitality to the pier of the south pier to the Marinucci pontoons.", - "slips": 120, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -0.3, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.0065, - 42.00083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 248, - "mapId": "PU_054", - "name": "FOCE DI VARANO", - "contacts": [ - "0884 965140 Capitaneria", - "0884 917591 Lega Navale Italiana" - ], - "description": "At the mouth of the Varano canal, which connects the sea to the homonymous lake, there are two piers who extend towards the sea and thus allow access to the inner dock.The arrival consists of four piers managed by the Italian Naval League.The moles are free of lights.", - "slips": 100, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.79533333, - 41.922 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 249, - "mapId": "PU_045", - "name": "RODI GARGANICO", - "contacts": [ - "0884 965675 Marina", - "www.marinadirodigarganico.it", - "Vhf 6" - ], - "description": "The town of Rodi Garganico, with its intricate streets among the white houses, is perched on a promontory in the northern coast of the Gargano peninsula.The newly opened marina is a great starting point for anyone who wants to reach Croatia: the Pelosa island is at 30 mgl, Vis at 60, Lastovo and Korcula respectively at 62 and 69 mgl.", - "slips": 316, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.88966667, - 41.9305 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 250, - "mapId": "RO_005", - "name": "BELLARIA - IGEA MARINA", - "contacts": [ - "0541 344471 Capitaneria", - "0541 349838 Circolo Nautico Bellaria", - "Vhf 16" - ], - "description": "The places Bellaria and Igea Marina (a single municipality) extend to N and a s of the mouth of the river Use (ancient Rubicone).In west of the canal string there is a 11-storey brown building of a hotel with white balconies.The canal port is frequented by fishing boats and moorings are along the channel itself.Unable to enter with rough sea.", - "slips": 40, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.47416667, - 44.14533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 251, - "mapId": "RO_004", - "name": "RIMINI - PORTO CANALE", - "contacts": [ - "0541 51227 Circolo Velico Riminese", - "0541 26520 Club Nautico Rimini", - "0541 54002 Ass. Marinai", - "Vhf 16" - ], - "description": "A significant height skyscraper helps to identify Rimini;To the skyscraper there is the bell tower at the beach and the cylindrical airport tank, large and 50 m high.In the river canal Marecchia, the fishing boats and pleasure boats find the mooring of the river.On the opposite bank in the shore of the slide of the Carrini shipyards can moor a number of boats in transit.", - "slips": 158, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.57383333, - 44.0805 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 252, - "mapId": "RO_003", - "name": "RICCIONE", - "contacts": [ - "0541 644000 Capitaneria", - "0541 647910 Club Nautico Riccione", - "Vhf 16" - ], - "description": "Porto channel protected by two moles that run parallel to ne.On the pier, the restaurants obtained from fishing huts hide the two docks that host the nautical club on the side and, in the dock of the Levante, the boats organized by the cooperative mooring.The unity landing with a fish with a 1.50 m is not recommended due to frequent seafappings.The basin has an internal backdrop of just under 2 m.", - "slips": 500, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.65783333, - 44.00816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 253, - "mapId": "RO_002", - "name": "MARINA PORTO VERDE", - "contacts": [ - "0541 615023 Darsena Porto Verde", - "0541 614503 Y. Club Porto Verde", - "www.portoverde.net" - ], - "description": "Between Cattolica and Misano, in Ponente della Foce del Torrente Conca, there is a private landing arrival with access to fish boats less than 1.80 m.The marina is composed of two docks: one of an elliptical shape with pontiens inside the other immediately to s of the first.The harbor mouth is protected by two parallel piers of about fifty meters.", - "slips": 350, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -1.7, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.71966667, - 43.97366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 254, - "mapId": "RO_001", - "name": "MARINA DI CATTOLICA", - "contacts": [ - "0541 830789 Marina Cattolica", - "0541 963362 Circolo Nautico Cattolica", - "Vhf 16 - 11", - "www.marinadicattolica.it" - ], - "description": "The canal port, with a wholly foxed dock, is mainly frequented by fishing boats.The Marina di Cattolica was created for the pleasure, located in the first dock 100 meters from the mouth of the port.", - "slips": 175, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.751, - 43.9715 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 255, - "mapId": "MA_012", - "name": "MARINA DI VALLUGOLA", - "contacts": [ - "0541 963221 Capitaneria", - "0541 967918 Sviluppo Marittimo", - "0541 958134 Marina", - "www.vallugola.com", - "Vhf 9" - ], - "description": "The tourist marina of Baia Vallegola is just over 3 mgl to SE of Catholic and in the municipality of Gabicce Mare.It is a very crowded private landing landing, where the mooring in transit is not always guaranteed.Before entering, contact the management and be assigned the mooring.The Marina is located in one of the traits of the Adriatic coast made difficult by the currents and wind jumps into a sea where it is easy to find some unspoiled clog.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -1.9, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.784, - 43.9665 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 256, - "mapId": "MA_003", - "name": "CIVITANOVA MARCHE", - "contacts": [ - "0733 810395 Capitaneria", - "0733 813687 Club della Vela", - "Vhf 9" - ], - "description": "The stadium with pylons for lighting in the part of the city and the bell tower to Minareto which is also the lighthouse of Civitanova, are the conspicuous points visible from the sea.The port, fishing boat and excellent shipbuilding traditions, houses the piers managed by private splay clubs in the center and in the part of NW.The sail club gives hospitality and assistance to transit boats.", - "slips": 600, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.73466667, - 43.31666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 257, - "mapId": "MA_002", - "name": "PORTO SAN GIORGIO", - "contacts": [ - "0734 676304 Capitaneria", - "0734 675263 Marina", - "0734 678705 Lega Navale Italiana", - "www.portosangiorgio.it", - "Vhf 16 - 14" - ], - "description": "Tourist port-Fishing boat protected by two piers has the well-identifiable sapphot of the town.The placement of green and red lights creates false prospects at night.", - "slips": 776, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.812, - 43.17083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 258, - "mapId": "MA_001", - "name": "SAN BENEDETTO DEL TRONTO", - "contacts": [ - "0735 586711 Capitaneria", - "0735 584255 Circolo Nautico Sambenedettese", - "Vhf 13", - "www.circolo nautico.info" - ], - "description": "The port is largely reserved for fishing boats but inside, on the left, there is the Sambenedettese nautical circle in a dock reserved for pleasure.Seed danger around 60 m of the northern pier", - "slips": 580, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -2.8, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.89333333, - 42.961 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 259, - "mapId": "AB_006", - "name": "GIULIANOVA", - "contacts": [ - "085 8000731 Capitaneria", - "085 8005888 Ente Porto", - "Vhf 9 - 16" - ], - "description": "Porto Fishing Board, pleasure boats can stop in free places from fishing boats or to the nautical circle \"V.Best (Tel. 085/8004972) which offers free hospitality." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.9785, - 42.7565 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 260, - "mapId": "AB_008", - "name": "PORTOROSE - ROSETO DEGLI ABRUZZI", - "contacts": [ - "085 8942437 Capitaneria", - "085 8990258 Circ. Naut. Vallonchini" - ], - "description": "Marina with two docks on the banks of the vomane river managed by the \"Vallonchini\" nautical circle of Roseto degli Abruzzi.With rough sea from N to and the entrance has difficulty.Almost unobtainable by the sea the night landing is not recommended.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -0.8, - "maxDepth": -2.3 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.03766667, - 42.65783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 261, - "mapId": "AB_009", - "name": "MARINA DI PESCARA", - "contacts": [ - "085 694040 Capitaneria", - "085 454681 Marina di Pescara", - "www.marinape.com", - "Vhf 6" - ], - "description": "The city of Pescara is divided by the river of the same name.Coming from n we notice the Isolated city of St. Angelo with a high white bell tower;While for those who come from s, television antennas are visible on the hill;At the root of the pier s, three cylindrical aluminum silos are conspicuous (on the roof of a silos there is a red light).A forneal dam protects the hatch of the Pescara Canal Harbor and is located at about half a mile from the mouthpiece itself and is signaled by red and green lights that are reversed compared to the entry lights to the port itself.The port is included in two basins, the canal and the marina of Pescara.\n\nFor transit contact on channel 6 The Marina management: it is moored in the dock adjacent to the entrance.Located at the extreme of the pier s of the canal port.", - "slips": 900, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.23616667, - 42.46416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 262, - "mapId": "AB_005", - "name": "PESCARA - PORTO CANALE", - "contacts": [ - "085 694040 Capitaneria", - "085 959622 L’Ancora - Porto Canale", - "Vhf 16 - 12 (Piloti PE)" - ], - "description": "The city of Pescara is divided by the river of the same name.Coming from n we notice the Isolated city of St. Angelo with a high white bell tower;While for those who come from s, television antennas are visible on the hill;At the root of the pier s, three cylindrical aluminum silos are conspicuous (on the roof of a silos there is a red light).A forneal dam protects the hatch of the Pescara Canal Harbor and is located at about half a mile from the mouthpiece itself and is signaled by red and green lights that are reversed compared to the entry lights to the port itself.The port is included in two basins, the canal and the marina of Pescara.\n\nOutside the South Guardian pier there are work in progress for the construction of a quay for passenger transit.Pay attention to clereas rocks, contact the maritime authority", - "slips": 560, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.23016667, - 42.47 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 263, - "mapId": "PU_044", - "name": "PESCHICI", - "contacts": [ - "0884 962767 Capitaneria", - "Vhf 16 - 14" - ], - "description": "The village with low and white houses stands on a promontory.It has a marina predominantly fishing vessel we rose in the summer.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.008, - 41.95016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 264, - "mapId": "PU_043", - "name": "VIESTE", - "contacts": [ - "0884 707669 Capitaneria", - "0884 707899 Ormeggi Cariglia", - "Vhf 12 -14", - "www.ivieste.com/porto.htm" - ], - "description": "Vieste counts on two coves and, on the farthest part from the coast, there is the Isola S. Eufemia.The city has an amphitheater settlement with high houses and leaning each other on a slope.", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -1.6, - "maxDepth": -3.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.17983333, - 41.8915 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 265, - "mapId": "PU_042", - "name": "MATTINATA", - "contacts": [ - "0884 583871 Capitaneria", - "www.manfredonia.guardiacostiera.it", - "Vhf 16" - ], - "description": "The morning marina consists of a punched elbow pier with floating piers that are installed in summer.", - "slips": 220, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.07533333, - 41.70916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 266, - "mapId": "PU_041A", - "name": "MANFREDONIA - PORTO VECCHIO", - "contacts": [ - "Vhf 16 - 14", - "Esperto locale - Piloti del porto Vhf 12", - "www.centrovelicogargano.it" - ], - "slips": 360, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.92316667, - 41.61883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 267, - "mapId": "PU_041B", - "name": "MANFREDONIA - PORTO INDUSTRIALE", - "contacts": [ - "0884 583871 Capitaneria", - "0884 585558 Lega Navale Italiana", - "Vhf 16 - 14" - ], - "description": "From any point you come emerges\nMassif the Gargano promontory, excellent guide to landing.A and port stands the gray castle in the middle of the green that surrounds it.The port has two basins, old port and industrial port.In the first there are areas reserved for pleasure managed by different private and associations including the Italian Naval League.The pontoons are in part n of the port and for the transit you can moor near the fuel distributor or gavitelli and dead bodies.The industrial port, at 1.2 miles a and ne from the old, is reserved for industrial traffic.", - "slips": 8, - "seaFloor": { - "minDepth": -10.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.94716667, - 41.62416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 268, - "mapId": "PU_039", - "name": "MARGHERITA DI SAVOIA", - "contacts": [ - "0883 655176 Capitaneria", - "0883 652757 Lega Navale Italiana", - "0883 656018 Centro Nautico", - "Vhf 16" - ], - "description": "After Barletta, skirting the Gulf of Manfredonia meet the mouth of the Ofanto.More in N there is a daisy of Savoy of which the skyscraper is distinguished by windows.The mouth is protected by 2 quack dams.You can find a place in transit in the Italian Naval League dock.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.13416667, - 41.39166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 269, - "mapId": "PU_038", - "name": "BARLETTA", - "contacts": [ - "0883 655176 Capitaneria", - "0883 533354 Lega Navale Italiana", - "www.guardiacostiera.it/barletta", - "Vhf 16 - 11" - ], - "description": "The silos on the central port of the harbor, the white bell tower of the church and the large castle in the town of the town are the conspicuous points of Barletta.Scarce services reserved for pleasure: the Italian naval alloy pier or in the commercial docks (giving bottom to anchor).Communicate the arrival to the Captainer.It is possible to anchor in the large mirror of water on a sandy bottom of 4 m, good carerer, or with dead body under the castle.", - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.2925, - 41.335 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 270, - "mapId": "PU_037", - "name": "TRANI", - "contacts": [ - "0883 655176 Capitaneria", - "0883 484832 Lega Navale Italiana", - "0883 509263 Darsena Comunale", - "Vhf 16" - ], - "description": "The conspicuous complex of the Duomo, with the bell tower, is the best point of identification for landing.Who comes from NW can notice a large gray building, with two towers on the sides.The port is a natural creek with punched banks, with floating piers managed by LNI and the municipality and offering a discount to transit boats.", - "slips": 500, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.4235, - 41.2835 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 271, - "mapId": "PU_036", - "name": "BISCEGLIE", - "contacts": [ - "080 3921612 Capitaneria", - "080 3954845 Bisceglie Approdi", - "www.bisceglieapprodi.it", - "Vhf 16" - ], - "description": "The port is a natural cove, defense to N from an overflow dam;Scarce the seabed at the docks and a dock managed by the Italian Naval League to the root of the Ponente dam.", - "slips": 500, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.50933333, - 41.24533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 272, - "mapId": "PU_035", - "name": "MOLFETTA", - "contacts": [ - "080 3921612 Capitaneria", - "Vhf 14" - ], - "description": "Vast expanse of houses, churches and a high mole wall.Thus Molfetta appears from the wide, with two twin twin towers that stand out.Private circles and the naval alloy manage the recreational mooring.You can moor in transit on gavitelli in a radiator or in front of the port capacity.", - "slips": 220, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.59416667, - 41.21416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 273, - "mapId": "PU_034", - "name": "GIOVINAZZO", - "contacts": [ - "080 3942648 Capitaneria", - "080 3943309 Circolo della Vela" - ], - "description": "The houses of Giovinazzo from the wide appear high above a wall that surrounds the town on the side of the sea.At the center of the town there is a large dome with a spire.The marina is fishing vessel but can be moored in the transit in four floating piers managed by the local nautical circles.The sailing circle and the Giovinazzo sailing center offer mooring is free for 3 days to boats in transit, as well as ground services (VHF 2).", - "slips": 60, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.3 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.67083333, - 41.192 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 274, - "mapId": "PU_033", - "name": "SANTO SPIRITO", - "contacts": [ - "080 5336997 Capitaneria", - "080 5337952 C. Nautico Costa del Sole", - "080 5336834 C. Nautico Il Maestrale", - "Vhf 16 - 6" - ], - "description": "Modern buildings and villas rise around the village.A gray quadrangular tower is visible on the eastern eastern side of the creek.In the marina there are pontiens managed by private circles, the rest of the space is mainly used for fishing.", - "slips": 230, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.752, - 41.16716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 275, - "mapId": "PU_051", - "name": "TORRE CANNE", - "contacts": [ - "0831 521022 Capitaneria", - "Vhf 16" - ], - "description": "The marina is frequented by fishing boats and has a quench pier suitable for small boats.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.47033333, - 40.83816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 276, - "mapId": "PU_023", - "name": "VILLANOVA DI OSTUNI", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.59016667, - 40.7925 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 277, - "mapId": "PU_064", - "name": "BRINDISI", - "contacts": [ - "0831 521022 Capitaneria", - "0831 411479 Circolo della Vela", - "Vhf 74" - ], - "description": "Three basins characterize the port: external port, medium port, internal port.From n you leave the Aragonese castle on the left, from and to whether to leave the white boa of Capo S. Cataldo to the left to avoid dry.You can moor at the inner harbor, at the central quay next to the sailor monument.In the external port there is the new marina, a mouth of Puglia." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.00333333, - 40.6595 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 278, - "mapId": "PU_019", - "name": "S. FOCA DI MELENDUGNO", - "contacts": [ - "0832 881103 Capitaneria", - "0832 881218 Lega Navale Italiana", - "Vhf 10" - ], - "description": "Marina with two basins, the first of which is over 4-5 meters.HERE in the summer the piers are installed by various associations: the St. Margherita Nautical Center, the Meledugno Nautical Center and the S. Foca Nautical Center and the Naval League.For parking to transit transit contact the captain at channel 16 of the VHF radio.", - "slips": 500, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.407, - 40.3035 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 279, - "mapId": "PU_018", - "name": "OTRANTO", - "contacts": [ - "0836 801073 Capitaneria", - "0836 801509 Lega Navale Italiana", - "Vhf 16" - ], - "description": "Built in an elevated position, Otranto is noted for a high-shaped minaret construction.Entry switch between buoys following an alignment for 125 *.For the pleasure, there are various piers in concession to the local nautical circle: Circumare Otranto, Assonautica, Naval League, a.n.C.O.", - "slips": 390, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -5.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.49416667, - 40.1515 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 280, - "mapId": "PU_013", - "name": "GALLIPOLI - CALA FONTANELLE", - "contacts": [ - "0833 266862 Capitaneria", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "Vhf 11" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.\n\nThe landing is immediately to S of Darsena Fontanelle and is reserved for fishing vessels and a yard.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.98966667, - 40.059 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 281, - "mapId": "PU_010", - "name": "GALLIPOLI - PORTO MERCANTILE", - "contacts": [ - "0833 266862 Capitaneria", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "Vhf 11" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.", - "slips": 100, - "seaFloor": { - "minDepth": -6.0, - "maxDepth": -7.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.9825, - 40.05966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 282, - "mapId": "PU_011", - "name": "GALLIPOLI - SAN GIORGIO", - "contacts": [ - "0833 266862 Capitaneria", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "Vhf 11" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.\n\nIt is the approad more to s and consists of a basin with several docks frequented by fishing boats.Near the castle there are floating piers in concession to the naval league.", - "slips": 30, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.97383333, - 40.05733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 283, - "mapId": "PU_011", - "name": "GALLIPOLI - SENO DEL CANNETO", - "contacts": [ - "0833 266862 Capitaneria", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "Vhf 11" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.\n\nIt is the approad more to s and consists of a basin with several docks frequented by fishing boats.Near the castle there are floating piers in concession to the naval league.", - "slips": 64, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.98066667, - 40.053 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 284, - "mapId": "PU_007", - "name": "PORTO CESAREO", - "contacts": [ - "0833 560485 Capitaneria", - "0833 569240 Isabella Colelli", - "Vhf 16" - ], - "description": "The great masseria salmente, of a grayish, very extensive, with a pilastrino towards the left corner and the Torre Caesarea, a quadrangular building located south of the town, are the conspicuous points visible from the wide.The natural marina with a moletto and summer of floating piers inside, offers shelter behind the witch peninsula.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.88483333, - 40.2495 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 285, - "mapId": "PU_005", - "name": "CAMPOMARINO", - "contacts": [ - "099 9716535 Capitaneria", - "099 9716025 Torre Moline", - "www.torremoline.com" - ], - "description": "It is a fishing port made up of a three-arm pier oriented respectively for S, WSW and W. for some time concerned by phenomena of grave inapping: to pay the utmost attention", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.5625, - 40.297 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 286, - "mapId": "PU_060A", - "name": "TARANTO - PORTO INDUSTRIALE ESTERNO", - "contacts": [ - "099 4707514 Capitaneria", - "099 7332888 Cantiere Greco", - "Vhf 16 - 12" - ], - "description": "The old city is on an island combined with the mainland with bridges;Taranto Nuova is at the Levante of the Navigable Canal.The main conspicuous points are, in the coast between Ginosa Marina and Taranto, three cylindrical pylons painted with black and white bands.Coming from if, once the headlight of Capo S. Vito has been spotted, follow a route that does not approach them to less than 1 mgl and when it is detected for 90 * governing the St. Paul's islet.To enter the Grand Sea, combine a starboard between the head of the St. Vito dam and that of St. Paul.Coming from W or NW lean to 1.5 mgl a of the isolot of St. Paul and leave it to starboard the Cardinal WSt. Paul reimburse between the heads of the dam of the latter and that of the St. Vito dam.\n\nExterior to the port of Taranto protected by a breakwater and a dam of subflutes.", - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -13.0, - "maxDepth": -15.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.1585, - 40.48666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 287, - "mapId": "PU_060B", - "name": "TARANTO - LEGA NAVALE", - "contacts": [ - "099 4707514 Capitaneria", - "099 7332888 Cantiere Greco", - "099 4593801 Lega Navale Italiana", - "Vhf 6 - 16 - 12" - ], - "description": "The old city is on an island combined with the mainland with bridges;Taranto Nuova is at the Levante of the Navigable Canal.The main conspicuous points are, in the coast between Ginosa Marina and Taranto, three cylindrical pylons painted with black and white bands.Coming from if, once the headlight of Capo S. Vito has been spotted, follow a route that does not approach them to less than 1 mgl and when it is detected for 90 * governing the St. Paul's islet.To enter the Grand Sea, combine a starboard between the head of the St. Vito dam and that of St. Paul.Coming from W or NW lean to 1.5 mgl a of the isolot of St. Paul and leave it to starboard the Cardinal WSt. Paul reimburse between the heads of the dam of the latter and that of the St. Vito dam.\nBasin managed by LNI with 2 cliff moles with a quay inside\nReserved for members.", - "slips": 130, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -1.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.236, - 40.47016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 288, - "mapId": "CL_037", - "name": "MARINA LAGHI DI SIBARI", - "contacts": [ - "0981 500212 Capitaneria", - "0981 79027 Casa Bianca Group", - "www.marina-sibari.it", - "Vhf 16 - 09" - ], - "description": "A thick vegetation indicates the stubborn canal whose mouth is protected by two molts and is access to the port.The internal basins are opened with \"doors\".", - "slips": 460, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "type": [ - "mudalgae" - ], - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.511, - 39.73816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 289, - "mapId": "CL_044", - "name": "CORIGLIANO CALABRO", - "contacts": [ - "0983 858211 Capitaneria", - "0983 857241 Lega Navale Italiana", - "Vhf 16 - 14" - ], - "description": "Characteristic entry to the port with reinforced concrete ramparts;Inside a calm basin opens and then access two docks.Mainly intended for ships and fishing vessels.", - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -7.0, - "maxDepth": -12.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.53133333, - 39.6725 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 290, - "mapId": "CL_051", - "name": "CARIATI", - "contacts": [ - "0983 91706 Capitaneria" - ], - "description": "The marina has an elbow pier of overflower oriented towards Levante.The pier was extended by a cliff of 120 m and on this were placed perpendicularly 2 cliffs anti-systems." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.94483333, - 39.50433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 291, - "mapId": "CL_033", - "name": "CIR\u00f2 MARINA", - "contacts": [ - "0962 36328 Capitaneria" - ], - "description": "Inhabited center on houses built along the beach.The bell tower with the green striped cusp is the conspicuous point.Two interior docks of the marina are destined for fishing;In the dock 2 two floating piers were placed for pleasure.", - "slips": 340, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.13733333, - 39.37383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 292, - "mapId": "SI_018", - "name": "TERRASINI", - "contacts": [ - "091 8682501 Capitaneria" - ], - "description": "Marina subject to covered by fishing boats.The management is entrusted to various companies: CESEVET 338 3498286;Rose of twenty 339 6239421;Gulf yards 335/6880666.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.07866667, - 38.1605 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 293, - "mapId": "SI_017", - "name": "ISOLA DELLE FEMMINE", - "contacts": [ - "091 8677775 Capitaneria", - "091 8678031 Boe Scavarelli" - ], - "description": "The marina is protected by an elbow pier and inside it has a floating dock for privately managed pleasure.", - "slips": 130, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.25016667, - 38.20066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 294, - "mapId": "SI_016", - "name": "SFERRACAVALLO", - "contacts": [ - "091 8677775 Capitaneria" - ], - "description": "Marina located at SW of St. Gallo consisting of a quack pier and a bank of shore.", - "slips": 40, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand", - "algae" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.2725, - 38.20016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 295, - "mapId": "SI_079", - "name": "FOSSA DEL GALLO", - "contacts": [ - "091 455313 Capitaneria", - "091 451238 Motomar" - ], - "description": "Marina reserved for pleasure.Inside a three-arm pier there are three floating piers of which one seasonal.", - "slips": 150, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.32333333, - 38.2145 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 296, - "mapId": "SI_015", - "name": "MONDELLO", - "contacts": [ - "091 455313 Capitaneria", - "091 455269 Autonautica Sicula", - "091 683039 Pontili Nautica Mondello" - ], - "description": "The Bay of Mondello opens between the tip of Mondello and Punta C\u00e8lesi.The port consists of a pier of overflow and a bank of shore.Pontlines managed by Nautica Mondello are mounted in the summer period", - "slips": 230, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.8, - "maxDepth": -2.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.32766667, - 38.206 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 297, - "mapId": "SI_013", - "name": "ADDAURA", - "contacts": [ - "091 455313 Capitaneria", - "091 450111 Motonautica Addaura" - ], - "description": "Last port, coming from W before Palermo.Protected by a quack pier can be a transit stop.", - "seaFloor": { - "type": [ - "mud", - "rock", - "sand", - "algae" - ], - "minDepth": -3.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.353, - 38.19216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 298, - "mapId": "SI_007", - "name": "TERMINI IMERESE", - "contacts": [ - "091 8141007 Capitaneria", - "091 8111180 Lega Navale Italiana", - "091 8190370 Pontili Mari del Sud", - "091 8111890 Pontili Artemar", - "Vhf 12" - ], - "description": "The marina consists of a forane dam, a subfluy pier and a pier to trapeze that divides the port into two basins.A floating dock is managed by the naval League, two piers are managed by Artemar and another from southern seas. Externally to the port, a s of the subfluy pier, there are other six floating piers.", - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.72383333, - 37.98416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 299, - "mapId": "SI_005", - "name": "CEFAL\u00f9 - PRESIDIANA", - "contacts": [ - "0921 421580 Capitaneria", - "0921 424675 Vela Club", - "347 6772377 Pontili L’ormeggio", - "368 7032595 Pontili Eolo", - "Vhf 9" - ], - "description": "The Department of Presidia, located a e\nof the country, has a concrete jetty a\n\"T\" for fishing boats and pleasure.", - "slips": 250, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.03916667, - 38.03916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 300, - "mapId": "SI_096", - "name": "SANT\u2019AGATA DI MILITELLO", - "contacts": [ - "0941 722821 Capitaneria", - "0941 702862 Ass. Amici del Mare" - ], - "description": "The village of Sant'Agata di Militello extends along the beach with numerous large buildings and a conspicuous church, whose reddish bell tower dominates the surrounding houses.To the south of the village there is the marina, currently constituted by a nal-oriented jetty about 600 m long, where the local circle prepares for the summer of the dead bodies for transit boats.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.62333333, - 38.07466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 301, - "mapId": "SI_004", - "name": "CAPO D\u2019ORLANDO", - "contacts": [ - "0941 912862 Capitaneria" - ], - "description": "Important prominence in the high coast one hundred meters that appears to be conical from the wide.On the summit there is a sanctuary with a church leaning against a white building;A wall clearly visible from the N side surrounds the sanctuary and from afar looks similar to a castle.The marina has poor backdrops and in summer are arranged for the recreational piers.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.77566667, - 38.157 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 302, - "mapId": "SI_003", - "name": "MARINA DI PATTI", - "contacts": [ - "0941 362192 Capitaneria", - "0941 39606 Ass. Blue S. Giorgio" - ], - "description": "The landing is made up of an old pier with a prolongation project in front of the town of Marina di Patti.For short stops you can contact one of the local associations.", - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.96783333, - 38.15483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 303, - "mapId": "SI_078", - "name": "PORTOROSA MARINA", - "contacts": [ - "090 9281110 Capitaneria Milazzo", - "0941 874560 Marina di Portorosa", - "Vhf 9", - "www.marinadiportorosa.com" - ], - "description": "Private marina in the municipality of F\u00f9rnari within a residential complex.The landing is composed of a well-protected availability but nevertheless before entering you, contact the direction of the Navy especially if the boat has an upper draw of 3 m.", - "slips": 680, - "vesselMaxSize": { - "maxLoA": 35.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -0.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.1125, - 38.12783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 304, - "mapId": "SI_001", - "name": "MILAZZO", - "contacts": [ - "090 9281110 Capitaneria", - "Vhf 12 - 16" - ], - "description": "In summer the boats can moor for short stops in the Rizzo quay;Intense ferry traffic." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.251, - 38.21483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 305, - "mapId": "SI_063", - "name": "SALINA - SCALO GALERA", - "contacts": [ - "090 98424451 Capitaneria" - ], - "description": "In Santa Maria there is the most important landing for ferries and line hydrofoils.Other airports: tongue tip at the end if, Rinella in the Costa S, and Galera stop in the N. side" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.83916667, - 38.581 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 306, - "mapId": "SI_065", - "name": "FILICUDI - PORTO", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "The largest pier in the isole is in N of Cape Graziano in the harbor creek, at the bottom of a pebble beach.In the resort of Pecorini between peak stimned and chief Graziano there is a smoker and opposite a small pier.\nA 55 m long cement pier with bettors and fenders is available.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.582, - 38.5625 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 307, - "mapId": "SI_101", - "name": "FILICUDI - PECORINI A MARE", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 16" - ], - "description": "The largest pier in the isole is in N of Cape Graziano in the harbor creek, at the bottom of a pebble beach.In the resort of Pecorini between peak stimned and chief Graziano there is a smoker and opposite a small pier.\nThere is a 43 m long cement pier for hydrofoils where the pleasure boats can briefly moor.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.56566667, - 38.55816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 308, - "mapId": "SI_083", - "name": "ALICUDI - SCALO PALOMBA", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "Alicudi is the largest island of the Aeolian.Shaped cone like Filicudi and Stromboli, he has a summit of 666 m called Montagnola.The seabed are elevated and offers no close.The Single Scalo is the airport palomba between peak rifle and the Scoglio Palomba, where he docked hydrofoils.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.36133333, - 38.53216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 309, - "mapId": "SI_058", - "name": "LIPARI - SOTTOMONASTERO", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 11" - ], - "description": "The Rada di Lipari, where there is the village, is on the side and between the Punta S. Giuseppe and the Monterosa promontory, on which a cross arises.A S of the castle opens the short marine cove delimited from one side by a islet on which a church rises and a fing dam.The beach towards N is instead long marine for which a regular row of houses winds.Pignataro is Lipari's port-refuge.\nA part of the quay is reserved for pleasure.Others landings, both on the side and island, are a cannetto, to N of the Monterosa promontory, and Porticello, a s\nDi Punta Chestagna.To the north of Agip refueling, between Monastery and Pignataro there is the Floating Porto Salvo dock (368/7190843).\nMarina north of Marina Corta consisting of small docks for 50 boats.", - "slips": 50, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.95733333, - 38.47116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 310, - "mapId": "SI_057", - "name": "LIPARI - MARINA CORTA", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 11" - ], - "description": "The Rada di Lipari, where there is the village, is on the side and between the Punta S. Giuseppe and the Monterosa promontory, on which a cross arises.A S of the castle opens the short marine cove delimited from one side by a islet on which a church rises and a fing dam.The beach towards N is instead long marine for which a regular row of houses winds.Pignataro is Lipari's port-refuge.\nA part of the quay is reserved for pleasure.Others landings, both on the side and island, are a cannetto, to N of the Monterosa promontory, and Porticello, a s\nDi Punta Chestagna.To the north of Agip refueling, between Monastery and Pignataro there is the Floating Porto Salvo dock (368/7190843).\nThe moles are used for both fishing and pleasure;Mooring with your own.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.9585, - 38.465 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 311, - "mapId": "PU_029", - "name": "TORRE A MARE", - "contacts": [ - "080 5432645 Capitaneria" - ], - "description": "Torre a Mare is a fraction of Bari built around the homonymous tower, almost hidden by buildings, at the levante of the town rising on the shore of the sea, a characteristic white trullo.The marina offers refuge with small boats with little draft the five piers run by private circles.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.99666667, - 41.09033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 312, - "mapId": "PU_028", - "name": "CALA PORTECCHIA", - "contacts": [ - "080 4741573 Capitaneria", - "080 4746465 Lega Navale Italiana" - ], - "description": "Small marina that rises externally, about 500 m to NW from the port of Mola di Bari. Reserved for small boats.A slide allows the water to be placed from boats.", - "slips": 30, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.08833333, - 41.066 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 313, - "mapId": "PU_027", - "name": "MOLA DI BARI", - "contacts": [ - "080 4741573 Capitaneria", - "080 4746465 Lega Navale Italiana", - "080 4736419 Circolo Nautico Daphne", - "Vhf 16 - 6" - ], - "description": "Coming from n The town is presented in a group of various shapes and sizes near the marina.The port is protected to N but open to the scirocco with a tendency to cover themselves.Frequented by fishing boats, boats in transit can moor at the Circolo Daphne, L.N.I.Or the foraneo pier.", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.09933333, - 41.06283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 314, - "mapId": "PU_026", - "name": "POLIGNANO A MARE - CALA PONTE", - "contacts": [ - "080 9303105 Capitaneria" - ], - "description": "The village is developed with a relaxing of white houses on a high, flat ground above and crammed and cut over the sea.You note the polygonal dome of a convent with bell tower both gray.The marina of Cala Ponte is located about 1 mgl to N of Polignano;It is very exposed to the scirocco but can offer a mooring for the transit with good weather.In summer the port is superfounded.Rocky and therefore bad waters, numerous dried, numerous dry with low tide.", - "slips": 10, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.20416667, - 41.005 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 315, - "mapId": "PU_025", - "name": "MONOPOLI", - "contacts": [ - "080 9303105 Capitaneria", - "080 9301339 Cantieri Levante", - "Vhf 16 - 22", - "Vhf 09 Lega Navale" - ], - "description": "The new part of Monopoli is higher, without high buildings;Coming from if with light weather it looks like a thin white stripe on the sea with the bell tower of the sharp and dark Duomo.Fishing boat docks can be occupied, in their absence, for transit.Pontiens for the pleasure for the basin in management of the Italian Naval League and the Penta Naval Shipyard of Cala delle Fontanelle.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.307, - 40.95583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 316, - "mapId": "PU_024", - "name": "SAVELLETRI", - "contacts": [ - "080 4829190 Capitaneria", - "Vhf 16" - ], - "description": "Savelletri is 7 miles to monopolies.\nThere is a pier of LNI.Vessel port subject to burglary.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 9.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.41283333, - 40.87366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 317, - "mapId": "PU_016", - "name": "CASTRO MARINA", - "contacts": [ - "0836 943064 Capitaneria", - "368 7878113 Locamare Castro", - "Vhf 16" - ], - "description": "Castro Marina is recognizable for the series of color houses prevailing white, and from a high wall of stone, curved, crossed by a passage to arc.You can moor in transit on the dock of the mole called Muraglione.", - "slips": 160, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.428, - 39.99983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 318, - "mapId": "PU_015", - "name": "MARINA DI PORTO - TRICASE", - "contacts": [ - "0833 775029 Capitaneria", - "0832 772456 Comune", - "0833 775434 Lega Navale Italiana", - "Vhf 16" - ], - "description": "Inhabited center in N of the Cape S. Maria di Leuca with colorful houses and villas, crossed by a low wall to support a road on the W side of the marina.Two dock characterize the basin: the old port, reserved for boats in transit and for fishing boats, and the new port, intended for pleasure, whose pontiles are managed by the Municipality and the Naval League.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.39733333, - 39.93183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 319, - "mapId": "PU_048", - "name": "TREMITI - SAN NICOLA", - "contacts": [ - "0882 466232 Capitaneria", - "0882 463220 Gruppo Ormeggiatori", - "Sig. Cafiero c/o Ag. Adriatica", - "Vhf 16" - ], - "description": "The Tremiti Archipelago is not very visible, except for about 20 miles, due to the low elevation of the three islands: S. Domino, St. Nicholas and Capraia;And a islet, the cret.S. Domino is the largest island, 116 m high, is fertile and the most cultivated of the archipelago.The St. Nicholas island is flat up and with rocky coasts.Capraia is uninhabited.The tremors offer good close to winds between W and and ne.The landings are small, frequented by fishing boats and ferries.In S. Nicola in summer it is possible to find mooring only in the evening after the ferry departure.S. Domino Cala degli Schiavoni is very popular in the summer months but it is a good stopover with a favorable weather time.", - "slips": 8, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand", - "good" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.50116667, - 42.11916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 320, - "mapId": "PU_049", - "name": "TREMITI - SAN DOMINO (CALA SCHIAVONI)", - "contacts": [ - "0882 466232 Capitaneria", - "0882 463220 Gruppo Ormeggiatori" - ], - "description": "The Tremiti Archipelago is not very visible, except for about 20 miles, due to the low elevation of the three islands: S. Domino, St. Nicholas and Capraia;And a islet, the cret.S. Domino is the largest island, 116 m high, is fertile and the most cultivated of the archipelago.The St. Nicholas island is flat up and with rocky coasts.Capraia is uninhabited.The tremors offer good close to winds between W and and ne.The landings are small, frequented by fishing boats and ferries.In S. Nicola in summer it is possible to find mooring only in the evening after the ferry departure.S. Domino Cala degli Schiavoni is very popular in the summer months but it is a good stopover with a favorable weather time.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.49716667, - 42.12083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 321, - "mapId": "PU_014", - "name": "SANTA MARIA DI LEUCA", - "contacts": [ - "0833 758580 Capitaneria", - "0833 751398 Lega Navale Italiana", - "0833 758687 Marina", - "0833 758288 Colaci Mare", - "www.portodileuca.it", - "Vhf 12" - ], - "description": "The Cape S. Maria di Leuca is 140 m high above sea level.Excellent point of reference, because visible from the wide, it is the lighthouse, a tower with semi-sharp windows, painted with white and black chess.Leuca is a fraction of the Municipality of Castrignano del Capo.The port has floating piers managed by the Naval League, from Colaci Mare and the Yacht Club Leuca.", - "slips": 750, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.3555, - 39.79316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 322, - "mapId": "PU_009", - "name": "GALLIPOLI - PORTO GAIO", - "contacts": [ - "0833 266862 Capitaneria", - "0833 202204 Porto Gaio", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "Vhf 11", - "www.portogaio.it" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.\n\nLocated in the mercantile port, it is a small private landing with a floating dock within the left.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.99983333, - 40.06716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 323, - "mapId": "PU_050", - "name": "GALLIPOLI - DARSENA FONTANELLE", - "contacts": [ - "0833 266862 Capitaneria", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "0833 263535 Darsena Fontanelle", - "www.darsenafontanelle.it", - "Vhf 11" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.\nPrivate landing (with slide) and pier.", - "slips": 150, - "seaFloor": { - "minDepth": -2.2, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.99083333, - 40.06016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 324, - "mapId": "CL_031", - "name": "CROTONE - PORTO VECCHIO", - "contacts": [ - "0962 611611 Capitaneria", - "320 6115069 Yachting Kroton Club", - "0962 27240 Lega Navale Italiana", - "Vhf 16 - 14" - ], - "description": "Coming from s we notice above all: the lighthouse, the lookout station of Capo Colonne, a modern, gray, semicircular building and a brick factory with smoke. At the city center there is a strong conspicuous with Carlo V castle surmounted by the yellow building, former traffic lights. There are two unrelated ports, one in s (old port) and one to n (new port), commercial. In the first there are pontiens managed by the Italian Naval League, from the Yachting Kroton Club, and from a private individual. The port was recently renovated with a new construction for services; From here lead to the country and the rich interesting market for the board galley; The second is above all commercial but in case of necessity it is also a great refuge for pleasure. The coast of Capo Rizzuto is under the rules of the natural protected marine area: view the provisions governing navigation, fishing and anchoring.\n\nInbound and exiting keeping in half of tips (towards the green light) as the left half is inappropriate. Before entering contacting the capacity.", - "slips": 320, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.13566667, - 39.07666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 325, - "mapId": "CL_031", - "name": "CROTONE - PORTO NUOVO", - "contacts": [ - "0962 611611 Capitaneria", - "320 6115069 Yachting Kroton Club", - "0962 27240 Lega Navale Italiana", - "Vhf 16 - 14" - ], - "description": "Coming from s we notice above all: the lighthouse, the lookout station of Capo Colonne, a modern, gray, semicircular building and a brick factory with smoke.At the city center there is a strong conspicuous with Carlo V castle surmounted by the yellow building, former traffic lights.There are two unrelated ports, one in s (old port) and one to n (new port), commercial.In the first there are pontiens managed by the Italian Naval League, from the Yachting Kroton Club, and from a private individual.The port was recently renovated with a new construction for services;From here lead to the country and the rich interesting market for the board galley;The second is above all commercial but in case of necessity it is also a great refuge for pleasure.The coast of Capo Rizzuto is under the rules of the natural protected marine area: view the provisions governing navigation, fishing and anchoring.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -8.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.12733333, - 39.0935 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 326, - "mapId": "CL_050", - "name": "ROCCELLA IONICA", - "contacts": [ - "0964 863213 Capitaneria" - ], - "description": "The port is in the country and is protected by two internal piers and has three docks.Pay attention to the low backdrops near the green light.", - "slips": 447, - "vesselMaxSize": { - "maxLoA": 40.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.42833333, - 38.32416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 327, - "mapId": "CL_018", - "name": "SALINE IONICHE", - "contacts": [ - "0965 787657 Capitaneria" - ], - "description": "The harboring of the port is perpetually inapped and does not allow entry to boats, albeit with reduced draft.It would be a great refuge and a few years ago a landing arrive in the subfluy pier", - "slips": 60, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.7305, - 37.92516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 328, - "mapId": "SI_020", - "name": "SAN VITO LO CAPO", - "contacts": [ - "0923 974371 Capitaneria", - "0923 972189 Circolo Costa Gaia", - "0923 972999 Circolo La Traina", - "0923 974126 Dip. Nautico Sanvitese" - ], - "description": "The village of San Vito lo Capo is located at the beach at the bottom of a radiation, almost semicircular that opens up to and of the homonymous leader.Remarkable in front of the town a sanctuary with quadrangular bell tower from the aspect of fortress.The marina is in the country's NW and has the soccer facing levante.", - "slips": 400, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.737, - 38.18 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 329, - "mapId": "SI_019", - "name": "CASTELLAMMARE DEL GOLFO", - "contacts": [ - "0924 31261 Capitaneria", - "0924 30133 Lega Navale Italiana", - "0924 30041 Club Eolo", - "0924 33333 Ormeggiatori", - "Vhf 12 - 14" - ], - "description": "An ancient Norman castle gives the name to the town of Castellammare del Golfo and stands within the homonymous Gulf and to the pitches of the mounted mountain behind.The marina can accommodate about 500 boats that can find mooring at the root of the foraneum pier or in the pontoons floated in concession to the naval league or to other clubs.", - "slips": 500, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.7, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.88316667, - 38.03333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 330, - "mapId": "SI_012", - "name": "ARENELLA", - "contacts": [ - "091 6043111 Capitaneria", - "091 363394 Lega Navale Italiana", - "Vhf 11" - ], - "description": "A s by Punta Arenella is the marina, consisting of two basins, the new and old pelvis where there are the piers of Cala dei Normans.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.37433333, - 38.1485 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 331, - "mapId": "SI_010", - "name": "PALERMO - PORTO COMMERCIALE", - "contacts": [ - "091 6043111 Capitaneria", - "091 61152777 Y.C. Mediterraneo", - "091 331055 Il Salpancore", - "Vhf 11 - 74" - ], - "description": "The view from the top of the city of Palermo is pleasant for the numerous domes and artistic buildings.A significant skyscraper on whose end is a trellis that at night shows red light lights.The port has two areas: the commercial port and the industrial port.The outermost industrial port offers no landing landing.The commercial port, on the other hand, surrounded by the old city, encloses several docks.For the pleasure of reception, about 200 m of the bersagliere, the dock of the Cala, more a s, with its round shape, and some pontoons floating in concession to circles and private.", - "slips": 300, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.376, - 38.12216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 332, - "mapId": "SI_010", - "name": "PALERMO - PORTO INDUSTRIALE", - "contacts": [ - "091 6043111 Capitaneria", - "Vhf 11 - 74" - ], - "description": "The view from the top of the city of Palermo is pleasant for the numerous domes and artistic buildings.A significant skyscraper on whose end is a trellis that at night shows red light lights.The port has two areas: the commercial port and the industrial port.The outermost industrial port offers no landing landing.The commercial port, on the other hand, surrounded by the old city, encloses several docks.For the pleasure of reception, about 200 m of the bersagliere, the dock of the Cala, more a s, with its round shape, and some pontoons floating in concession to circles and private.\n\nIn the industrial port there are no moorings for pleasure.", - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -8.5, - "maxDepth": -15.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.37633333, - 38.1315 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 333, - "mapId": "SI_077", - "name": "ACQUASANTA - VILLA IGIEA", - "contacts": [ - "091 364225 Marina Villa Igiea", - "www.marinadivillaigiea.com" - ], - "description": "Port to the north of Palermo, protected a and from the pier of over 3 arms and a w from the subfluy pier that divides it from the old basin.Entry into port with bow 206 *.", - "slips": 456, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.37316667, - 38.14366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 334, - "mapId": "SI_009", - "name": "PORTICELLO S. FLAVIA", - "contacts": [ - "091 958989 Capitaneria" - ], - "description": "A and Capo Zafferano is the breast of S. Elia, continuing to and the village of S. Flavia recognizes from the bell tower with clock.In front of the town there is the main port;For transit you can moor along the quay of the subfluy pier (on the left entering).", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -0.3, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.54133333, - 38.08666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 335, - "mapId": "SI_008", - "name": "SAN NICOLA L\u2019ARENA", - "contacts": [ - "091 957329 Capitaneria", - "091 8125946 Marino Calogero (Mare Sud)", - "091 8125002 Club Nautico", - "091 8125946 Ormeggiatori", - "Vhf 14" - ], - "description": "San Nicola is located in Torre Mandra.The marina is subjected to coverage but can offer safe shelter with fishing boats under 3.5 m.Inside there are piers for pleasure (339 2246622 Damiano).", - "slips": 800, - "vesselMaxSize": { - "maxLoA": 25.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.62033333, - 38.0175 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 336, - "mapId": "SI_081", - "name": "STROMBOLI - FICOGRANDE", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "is an active volcanic cone 926 m high;At night even from the wide you can see the reddish reflection of the crater.The coasts of the island are rocky and only on the side ne the mountain is fertile, green and cultivated with short traits of dark beach.From April 15th to July 15th in the waters of the island, large-scale fishing is exercised and therefore it is good to move off 5 miles from the strombolic rock lighthouse to avoid caught up at the networks.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.23783333, - 38.80733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 337, - "mapId": "SI_080", - "name": "PANAREA - SCALO DITELLA", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "In the highest tip of Panarea (421m) there is an iron cross.The wife w is rocky and descends to the sea with cliffs without vegetation, while that and there is a verdant vegetation, cultivated and with colonial houses.The main landing of the island is located in S. Pietro a N of Punta Peppemaria, Scalo Detella.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.079, - 38.6375 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 338, - "mapId": "SI_119", - "name": "SANTA MARIA SALINA", - "contacts": [ - "090 98424451 Capitaneria" - ], - "description": "In Santa Maria there is the most important landing for ferries and line hydrofoils.Other airports: tongue tip at the end if, Rinella in the Costa S, and Galera stop in the N. side\n\nArriving on a 120 m long quay used to commercial operations.", - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.873, - 38.55716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 339, - "mapId": "SI_119", - "name": "SALINA - DARSENA TURISTICA", - "contacts": [ - "090 98424451 Capitaneria", - "090 9843521 Darsena turistica", - "www.darsenasalina.it", - "Vhf 11" - ], - "description": "In Santa Maria there is the most important landing for ferries and line hydrofoils.Other airports: tongue tip at the end if, Rinella in the Costa S, and Galera stop in the N. side\n\nThe tourism dock equipped with entrance lights and three floating piers was built in S. Maria.", - "slips": 130, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.87083333, - 38.554 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 340, - "mapId": "SI_120", - "name": "SALINA - PUNTA LINGUA", - "contacts": [ - "090 98424451 Capitaneria" - ], - "description": "In Santa Maria there is the most important landing for ferries and line hydrofoils.Other airports: tongue tip at the end if, Rinella in the Costa S, and Galera stop in the N. side\n\nSmall oriented pier and if from a sandy shore and cliffs in s parallel and joined by the shore.Not recommended the mooring with winds from the I and II dial." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.87016667, - 38.541 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 341, - "mapId": "SI_062", - "name": "SALINA - RINELLA", - "contacts": [ - "090 98424451 Capitaneria" - ], - "description": "In Santa Maria there is the most important landing for ferries and line hydrofoils.Other airports: tongue tip at the end if, Rinella in the Costa S, and Galera stop in the N. side\n\nA quay from which a punched jetty starts;On the E E." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.8285, - 38.5465 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 342, - "mapId": "SI_056", - "name": "LIPARI - PIGNATARO", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 11" - ], - "description": "The Rada di Lipari, where there is the village, is on the side and between the Punta S. Giuseppe and the Monterosa promontory, on which a cross arises.A S of the castle opens the short marine cove delimited from one side by a islet on which a church rises and a fing dam.The beach towards N is instead long marine for which a regular row of houses winds.Pignataro is Lipari's port-refuge.\nA part of the quay is reserved for pleasure.Others landings, both on the side and island, are a cannetto, to N of the Monterosa promontory, and Porticello, a s\nDi Punta Chestagna.To the north of Agip refueling, between Monastery and Pignataro there is the Floating Porto Salvo dock (368/7190843).\nPort consisting of a punched pier and a quay on the shore.\nThe final part is destined for ferries.", - "slips": 80, - "vesselMaxSize": { - "maxLoA": 35.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.96133333, - 38.47616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 343, - "mapId": "SI_109", - "name": "LIPARI - CANNETO", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 11" - ], - "description": "The Rada di Lipari, where there is the village, is on the side and between the Punta S. Giuseppe and the Monterosa promontory, on which a cross arises.A S of the castle opens the short marine cove delimited from one side by a islet on which a church rises and a fing dam.The beach towards N is instead long marine for which a regular row of houses winds.Pignataro is Lipari's port-refuge.\nA part of the quay is reserved for pleasure.Others landings, both on the side and island, are a cannetto, to N of the Monterosa promontory, and Porticello, a s\nDi Punta Chestagna.To the north of Agip refueling, between Monastery and Pignataro there is the Floating Porto Salvo dock (368/7190843).\nTo the south of the beach a jetty where the ferries dock.You can immediately mock the beach located in N of the Sciarra di Monterosa paying attention to the area of the submarine cables.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.96433333, - 38.491 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 344, - "mapId": "SI_118", - "name": "LIPARI - PORTICELLO", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 11" - ], - "description": "The Rada di Lipari, where there is the village, is on the side and between the Punta S. Giuseppe and the Monterosa promontory, on which a cross arises.A S of the castle opens the short marine cove delimited from one side by a islet on which a church rises and a fing dam.The beach towards N is instead long marine for which a regular row of houses winds.Pignataro is Lipari's port-refuge.\nA part of the quay is reserved for pleasure.Others landings, both on the side and island, are a cannetto, to N of the Monterosa promontory, and Porticello, a s\nDi Punta Chestagna.To the north of Agip refueling, between Monastery and Pignataro there is the Floating Porto Salvo dock (368/7190843).\nThe arrival consists of three piers oriented to and ne;The two iron piers are used for freight traffic;The most concrete one is also used for ferries.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -14.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.96316667, - 38.516 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 345, - "mapId": "SI_060", - "name": "VULCANO - PORTO DI LEVANTE", - "contacts": [ - "090 9811320 Capitaneria", - "339 3372795 Centro Nau. Baia Levante" - ], - "description": "Arid and deserted island, has three volcanoes, one of which is active, a volcano fosse (386 m) in the northern part of the island;Mount Vulcanello (122 m) at the extreme N, connected by a low Istmo, seen from the wide, from and and from W, seems to be an islet.Between Mount Vulcanello and the southernmost part of the island there are two inlets: Port of Levante A e;Port of Ponente A W. The port of Levante has a 85 m long dam and fed in the S. side in the spaces left free from hydrofoils and ferry ships can moor pleasure boats.\nEven in the port of Ponente, spaces in the only dock are limited for pleasure.", - "slips": 160 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.964, - 38.41533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 346, - "mapId": "SI_117", - "name": "VULCANO - PORTO DI PONENTE", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "Arid and deserted island, has three volcanoes, one of which is active, a volcano fosse (386 m) in the northern part of the island;Mount Vulcanello (122 m) at the extreme N, connected by a low Istmo, seen from the wide, from and and from W, seems to be an islet.Between Mount Vulcanello and the southernmost part of the island there are two inlets: Port of Levante A e;Port of Ponente A W. The port of Levante has a 85 m long dam and fed in the S. side in the spaces left free from hydrofoils and ferry ships can moor pleasure boats.\nEven in the port of Ponente, spaces in the only dock are limited for pleasure.", - "slips": 30, - "seaFloor": { - "minDepth": -0.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.952, - 38.42116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 347, - "mapId": "SI_055", - "name": "MESSINA", - "contacts": [ - "090 45830 Capitaneria", - "Vhf 14" - ], - "description": "Dense natural harbor of commercial traffic and ferries that unite the island at the peninsula.The neptune navy for boats up to 35 m was recently arisen.You can find mooring for supplies and short stops at the Rizzo dock, at the bottom of the port and on those of the left asking for the availability to the Port Master's Office.Another landing is present outside N of the green light managed by the COMET company.", - "slips": 160, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.0, - "maxDepth": -40.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.566, - 38.20033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 348, - "mapId": "SI_053", - "name": "RIPOSTO", - "contacts": [ - "095 931862 Capitaneria", - "www.portodelletna.com" - ], - "description": "Riposto rises on the shore of the sea and is visible for the cathedral with a slender dome and, on the beach the building of the Nautical Technical Institute, recognizable for a two-storey turret;Behind Riposto there is Giarre, a country recognizable from the wide for a church with two bell towers.The port has pontiens reserved for pleasure managed by private companies.The port of Etna's port (VHF 74) within the basin is a good stopover for supplies and with all services.", - "slips": 400, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.20933333, - 37.73633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 349, - "mapId": "SI_089", - "name": "TORRE ARCHIRAFI", - "contacts": [ - "095 931862 Capitaneria", - "095 934817 Pietro Guarrera" - ], - "description": "Approdo-refuge in front of the inhabited center of Torre Archirafi, located about a millet in S if of the Riposto light, and consisting of a 50 m moletto accessible only with a good summer time.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.21866667, - 37.709 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 350, - "mapId": "SI_051", - "name": "STAZZO", - "contacts": [ - "095 7641373 Capitaneria" - ], - "description": "Fraction of the municipality of Acireale, Stazzo is recognizable for the church built near the beach.The marina has two small inlets separated by a rocky tip.In the pier of overflight there are some pontoons managed by a private company.", - "slips": 150, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.19116667, - 37.64616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 351, - "mapId": "SI_049", - "name": "ACI TREZZA", - "contacts": [ - "095 277381 Capitaneria", - "095 276190 La Nautica Cap. Grasso", - "095 491312 Porto Franco", - "095 375058 Ardd", - "095 295479 Romano" - ], - "description": "Basaltic rock islets Cyclopes are visible to a few hundred meters from the ground to if Aci Trezza.The town is partly occulted by these islets.The marina fishing boat, equipped with a hauling stopover, offers a good refuge.Four piers are installed in summer periods and are managed by circles and private companies.", - "slips": 200, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.16466667, - 37.56166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 352, - "mapId": "SI_048", - "name": "OGNINA - PORTO ULISSE", - "contacts": [ - "095 7474111 Capitaneria", - "095 494152 Porto Turistico Ognina", - "095 493640 La Tortuga", - "095 491123 Oram" - ], - "description": "Ognina is about 3 miles to SW of Aci Trezza and the marina is protected by a quench pier and a ponente from another elbow hipoon.Pontlines in concession to several private companies provide good pleasure services." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.11633333, - 37.53033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 353, - "mapId": "SI_087", - "name": "CAITO - PORTO ROSSI", - "contacts": [ - "095 532605 Capitaneria", - "095 374966 Porto Rossi" - ], - "description": "Marina in a central position of the city of Catania, offers all the services of pleasure boating assistance.Of the buoys indicate the entrance channel.", - "slips": 300, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.10633333, - 37.51233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 354, - "mapId": "SI_046", - "name": "CATANIA", - "contacts": [ - "095 532605 Capitaneria", - "095 7462199 Lega Navale Italiana", - "095 531443 Circolo Nautico Catania", - "095 531347 Diporto Nautico Etneo", - "095 531906 Piloti Catania", - "Vhf 12" - ], - "description": "Second city in size after Palermo, Catania overlooks the sea and extends to the pitches of Etna which is also the conspicuous point for landing. There are two port basins, new port,\nExterior and the old port where there are floating piers managed by nautical clubs and supplied with all services.\n\nAction Nautical Etneo\nFloating dock located in the old port in front of the customs.\nMoorings: 90\nServices: water, electricity, stopover, crane (50 tons), fuels.\n\nCatania Nautical Club\nwww.clubnauticocatania.it\nFloating jetty alongside Porto Master's Office.\nMoorings: 50\nServices: Water, electricity, slide, crane, weather.\n\nNautico Circle Noi.C.\n095 531178 Circle\nJetty on the levante pier.\nMoorings: 160.\nServices: water, electricity, stopover, crane (35 tonn), weather.\n\nMediterranean Yachting Club\n095 534139 M.Y.C.\nTwo piers on the triangular dock of the rising jetty.\nMoorings: 90.\nServices: water, electricity, stopover, crane (15 tons), weather.", - "slips": 300, - "seaFloor": { - "type": [ - "mud" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.09566667, - 37.48616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 355, - "mapId": "SI_037", - "name": "POZZALLO - PORTO PICCOLO", - "contacts": [ - "0932 953327 Capitaneria", - "0932 957344 Ocean Plastic", - "0932 955520 Serra Outboards" - ], - "description": "The village of Pozzallo recognizes from the medieval Torre Caprera.The port is a W of the town and is composed of the commercial port, reserved for passenger and merchant ships, and from the small port that is partially inapped.A floating dock for about 30 pleasure boats was installed in the commercial port.In the small port there are 3 floating piers managed by Nautica Serra", - "slips": 150, - "seaFloor": { - "minDepth": -7.0, - "maxDepth": -11.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.83583333, - 36.7205 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 356, - "mapId": "SI_088", - "name": "MARINA DI RAGUSA", - "contacts": [ - "0932 980976 Capitaneria", - "0932 230687 Base Nautica", - "www.andreadoria.it", - "Vhf 72" - ], - "description": "A small white church indicates Marina di Ragusa, which overlooks the beach.The marina consists of a single pier suitable for small boats.Amplimaneto works are in progress since 2006 and the deadline is provided by 2008.", - "slips": 95, - "vesselMaxSize": { - "maxLoA": 9.0 - }, - "seaFloor": { - "minDepth": -0.7, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.54716667, - 36.77966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 357, - "mapId": "SI_034", - "name": "GELA", - "contacts": [ - "0933 917755 Capitaneria", - "0933 939303 Corporazione Piloti", - "Vhf 12" - ], - "description": "The village of Gela rises on a hill and extends to the beach.Heading on Gela went over Monte Cheese to 12 miles to N of the city.In front of the city there are five platforms;The port is more, before head soprano.For transit you can find mooring at the dock n near the shipyard.", - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.22833333, - 37.062 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 358, - "mapId": "SI_033", - "name": "LICATA", - "contacts": [ - "0922 774113 Capitaneria", - "0933 939303 Coop. Piloti", - "Vhf 14" - ], - "description": "The port of Licata is being renovated and the jobs affect the straight basin entering.The denomination of the new landing is Marina Cala del Sole, the first batch of 242 berths will be completed for summer 2009.", - "slips": 30, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.94266667, - 37.084 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 359, - "mapId": "SI_092", - "name": "S. LEONE", - "contacts": [ - "0922 636640 Capitaneria", - "338 9480194 Yacht Club Ponente", - "Vhf 74" - ], - "description": "S. Leo Bagni stands out for the village of houses along the coast immediately A and the mouth of the river of the same name.The fishing marina is facing the country and consists of three quacked arms.The port was dredged at 4 m and floating pontlings with private management with electricity and light were installed.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.58016667, - 37.25716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 360, - "mapId": "SI_068", - "name": "LEVANZO - CALA DOGANA", - "description": "Levanzo has the only landing on the island's side, in Cala Dogana.It is an elbow pier in front of the town consisting of about 230 residents.Good nighttened twenty has a goodweight sander background.", - "slips": 15, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.34116667, - 37.98616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 361, - "mapId": "SI_067", - "name": "MARETTIMO - SCALO NUOVO", - "contacts": [ - "0923 923283 Capitaneria", - "0923 923202 Big Game", - "Vhf 9" - ], - "description": "Marettimo is the most mountainous island of the Egadi and has in Monte Falcone (686 m) the largest top.Almost overlooking the sea in the w side degrades slowly towards Punta Bassana.Many rocks outcrops in the coast, so the coastal navigation must be carried out with caution.The inhabited center is located in the side and island and is recognizable for the high bell tower of the church.The marina has three stops: Old stopover, more to N, a close to protected from a 100 m long docked pier, a middle station open to and nor, and the new stop the largest where hydrofoils and ferry vessels arrange.At the Big Game jetty, 60 seats, water, electricity.In the \"B\" area of the park, buoys were placed for mooring.\n\nIn the new stop there is a floating dock with private management with electricity and water.", - "slips": 60, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.07583333, - 37.9655 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 362, - "mapId": "SI_067", - "name": "MARETTIMO - SCALO VECCHIO", - "contacts": [ - "0923 923283 Capitaneria", - "0923 923202 Big Game", - "Vhf 16-18" - ], - "description": "Marettimo is the most mountainous island of the Egadi and has in Monte Falcone (686 m) the largest top.Almost overlooking the sea in the w side degrades slowly towards Punta Bassana.Many rocks outcrops in the coast, so the coastal navigation must be carried out with caution.The inhabited center is located in the side and island and is recognizable for the high bell tower of the church.The marina has three stops: Old stopover, more to N, a close to protected from a 100 m long docked pier, a middle station open to and nor, and the new stop the largest where hydrofoils and ferry vessels arrange.At the Big Game jetty, 60 seats, water, electricity.In the \"B\" area of the park, buoys were placed for mooring.", - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.07216667, - 37.97083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 363, - "mapId": "SI_099", - "name": "PANTELLERIA - PORTO NUOVO", - "contacts": [ - "0923 911027 Capitaneria", - "Vhf 14" - ], - "description": "The highest peak of Pantellrria is the great mountain (836 m) on which a circular section tower is about 40 m high with the upper part painted with white and red chess.The ridge is often wrapped in the clouds.The village is located in the side of the island and extends to a semicircle around the port.Conspicuous points for landing are the former traffic lights on Monte S. Elmo a whom of the country, the headlight on the Punta S. Leonardo and S if the headlight a radio antenna.Two basins form the harbor, old port and new port.In the latter works are underway to lengthen the cidonium pier from which two floating piers reserved for pleasure are extended.Another landing is located in the southern part of the island, in Scauri, where there is a new marina.Different anchors on the island: Cala di Levante, Cala Tramontana and port behind the island.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.94066667, - 36.83733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 364, - "mapId": "SI_099", - "name": "PANTELLERIA - PORTO VECCHIO", - "contacts": [ - "0923 911027 Capitaneria", - "Vhf 14" - ], - "description": "The highest peak of Pantellrria is the great mountain (836 m) on which a circular section tower is about 40 m high with the upper part painted with white and red chess.The ridge is often wrapped in the clouds.The village is located in the side of the island and extends to a semicircle around the port.Conspicuous points for landing are the former traffic lights on Monte S. Elmo a whom of the country, the headlight on the Punta S. Leonardo and S if the headlight a radio antenna.Two basins form the harbor, old port and new port.In the latter works are underway to lengthen the cidonium pier from which two floating piers reserved for pleasure are extended.Another landing is located in the southern part of the island, in Scauri, where there is a new marina.Different anchors on the island: Cala di Levante, Cala Tramontana and port behind the island.", - "slips": 500, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.942, - 36.83433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 365, - "mapId": "SI_070", - "name": "LAMPEDUSA", - "contacts": [ - "0922 970141 Capitaneria" - ], - "description": "High above sea level of 133 m, Lampedusa is 80 miles away from Pantelleria.Conspicuous point is the bell tower with the church that emerges decisively from the town, always visible because it remains illuminated even at night.The island has no water courses but only small and scarce springs.The climate is therefore african, with long droughts and rains almost exclusively winter.The port is a large natural inlet, with rocky shores except at the bottom of the coves." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.59833333, - 35.49433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 366, - "mapId": "SI_100", - "name": "AUGUSTA", - "contacts": [ - "0931 978922 Capitaneria", - "Vhf 12" - ], - "description": "The Radius of Augusta enclosed between Chief S. Croce and Punta Magnisi has an important industrial, commercial and military airport.The Rada is closed to N among the islet on which the city stands, and from which the northern dam extends, and a s of the breast of the Priolo where the southern dam is born.Two entrances to the rada, one in s between the southern dam and the central dam and one more in N between the latter and\nThe northern dam.The landlines are managed by the property that must be contacted for the stop, and usually directs the yachts to the pier's fall.", - "seaFloor": { - "type": [ - "mud", - "sand", - "algae" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.23433333, - 37.19666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 367, - "mapId": "SI_042", - "name": "SIRACUSA - PORTO GRANDE", - "contacts": [ - "0931 481011 Capitaneria", - "0931 67108 Approdo S. Lucia", - "0931 480680 Lega Navale Italiana", - "0931 60480 Circolo Velico Ribellino", - "Vhf 9-14" - ], - "description": "A S of the Rada di Augusta, after Chief S. Panagia, there is the Bay of Syracuse divided by the Ortigia island on which a part of the ancient city is built.In N of Ortigia there is a landing, Porto Piccolo (or Marmoreo), for fish boats up to 2.50 m and pontiens managed by circles and private companies;In the s side of Ortigia there is instead the large port where for transit you can moor them at the Mazzini and Foro Italico docks, by contacting the capacity.The basins are in communication through a channel only for small boats due to the presence of a bridge.\n\nPontlines floating for private management (Marina Yachting, tel. 339 8974655 were installed with all services).", - "slips": 40, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -4.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2875, - 37.05833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 368, - "mapId": "SI_042", - "name": "SIRACUSA - PORTO PICCOLO MARMOREO", - "contacts": [ - "0931 481011 Capitaneria", - "0931 67108 Approdo S. Lucia", - "0931 480680 Lega Navale Italiana", - "0931 60480 Circolo Velico Ribellino", - "Vhf 14" - ], - "description": "A S of the Rada di Augusta, after Chief S. Panagia, there is the Bay of Syracuse divided by the Ortigia island on which a part of the ancient city is built.In N of Ortigia there is a landing, Porto Piccolo (or Marmoreo), for fish boats up to 2.50 m and pontiens managed by circles and private companies;In the s side of Ortigia there is instead the large port where for transit you can moor them at the Mazzini and Foro Italico docks, by contacting the capacity.The basins are in communication through a channel only for small boats due to the presence of a bridge.", - "slips": 640, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2945, - 37.06816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 369, - "mapId": "SI_039", - "name": "MARZAMEMI", - "contacts": [ - "0931 841092 Capitaneria", - "0931 841488 Club Nautico", - "Vhf 6" - ], - "description": "Marzamemi is the last stop before Capo Passero that separates the Ionian Sea from the Sicilian Canal.The creek is sprinkled with dried among which two islets emerge, small island and large island.The marina consists of two cliffs of which a coast is connected to the great island.\n\nNautical club: the piers opposite the entrance.\nYacht Club: Approad made up of 4 piers.VHF 9\nMarina di Marzameni: floating piers on the southern jetty .." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.12366667, - 36.73266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 370, - "mapId": "SI_029", - "name": "PORTO PALO", - "contacts": [ - "0931 842600 Capitaneria" - ], - "description": "A s by Marzameni the coast is rounded and from the largo you can notice the village of Pachino inside.Continuing towards S after Cozzo Spadaro there is the country of Portopalo who gives the name to the breast, natural harbor.Two moles contain the sides.For transit the boats can find refuge in the dock of Levante or to the pecker with backdrops from 1.50 to 3 m, but it is difficult to find a place being entirely reserved for fishing boats.Street in Radia is good;It is the closest port to the island of Malta.", - "slips": 18, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.12133333, - 36.66333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 371, - "mapId": "SI_037", - "name": "POZZALLO - PORTO COMMERCIALE", - "description": "The village of Pozzallo recognizes from the medieval Torre Caprera.The port is a W of the town and is composed of the commercial port, reserved for passenger and merchant ships, and from the small port that is partially inapped.A floating dock for about 30 pleasure boats was installed in the commercial port.In the small port there are 3 floating piers managed by Nautica Serra" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.83916667, - 36.713 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 372, - "mapId": "SI_032", - "name": "PORTO EMPEDOCLE", - "contacts": [ - "0922 636640 Capitaneria", - "0922 636035 Ormeggiatori" - ], - "description": "Porto Empedocle is A and of the city of Agrigento, built on a hill and visible from the large for the great seminar building and a little bell tower.Coming from if, for landing at Porto Empedocle, it is necessary to leave the dry body and the dry at a distance, making course on the \"extreme s chief Rossello - Torre di Monterosso\" alignment \"easily identifiable even from afar.For transit it can be placed\nAt the pier F. Crispi, on the left entering on backdrops of 5-6 m.", - "slips": 100, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.52966667, - 37.2755 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 373, - "mapId": "SI_030", - "name": "SCIACCA", - "contacts": [ - "0925 22219 Capitaneria", - "0925 85879 Lega Navale Italiana", - "0925 21611 Circ. Naut. Il Corallo", - "Vhf 12-14" - ], - "description": "Conspicuous point for landing is Monte S. Calogero, then in the town of Scierra built in the decliveness of a hill, a church is recognized almost at the extreme n of the town, the walls of the castle with a large gray tower and aSolid three-story building.The port, mainly fishing boat and commercial, has two basins and pleasure boats find mooring in the ponente quay on the left for those who enter where there are floating piers managed by private circles and the naval alloy.", - "slips": 600, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.0745, - 37.50133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 374, - "mapId": "SI_028", - "name": "MARINELLA DI SELINUNTE", - "contacts": [ - "0924 40025 Capitaneria" - ], - "description": "Visible from the wide, behind the village, the ruins of the Greek colony of Selinunte, of which the 15 side columns and the 6 fronts are distinguished.More towards w sw on the hill overlooking the sea stood the acropolis with the ruins of another temple with a row of 12 columns.The marina is protected by a three-arm breakwater.The pontiens are managed by the Yachting Club 83." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.84033333, - 37.57983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 375, - "mapId": "SI_026", - "name": "MAZARA DEL VALLO", - "contacts": [ - "0923 946388 Capitaneria", - "0923 906700 A.DI.NA.", - "0923 652249 Ormeggiatori porto commerciale", - "0923 20144 Ormeggiatori A.DI.NA", - "Vhf 10" - ], - "description": "The port hosts one of the largest fleets of fishing boats in Italy.The city stands at the mouth of the Mazaro river on whose mouth the port is built.In the approximation from the wide you notice the dome of the cathedral and the two twin bell towers with thin spilies of the church of Veneranda and, isolated, the quadrangular brick and pyramidal bell tower.For transit there are possibilities for mooring in the portocanale and in the jetty, entering the right and in the pier of the a.di.na.", - "slips": 540, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.58983333, - 37.64183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 376, - "mapId": "SI_025", - "name": "MARSALA", - "contacts": [ - "0923 951184 Capitaneria", - "0923 736380 Lega Navale Italiana", - "0923 951201 A. S. Mothia Line", - "0923 713240 Club Lilybeo", - "Vhf 14" - ], - "description": "The city stands in the Extreme Lilibeo Cape Punta W of Sicily.The back campaign that rises towards the hills, and to n of the salt clusters and the windmills of the Saline winds are noticed.For the pleasure, the quay on the right is available by entering the marina (Mr. Gandolfo);On this side of the harbor there are no unmarked dry, one in the edge of the moloflorio, after the green light, and another w of the last pier.The tourist arrival is located in the part of the port at the root of the Levante pier run by the LilyBeo club.", - "slips": 200, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.43783333, - 37.78233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 377, - "mapId": "SI_023", - "name": "TRAPANI", - "contacts": [ - "0923 543911 Capitaneria", - "0923 547467 Lega Navale Italiana", - "0923 22013 Boat Service", - "0923 29240 Cantiere Nav. Dreplanum", - "Vhf 12 - 11" - ], - "description": "The city stands on a low ground language that from Mount S. Giuliano stretches\nTowards W by doing to the rada on which there is the natural port.The fishing basin is w of the merchant port between the ancient lazaretto, the capuchin cliff, the mainland and the antemural cliff in S. here there are floating piers of the naval alloy.The Ronciglio quay is reserved to the transit, to the right entering, after the green light (contact the capacity).The tourist arrival has limited backdrops.To visit the medieval village of EICE 12 Km from Trapani from where you can admire the entire archipelago, the islet of Motya, one of the latest avanposts of the Phoenicians, and the Saline still active.", - "slips": 200, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.5015, - 38.00666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 378, - "mapId": "SI_069", - "name": "FAVIGNANA - CALA PRINCIPALE", - "contacts": [ - "0923 922273 Capitaneria", - "0922 922422 Circolo N. Favignana", - "0923 922212 Ormeggiatori", - "Vhf 11" - ], - "description": "The country is in part N of the island and is among the Egadi the one that welcomes the largest number of inhabitants.The main cove arrival is open to NW and is a ferry stop.The pleasure boats find mooring in the water mirror with piers near Piazza Marina, on the opposite side to that where the fuel distributor.Here a \"U\" pier is run by the Nautico Favignana circle.", - "slips": 100, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.32216667, - 37.9345 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 379, - "mapId": "SI_A02", - "name": "LINOSA - SCALO VECCHIO", - "contacts": [ - "Vhf 14" - ], - "description": "The main landing of the island ravished by the northern winds.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.85933333, - 35.85366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 380, - "mapId": "SI_066", - "name": "USTICA - CALA S. MARIA", - "contacts": [ - "091 8449652 Capitaneria", - "091 8449763 Coop. Ormeggiatori" - ], - "description": "Either coming from and that from W Ustica appears like two distinct islets, since a hilly dorsal crosses the island for E-W culminating with the Monte Guardia dei Turchi on which the former traffic light is located.In the \"saddle\" there is S. Maria, the town of Ustica, with little more than a thousand inhabitants, and is placed on a slope up to the port of Cala S. Maria ..\n\nNatural port protected by an artificial pier of 110 m punched inside.In summer the basin is overcrowded and you can not always find space for a stop.For a short arrival with good time you can use, if available, the outer molets at the basin, one in S and one a N.", - "slips": 12, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.19816667, - 38.70816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 381, - "mapId": "FR_022", - "name": "SAN BARTOLOMEO", - "contacts": [ - "040 676611 Capitaneria", - "040 271275 Campeggio S. Bartolomeo", - "Vhf 16" - ], - "description": "It is the first Italian landing in the Gulf of Trieste coming from the bay of Koper.Incoming and outgoing it is advisable to follow a route perpendicular to the coast and pay attention to the miticulture plants not always reported on nautical papers.It offers poor possibilities for transit and is not suitable for boats greater than 10 m.In summer it is always crowded.", - "slips": 240, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -0.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.7215, - 45.596 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 382, - "mapId": "FR_024", - "name": "MARINA DI PORTO SAN ROCCO", - "contacts": [ - "040 676611 Capitaneria", - "040 273090 Porto S. Rocco", - "www.portosanrocco.it", - "Vhf 16 - 74" - ], - "description": "He is a stop from both boats that are preparing to pass the Italian border towards the Istrian coast than those who enter our country.Large mouthpiece 50 m reported by 2 green and red intermittent lights.Enter with course of 297 *.", - "slips": 525, - "vesselMaxSize": { - "maxLoA": 60.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -4.5, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.75433333, - 45.60966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 383, - "mapId": "FR_021", - "name": "MUGGIA", - "contacts": [ - "040 676611 Capitaneria", - "040 272416 Circolo della Vela" - ], - "description": "From the Largo Muggia it is recognizable for a castle in Ponente of the town and from the top quadrangular bell tower with guglia in the shape of an octagonal pyramid soaring from the highest hill.The marina is entirely fed with pontiens in concession to the sailing circle.The transit are reserved 250 m in the Cristoforo Colombo quay and 80 m to the left of the outside port entrance.The loddle deserves a stop and a lunch in local restaurants.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.76533333, - 45.6075 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 384, - "mapId": "FR_041", - "name": "TRIESTE - PORTO FRANCO VECCHIO", - "contacts": [ - "040 676611 Capitaneria", - "040 306327Società Triestina della Vela", - "040 301394 Gruppo Velico LNI TS", - "040 304307 Esperto locale (Vhf 14)", - "Vhf 11- 16 - Piloti 14" - ], - "description": "The port of Trieste is among the major in the Mediterranean and is divided into three sectors: Porto Franco Vecchio, Porto Customs and Porto Franco New.Numerous landings for your pleasure.The Marina di S. Giusto has an opening and closing system of access (call to find out availability).It has 200 berths on protected piers and equipped with all services.The pelvis is protected, disturbed by ponente backache, noticeable with a rare tramontana in the summer months.The port area that goes towards Ponente from Arsenale S. Marco within the customs harbor is crossroads for the mooring of pleasure boats.The heart of the port of Trieste is the bag, home of the most prestigious Trieste nautical companies.Inside you can moor in transit to the root of the flag pier, or at the \"0\" pier of the old port.", - "slips": 60, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "minDepth": -7.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.755, - 45.6655 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 385, - "mapId": "FR_047", - "name": "TRIESTE - MARINA S. GIUSTO", - "contacts": [ - "040 676611 Capitaneria", - "040 306327 Società Triestina della Vela", - "040 301394 Gruppo Velico LNI TS", - "040 303036 Sea Center", - "Vhf 16 - 11", - "www.marinadisangiusto.it" - ], - "description": "The port of Trieste is among the major in the Mediterranean and is divided into three sectors: Porto Franco Vecchio, Porto Customs and Porto Franco New.Numerous landings for your pleasure.The Marina di S. Giusto has an opening and closing system of access (call to find out availability).It has 200 berths on protected piers and equipped with all services.The pelvis is protected, disturbed by ponente backache, noticeable with a rare tramontana in the summer months.The port area that goes towards Ponente from Arsenale S. Marco within the customs harbor is crossroads for the mooring of pleasure boats.The heart of the port of Trieste is the bag, home of the most prestigious Trieste nautical companies.Inside you can moor in transit to the root of the flag pier, or at the \"0\" pier of the old port.", - "slips": 225, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -14.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.76083333, - 45.65033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 386, - "mapId": "FR_020", - "name": "TRIESTE - BACINO SACCHETTA", - "contacts": [ - "040 676611 Capitaneria", - "040 306327 Società Triestina della Vela", - "040 301394 Gruppo Velico LNI TS", - "Vhf 11 - Piloti 14", - "www.porto.trieste.it", - "", - "040 304307 Piloti (Vhf 14)", - "Vhf 16 - 1" - ], - "description": "The port of Trieste is among the major in the Mediterranean and is divided into three sectors: Porto Franco Vecchio, Porto Customs and Porto Franco New.Numerous landings for your pleasure.The Marina di S. Giusto has an opening and closing system of access (call to find out availability).It has 200 berths on protected piers and equipped with all services.The pelvis is protected, disturbed by ponente backache, noticeable with a rare tramontana in the summer months.The port area that goes towards Ponente from Arsenale S. Marco within the customs harbor is crossroads for the mooring of pleasure boats.The heart of the port of Trieste is the bag, home of the most prestigious Trieste nautical companies.Inside you can moor in transit to the root of the flag pier, or at the \"0\" pier of the old port.\n\nPontiens managed by Assonautica and the Soc. Triestina della Vela.", - "slips": 400, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.75816667, - 45.64833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 387, - "mapId": "FR_039", - "name": "TRIESTE - PORTO LIDO", - "contacts": [ - "040 676611 Capitaneria", - "040 306327Società Triestina della Vela", - "040 301394 Gruppo Velico LNI TS", - "Vhf 11 - Piloti 14" - ], - "description": "The port of Trieste is among the major in the Mediterranean and is divided into three sectors: Porto Franco Vecchio, Porto Customs and Porto Franco New.Numerous landings for your pleasure.The Marina di S. Giusto has an opening and closing system of access (call to find out availability).It has 200 berths on protected piers and equipped with all services.The pelvis is protected, disturbed by ponente backache, noticeable with a rare tramontana in the summer months.The port area that goes towards Ponente from Arsenale S. Marco within the customs harbor is crossroads for the mooring of pleasure boats.The heart of the port of Trieste is the bag, home of the most prestigious Trieste nautical companies.Inside you can moor in transit to the root of the flag pier, or at the \"0\" pier of the old port.", - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.75083333, - 45.6475 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 388, - "mapId": "FR_042", - "name": "TRIESTE - PORTO FRANCO NUOVO", - "contacts": [ - "040 676611 Capitaneria", - "040 306327Società Triestina della Vela", - "040 301394 Gruppo Velico LNI TS", - "Vhf 11 - Piloti 14" - ], - "description": "The port of Trieste is among the major in the Mediterranean and is divided into three sectors: Porto Franco Vecchio, Porto Customs and Porto Franco New.Numerous landings for your pleasure.The Marina di S. Giusto has an opening and closing system of access (call to find out availability).It has 200 berths on protected piers and equipped with all services.The pelvis is protected, disturbed by ponente backache, noticeable with a rare tramontana in the summer months.The port area that goes towards Ponente from Arsenale S. Marco within the customs harbor is crossroads for the mooring of pleasure boats.The heart of the port of Trieste is the bag, home of the most prestigious Trieste nautical companies.Inside you can moor in transit to the root of the flag pier, or at the \"0\" pier of the old port.", - "slips": 600, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -6.0, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.743, - 45.636 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 389, - "mapId": "FR_019", - "name": "BARCOLA", - "contacts": [ - "040 411664 Soc. Vel. Barcola-Grignano", - "040 4528344 Amici del Mare", - "040 422696 Sirena Club Nautico TS", - "www.barcolana.it" - ], - "description": "Barcola has a marina, well protected to SW from a three-arm breakwater pier and offers mooring at boats less than 10 m.Crowded with permanent boats, uncomfortable with bora.Dangerous incoming and output maniivre with tramontana and southern winds.", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.74883333, - 45.683 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 390, - "mapId": "FR_017", - "name": "GRIGNANO", - "contacts": [ - "040 676611 Capitaneria", - "040 411664 Società Nautica Grignano", - "www.nauticagrignano.it", - "Vhf 16" - ], - "description": "The marina of Grignano is one of the most popular of the Gulf of Trieste and is located close to the Natural Reserve of Miramare.Boats in transit can moor to the external pier.Some moorings are managed by the Grignano nautical company.For food supplies you go to Trieste by bus.Porto rotted from all winds, with sirocco feeling seen.", - "slips": 350, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.5, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.712, - 45.70783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 391, - "mapId": "FR_011", - "name": "MONFALCONE", - "contacts": [ - "0481 496611 Capitaneria", - "0481 43011 Corporazione Piloti", - "Vhf 16 - 11" - ], - "description": "For landing it is necessary to recognize the red light of peak light sdubba while as much as possible towards the center of the Gulf of Panzano.Visible the imposing buildings of shipyards and high silos 48 m.The bright medes at about 2 mgl off the wide are the references to identify alignment 315 * -135 * of the long access channel that has an average depth of about 10 m.Luminous reports abundant.Night navigation is guaranteed by an elastic meda with white flashes placed on the channel axle at about 1,000 m from the beginning of the same with a range of 6 miles.Mooring on a stretch of the quay N.Sauro in the Valentinis canal, managed by the Captain." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.56166667, - 45.77416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 392, - "mapId": "FR_012", - "name": "MARINA HANNIBAL - MONFALCONE", - "contacts": [ - "0481 411541 Hannibal Srl", - "www.marinahannibal.com", - "Vhf 9 - 16" - ], - "description": "Pass the tip of the island of the bathrooms, turn left and proceed to the SW area of the Panzano basin;After the island of the baths, turn left towards the town of Marina Julia.It is a private marina ravished to all winds with a large part of the finged shore.For the transit it is necessary to contact Marina offices in advance.", - "slips": 350, - "vesselMaxSize": { - "maxLoA": 40.0 - }, - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.53633333, - 45.78483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 393, - "mapId": "FR_036", - "name": "SOC. VELA OSCAR COSULICH - MONFALCONE", - "contacts": [ - "0481 711325 Direzione Mare", - "0481 712018 Società Velica Cosulich", - "www.riscalinet.it/svelaoc" - ], - "description": "The landing is managed by the Velica Oscar Cosulich company and offers members all services for nautical activity;Few availability for transit.Places are totally occupied by the boats of the members.Access from 9 to 18.", - "slips": 380, - "vesselMaxSize": { - "maxLoA": 10.5 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.53216667, - 45.788 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 394, - "mapId": "FR_031", - "name": "DARSENA NAUTEC", - "contacts": [ - "0481 496611 Capitaneria", - "0481 790416 Darsena Nautec", - "www.nautecmare.com", - "Vhf 8" - ], - "description": "pass in front of the fishing port of Pescatore S. Marco and proceed to the left following the path of the briccole for 1.5 km;Maximum speed 6 knots.Continuing towards N we reach the terminal part of the locovaz channel where the moorings of the nautical tables and the Nautec private docks are located.Well equipped offers, after call, assistance.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -3.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.56166667, - 45.795 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 395, - "mapId": "FR_025", - "name": "MARINA DI AQUILEIA", - "contacts": [ - "0431 80050 Capitaneria", - "0431 91041 Marina di Aquileia", - "www.marinadiaquileia.com" - ], - "description": "The turned on to the marina is from grade and from Porto Buso.Continue along the Venetian coastline and, northward, towards Aquileia.Just over 1 km from the mouth of the Natissa river rises the Marina di Aquileia equipped with all services with 70 m of a quay for transit.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.35483333, - 45.75666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 396, - "mapId": "FR_030", - "name": "PORTO SAN VITO", - "contacts": [ - "0431 83600 Marina Azzurra", - "www.portosanvito.com", - "Vhf 16" - ], - "description": "Entering the port of Grado, left the Canale S. Pietro d'Orio in Ponente, approached straight after the Meda Verde and is the Darsena of Porto San Vito.", - "slips": 165, - "vesselMaxSize": { - "maxLoA": 20.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.3765, - 45.68383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 397, - "mapId": "FR_008", - "name": "PORTO NOGARO", - "contacts": [ - "0431 66490 Capitaneria", - "Vhf 12" - ], - "description": "It is 8 km from the sea.Going up the Corno river, from the Marina di San Giorgio after a couple of km you reach the commercial port San Giorgio di Nogaro.It can be stopped at the quay destined for commercial traffic after authorizing the capacity.Access time from 7 am to sunset.Attention to the low backdrops on the sides of the channel highlighted by unmoled briccole." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.2325, - 45.79366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 398, - "mapId": "FR_006", - "name": "PORTO BUSO", - "contacts": [ - "0431 66490 Capitaneria", - "Vhf 16" - ], - "description": "Access to Porto Buso takes place through a channel in a direction 172 * delimited by two side dams 1,400 m long that of west, and 1,100 m that of Levante.It is access to the internal ports of Porto Nogaro and Torviscosa.The town is bounded by the island of S. Andrea A W and Porto Buso to E. Access takes place for a dried channel less than 7 m, 100 m wide." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.25066667, - 45.6925 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 399, - "mapId": "FR_004A", - "name": "MARINA APRILIA MARITTIMA", - "contacts": [ - "0431 71076 Capitaneria", - "0431 53123 Circolo Nautico", - "Vhf 9" - ], - "description": "You come from the sea through access\nof Porto Lignano and the Venetian coastline\nWalking along a 3 km channel, with a medium draw of 3.5 m, reported by bricole.From Porto Lignano continue to N up to the branch of the 3 channels;It matches the left by taking the channel of the lusters to the Aprilia Marittima canal.The Aprilia nautical complex is an ideal base for pleasure boating in the Upper Adriatic for about 2,000 pleasure boats.It is divided into three docks: Central Darsena, North Cape Marina and Marina Punta Gabbiani.", - "seaFloor": { - "minDepth": -0.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.08233333, - 45.69866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 400, - "mapId": "FR_004A", - "name": "APRILIA MARITTIMA - MARINA PUNTA GABBIANI", - "contacts": [ - "0431 71076 Capitaneria", - "0431 528000 Marina Punta Gabbiani", - "Vhf 16 - 9" - ], - "description": "You come from the sea through access\nof Porto Lignano and the Venetian coastline\nWalking along a 3 km channel, with a medium draw of 3.5 m, reported by bricole.From Porto Lignano continue to N up to the branch of the 3 channels;It matches the left by taking the channel of the lusters to the Aprilia Marittima canal.The Aprilia nautical complex is an ideal base for pleasure boating in the Upper Adriatic for about 2,000 pleasure boats.It is divided into three docks: Central Darsena, North Cape Marina and Marina Punta Gabbiani.\n\nEntrance to the marina is outside the old dock.The central dock access lights must be left to the left.The floating piers are protected by a forane dam.", - "slips": 3006, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -0.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.07733333, - 45.695 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 401, - "mapId": "FR_004A", - "name": "APRILIA MARITTIMA - MARINA CAPO NORD", - "contacts": [ - "0431 71076 Capitaneria", - "0431 53503 Marina Capo Nord", - "Vhf 16 - 9" - ], - "description": "You come from the sea through access\nof Porto Lignano and the Venetian coastline\nWalking along a 3 km channel, with a medium draw of 3.5 m, reported by bricole.From Porto Lignano continue to N up to the branch of the 3 channels;It matches the left by taking the channel of the lusters to the Aprilia Marittima canal.The Aprilia nautical complex is an ideal base for pleasure boating in the Upper Adriatic for about 2,000 pleasure boats.It is divided into three docks: Central Darsena, North Cape Marina and Marina Punta Gabbiani.\n\nAccess from the port of Lignano.The day arrival recommended.Possible formations of sandy dunes with low tide.Depth 3 m.", - "slips": 650, - "vesselMaxSize": { - "maxLoA": 20.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.07283333, - 45.69733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 402, - "mapId": "FR_002", - "name": "MARINA PUNTA FARO", - "contacts": [ - "0431 71076 Capitaneria", - "0431 70315 Adriatica Marina Spa", - "0431 70315 Marina Punta Faro", - "Vhf 9", - "www.marinapuntafaro.com" - ], - "description": "To reach the Marina di Lignano and Aprilia focus on the edge (with white and red stripes with red spherical miraglio) situated at 45 * 39'79 n - 13 * 09 '82 E. from broken for 356 * until before oneBriccole series.Minimum threshold in low tide 2-2.20 m.Dangerous the entrance with sustained sirocco that causes frogs.Follow the briccole line to the entrance, bordered on the starboard from a green meda and on the left from a red light.Here the Marina di Punta Faro and Lignano Darsena arise.\n\nThe Marina is located on the extreme flap of Levante di Lignano Sabbiadoro between the lagoon and the sea.", - "slips": 1200, - "vesselMaxSize": { - "maxLoA": 35.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.14616667, - 45.70383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 403, - "mapId": "VE_046", - "name": "NAUTICA BOAT SERVICE - CORTELLAZZO", - "contacts": [ - "0421 980016 Nautica Boat Service" - ], - "description": "At the mouth of the Piave river, recognizable for a reddish color skyscraper which rises about 1,000 m to the ponente of the mouth, protected by two foranee dams.Going back the river on the left, there are two private docks for pleasure: the first is Nautical Boat Service, the second is the Navy of Cortellazzo.Access to the port is often obstructed from sandbanks with restricted seabed at 1.50 m.traversia from Scirocco.\n\nIt is located on the left shore of the Piave to about 500 m from the Ponente dam.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.72466667, - 45.53316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 404, - "mapId": "VE_016", - "name": "MARINA DI CORTELLAZZO", - "contacts": [ - "0421 210290 Capitaneria", - "0421 980356 Marina di Cortellazzo", - "www.marinadicortellazzo.it" - ], - "description": "At the mouth of the Piave river, recognizable for a reddish color skyscraper which rises about 1,000 m to the ponente of the mouth, protected by two foranee dams.Going back the river on the left, there are two private docks for pleasure: the first is Nautical Boat Service, the second is the Navy of Cortellazzo.Access to the port is often obstructed from sandbanks with restricted seabed at 1.50 m.traversia from Scirocco.\n\nThe landing is reached by climbing the river for just over 1 km;The marina is on the left bank.Inside, there are 4 piers and the entrance is signaled by light and red lights placed at the entrance and offers mooring for transit up to 8 boats.", - "slips": 140, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.72416667, - 45.537 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 405, - "mapId": "VE_045", - "name": "PORTO TURISTICO DI JESOLO", - "contacts": [ - "0421 210290 Capitaneria", - "0421 971488 Porto Turistico", - "www.portoturistico.it", - "Vhf 77" - ], - "description": "It is advisable to stay in the center of the entrance channel or browse near the left bank where there is the Lighthouse of Piave Old;On this side the seabed are greater.Neither of the lighthouse extends the Lido di Jesolo.On the left bank of the river there are the dock of the lighthouse, La Nautica from the VI and the tourist port of Jesolo, on the right bank of the Cavallino and Marina del Lighthouse.Dangerous navigation with sirocco.\n\nIt is the most internal dock, a starboard going up the Sile river, distant about 1.5 km from the mouth;A NW of the entrance to the tourist port of Jesolo there are 4 \"T\" piers of length between 25 and 45 m.Before the overpass there is the mooring for the transit.For boaters in transit the access time is from 08/12 - 14/18.", - "slips": 600, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "type": [ - "sand", - "algae" - ], - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.5815, - 45.48833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 406, - "mapId": "VE_048", - "name": "PORTO DI PIAVE VECCHIA", - "contacts": [ - "0421 210290 Capitaneria" - ], - "description": "It is advisable to stay in the center of the entrance channel or browse near the left bank where there is the Lighthouse of Piave Old;On this side the seabed are greater.Neither of the lighthouse extends the Lido di Jesolo.On the left bank of the river there are the dock of the lighthouse, La Nautica from the VI and the tourist port of Jesolo, on the right bank of the Cavallino and Marina del Lighthouse.Dangerous navigation with sirocco." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.585, - 45.478 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 407, - "mapId": "VE_044", - "name": "DARSENA DEL FARO - LIDO DI JESOLO", - "contacts": [ - "0421 210290 Capitaneria", - "0421 971787 Direzione Porto" - ], - "description": "It is advisable to stay in the center of the entrance channel or browse near the left bank where there is the Lighthouse of Piave Old;On this side the seabed are greater.Neither of the lighthouse extends the Lido di Jesolo.On the left bank of the river there are the dock of the lighthouse, La Nautica from the VI and the tourist port of Jesolo, on the right bank of the Cavallino and Marina del Lighthouse.Dangerous navigation with sirocco.\n\nThe Sile river rises for just over 500 m and on the right is the mouthpiece placed between the heads of two piers.Moor only small boats.", - "slips": 100, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.58416667, - 45.48233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 408, - "mapId": "VE_100", - "name": "NAUTICA DAL VI\u2019 - LIDO DI JESOLO", - "contacts": [ - "0421 971486 Nautica Dal Vì", - "www.dalvi.it" - ], - "description": "It is advisable to stay in the center of the entrance channel or browse near the left bank where there is the Lighthouse of Piave Old;On this side the seabed are greater.Neither of the lighthouse extends the Lido di Jesolo.On the left bank of the river there are the dock of the lighthouse, La Nautica from the VI and the tourist port of Jesolo, on the right bank of the Cavallino and Marina del Lighthouse.Dangerous navigation with sirocco.\n\nIt is the second dock on the starboard going up the river, about 1 km from the mouth.It is possible to moor in transit even if there are boats given to the Brokerage marina.", - "slips": 450, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.585, - 45.4865 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 409, - "mapId": "VE_037", - "name": "CANTIERI DELLA PIETA\u2019", - "contacts": [ - "041 5200625 Capitaneria", - "041 5477514 Cantieri dalla Pietà", - "www.dallapieta.it" - ], - "description": "Private dock of the construction site from pity in Fusina locality, small sizes and 3 m bottoms.If you come from the port of Lido La Darsena is located before the Fusina dock, on the starboard;If you arrive from Mumocco it's after the dock Fusina, on the left.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.25916667, - 45.4245 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 410, - "mapId": "VE_026", - "name": "DARSENA FUSINA", - "contacts": [ - "041 5200625 Capitaneria", - "041 5470055 Darsena", - "www.camping-fusina.com" - ], - "description": "Private dock to which you access both from the port of Lido and from the port of Malamocco.Coming from the port of Malamocco follow the channel of S. Leonardo then the coastal canal for about 6 mgl, the dock is on the left.While if you reach the Lido port follow the S. Nicol\u00f2 canal - Bacelina S. Marco - Canale della Giudecca - New Canale di Fusina.\n\nHours: from 7 to 23.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.25866667, - 45.42166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 411, - "mapId": "VE_011", - "name": "VENEZIA TRONCHETTO", - "contacts": [ - "041 5200625 Capitaneria", - "041 5207555 Park", - "Vhf 11", - "" - ], - "description": "Tourist landing of the Tronchetto island, near the S. Lucia railway station.To reach the Darsena it passes through the Basin of St. Mark and the Giudecca Canal, turns to starboard by entering the trunk basin;The dock is on the left.It is a mooring without any vocation towards pleasure boating even if it is called Venetian tourist port.Good alternative for unpretentious stop.The two thirds of the moorings to the transit.", - "slips": 60, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.30083333, - 45.43566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 412, - "mapId": "VE_010", - "name": "VENEZIA S. ELENA", - "contacts": [ - "041 5200625 Capitaneria", - "041 5231927 Diporto Velico Veneziano", - "Vhf 11" - ], - "description": "Private marina where you can find\nHospitality for transit.Equipped with wooden piers arranged on poles fixtures in the bottom, water outlets and electricity, alagage stop to 20 tons.To access the marina, turn left from the port of Lido;Pass the foranee dams, follow the left, take the first section of the S. Nicol\u00f2 canal until you enter into the ships channel (towards NW), then direct on the left to the entrance of the marina.In summer it is possible to find some places to the mooring left free from the members partied on a cruise.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 14.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.36716667, - 45.43 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 413, - "mapId": "VE_052", - "name": "PORTO DI LIDO", - "contacts": [ - "041 5200625 Capitaneria", - "Vhf 11" - ], - "description": "It is the entrance to to the lagoon of the city of Venice, possible with every condition of the sea.With haze you try to spot the Piave Old Lighthouse;Visible is the Murano aeroom limit.In the center there is a channel excavated at 11 m.The output current can create some difficulties, but it is safe place to get sails and go safely into the Venetian lagoon." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.43583333, - 45.4185 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 414, - "mapId": "VE_038", - "name": "CHIOGGIA - DARSENA MOSELLA", - "contacts": [ - "041 5508211 Capitaneria", - "041 401565 Circolo Nautico Chioggia", - "041 404993 Darsena Mosella", - "Vhf 8", - "www.paginegialle.it/mosella" - ], - "description": "Access is a s of the Venice lagoon.Built on an island, it is combined with the Lido di Brondolo from a bridge with arches and underwater from a revolving bridge;The Lombardo channel colleague to the Brenta river.The landings are: the Citizen Basin of Vigo, managed by the Master's office, where pleasure boats can moor parallel to the dam;The Darsena Moselle, in Sottomarina, where pontiens wanked by the homonymous hotel;Move especially sailboats;In the internal port there are few spaces but in transit you can flank to fishing vessels;At Sporting Club, modern Marina in city center with all services and moorings.\n\nFor transit the sailboats are privileged.", - "slips": 153, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.2925, - 45.223 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 415, - "mapId": "VE_023", - "name": "CHIOGGIA - SPORTING CLUB", - "contacts": [ - "041 5508211 Capitaneria", - "041 401565 Circolo Nautico Chioggia", - "041 400530 Sporting Club", - "www.darsenalesaline.it" - ], - "description": "Access is a s of the Venice lagoon.Built on an island, it is combined with the Lido di Brondolo from a bridge with arches and underwater from a revolving bridge;The Lombardo channel colleague to the Brenta river.The landings are: the Citizen Basin of Vigo, managed by the Master's office, where pleasure boats can moor parallel to the dam;The Darsena Moselle, in Sottomarina, where pontiens wanked by the homonymous hotel;Move especially sailboats;In the internal port there are few spaces but in transit you can flank to fishing vessels;At Sporting Club, modern Marina in city center with all services and moorings.", - "slips": 350, - "vesselMaxSize": { - "maxLoA": 24.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.27916667, - 45.22416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 416, - "mapId": "VE_040", - "name": "MARINA DI BRONDOLO", - "contacts": [ - "041 5508211 Capitaneria", - "041 490950 Club Marina di Brondolo", - "www.marinadibrondolo.it", - "Vhf 9" - ], - "description": "From Chioggia following the Brycles of the Lombard Canal and passed the commercial port - to S - you reach the Grand Conca of Chioggia.With dimensions of 11.50 x 10.50 m and always in operation, it allows you to join the Venice lagoon to the Brenta and place the boats directly into the docks of the Brightol Marina.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 18.0, - "maxH": 1.8 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.27183333, - 45.18233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 417, - "mapId": "VE_039", - "name": "BRENTA BOAT SERVICE", - "contacts": [ - "041 5508211 Capitaneria", - "041 490033 Direzione Darsena", - "Vhf 9" - ], - "description": "About two mgls inside the mouth of Brenta, on the starboard for those who enter, there is the private dock Brenta Boat Service.Fishing limited to 2 m If access takes place from the Brenta, while you can reach the arrival from Chioggia even with boats with greater draft.From Chioggia take the outer Lombardo channel and then left after the new Brawl Conca navigate for 200 m the Brenta up to the water.", - "slips": 80, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.27416667, - 45.18183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 418, - "mapId": "VE_029", - "name": "MARINA NUOVA DI PORTO LEVANTE", - "contacts": [ - "0426 330289 Capitaneria", - "0426 666047 Sig. P. Comunian", - "www.marinadiportolevante.it", - "Vhf 9" - ], - "description": "The marina is reached by sailing inside a parallel briccole theory to the cliff of the Levante Po channel.It is moored in pontoons protected by a cement quay.It is a well-equipped marina.Inside the canal the vessels and the finance guard after which a private dock offers shelter to small boats.", - "slips": 530, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.3265, - 45.04566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 419, - "mapId": "VE_002", - "name": "MARINA DI PORTO LEVANTE - PORTO TURISTICO", - "contacts": [ - "0426 330289 Capitaneria", - "0426 666047 Marina", - "www.marinadiportolevante.it", - "Vhf 9" - ], - "description": "The marina is reached by sailing inside a parallel briccole theory to the cliff of the Levante Po channel.It is moored in pontoons protected by a cement quay.It is a well-equipped marina.Inside the canal the vessels and the finance guard after which a private dock offers shelter to small boats.", - "slips": 530, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.368, - 45.05166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 420, - "mapId": "VE_003", - "name": "ALBARELLA", - "contacts": [ - "0426 330289 Capitaneria", - "0426 330371 Albarella Spa", - "www.albarella.it", - "Vhf 9" - ], - "description": "An impressive water tower, 52 m high and equipped with ring terraces is a conspicuous point to combine albarella.Referring to the tower, staying on a backdrop not less than 5 m.Direct to the mouth of the cliffs (45 * 04.7 N - 12 * 21.9 e) where two red and green lights are positioned.Then follow the channel consisting of two dams and delimited by concrete poles to be kept at 20-30 m on the left.Proceed until you see the harbor mouth.", - "slips": 455, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.36033333, - 45.062 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 421, - "mapId": "FR_016", - "name": "SANTA CROCE DI TRIESTE", - "contacts": [ - "040 676611 Capitaneria", - "Vhf 16" - ], - "description": "The marina is located at 3 mgl to Sistiana, is enclosed between a four-arm pier and has a hundred boats;The mouth is aimed at NW.Reported with light to green light in pier, the marina is home to the inner quay fishing and pleasure boats.Not recommended for the transit and with boats from the draw upper 2m.", - "slips": 100, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.68883333, - 45.7265 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 422, - "mapId": "FR_015", - "name": "SISTIANA", - "contacts": [ - "040 291207 Diporto Nautico Sistiana", - "040 299858 Cupa Yacht", - "040 291213 Soc. Naut. Pietas Julia", - "Vhf 16" - ], - "description": "Small natural inlet surrounded by a series of heights, recognizable for stone quarries, opened on the hills immediately to itself.There are several piers for mooring managed by associations: Circolo Nautico Pietas Julia, Cupa Yacht Club, a company Nautical Bay of Sistiana Bay, Sistiana Association 89. For the transit there is a quay adjacent to hauling.The bottom is on 4 m and the anchor is not recommended due to a sandy sandy bottom.", - "slips": 600, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.62666667, - 45.76683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 423, - "mapId": "FR_014", - "name": "DUINO", - "contacts": [ - "040 208189 Circolo Velico Duino" - ], - "description": "Villas and colored houses, on the promontory dominated by the greenery and a stone villa obtained from a bunker protect the douin marina basin which is under the trilical antennas of Mount Hermada.The marina is frequented by fishermen.In summer it is very crowded for a small slide reachable by car.The inner part of the basin is managed by the Velico circle.The low backdrops of about 2 m, the restricted space of the pelvis, make the marina access only to carry out the formalities to go by sea to Slovenia and Croatia.Attention to the clenched rocks around the head of the pier;Turn a lot off with a wide margin of water.", - "slips": 82, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.59683333, - 45.77333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 424, - "mapId": "FR_013", - "name": "VILLAGGIO DEL PESCATORE S. MARCO", - "contacts": [ - "040 208020 Società Nautica Laguna", - "040 208432 Polisportiva S. Marco", - "www.polisportivasanmarco.it" - ], - "description": "Artificial canal port to the mouth of the Timavo with entrance to about 350 m from the light on the head of the duino pier.Long port 400 m and 50 m wide, oriented by N - S. On the side of the port there are three second three channels.", - "slips": 1230, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.5865, - 45.778 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 425, - "mapId": "FR_038", - "name": "GRADO", - "contacts": [ - "0431 80050 Capitaneria", - "0431 81706 Lega Navale Italiana", - "Vhf 16" - ], - "description": "Conspicuous point is the bell tower in the center of the distance visible town.The port consists of a straight channel that enters into the town and ends with two docks.Not recommended access to strong winds from the MeridiOnal quadrants.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 12.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.3685, - 45.6765 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 426, - "mapId": "CA_111", - "name": "PORTO PAONE", - "contacts": [ - "081 206133 Capitaneria" - ], - "description": "Natural creek with very narrow access and high and rocky banks, located in the part s of the Nisida islet, strictly reserved for military and police naval units.", - "seaFloor": { - "minDepth": -10.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.16, - 40.79316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 427, - "mapId": "FR_027", - "name": "MARINA LE COVE", - "contacts": [ - "0431 82596 Marina Le Cove", - "Vhf 16 - 15" - ], - "description": "It is a private dock, situated on the grade coast.With day access you need to pass the revolving bridge (0431 80006), skirt the hatch island, turn to the right and proceed until the mouth of the channel then turn left.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.402, - 45.68216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 428, - "mapId": "FR_010", - "name": "DARSENA SAN MARCO", - "contacts": [ - "0431 81548 Darsena", - "www.darsenasanmarco.it", - "Vhf 16 - 69" - ], - "description": "Entering the grade lagoon is turned to the right towards the inhabited, to the left of the revolving bridge that interrupts the canal, opposite the fishing port, a green lighthouse at the top of the pier reports the beginning of the Belvedere canal (wide 50 m) allThe navy moorings are located.The floating pontoons are owned by the S. Marco Nautical Center and managed by the Adria Ship.Next to the headquarters of the Circolo there is the bank of Riva Mosconi where the boats in transit for a period of no more than 48 hours can free.", - "slips": 100, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.386, - 45.6865 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 429, - "mapId": "CR_010", - "name": "CERVAR PORAT", - "contacts": [ - "052 436661 Marina" - ], - "description": "The entrance to the Cervar Porat (Cervara) ANSA for those coming from the south is hampered by the submerged cliffs of the benches of Skolj and Civran.The dangers are reported by north cardinal boe and respectively west.At night the dangerous area is in the red sector of the Lighthouse of Capo Rt (15s, 5 m) and the Isolotto Barbanar (5s, 5 m).The northern part of the bay is a good rawed anchorage, with a restaurant, while south is the modern marina.", - "slips": 400 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.59683333, - 45.27783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 430, - "mapId": "CR_011", - "name": "POREC", - "contacts": [ - "00385 052 451913 Marina" - ], - "description": "Permanent entrance port also equipped with a hospital. It is located at the south root of the peninsula on which the city of Porec with the Euphrasius Basilica extends. You can access four distinct steps between the dangers of the Dry Meja at about 1.2 miles northwest of the port, from the dry pical extended until half a mile off the port, and from the dry Bekarija south of the Sano San Nikola. At night these dangers are covered by the red sector of the Barbanan islet. The San Nikola islet is a good night to the harbor with a bad weather from the south west. The Marina Parentium (45 * 12.3 N - 13 * 35.2 s), with more limited reception capabilities, is located about a mile and a half further south in the Molandarija creek, between Plava and Zelena Laguna, both discreetly reduced from the south. The entrance is hindered north by the rocky rock and south by the dry Zontuja.\n\nOther Ridoved: Interesting bathing berths, to be carefully approaching for rocks with rocks, are those in the bays that on the ground host the campsites of Funtana and Valkaela who have small piers." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.593, - 45.22466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 431, - "mapId": "CR_012", - "name": "VRSAR", - "contacts": [ - "00385 052 441064 Marina" - ], - "description": "Orsera is a modern marina with backdrops of 4-5 meters and all the services, well protected by the Juraj islet (S. Giorgio) which has a good background for anchoring, but opened north west.The fuel distributor is on the south-east pier.At night it is accessed in the white sectors of the galiner islet lighthouse.The passage to the south is also delimited by the west cardinal signal on the western end of the long islet.Calling for mooring via VHF radio (channel 17) operations are facilitated.", - "slips": 270 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.595, - 45.15216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 432, - "mapId": "CR_013", - "name": "LIMSKI KANAL", - "description": "The entrance to the Lemme canal, crossed by navigation due to fish farms, does not present difficulties coming from the south, from the north instead one must pay attention to the medes on the dry Kuvrsada and Lim.The safe passage is in the middle keeping up just a little south. On the left bank of the canal there is the Valalta marina (tel. 052 811033) with a bar and restaurant and a naturistic complex.Some buoys in the bay Soline allow the stop in front of the campsite.In the summer months in the Lemme Canal and in the Draga Valley there is the phenomenon of the \"Stigazzi\" or \"Sesse\", sudden lowering and raising the water level, even of 2 meters, after strong wind blows from the south and west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.60866667, - 45.12466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 433, - "mapId": "CR_014", - "name": "ROVINJ", - "contacts": [ - "052 811132 Capitaneria", - "052 813133 ACI Marina" - ], - "description": "The bell tower of the church of S. Eufemia (copy of that of St. Mark in Venice) which dominates the old town perched on a rock spur is the conspicuous point that first appears from a distance. At night the lighthouse on the Punta S. Eufemia indicates entry (Lamp 4S, 7 m). The port of Roivinj (Rovinj) is protected the bora and scirocco, but exposed to the mistral and Libeccio. With a time from Libeccio the undertake is sensitive in the port, to the point of not recommending the mooring. The commercial port is further north and has a quay reserved for ferries and a part to fishing boats, there will also be there larger or transit yachts. The Rovinj navy is protected by the Katarina island and is very popular even from large yachts that dock on the outside of floating docks. Near Rovinj, Figarola's anchors are reported (to the northeast of the islet on a sandy bottom of goodwill) and the red island (Crvenj Otok) today frequented by nudists, in the past he hosted a Benedictine convent built on ruins of Roman times and finally, east of Cape Kurent, of Vestar (Porto Vestre). The Marina Parentium (45 * 12.3 N - 13 * 35.2 s), with more limited reception capabilities, is located about a mile and a half further south in the Molandarija creek, between Plava and Zelena Laguna, both discreetly reduced from the south. The entrance is hindered to the north by the Race Scoglio and the south by the dry Zontuja for refueling you have to go north of the city (see map). East of the profile of the island of Santa Caterina there is a basext indicated by an east cardinal signal.", - "slips": 380, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.63183333, - 45.08016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 434, - "mapId": "CR_015", - "name": "BRIJUN", - "description": "The Brijuni islands are mainly two: the minor to the north and the largest south separate from the narrow canal with rocky bottom and surrounded by many islets, rocks and crockets.The small archipelago is bordered to the north by the dried Kabula signposted by a North Cardinal Meda (sparkling, 9 m), and to the south by the peak lighthouse (ISO, 4S, 11 m) on Brioni Maggiore.It is a small paradise that has long been unexplored because the summer residence of Marshal Tito.Today a small and expensive marina in the village of Brioni, between the Carmen and Saluga tips, in front of Fazana, allows an interesting stop and the possibility of a visit to the park full of exotic plants, deer, downs and roe deer.\nThe best (prohibited) anchors are those of Mikula on Brioni Minor (Mali Brijun) and Porto Madonna on Brioni Maggiore (Veli Brijun), in Levante of the homonymous islet.It is accessed to pass south of Vrsar and avoiding its dried in the north and later those of Poier." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.74883333, - 44.91616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 435, - "mapId": "CR_016", - "name": "PULA", - "contacts": [ - "052 222037 Capitaneria", - "052 219142 ACI Marina" - ], - "description": "Pula's avemport opens after the flap of Prostera and is protected by a frangiflutti semi-cracked pier.The passage is north towards the tip, at night it is reported by two lights (3S, 6 m).Inside the anchorage and sailing is prohibited.To enter the internal port at the bottom of the bay pass between the Katarina islands (red light) and Andrija (green light).It is good to keep them off by the Uljanik shipyard to avoid outgoing traffic.Yachts can stop on the north side of the Gat Rijeka pier for the handling of customs and entry formalities, but they must then moor to the marina.", - "slips": 120 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.81466667, - 44.87183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 436, - "mapId": "CR_017", - "name": "VERUDA", - "contacts": [ - "00385 052 204034 Marina di Veruda" - ], - "description": "Veruda Bay south of Pola is a real natural harbor ravished by the winds and protected by the storm.To enter abundantly the verudella tip (light to Lample, 3s, 6 m) and its slums that extend south east. Entering the starboard is the marina.On the western part of the bay there are hotels and restaurants and a landing for small natants. In the bay of Soline, quite repaired, in 10-15 meters of water with a mediocre background.A payment is required for anchorage.\n\nOther Ridoved: from Bora Near Paraggi there is the Baietta di Cintinera, only for small boats, protected west by the frasker islet;From Scirocco just further south the Bay of Paltana opens up (Porto Olmo Grande) with the village of Banjole at the end;With stable time you can also anchor in Valmizeja (Porto Olmo Piccolo).", - "slips": 480 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.8345, - 44.83033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 437, - "mapId": "CR_230", - "name": "VELI DRVENIK", - "description": "The port of the island of Veli Drvenik is well raveroed, only the mistral raises a little maretta inside.The north quay is for the ferry, there are no dead bodies for mooring, there is a restaurant and various shops.Access to the Baia di Mala Luka is hampered by a fish farm.The two loops are well riddened anchors in 3-5 m of water.On the southern coast of the island the Anchorages of Solinska, Vela Rina and Krknjas are rewarded by Bora, but are open to the sea." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.12783333, - 43.45533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 438, - "mapId": "CR_232", - "name": "DONJA KRUSICA", - "description": "Located in the north coast of Solta, it is not a very safe bay with the winds of the first quadrant.Anchor on sand backdrop and algae in 5 m of water.The breakwater kidnapped the small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.269, - 43.413 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 439, - "mapId": "CR_233", - "name": "ROGAC", - "description": "It is well returned behind the ferry quay, but the dead bodies are missing and there are no grounds.There is a restaurant inwards" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.30183333, - 43.4 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 440, - "mapId": "CR_234", - "name": "NECUJAM", - "description": "The Bay of Necujam is open to the north but with some possibilities to be shocked in the lateral hans.With time to get worse from the north it is better to try to reach the port." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.3215, - 43.38833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 441, - "mapId": "CR_235", - "name": "STOMORSKA", - "description": "The bay offers a pleasant anchorage but suffers the bora and the mistral.The banks are punched on the east side and surrounded by houses, the pier is always busy and nearby there is a wreck.The berth's backdrop is 7-15 m.Pay attention by entering the basxofondo on the east tip." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.3525, - 43.37566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 442, - "mapId": "CR_236", - "name": "GORNJA KRUSICA", - "description": "Anchor in a bay surrounded by greenery on sand and algae backdrop.It is open to the east." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.37016667, - 43.35766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 443, - "mapId": "CR_237", - "name": "LIVKA", - "description": "Bay returned by the winds of the northern sector.Anchoring suffers from the passage of ferries and fishing boats in the Vrata splitska." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.3905, - 43.32766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 444, - "mapId": "CR_238", - "name": "STRACINSKA", - "description": "Of the two coves the one to the north is occupied by a fish farm, the one in the west is frequented by fishermen.The backdrop in the center of the bay is 20 m and quickly dates back, so attention must be paid to anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.3625, - 43.33333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 445, - "mapId": "CR_239", - "name": "JORIA", - "description": "Cala Disabited with a backdrop of 5-8 m, suitable for bathing anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.2925, - 43.3625 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 446, - "mapId": "CR_240", - "name": "TATINJA", - "description": "The bay is righted by the north but has high backdrops unsuitable to anchor.In the east of the east is a restaurant, in the west of some houses.On the prolongation of the promontory that the divides there is a islet surrounded by a dry." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.2815, - 43.36533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 447, - "mapId": "CR_241", - "name": "POGADIGA", - "description": "Bathing anchor on a high bottom." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.22916667, - 43.38116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 448, - "mapId": "CR_242", - "name": "SESULA", - "description": "Open west creek that has a wild and lonely wooded frame.The anchor is protected on a backdrop of 6-8 m, a bad contractor.A wreck lies at the bottom of the last cove.To enter this bay you need to pay attention to the dry that extends to the west of the Kamicic Scoglio." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.206, - 43.3905 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 449, - "mapId": "CR_243", - "name": "MASLINICA", - "description": "To pay attention to the dry that extends to the west of the Kamicic Scoglio.Maslinica is open to the west but protected by all the other directions from a handful of islets including the largest, Balkum is a great bora.There is a fishing village, a shop and two restaurants.There are a dozen dead bodies for mooring and others are under construction, as well as ground services." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.20116667, - 43.39733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 450, - "mapId": "CR_245", - "name": "SUTIVAN", - "description": "Marina on the north coast of Brac which allows the ferry shuttle from Split.Very busy with tourists.It is a supply point of water and food for the boats that are in the seaside anchorages of the North Coast of Brazza.The mooring in port is possible at night when there is no ferry, but not advisable because of the sewage discharge.Better to move to the west to the merca jetty, a couple of miles later on the coast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.48, - 43.38816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 451, - "mapId": "CR_245", - "name": "SUPETAR", - "contacts": [ - "021 631116 Capitaneria" - ], - "description": "It is the most developed and important country of Brac and lively tourist center.In port the frangiflutti serves as a stop to the ferry.When there is a place you can moor in the head of the internal pier.The close is good but not from the North West.There are many hotels, bars, restaurants and shops and can be refurbished with water and fuel." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.55233333, - 43.38716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 452, - "mapId": "CR_246", - "name": "SPLITSKA", - "description": "The bay to the east is inhabited and finged and can be combined because the bottom is 3 m.The bay to the west is an anchor on the bottom of mud and sand of 7 m.Both bays are open to the northern winds." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.60366667, - 43.3825 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 453, - "mapId": "CR_247", - "name": "POSTIRA", - "description": "Fishing village with a pier reborn local boats.In summer it is difficult to find a place.There is a market of fruit and vegetables and various grocery stores." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.63283333, - 43.38016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 454, - "mapId": "CR_248", - "name": "PUCISCA", - "description": "For the proximity to the white marble quarries this natural harbor is still used as the load and transport of the precious material and survives the tradition of the stonemasons in the village.The east fall is exposed to the bora, the one to the west allows the most rawn mooring and on the dead body to the first part of the quay, leaving the ferry post." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.73833333, - 43.3635 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 455, - "mapId": "F_CA_010", - "name": "PORT D\u2019AGAY" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.8665, - 43.4225 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 456, - "mapId": "F_CA_029", - "name": "SAINT RAPHAEL- S. LUCIA", - "contacts": [ - "0033 04 94953430 Capitaineria", - "Vhf 9" - ], - "description": "Tourist port of great capacity with\nTwo separate entrance docks;the one\nS opens between the tip des Lyons and the\nDam W which has a red light (2 occ.\nEvery 6 sec.) While the Lyon de Mer is the name of the islet in front with an isophase light, 4 sec.The 6-7 m backdrop progressively drops to 2 m to the root of the various panels and at the bottom of the capacity which is between the two basins.Input N is signaled by the opposite side of the same dam with a green lightning light (4 sec.) And with red (in Lample, 4 sec.) On the breakwater No. Both entrances are tight and care must be taken.Not recommended the entrance with strong wind from s e.", - "slips": 1542, - "temporarySlips": 359, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.7755, - 43.412 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 457, - "mapId": "F_CA_036", - "name": "SAINT RAPHAEL - VIEUX PORT", - "contacts": [ - "0033 04 94951119 Capitainerie", - "Vhf 12" - ], - "description": "The Vieux Port dedicated mainly to fishing boats is located at the edge of Fr\u00e9jus beach, near the Foce del Garonne inside the town of Saint Raphael.A 10 ton lifting crane and the fuel distributor are on the left entering.The backdrop is 5 m and decreases from the street.The entrance, quite tight, is signaled by a green light (3 flashes, 12 sec.) And is not recommended with Mistral that creates strong senses.", - "slips": 230, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.762333333, - 43.42283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 458, - "mapId": "F_CA_021", - "name": "PORT FREJUS", - "contacts": [ - "0033 04 94826300 Capitaneria", - "Vhf 9" - ], - "description": "It is less than a millet of St.Raphael's W.The entrance is visible between the naval base hangars and at night is signaled by a red light on the pier s (4 flashes, 15 sec.).The sandy bottom is quite low in front of the harbor and is 3.5 m to the mouth.The sirocco sea makes entry dangerous.It is good instead of Mistral.Fuel dispenser and distributor area on the right by entering.50 ton and 10 ton mobile cranes.", - "slips": 706, - "temporarySlips": 40, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.751666667, - 43.41966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 459, - "mapId": "F_CA_017", - "name": "PORT DE ST-AYGULF", - "contacts": [ - "0033 04 94527452 Capitaineria", - "Vhf 9" - ], - "description": "Marina with a limited entrance from a bench of mobile sand (inside the backdrop varies from 4 to less than 2 m) which is located in N of the homonymous tip and the village of Villepey.Red light with sparkling light, capacity 6 miles to head to the pier.There is water and electricity, mechanical assistance.Almost impossible, in summer season, enter and find a place", - "slips": 239, - "temporarySlips": 2, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.730166667, - 43.39333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 460, - "mapId": "F_CA_020", - "name": "PORT FERREOL", - "contacts": [ - "0033 04 94495156 Sporting-Club", - "Vhf 9" - ], - "description": "Private marina Located just over half a mile from the Punta des Issambres, in the middle of the rocks of Punta de la Calle.It is difficult to access (follow the detection 265 degrees) for a dry on the tip.On the left, in front of the capacity, the backdrop is 4.5 m to lower up to 1.2 m inside.The places available for traffic are a dozen.A red light at Lampi (4 sec.) Report the dam head.Not recommended with wind from e", - "slips": 130, - "temporarySlips": 8, - "seaFloor": { - "minDepth": -1.7, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.719166667, - 43.35883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 461, - "mapId": "F_CA_027", - "name": "SAN PEIRE LES ISSAMBRES", - "contacts": [ - "0033 04 94491029 Ufficio del porto", - "Vhf 9" - ], - "description": "In part n of the Gulf of Bougnon,\nJust to W of Punta Garonne, yes\nOpens this marina, ravished by\nAll twenty except from the Mistral.The approach\nDay is on the great hotel clearly visible, while at night there is the green light at the head of the dam (2 occurs, 6 century).The dangers of the dry in L'Huile and Sardinaux are in the red sector (from 289 to 356 degrees).Inside the harbor the bottom is 3 m along the dam and in the head of the brushes, to descend less than 2 m towards the ground quay where the capacity is located, the shopping center, the yard with 12 ton cranes.The distributor is on the left as soon as you enter.", - "slips": 443, - "temporarySlips": 10, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.683833333, - 43.3395 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 462, - "mapId": "F_CA_018", - "name": "SAINTE MAXIME", - "contacts": [ - "0033 04 94962055 Capitaineria", - "Vhf 9" - ], - "description": "It is located after about two miles entering the Gulf of St. Tropez from the east after the Punta des Sardinaux and the dry in L'Huile (Meda Cardinale S with sparkling light and to Lample, 15 sec., Mg 12).Conspicuous point The railway bridge over the Prick River.The entrance (green light to Lample, 3 sec.) To the two ports of the port, a private (right) and a public (on the left), separated by a pier where the quotarian and the fuel station is located, is orientedA W. The Bassofondo di Punta Gaillarde limits the backdrop in front of the port (4 m).Inside the basin in n is the public one (389 places), the basin s is private (375 seats).", - "slips": 764, - "temporarySlips": 30, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.6365, - 43.30583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 463, - "mapId": "F_CO_010", - "name": "PROPRIANO", - "contacts": [ - "0033 4 95761040 Sas Yacht Club" - ], - "description": "The port of Propriano is located at the end of the Gulf of Valinco, the first of the great Golfi of Costa W of Corsica, coming out of the mouths of Bonifacio with route Number of night is signaled by a headlight to Eclisse, 3 every 12 sec., Scope 12 miles. The port has a part dedicated to commercial traffic and fishing that meet coming on the tips (ISO green light, 4 sec., 10 miles range, on the head of the Frangiflutti n (which has the danger of the rocks of the Scogliu Longu ) And a recreational marina (lightning light, 12 sec., 6 miles range).\nThe capacity of the latter is 380 seats on a dead body and floating pontoons, of which fifty dedicated to passage boats. The backdrop varies from 4 to 2.50 m. There is an anchorage prohibition outside the port (moreover the assignment is very sensitive) to which it is good to stick. The capacity is on the pier s and its rather precise employees also towards the payment of tolls. In the past there were probably cases of \"joints\" of the usual smart, so the documents were withdrawn to all the passage boats and returned only after the payment of the due.\nAll services are available near the port and shops of the adjacent Avenue Napoleon. Depending on the weather situation, two anchors in the Gulf of Valinco are on the Costa N, in Porto Chicken and on the Costa S in the bay of Campomoro, where the seabed are conspicuous, 15-20 m, also near the ground.", - "slips": 429, - "temporarySlips": 59, - "seaFloor": { - "minDepth": -2.4, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.901666667, - 41.67883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 464, - "mapId": "F_CO_003", - "name": "BONIFACIO", - "contacts": [ - "0033 4 95731007 Capitaneria", - "Vhf 9" - ], - "description": "In the end of the Corsica between the Pertusato Capo (Lighthouse with Lighting Light (2), Period 10 sec. Capacity 24 miles) and boss Feno, about 2 miles from both opens the Bonifacio fjord, a true wonder of nature, practicable By day and night with any time. The entrance is reported by the light of the Madonnetta (red isophase, period 4 sec., Reach 6 miles). The green light is further on the cacavento tip. Attention to the traffic of ferries and numerous tourist boats and, at the entrance of the fjord, a straight, to the rock of the horse, to the left, at the Rocher du Biscaien. In part n of the fjord about a mile, two furious are opened: a said of the arenella with backdrop immediately decreasing from 4 to 1 m, just behind the red head of the same name; The other the chain galley, with an average backdrop on 8 m up to two thirds from the entrance, is just before the maritime station of the commercial port. Immediately straight, entering the port, past the commercial airport, give bottom to the even larger boats. The capacity (VHF 5) with services is at the bottom of the port. The distributor is on the right, about halfway, before the part of the fishing naviglio. A construction site with alaggage and 30 ton cranes is on the left, just before the pontoons dedicated to pleasure. Along the casting s numerous public places, bars and restaurants, a laundry room, shops and two supermarkets. In the summer season, at night the usual discomfort is assured for those who sleep by boat (also on the opposite side of the port); It is a little better in this regard in the two entrance halls.", - "slips": 450, - "temporarySlips": 170, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.2, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.1465, - 41.38516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 465, - "mapId": "F_CO_008", - "name": "PORTO VECCHIO", - "contacts": [ - "0033 4 95701793 Capitaneria", - "Vhf 9" - ], - "description": "At the bottom of the omonima bay, deep about\nfive miles, which opens between the tip\nby St. Cyprien a n and a s the point of Chiappa, with the overlooking Chiappino rock.Among the two tips about half there is the pecorella rock.By day you can pass to both N and S of this rock and boats also between the Punta Chiappa and the Chiappino.To go into the gulf it is good to follow the alignments provided, that is: first the alignment of 274 * between the light of Pozzoli to N of the tourist port and the boa of Punta Benedetto, about by channel, then by 225 * up to the green buoyFinally, for 254 *.", - "slips": 460, - "temporarySlips": 150, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.287666667, - 41.5905 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 466, - "mapId": "F_CO_011", - "name": "SOLENZARA", - "contacts": [ - "0033 4 95574642 Capitaneria", - "Vhf 9" - ], - "description": "The port is located at the mouth of the River La Solenzara and is problematic in access to considerable fish boats with twenty and wave of the I and II dial (backdrop between the two piers at the entrance of 3 m).In addition to red and green lights it is also signaled by a light violet fixed at the end of SW SW of the entrance there is to be paid to the bottom with rocks.A N of Solenzara a cardinal signal and on white sparkling buoy, period 10 sec., Indicates the presence of the terminal of the oleodotto and the relative cylindrical mooring boees.By day, ship sheds and the roofs of other buildings are clearly visible.", - "slips": 460, - "temporarySlips": 150 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.404833333, - 41.85583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 467, - "mapId": "F_CO_002", - "name": "BASTIA", - "contacts": [ - "0033 4 95313110 Capitaneria", - "Vhf 9" - ], - "description": "It is the main port of the tourist flow that travels on ferries from Italy. The commercial port (St. Nicolas) does not care about the dealer who has at his disposal the new Marina di Port toga to N of the commercial port, or the small old port a, in the asset of the celery repaired by two piers, the Genoese one with The capitaneria from Ne and the dragon pier from Levante, with the lighthouse (in white and red sectors, 4 flashes, 12 sec period, range 12 miles). It is a marina in the center of the old city, very suggestive, dominated by the church of Saint Jean Baptiste, a Baroque period (1666), symbol of the city. In summer it is also very busy on the ground, with the usual bailamme of restaurants, coffee, ice cream parlors, artisan markets, etc. Better avoid it if the intent is to sleep and not spend the night at the disco. The old port is also to be avoided with libeccio loud coming because the gusts falling from the overlying hills accelerates greatly fell from above with an accentuated fury. Wind speeds have been detected even of seventy nodes in port! If you have to try to enter those conditions, better to go into a hood in the mense south of the citadel as they do for hours even ferries or, better yet, get aft and seek refuge to Elba, thirty miles. There is water and current in a quay. The fuels supply occurs from a distributor on the pier. At the pigalle bar you can cater with ice, and nautical supplies can be purchased both on the port and in the various shipchanders of the walk to the sea between the two ports.", - "slips": 267, - "temporarySlips": 267, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -4.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.455, - 42.69483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 468, - "mapId": "F_CO_009", - "name": "PORT TOGA", - "contacts": [ - "0033 4 95349070 Capitaneria", - "Vhf 9" - ], - "description": "It is the new Marina di Bastia with a detached office of the property with services, at the entrance on the right.Access to the port is tight (about 25 m), Dr. 4 Me hardly accessible with libeccio strong, or wave from E. Two aims on the external casting help for entry, day and night (the alignment is of155.7 *).The alaging stop with 20 ton cranes is right at the bottom of the port.The marina is very close to the new part of the city and the commercial port.Also convenient for food supply.", - "slips": 375, - "temporarySlips": 375, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.2, - "maxDepth": -4.6 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.456333333, - 42.71016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 469, - "mapId": "F_CO_007", - "name": "MACINAGGIO", - "contacts": [ - "0033 4 95354257 Capitaneria", - "Vhf 9" - ], - "description": "Macing is usually a point of arrival\nAnd starting point for a cruise in Corsica for those coming from Ligurian Levante, Tuscany and Elba Island.A group of Corsican Chief Shepherd Homes that turned to the post-war period for tourist needs in a pleasure marina, a refuge much appreciated in the event of Mistral.The entrance is tight and difficult with strong wind from n and ne, which causes reompetances even inside the dock.Furthermore, the entrance tends to cover themselves to pay attention to the tip just passed the breakwater to N.", - "slips": 580, - "temporarySlips": 250, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -1.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.453833333, - 42.96216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 470, - "mapId": "F_CO_012", - "name": "SAINT-FLORENT", - "contacts": [ - "0033 4 95370079 Capitaneria", - "Vhf 9" - ], - "description": "The entrance to the port has a white and red light, 2 eclipse, period 6 sec.The sector covered by red is that of the drying dry (red light, 2 flashes, period 2 sec., 2 miles capacity) whose clipstick surmounted by a turret is about 400 m per n W from the entrance to the port.Here the backdrop is 3 m and the mouth tends to cover themselves for which it is constantly dragata.The basin entering the left still over 3 m, while then goes down to 2.50 m in the internal basins and even less at the bottom of the carenaggio area.", - "slips": 820, - "temporarySlips": 270, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.294833333, - 42.67983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 471, - "mapId": "SI_152", - "name": "MARINA DI TRAPANI", - "contacts": [ - "0923 593275 Capitaneria" - ], - "description": "The city stands on a low ground language that from Mount S. Giuliano stretches to W by doing to the rada on which there is the natural port.The fishing basin is w of the merchant port between the ancient lazaretto, the capuchin cliff, the mainland and the antemural cliff in S. here there are floating piers of the naval alloy.The Ronciglio quay is reserved to the transit, to the right entering, after the green light (contact the capacity).The tourist arrival has limited backdrops.To visit the medieval village of EICE 12 Km from Trapani from where you can admire the entire archipelago, the islet of Motya, one of the latest avanposts of the Phoenicians, and the Saline still active.\n\nNew Marina located inside the harbor in the Ponente area.The arrival consists of the ex-submarine quay on which floating piers were set up." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.50933333, - 38.00783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 472, - "mapId": "LI_073", - "name": "QUERCIANELLA", - "contacts": [ - "0586 753104 Capitaneria", - "0586 491432 Circolo Nautico" - ], - "description": "To the tower of Romito, exclusively summer landing, to be avoided with Libeccio or Ponente.Access channel reported by buoys for 50 m.", - "slips": 100, - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -1.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.36316667, - 43.45816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 473, - "mapId": "LI_070", - "name": "FOCE DEL CHIOMA", - "contacts": [ - "0586 753104 Capitaneria", - "0586 754610 Porticciolo Chioma Spa", - "Vhf 74" - ], - "description": "Looking for the mouth of the stream, with beans on the left left and only partly on the right.Avoid entry with libeccio, west and sea format.In summer an entrance channel with buoys is set up." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.3785, - 43.44616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 474, - "mapId": "LI_071", - "name": "SAN FRUTTUOSO", - "contacts": [ - "0185 770032 Capitaneria", - "0185 729080 Uff. Demanio Comune" - ], - "description": "Quay in concession to the municipality, it is possible to moor in Radia on Boe (protected marine area: yellow walls for boats and orange for boats, also in Cala degli Inglesi and to Punta Chiappa).Backdrops from 1 to 3 m;Traversie II and III quadrant.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.1745, - 44.31466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 475, - "mapId": "LI_072", - "name": "LA SPEZIA", - "contacts": [ - "0187 778015 Capitaneria", - "0187 770229 Assonautica", - "338 1454374 Centro Catamarani It.", - "www.assonautica.com", - "www.centrocatamaranitalia.it", - "Vhf 71" - ], - "description": "Porto de Benedetti Tourist, adjacent to the merchant port, for pleasure boats made by La Spezia Asserautica, with floating piers connected to the C. Morin quay, in the historic center.Just beyond, the pier of the Italian Catamarani center with backdrops from 2.50 to 9 m, which can accommodate 12 catamarans.", - "slips": 600, - "temporarySlips": 60, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.83, - 44.1015 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 476, - "mapId": "TO_006", - "name": "LIVORNO SUD", - "contacts": [ - "0586 826098 Capitaneria", - "0586 807354 Circolo Nautico Livorno", - "0586 422780 Cantiere Mare Blu", - "0586 896567 Lega Navale Italiana", - "0586 580529 Il Molo", - "Vhf 9 -13" - ], - "description": "For landing from and the city skyscraper is a good recognition, while coming from s you can see well the great cranes of the Orlando shipyard;From n to s some large tanks appear and at the height of the calambrone canal some smoke.The port has two mouths, a northern and a southern one.Large spaces of the basin are intended for commercial activity.Generally lacks attention to the pleasure, but numerous yards for every type of work, ground storage, mechanics, ax masters, etc.Coming from N to move to W of the drows of the meloria and at the entrance hold in the center.For the pleasure, there is the mediceo port basin managed by the Nautical Club \"Il Molo\", with Backdrops from 2 to 6 m.(contact before entering).", - "slips": 250, - "seaFloor": { - "minDepth": -3.6, - "maxDepth": -11.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.29033333, - 43.54116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 477, - "mapId": "CR_190", - "name": "SIBENIK", - "description": "The Sibenik's industrial port is of considerable importance and you can access the S. Ante channel. The entrance is protected by the old port St. Nicholas. The dry Rozenik between the northern tip of Zlarin and Lupac is reported by a Meda and is on the course of those who are about to enter. In the channel the precedence is for ships that must keep the tip. The anchors are on the north coast in the Anse of Sicily and Capljena. The ANSA of S. Petar south of the city is interdeport. The mooring with dead body is on the quay that runs along the old city where you can visit the magnificent Renaissance cathedral. The refueling of water and fuel is near the ferry pier. The food shops are near the waterfront. It is not close to the twenty of the west that create problems both to stop and at departure. Continuing browsing in the Gulf of Sibenik, which is constituted by the Krka navigable river (average depth 30 m), passes under a bridge whose arcade allows the passage (the height is 27 m) also of large boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.88866667, - 43.73283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 478, - "mapId": "CR_191", - "name": "ZATON", - "description": "Sailing to the north in the Krka canal is located well ravished where you can fill up and go up the sinuous gorges of the river, you arrive at the Prokljansko Jezero, a real lake, deep 11 m, which has interesting and rawy anchors as s.Kate, Beretusa, Mikulandre and Vrulje" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.82616667, - 43.7835 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 479, - "mapId": "CR_114", - "name": "DRAGE", - "description": "Maslincic creek welcomes this fishing village with marina ravished for small boats" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.11316667, - 44.0565 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 480, - "mapId": "CR_115", - "name": "KNEZA", - "description": "Fishing marina at the bottom of a bake with a landing and restaurant.With Bora is not rottoose.The islet of Knezak (the Isola del Count) offers seaside borns riddened depending on the wind.Attention to the low-back signaled north of the island" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.13583333, - 44.0345 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 481, - "mapId": "CR_116", - "name": "MALI IZ", - "description": "Small harbor in the bottom of the Komaseva bay with little place away from a short pier.With Bora it is not protected.The ferry stops in the Vodenjak bay (44 * 00.9 N - 15 * 09.3 and) further south and more protected" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.14283333, - 44.0305 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 482, - "mapId": "CR_117", - "name": "SOLINE", - "description": "Anchor on the west coast of IZ, less frequented also due to the presence of a fish breeding.Sandy bottom with algae.Attention must be paid by approaching from the west for a dry of 2 m" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.06983333, - 44.062 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 483, - "mapId": "CR_118", - "name": "MULINE", - "description": "Bay returned by the wind and the sea, very popular in summer.There is a pier to which you can approach inside and outside (in this case attention to the protrusion of a rock at the end of the first segment of the pier to \u00d3l\u00f3).The anchor is on a good seabed, but the currents in the strait are sensitive.Prtljug anchors (44 * 06.3 N - 15 * 07.2 and) and Pavlesina further south are also protected from bora and less frequented." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.067, - 44.13916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 484, - "mapId": "CR_119", - "name": "CEPRLJANDA", - "description": "Rough bay and protected by two piers.It is very popular." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.11516667, - 44.1295 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 485, - "mapId": "CR_120", - "name": "LUKORAN", - "description": "Open to Bora, returned by Scirocco.The quay is combined.The backdrop is a goodger" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.15133333, - 44.10916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 486, - "mapId": "CR_121", - "name": "SUTOMISCICA", - "description": "Returning from all winds but not from the bora.It is home to the new modern port, Olive Island Marina, of over 200 berths, protected by a forane dam.Radiation anchor on a well-built backdrop.Possibility of refueling (no fuels), ferry to ZARA, TAXI-BOAT.", - "slips": 200 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.16766667, - 44.10283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 487, - "mapId": "CR_122", - "name": "POLJANA", - "description": "Open bay in Scirocco and Levante west of the tip with the lighthouse of St. Petar.There is a combinable quay and a small fishing boat basin." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.1885, - 44.0895 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 488, - "mapId": "FR_007", - "name": "MARINA DI SAN GIORGIO", - "contacts": [ - "0431 66490 Capitaneria", - "0431 65852 Cantieri Marina S. Giorgio", - "www.cantierimarina.it" - ], - "description": "The Marina is located on the right shore (W) of the Corno river and is about 4 km.From the mouth.He is a dock with fixed docks and floating pontiens, all managed by the Saint George shipyards.", - "slips": 270, - "vesselMaxSize": { - "maxLoA": 22.0 - }, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.229, - 45.801 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 489, - "mapId": "FR_043", - "name": "CAPAN RIVER PORT", - "contacts": [ - "0431 620461 Capan River Port", - "www.capanriver-port.it" - ], - "description": "Access is from Porto Buso.Then go up the Lagunare Auss-horn canal for about 5 km.Delimited by Briccole, the dock is on the left at the confluence of the Aussa and Horn rivers, and consists of some fixed docks with water and electricity.", - "slips": 127, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.24266667, - 45.76016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 490, - "mapId": "FR_002", - "name": "LIGNANO SABBIADORO - DARSENA", - "contacts": [ - "0431 71076 Capitaneria", - "0431 70315 Adriatica Marina Spa", - "0431 71821 Darsena", - "Vhf 9", - "www.lignano.com" - ], - "description": "To reach the Marina di Lignano and Aprilia focus on the edge (with white and red stripes with red spherical miraglio) situated at 45 * 39'79 n - 13 * 09 '82 E. from broken for 356 * until before oneBriccole series.Minimum threshold in low tide 2-2.20 m.Dangerous the entrance with sustained sirocco that causes frogs.Follow the briccole line to the entrance, bordered on the starboard from a green meda and on the left from a red light.Here the Marina di Punta Faro and Lignano Darsena arise.\n\nTo access the old dock proceed by half a mile along the channel and after the fuel distributor turn left into a channel reported by two briccole, bounded by an artificial cliff and on the other hand from molesons.The dock is within the town of Lignano.\nForbidden the mooring at the commercial dock from 1 April to 31 October).", - "slips": 470, - "vesselMaxSize": { - "maxLoA": 17.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.14216667, - 45.69733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 491, - "mapId": "VE_020", - "name": "PORTO BASELEGHE - BIBIONE PINEDA", - "contacts": [ - "0421 210290 Capitaneria", - "0431 43686 Mare", - "www.portobaseleghe.com", - "Vhf 9" - ], - "description": "The port is in the Lovi canal in a thick base obstructed by low backdrops.Incoming and outgoing you must follow the path delimited by white and red browns for 1 mile according to the center of the channel.On the right shore there is a docked dock.", - "slips": 400, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.994, - 45.63466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 492, - "mapId": "VE_047", - "name": "CAORLE - DARSENA L\u2019OROLOGIO", - "contacts": [ - "0421 210290 Capitaneria", - "0421 84207 Darsena Orologio", - "www.orologio.net" - ], - "description": "The dock reaches from the port of Santa Margherita on the mouth of the Livenza river.\n\nAccess from the clock channel.The dock is at the gates of the city and enter from a two-door closed.", - "slips": 500, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.87416667, - 45.6 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 493, - "mapId": "VE_049", - "name": "S. MARGHERITA DI CAORLE", - "contacts": [ - "0421 210290 Capitaneria", - "0421 260469 Darsena Marina 4", - "0421 260001 Circolo S. Margherita" - ], - "description": "Foce of the Livenza river protected by two converging foranee dams." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.86933333, - 45.58466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 494, - "mapId": "VE_033", - "name": "MARICLEA CLUB - ERACLEA MARE", - "contacts": [ - "0421 210290 Capitaneria", - "0421 66261 Mariclea Club", - "www.mariclea.com", - "Vhf 9 - 16" - ], - "description": "The town of Eraclea Mare is immediately in Ne of Cortellazzo, in front of a small basin called \"the dead\" where there is the private marina managed by the Mariclea Club. The Costellazzo coast to Caorle must be approached Savagnando and only with favorable conditions.", - "slips": 187, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.756, - 45.54116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 495, - "mapId": "VE_046", - "name": "PORTO DI CORTELLAZZO", - "contacts": [ - "0421 980016 Nautica Boat Service" - ], - "description": "At the mouth of the Piave river, recognizable for a reddish color skyscraper which rises about 1,000 m to the ponente of the mouth, protected by two foranee dams.Going back the river on the left, there are two private docks for pleasure: the first is Nautical Boat Service, the second is the Navy of Cortellazzo.Access to the port is often obstructed from sandbanks with restricted seabed at 1.50 m.traversia from Scirocco.\n\nIt is located on the left shore of the Piave to about 500 m from the Ponente dam.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 15.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.728, - 45.52683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 496, - "mapId": "VE_014", - "name": "MARINA DEL CAVALLINO - LIDO DI JESOLO", - "contacts": [ - "0421 210290 Capitaneria", - "041 968045 Marina del Cavallino", - "www.marinadelcavallino.com" - ], - "description": "It is advisable to stay in the center of the entrance channel or browse near the left bank where there is the Lighthouse of Piave Old;On this side the seabed are greater.Neither of the lighthouse extends the Lido di Jesolo.On the left bank of the river there are the dock of the lighthouse, La Nautica from the VI and the tourist port of Jesolo, on the right bank of the Cavallino and Marina del Lighthouse.Dangerous navigation with sirocco.\n\nAt about 700 m from the mouthpiece, it is the second dock that meets going back to the left.Inside there are 10 piers and a small dock reserved for boats up to 10 m used only during the summer.Boats in transit can moor on the heads of the pontiens.", - "slips": 400, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.5855, - 45.48366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 497, - "mapId": "VE_043", - "name": "MARINA DEL FARO - LIDO DI JESOLO", - "contacts": [ - "0421 210290 Capitaneria", - "041 968076 Direzione Porto" - ], - "description": "It is advisable to stay in the center of the entrance channel or browse near the left bank where there is the Lighthouse of Piave Old;On this side the seabed are greater.Neither of the lighthouse extends the Lido di Jesolo.On the left bank of the river there are the dock of the lighthouse, La Nautica from the VI and the tourist port of Jesolo, on the right bank of the Cavallino and Marina del Lighthouse.Dangerous navigation with sirocco.\n\nAt about 650 m from the mouth of the Sile river, rising is the first dock to the left.Traversioa: Bora, Scirocco", - "slips": 105, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.58483333, - 45.48333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 498, - "mapId": "VE_013", - "name": "MARINA LIO GRANDO - PUNTA SABBIONI", - "contacts": [ - "041 5200625 Capitaneria", - "041 966044 Marina Lio Grando" - ], - "description": "Two docks are located near Punta Sabbioni, on the Treporti canal.In Lio Grando you arrive through the access channel to the port of Lido, it is turned to starboard along the Punta Sabbioni, then take the Treporte Channel and follow it for 1 mile;The marina is straight.It is in a strategic position for transit mooring in relation to the difficulty of mooring of the lagoon.You can leave the boat and with ferries to reach Venice.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.43366667, - 45.4555 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 499, - "mapId": "VE_035", - "name": "MARINA DI CAMPALTO", - "contacts": [ - "041 2405711 Capitaneria", - "041 900806 Cantieri Nautici", - "www.cantieremarchi.com" - ], - "description": "Private dock managed by the Naval shipyard F.lli Marchi.To reach it, it is accessed from the port of Lido along the channels S. Nicol\u00f2, of the ships, the Marani, Tortolo and finally the Campalto channel;The yard is on the left, the dock to starboard.Quiet and excellent assistance.", - "slips": 210, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.302, - 45.47666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 500, - "mapId": "VE_028", - "name": "MESTRE - DARSENA DEC", - "contacts": [ - "041 5200625 Capitaneria", - "041 5310161 Dec Rimessaggio", - "www.decdarsena.it" - ], - "description": "From Port of Lido, browsing to NW, following the dry channel - to move into a lagoon it is good to provide themselves with cards for internal navigation - coast the San Secondo Canal, along the Bridge of Liberty that connects Venice to the mainland of Mestre, yesReach San Giuliano and the start of the Salso Channel.Along its banks up to Piazza Boats of Mestre, on average backdrops of 2 m, the boats are sheltered in three well-equipped docks: the Dorsena Dec, the Club hull and the dock Milan.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.3, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.25316667, - 45.48433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 501, - "mapId": "VE_032", - "name": "MESTRE - SCAFO CLUB", - "contacts": [ - "041 5200625 Capitaneria", - "041 5310625 Scafo Club", - "Vhf 74" - ], - "description": "From Port of Lido, browsing to NW, following the dry channel - to move into a lagoon it is good to provide themselves with cards for internal navigation - coast the San Secondo Canal, along the Bridge of Liberty that connects Venice to the mainland of Mestre, yesReach San Giuliano and the start of the Salso Channel.Along its banks up to Piazza Boats of Mestre, on average backdrops of 2 m, the boats are sheltered in three well-equipped docks: the Dorsena Dec, the Club hull and the dock Milan.", - "slips": 320, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.3, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.257, - 45.473 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 502, - "mapId": "VE_030", - "name": "PORTO BARRICATA", - "contacts": [ - "0426 89042 Capitaneria", - "0426 89125 Porto Barricata", - "Vhf 9" - ], - "description": "The Barricata Harbor Darsena is in the Mouth of the Tolle Po.It offers moorings for pleasure and all services.", - "slips": 322, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.46566667, - 44.84216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 503, - "mapId": "RO_016", - "name": "PORTO DI GORO", - "contacts": [ - "0533 995037 Club Goro Nautica", - "www.portodigoro.com" - ], - "description": "At the port of Goro you can only access boats\nfrom the fish less than 2.80 m;We are in the part s of the river poem. It can be reached leaving the scannone of Goro and to the left the beach plants of Lido di Volano.At about halfway, there is an exchange of briccole to be released that indicate the mouth of the Po di Volano.After just under an MGL you get to the kitchen.It is a fishing port where inside, on the left entering, a tourist port managed by the Goronautica club was created.", - "slips": 120, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.28866667, - 44.84066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 504, - "mapId": "RO_014", - "name": "PORTO GARIBALDI", - "contacts": [ - "0533 324319 Capitaneria", - "Vhf 16 - 9" - ], - "description": "Porto Garibaldi is a vessel landing.The mouth is protected by 2 moles of about 300 m and a guardian pier on about 50 m from the pier S. On the shore s there is the dock.Input and output are adjusted from two traffic lights." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.25183333, - 44.6775 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 505, - "mapId": "SA_022", - "name": "ALGHERO", - "contacts": [ - "079 953174 Capitaneria", - "079 952074 Yacht Club Alghero", - "079 984093 Lega Navale Italiana", - "079 986958 Macis Club Nautico", - "079 9893117 Consorzio del Porto", - "Vhf 16 - 11 - 9" - ], - "description": "The Duomo illuminated at night is clearly visible from the wide, at the center of the medieval walls. The port is protected by a small peninsula on which the city stands. The backdrops are modest and for entry to the dock you need to follow an appropriately dragata area. By approaching N, after leaving head hunting on the left (a master's order is prohibited by less than 200 m from the coast) head for 90 *. The port is recognizable by day, but the night you can have some problems due to the innumerable lights that do not allow identification except a few hundred meters. The old city illuminated with the bell tower of the Duomo, clearly visible, allows to guide the bow to and as the entrance to the port is on the left of the bell tower, about 500 m. The island of La Maddalenedda, located in N of the port, is signaled by a red intermittent light that can be exchanged from the red headlight of the pier. It is good to immediately identify the frequency of the two lights.", - "slips": 800, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.8, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.307333333, - 40.56633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 506, - "mapId": "VE_007", - "name": "PORTO DI MALAMOCCO", - "description": "It is one of the entrances for the Venice lagoon.The island of Malamocco (or of Lido) is long, low and narrow.The canal is between this island and pellestrina and protected by two foranee dams.The port is at the confluence of the S. Leonardo canals, S. Pietro, Spignon, Fish and Rocchetta: the channels of St. Peter and Spignon for s in Chioggia;The Physolic and Rocchetta channels towards N in Venice;The S. Leonardo directs the port of the same name and the Marghera canal." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.34216667, - 45.33066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 507, - "mapId": "FR_990", - "name": "MARINA UNO", - "contacts": [ - "0431 71076 Capitaneria", - "0431 70315 Adriatica Marina Spa", - "0431 428677 Marina", - "Vhf 10", - "www.marina-uno.com" - ], - "description": "A little more than a mile of peak lighthouse, the Punta Tagliamento lighthouse indicates the mouth.Entrance to the internal landings of the river is driven by Briccole.Access backdrops are about 3 m subject to variations.", - "slips": 420, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.0925, - 45.64916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 508, - "mapId": "CA_990", - "name": "AGNONE - SAN NICOLA", - "contacts": [ - "0974 904477 Capitaneria", - "0974 964340 Comune" - ], - "description": "Agnone is an extended village on the sea;Monte Stella at 3-4 miles A and Ne of Agnone is recognizable for the Chiara summit, surmounted by a church of dark color.The port is under construction: it is only accessible in the event of adverse weather conditions, with the approval of the port dealer.There are no services.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.98766667, - 40.21883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 509, - "mapId": "VE_051", - "name": "CHIOGGIA", - "contacts": [ - "041 5508211 Capitaneria", - "041 401565 Circolo Nautico Chioggia" - ], - "description": "Access is a s of the Venice lagoon.Built on an island, it is combined with the Lido di Brondolo from a bridge with arches and underwater from a revolving bridge;The Lombardo channel colleague to the Brenta river.The landings are: the Citizen Basin of Vigo, managed by the Master's office, where pleasure boats can moor parallel to the dam;The Darsena Moselle, in Sottomarina, where pontiens wanked by the homonymous hotel;Move especially sailboats;In the internal port there are few spaces but in transit you can flank to fishing vessels;At Sporting Club, modern Marina in city center with all services and moorings." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.31683333, - 45.23116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 510, - "mapId": "FR_002", - "name": "LIGNANO SABBIADORO - PORTO", - "contacts": [ - "0431 71076 Capitaneria", - "0431 70315 Adriatica Marina Spa", - "Vhf 9 - 10" - ], - "description": "To reach the Marina di Lignano and Aprilia focus on the edge (with white and red stripes with red spherical miraglio) situated at 45 * 39'79 n - 13 * 09 '82 E. from broken for 356 * until before oneBriccole series.Minimum threshold in low tide 2-2.20 m.Dangerous the entrance with sustained sirocco that causes frogs.Follow the briccole line to the entrance, bordered on the starboard from a green meda and on the left from a red light.Here the Marina di Punta Faro and Lignano Darsena arise.", - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.1565, - 45.69883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 511, - "mapId": "LI_055F", - "name": "GENOVA", - "contacts": [ - "010 27771 Capitaneria", - "www.porto.genova.it/turismo/diporto" - ], - "description": "From Ponente to Levante in Genoa, and vice versa, pleasure boats must browse only outside the dam.The identification of the entrance to the levant mouth is facilitated by the buildings of the Genoa Fair.From here, browsing to the west, on the right there are several landings for pleasure with backdrops from 3 to 8 m and all services and repairs.The first dock that meets is the Marina Fiera di Genova (150 places), later the Marina Duca degli Abruzzi, Darsena of the Italian Yacht Club (180 seats).Following the large port of the old port (difficult entrance with Libeccio, which bears large sea.) After the restorations of the ancient port warehouses, they were used for the recreational mooring some traits of moli: Marina Porto Antico and Piero Vecchio, respectively AN EA s of the Genoa Aquarium." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.942333333, - 44.38916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 512, - "mapId": "CR_370", - "name": "KRIJAL", - "description": "The port of S. Ciriaco is protected by two arched cliffs open south west.The backdrop is 2-3 m only at the entrance and in the pier's head.It is close to the bora, but the winds from the south east and south west create reompet" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.595, - 44.33466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 513, - "mapId": "CR_371", - "name": "DOBRA", - "description": "Bay uninhabited at the south eastern end. It is not very welcoming but protected by the bora." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.66116667, - 44.30466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 514, - "mapId": "FR_991", - "name": "MARINA PUNTA VERDE", - "contacts": [ - "0431 71076 Capitaneria", - "0431 70315 Adriatica Marina Spa", - "0431 427131 Marina Punta Verde", - "www.marinapuntaverde.it", - "Vhf 9" - ], - "description": "One km further to N from the mouth of the Tagliamento on the left bank of the river is the private marina Marina Verde.At N along the same shore two small docks that offer services to boats.", - "slips": 270, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.06316667, - 45.65666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 515, - "mapId": "CR_372", - "name": "ZAPUNTEL", - "description": "The island of Molat (MELADA) is separated from the nearby IST from Zapuntel's Strait, a passage that has currents sensitive to the south-west exit (the narrowest) but which has seabed (the minimum depth is 6 meters) navigable.Attention: here the wasps do not joke ...\n\nIn the event of a bora the \"L\" pier of the Zapountel marina creates a full.Some buoys are available for yacht mooring both in front of the port and in the fronting mljake creek on the island of iSt. The current in the two ways reaches 3 knots." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.79733333, - 44.26316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 516, - "mapId": "SA_123", - "name": "OLBIA - NAUTISARDA", - "contacts": [ - "0789 21243 Capitaneria", - "0789 57081 Nautisarda", - "Vhf 72 - 11" - ], - "description": "The town is established in the most internal part of the narrow and long creek that opens at the end of the homonymous gulf and is visible from the wide.Access is facilitated for alignment with the conspicant lighthouse that rises on the mouth island.\nThe port is ravished by all winds and includes three zones: maritime station, the internal port and the industrial area.", - "slips": 60, - "seaFloor": { - "minDepth": -6.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.549833333, - 40.92666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 517, - "mapId": "FR_992", - "name": "MARANO LAGUNARE", - "contacts": [ - "0431 67301 Capitaneria", - "0431 67409 Portomaran", - "www.portomaran.it", - "Vhf 9" - ], - "description": "Access is from Porto Lignano.You arrive at Marano's tourist dock through the channel delimited by white briccole on the right and red on the left after a navigation of about 7 km inside the homonymous lagoon.This ancient marine village of Venetian origin deserves a stop and can also be moored on the shore docks when they are free from the numerous fishing boats present.The channel is dragato but you need to follow the molesons to not go in dry.", - "slips": 400, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.166, - 45.75883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 518, - "mapId": "FR_004A", - "name": "APRILIA MARITTIMA - DARSENA CENTRALE", - "contacts": [ - "0431 71076 Capitaneria", - "0431 53123 Darsena", - "Vhf 9" - ], - "description": "You come from the sea through access\nof Porto Lignano and the Venetian coastline\nWalking along a 3 km channel, with a medium draw of 3.5 m, reported by bricole.From Porto Lignano continue to N up to the branch of the 3 channels;It matches the left by taking the channel of the lusters to the Aprilia Marittima canal.The Aprilia nautical complex is an ideal base for pleasure boating in the Upper Adriatic for about 2,000 pleasure boats.It is divided into three docks: Central Darsena, North Cape Marina and Marina Punta Gabbiani.\n\nYou get directly to the dock from the new Channel of Aprilia Marittima after passing the green and red lights at the entrance.The dock is managed by the Nautico Aprilia Marittima circle.", - "slips": 682, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.07066667, - 45.6955 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 519, - "mapId": "FR_994", - "name": "PORTO FALCONERA", - "description": "In the last stretch of the River Lemene there is a creek where Falconera Port is located that offers refuge to small boats.", - "slips": 20, - "vesselMaxSize": { - "maxLoA": 5.0 - }, - "seaFloor": { - "minDepth": -0.3, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.90483333, - 45.62133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 520, - "mapId": "VE_990", - "name": "CAORLE - MARINA 4", - "contacts": [ - "0421 210290 Capitaneria", - "0421 260469 Darsena Marina 4" - ], - "description": "The dock reaches from the port of Santa Margherita on the mouth of the Livenza river.\n\nTo reach the dock you need to go up the liveness for about 600 m and then turn left towards the shore of the west.It is accessed through a 15.40 m wide vincin-door closed with the straight part usable from sailboats.", - "slips": 480, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.8545, - 45.59016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 521, - "mapId": "VE_991", - "name": "MESTRE - DARSENA MILAN", - "contacts": [ - "041 5200625 Capitaneria", - "041 5311410 Darsena" - ], - "description": "From Port of Lido, browsing to NW, following the dry channel - to move into a lagoon it is good to provide themselves with cards for internal navigation - coast the San Secondo Canal, along the Bridge of Liberty that connects Venice to the mainland of Mestre, yesReach San Giuliano and the start of the Salso Channel.Along its banks up to Piazza Boats of Mestre, on average backdrops of 2 m, the boats are sheltered in three well-equipped docks: the Dorsena Dec, the Club hull and the dock Milan.\n\nPrivate landing.I rock and dry along the entire access channel.", - "slips": 110, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.2705, - 45.4705 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 522, - "mapId": "VE_992", - "name": "VENEZIA SAN GIORGIO", - "contacts": [ - "041 5200625 Capitaneria", - "041 5222593 Circolo Compagnia Vela", - "041 5211505 Darsena S. Giorgio", - "Vhf 16 - 11" - ], - "description": "The island of San Giorgio, beyond the Cini Foundation hosts a private landing landing on the Compagnia della Vela.The transit is theoretically guaranteed by the availability of moorings in the area a se by the island in the office in S. Marco Giardinetti.The particular location of this landing - in front of San Marco - makes it exclusive.Access to the port of Lido is normally used to reach the landing.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.34266667, - 45.43066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 523, - "mapId": "TO_031", - "name": "GORGONA - CALA DELLO SCALO", - "contacts": [ - "0586 861021 Agenti di custodia" - ], - "description": "Included in the Tuscan archipelago park, the island is home to criminal house and mooring is allowed due to force majeure, with authorization of custody agents.There is a brief jetty with bollards and mooring rings.The sand and rock seabed are about 2 m.Dangerous parking with Grecale." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.908666667, - 43.43116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 524, - "mapId": "CR_066", - "name": "POVLJANA", - "description": "Good bora and scirocco.It is a very busy beach during the holidays and the pier is often busy.Anchor on sand.In Stara Povljana the best anchorage is the east of Smokvica.Renets from Bora, but exposed to scirocco are those of Vlasici and Dinjiska." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.09616667, - 44.34533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 525, - "mapId": "CR_067", - "name": "KOSLJUN", - "description": "Bay with scarce resources and bad contractor.Good shocked with bora, dangerous with other winds.In the same bay the anchorages of Tihovac and Mlinica." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.07983333, - 44.3935 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 526, - "mapId": "CR_068", - "name": "SIMUNJ", - "contacts": [ - "00385 023 697457 ACI Marina" - ], - "description": "Bay righted by all twenty except from the northern western ones.The marina has about 200 seats and has a 15 ton crane.Entrance to the bay is dangerous with a strong bora and scirocco." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.953, - 44.4625 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 527, - "mapId": "CR_069", - "name": "MISNJAC", - "description": "Ferry service port for Jablanac.No services are available and the mooring is granted only in case of need." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.86416667, - 44.70366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 528, - "mapId": "CR_070", - "name": "KAMPORSKA DRAGA", - "description": "The town has two boats with 2-3 m of water.The west coast of Rab, south of Capo Kalifront, is rich in coves suitable for an anchoring: Sv. Mara (44 * 4'6.9 N - 14 * 40.2 E) has two riddened loops with Bora and Scirocco;Planca has a goodwill background in 3-6 m of water;Litovica solitary;Kristofor (44 * 45.6 N - 14 * 42 'and) with beach and pine forest;Gozinka;Matovica." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.70216667, - 44.79 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 529, - "mapId": "AB_010", - "name": "MARINA DEL SOLE - FOCCACESIA", - "contacts": [ - "085 9063290 Capitaneria", - "0872 715975 Marina", - "www.marinadelsole.com", - "Vhf 16" - ], - "description": "Fossacesia and launch are visible from the largo almost aligned to the sangro mouth.\nThe Marina del Sole dock is less than half a mile in N of the mouth.Two piers protect from the Levanti crossing and an internal basin allows the stop before mooring assignment.At Levante appears the profile of the tremors and a the white lighthouse standing on the black peak pen rock.The Marina guarantees all the services.", - "slips": 404, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.5, - "maxDepth": -2.9 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.53783333, - 42.239 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 530, - "mapId": "CR_048", - "name": "OMISALJ", - "contacts": [ - "051 842053 Capitaneria" - ], - "description": "Deep inlet open to western north winds.The west part is occupied by the oil port.The marina and the nautical club have no seat available.You can moor them on the two sides of the protective pier on the gavitelli.The radiator anchorage is on non-coached mud backdrop.On the ground there is a possibility of refueling and going to the restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.52583333, - 45.23433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 531, - "mapId": "CR_049", - "name": "NJIVICE", - "description": "Seaside seaside center with landing landing and small boats.You can moor it under the lighthouse or outside the pier on a backdrop of 3 meters.\nThere is the possibility of refueling to the supermarket.With bora or scirocco the nearby Kijac anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.52966667, - 45.155 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 532, - "mapId": "CR_050", - "name": "MALINSKA", - "contacts": [ - "051 859346 Capitaneria" - ], - "description": "Marina exposed to the west and protected by two courty piers with water and running in the quay.At the entrance there is a low backdrop to leave a starboard.A few places for the transit, as well as in the nearby marina of Vantacic and Porat and the unprotected Jablenica anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.52433333, - 45.12533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 533, - "mapId": "CR_051", - "name": "TORKUL", - "description": "Porto Torcolo is a refuge for fishing boats to whom the east part is reserved. A craft in 1.5 m allows landing." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.468, - 45.04233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 534, - "mapId": "CR_052", - "name": "KRK", - "contacts": [ - "051 859346 Capitaneria" - ], - "description": "Krk is the port of Veglia, the inhabited plus\nImportant of the island, only partially ravished by the bora that tends to blow more from the east, but is exposed to southern winds.The breakwater protects two piers among which there are gavitelli for small boats.The fuel distributor is at the bottom of the harbor on a quay with just 2 m of water.There is a construction site.The inlet in front of the port is a possible anchorage for yachts with a 5-meter backdrop.Each refueling is available in the village." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.5775, - 45.02433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 535, - "mapId": "CR_053", - "name": "PUNAT", - "contacts": [ - "051 854065 Capitaneria", - "051 654111 Marina Punat" - ], - "description": "In the vigil bay in the most eastern part opens up the Puntoriska Draga, the valley of Cassi.It is accessed for a channel over a hundred meters long, 3 m deep and marked by bright mede to the punat town that has a tiny marina and an organized marina.To note in the northern part of the bay a restaurant (open in summer) and, on the Kosljun islet, the monastery that guards a sixteenth-century copy of the Atlas of Tolomeo.", - "slips": 1000 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.62483333, - 45.0195 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 536, - "mapId": "CR_054", - "name": "STARA BASKA", - "contacts": [ - "051 856821 Capitaneria" - ], - "description": "Tourist resort with a protected landing\nFor small boats.There is a restaurant\nAnd the possibility of refueling of water.\nOther bathing berths are in the area\nthose on horseback of Capo Negrit, the most\nattended Konobe, and those\nby Zala Draga and Bracol at the Senj door and the Dubac inlet (44 * 55 'N - 14 * 46' and) on the island of Prvic.It is a port of connection to the ferry to Lopar on the island of Rab.It is open to Bora and Scirocco that here they blow very violent.There is a fine gravel beach with a campsite.More protected anchors those of sail (45 * 58.9 n - 14 * 48.6 and) and Mala Luka (49 * 59.6 n - 14 * 48.2).The first also has a restaurant.The rocky backdrop does not guarantee the anchor.It is necessary to carry a cable to the ground." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.68783333, - 44.95366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 537, - "mapId": "CR_055", - "name": "VRBNIK", - "description": "Fortified medieval citadel seen on a prehistoric site.Picturesque place but the marina has no capacity and is dangerous to enter and go out with bora that raises a wave even inside the breakwater.In the surroundings of Vrbnik there are Srscica anchors (45 * 04 'N - 14 * 44' and) to the south, and of Marak (45 * 06.3 N - 14 * 40.2 E) and Petrina (45 * 07.3 N - 14 *40 'e) north." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.675, - 45.07933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 538, - "mapId": "CR_056", - "name": "SILO", - "description": "At the bottom of Stipanja bay there is a marina, protected by all winds and a breakwater with lighthouse.The ferry that serves with the fronting Crikvenica has a reserved hipoon.Bar and restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.66633333, - 45.14866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 539, - "mapId": "CR_057", - "name": "LOPAR", - "description": "The ferry pier to Baska can be used for boarding and disembarking.The rest of the bay has no bottom.The CRNICA COVER is an anchorage ravished by the west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.72083333, - 44.8365 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 540, - "mapId": "CR_058", - "name": "SUPETARSKA DRAGA", - "contacts": [ - "051 776268 ACI Marina" - ], - "description": "Porto San Pietro is a very popular tourist resort and has an equipped marina (there is a 10 ton crane) with about 270 berths.The bay anchors are exhibited both in Bora and Scirocco, better rottoose into the ansa protected by the islets of the Maman group in front of some restaurants with a holly." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.70766667, - 44.81483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 541, - "mapId": "CR_059", - "name": "RAB", - "contacts": [ - "051 724023 ACI Marina" - ], - "description": "Link port very attended.The sirocco raises wave in the harbor and the bora is felt.The west quay is generally used by commercial boats, but there are several mooring buoys on the bottom.The marina on the east quay has over 150 seats, a crane and a slide.The fuel distributor is on the reception pier.In summer it is struggling to find a place, as well as in the marina of Palit and Banjol, here is the neighboring fumija anchors (44 * 45.7 N - 14 * 45 'and) with two loops ridden by Scirocco." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.76266667, - 44.75116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 542, - "mapId": "CR_060", - "name": "BARBAT", - "description": "Barbat is within Barbatski Kanal, the sea arm between the Dolin and Rab island.It is rich in opportunities for anchoring a pleasure boat: Banjol (44 * 4'5 N - 14 * 47 'and) First of all with a quay and a few mooring places, then Barbat which is a landing area with piersDock and a yard.To continue south there is a series of coves protected from northern winds and with beautiful gravel beaches just before pudaric.Here you will find a desert pier (because it was no backdrop) once reserved for the ferry." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.79633333, - 44.73633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 543, - "mapId": "CR_061", - "name": "TOVARNELE", - "description": "Marina on the north tip of the island.The dry reported by a meda has the same name, is in the red lighthouse sector.The bay is open to the west.Various bikers allow mooring especially to tourists who visit the nearby Laganj and Dolfin islets.Situations similar to Jurievica and in the marina of Dodic and Jakisnica (44 * 38.6 N - 14 * 47 'e) which has a small town and a frangiflucted pier to protect some buoys.Other bays frequented with good weather or for bathing motifs are those of Jadresnica who has a landing, potocnica, Kaniae, ogradic." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.73183333, - 44.6915 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 544, - "mapId": "CR_062", - "name": "MANDRE", - "description": "Marina well repaired by bora, but always busy.Aids possible nearby, those of Slatina on the coast to the north, or in the front of Skarda and Maun islands." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.9185, - 44.47616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 545, - "mapId": "CR_063", - "name": "PAG", - "contacts": [ - "053 611023 Capitaneria" - ], - "description": "Access to the port is marked by pairs of mede and bright buoys on the detection 147 degrees.With strong bora the wave in port is remarkable.Water outlets on the quay and possibility of refueling by road distributor.At the village there is a first aid and a pharmacy.The bottom of the bay is equipped with salt saline.To the north of Pag, just behind the Punta S. Nikola, there is a close to Bora.In the upper part of Paski Zaliv to report the landings of Caska (44 * 32.8 N - 14 * 55.5 and), protected by Bora and Ponente with gravel beaches, Zubovici (44 * 31.3 N - 14 * 59 'and) with two small onesBoats in front of the town, Metajna (43 * 30.4 N - 15 * 00.5) Visioning place.Instead, they are not pretty protected by bora the rubic and Slana loops." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.038, - 44.46016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 546, - "mapId": "CR_064", - "name": "STARA NOVALJA", - "description": "Novalia Nuova has a jetty along a sixty meters to the east-west but the place is always occupied by local traffic.There is the fuel distributor, a 3 ton crane and the possibility of refueling.Entering at night standing strictly in the green light industry." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.87516667, - 44.55583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 547, - "mapId": "CR_065", - "name": "VIR", - "description": "The island of Vir is separated from the continent from the Strait of Privlacki Gaz, on which a bridge passes today.The passage is no longer dredged (the depth exceeds little 1 m).Bora blows you with incredible strength.The island is bare of vegetation.With the good time Vir offers possibilities both on the north coast, Radnjaca for example or in the bay Puntadura (44 * 18 'N - 15 * 05' and) for bathing bactions.The latter offers a small landing for a pier." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.08883333, - 44.2945 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 548, - "mapId": "CR_071", - "name": "KLIMNO", - "description": "The Zaton Soline Creek is a good back and you can anchor on a backdrop of 3-5 m of goodwill mud.In the northern part there is an area dedicated to ostriculture and some low backdrops as in the south western part.In front of the town and south of the pier breakwater a series of gavitelli allow the rest in 2-3 m of the backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.61766667, - 45.16183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 549, - "mapId": "CR_072", - "name": "VALBISKA", - "description": "Port for the crossroads of the ferry to Cres.Infanted to yachts, better the further south of Sv. Juraj." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.49483333, - 45.02416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 550, - "mapId": "CR_073", - "name": "FUSKA", - "description": "Bajette side by side of which one should turn to the landing for yacht." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.47766667, - 45.03383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 551, - "mapId": "CR_074", - "name": "GLAVOTOK - VELA JANA - MALA LANA", - "description": "Sailing Jana and Mala Lana are two uninhabited bays open south west good for anchors.Sailing Jana in the most internal part is very well protected but the bottom is scarce." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.44633333, - 45.05733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 552, - "mapId": "RO_990", - "name": "PORTICCIOLO DI GORINO", - "contacts": [ - "0533 996449 Capitaneria" - ], - "description": "At Levante di Goro, after traveling uncertain bottoms due to the continuous changes and sand contribution from the Po Delta we reach the marina of a Gorino." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.34833333, - 44.81683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 553, - "mapId": "PU_060C", - "name": "TARANTO", - "contacts": [ - "099 4707514 Capitaneria", - "099 7332888 Cantiere Greco", - "099 4593801 Lega Navale Italiana", - "Vhf 16 - 12" - ], - "description": "The old city is on an island combined with the mainland with bridges;Taranto Nuova is at the Levante of the Navigable Canal.The main conspicuous points are, in the coast between Ginosa Marina and Taranto, three cylindrical pylons painted with black and white bands.Coming from if, once the headlight of Capo S. Vito has been spotted, follow a route that does not approach them to less than 1 mgl and when it is detected for 90 * governing the St. Paul's islet.To enter the Grand Sea, combine a starboard between the head of the St. Vito dam and that of St. Paul.Coming from W or NW lean to 1.5 mgl a of the isolot of St. Paul and leave it to starboard the Cardinal WSt. Paul reimburse between the heads of the dam of the latter and that of the St. Vito dam." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.182, - 40.43183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 554, - "mapId": "LI_077", - "name": "RIVA LIGURE", - "contacts": [ - "0184 481006 Capitaneria" - ], - "description": "Good shelter for minor boats or inflatable boats, it is a piccola cliff A and of the town sheltered from the winds of the I * quadrant, managed by the Amateur Association of the sea.Possible to anchor in front of the country.Just beyond there is a small dock with mouth on the W side, set up with pontiens, which does not offer furious." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.883333333, - 43.83633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 555, - "mapId": "PU_990", - "name": "BARI - PORTO NUOVO", - "contacts": [ - "080 5216860 Capitaneria", - "Vhf 11" - ], - "description": "The port is visible from the largo city of Bari rises on a flat coast.A and the town is clearly visible an antenna reported by lights.Combining it is necessary to pay attention to the low backdrops, especially to the dry of the mountain, in front of Porto Vecchio.\n\nThe new port of Bari is a commercial landing, protected to and from a large forane pier.Passed the pier S. Cataldo leads us in the big basin then to four docks: Old Darsena, Darsena di Ponente, Darsena di Levante, Internal Darsena.Boats in transit can moor in the Customs quay and that of the capacity (moorless without surveillance), by contacting the capacity first.The Italian Naval League has a pier reserved for members who can accommodate 70 boats.Also the C.U.S Bari has a concession in a pier for a total of 25 berths, even these moorings are reserved for members.", - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.8425, - 41.14633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 556, - "mapId": "PU_991", - "name": "BARI - PORTO VECCHIO", - "contacts": [ - "Vhf 16 - 11" - ], - "description": "The port is visible from the largo city of Bari rises on a flat coast.A and the town is clearly visible an antenna reported by lights.Combining it is necessary to pay attention to the low backdrops, especially to the dry of the mountain, in front of Porto Vecchio.\n\nA breakwater dam was created in the old port.It is a vessel and pleasure landing landscape, very characteristic but with limited backdrops and a dry 2 m in the center of the first basin.Entering at night, keep the tip and leave the red light on the left;The straight pier can be useful for short stops.The Piero S. Nicola is reserved for members of the Barion Circolo (tel. 080/5218555) and the Circolo della Vela (tel. 080/5212002).", - "slips": 230, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.88133333, - 41.12633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 557, - "mapId": "CA_033", - "name": "MARINA DI CASALVELINO", - "contacts": [ - "0974 904477 Capitaneria", - "0974 907142 Comune", - "0974 907354 Lista Biagio", - "339 4855521 Yacht Service" - ], - "description": "Marina di Casalvelino is 11 miles to NW of Capo Palinuro;It is recognizable for a quadrangular tower on a steep slope at the shore.Works for the restoration of the basin, at municipal management, produced new berths.Inquire about the actual depths before the entrance.", - "slips": 225, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.3, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.11516667, - 40.17483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 558, - "mapId": "F_CA_032", - "name": "MENTON", - "contacts": [ - "0033 04 93287800 Capitaineria", - "Vhf 9" - ], - "description": "Menton extends at the bottom of the Gulf between the Capo Mortola and Cap St. Martin after the Roccione a Precipice of the Balzi, which from the Largo reports the Italy-France border.The port Menton Garavan is repaired by a breakwater pier with a lightning light (2 every 6 sec.), Of 10 mg.The capacity is on the starboard behind the dry area.4 to 5.5 m backdrop.The berths are around 800 of which are about 150 dedicated to the passage.The Vieux Port of Menton is more A or with the lighthouse (4 red flashes, 3 sec., 10 mg) and the captain on the head of the pier.The moorings are about 550 of which 50 for traffic.Difficult access with strong wind from e", - "slips": 1397, - "temporarySlips": 244, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.514666667, - 43.77883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 559, - "mapId": "F_CA_003", - "name": "BAIE DES ANGES", - "contacts": [ - "0033 04 92133222 Capitaineria", - "Vhf 9" - ], - "description": "It is a public navy and is located in front of the visible pyramids of Le Corbusier at about two miles and a half to N of Antibes and can be an alternative for supplies in moments of incandescent traffic in that port.Access to the marina is through an anti-rope with 5 m of seabed, oriented for SE (green lightning light in Lampi, 4 sec.; Red headlight to occultations (2 every 6 sec.). The actual entrance inside isNear to the left (the light is at red light 2.5 sec.). The unit and the distributor are located in part n on the straight turning in the counterclockwise direager of the forane dam", - "slips": 474, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.14, - 43.63133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 560, - "mapId": "F_CA_033", - "name": "ANTIBES - PORT-VAUBAN", - "contacts": [ - "0033 04 92916000 Capitaineria", - "Vhf 9" - ], - "description": "The entrance to Port Vauban is for n. It is accessed for a largo channel of m of a m of a light to sectors (4 flashes every 15 sec. 12 mg flow rate) with the red sector covering to starboard The dangers of the tip of Fort Carr\u00e9, also reported by a bright buoy (2 green flashes), while on the left signals the presence of the obstacle represented by the foranea dam.\nWith wave and strong winds from and the entrance presents some difficulties. The entrance guide is the white sparkling light industry (detection between 194 * and 197 * degrees) which is located inside the Vieux Port. Along the forane dam the great yachts are moored on the left, on the right there are the drying areas and the moorings of the smaller boats. The marina of the permanent is in the ANSA of St. Roche with an average depth of just over 2 m: it hosts about 1,200 boats of the 1,700 totals, but you cannot count to find place easily, if not by booking. The fuel distributor is on the left at the head at the pier '' El Quai d'Honneur '' on which the capacity is also located.\nA s of the port towards the Cap d'Antibes are the ANSA of the Salis and then de la Garoupe that are possible anchors and rawn by the Western dials. Between the two hoops the dangers of the rocky basfondo de la Pequerolle, not reported at night. A bounded by N only for a seaside stop, on a backdrop of 10-12 m is the baietta of the Argent Faux, dominated by the lighthouse of the election (2 occluded every 12 sec.).", - "slips": 1700, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.130833333, - 43.59116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 561, - "mapId": "F_CA_022", - "name": "PORT GALLICE", - "contacts": [ - "0033 04 92937440 Ufficio del porto", - "Vhf 9" - ], - "description": "Just inside the Gulf of Juan Les Pins, behind the head of Antibes, ravished by the eastern quadrants there is Portallice, the entrance is surrounded by low backdrop, you are accessed from N NW with draft boats compatible with the twoThree m of water inside the port whose entrance is signaled by a buoy channel (3 flashes every 2 sec.).Entry to S and Port du Crouton is intended only for fishing boats.The fuel distributor is on the left entering the pier N", - "slips": 525, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.111833333, - 43.56383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 562, - "mapId": "F_CA_031", - "name": "GOLFE JUAN", - "contacts": [ - "0033 04 93639625 Capitainerie", - "Vhf 12" - ], - "description": "The port of Golfe Juan has two basins, one public (backdrop 1 to 3 m) and the new Marina Camille Rayon (backdrop of 3.5 m). The port is ravished by the winds of the I and II Dial from the Cap d'Antibes and discreetly repaired by the heights of Vallauris by N W. The night approach is in the white sectors of the Lighthouse of Vallauris at the top of the town (2.1 Occ. Every 6 sec., range 16 miles). The red sector delimits the area between the fourmigue (green light in flashes) to W and the red buoy the S\u00e9canion a and, the two well-visible isolated dangers from the day in the middle of the Golfe Juan.\nThe entrance to the two basins is common and oriented for and, signposted to starboard from a green light to Lampi (2 every 6 sec.) Left on the casting s of the old port from a red isophase light (4 sec.): The port Public is on the left with the entrance oriented for W and the reception, the fuel distributor, the captain on the Straight (VHF 12). Continuing the right to E-N and enter the Marina Camille Rayon (VHF 9). The passage in the middle of the pontiens leads to the carnage area, to the construction sites, to services, at the outdoor theater.", - "slips": 860, - "temporarySlips": 258, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.0755, - 43.56316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 563, - "mapId": "F_CA_007", - "name": "CANNES PORT CANTO", - "contacts": [ - "0033 04 92188484 Capitaineria", - "Vhf 9" - ], - "description": "It is located at the end of the peak of the Croisette north of the marina homonymous that contains Port Bijoux (bottom of less than 2 m).Port Canto is the historic first starting point for Mediterranean pleasure.The entrance is signaled by a concealment light (4 sec., Capacity 8 mg) and the backdrop inside drops from 7 m of the lower basin to 2 m of the private port", - "slips": 650, - "temporarySlips": 100, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.029833333, - 43.542 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 564, - "mapId": "F_CA_002", - "name": "CANNES", - "contacts": [ - "0033 04 92987000 Ufficio del porto", - "Vhf 12" - ], - "description": "The entrance is in the \"passes\" between the lighthouse on the thrown w (3 red flashes every 2 sec., Capacity 8 mg) and the headlight of the meda le secant (2 green flashes every 6 sec.) And is not recommended the entrance ofNight with strong wind from e.The distributor is on the left opposite Le Secant.It is possible to have mechanical and motor assistance and procurement.The Rada is very popular with pleasure boats and large yachts at anchor on 15 m backdrops.", - "slips": 656, - "temporarySlips": 246, - "seaFloor": { - "minDepth": -4.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.018, - 43.54666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 565, - "mapId": "F_CA_026", - "name": "LA NAPOULE", - "contacts": [ - "0033 04 92977777 Yacht Club", - "Vhf 9" - ], - "description": "In the W part of the Gulf of the Harbor\nof the Napoule, protected by all winds,\nextends to and of the castle and the mouth of the\nRiou de l'Argenti\u00e9re.Night access\nIt is between the green light in Lample (3 every 12 sec., capacity 14 mg) and the red light (2 occup. 6th century) at the head of the external pier of the old port.The basin has a public part with 200 places for transit and private marina from over 1,000 moorings.The backdrop is dredged at 7 m along the external casting, while it descends up to 2 m at the root of the pontoons.In the public harbor the backdrop is 3.5 m, but at the bottom of the left passes the meter slightly.Master's and services are on the left between the two ports.", - "slips": 960, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.943666667, - 43.521 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 566, - "mapId": "F_CA_014", - "name": "LA RAGUE", - "contacts": [ - "0033 04 93498155 Capitainerie", - "Vhf 9" - ], - "description": "Fun on what was '' L'Abri de la Raguette '' The port of La Rague, fixed by the Mistral, went away from the broad viaduct at six red brick arches behind.At night the green isophase light, period 4 sec.Guide the entrance on a backdrop of 4.5 m which is reduced to 3 m only in the part along the external casting, while the rest of the port is Dr. 2 m (1.5 m in the internest part over the viaduct).The reception is at the top of the first pier, the fuel distributor immediately a starboard", - "slips": 520, - "temporarySlips": 128, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.9385, - 43.51383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 567, - "mapId": "F_CA_035", - "name": "THEOULE", - "contacts": [ - "0033 04 93499738 Capitainerie", - "Vhf 9" - ], - "description": "Located in the western part of the Gulf, TheOule's marina is difficult to access only with twenty from and and is a good shelter for the Mistral.The entrance is limited to draft boats compatible with the bottom of just over 2 m.At night the headlight to Occlusions (2 every 6 sec.) Report the head of the Foraneo pier E. Services on the quay, water, electricity and immediately left entering the fuel station", - "slips": 180, - "seaFloor": { - "minDepth": -1.6, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.939, - 43.50966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 568, - "mapId": "F_CA_025", - "name": "PORT LA GALERE", - "contacts": [ - "0033 04 93754174 Capitainerie", - "Vhf 9" - ], - "description": "Port La Galere is a marina located between the omonymous tip and the St. Marc tip to about five miles from Cannes for S W. water and electricity in the quay, fuel only in summer.The entrance is narrowed between the high and rocky coast to N and the for the foraneous dam (red sparkling light).Dangerous entry at night and with wave and wind from and", - "slips": 174, - "temporarySlips": 18, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.955666667, - 43.49966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 569, - "mapId": "F_CA_024", - "name": "PORT LA FIGUEIRETTE", - "contacts": [ - "0033 04 93750800 Capitainerie", - "Vhf 9" - ], - "description": "Private marina at the bottom of the bay of La Figueirette, ravished for the III and IV quadrant.The bottom at the entrance is about 3 m which are reduced to 2 m inside close to the forage dam (green lightning light, 3 every 12 sec. 12 mg flow rate) to go down to 1.5 m along the docks.Reception and fuel (only in summer) on the left entering", - "slips": 245, - "temporarySlips": 20, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.932666667, - 43.48333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 570, - "mapId": "F_CA_034", - "name": "SAINT TROPEZ", - "contacts": [ - "0033 04 94566870 Capitaineria", - "Vhf 9" - ], - "description": "It is one of the ports with greater traffic density during the summer. The very intense traffic of large yachts and pleasure boats imposes great attention to the entrance, moreover easy enough except in the presence of Mistral. The recognition is facilitated by various conspicuous points such as the looming strong, the characteristic bell tower, the Portalet tower, the lighthouse at half a forane.\nThe headlight in the header is at occultations (2 every 6 sec.). The reception and the capacity are on the tips, between the new basin and the old port dedicated exclusively to large yachts. The fuel distributor is just entered on the right.\nThe poor possibility of moorings forces the dealer to look for alternative anchorings: the Pinede A War Ansa and the Canoubiers a and, ridden between E-S and and W-S W.\nThese are the anchors outside the bay: between the medi cardinal n of Rabiasou and the Moutte, there is on part n of the head of Saint Tropez (attention to the Roche de l'AY) an anchor on sand protected by the third quadrant; Beyond the tip instead there is a night from Mistral in front of the des Salins beach. The famous beaches of Tahiti and Pampelonne are seaside dangerous anchorages that can become dangerous with wind from E.\nOther interesting berths are found beyond the Cammarat leader, in the s part or the bay of Bon Port\u00e8 (attention to the dry basse de Cassin) and beyond the Cap Taillat in the Bay of Briani which in the part s is well returned by the Mistral. On Capo Cammarat, from dubb wide from Les Roches des Portes and Les Roches Fouras, stands up at the top (138 m) the important headlight (4 flashes every 25 sec., Capacity 27 mg).", - "slips": 800, - "temporarySlips": 100, - "seaFloor": { - "minDepth": -1.7, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.631166667, - 43.27216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 571, - "mapId": "F_CA_004", - "name": "MARINES DE COGOLIN", - "contacts": [ - "0033 04 94560731 Capitainerie", - "Vhf 9" - ], - "description": "The three basins are located in the River La Giscle which divides them from Port Grimaud.On the protective dam there is a white sparkling light and on the external casting a red light at Lampi (6 sec.).With bad time from and the entrance to Cogolin is safer for the largest backdrop in front of the port (about 8.5 m to the mouth and 6 m in the passes).The places available are 1,800 in the three basins the brignantine, the cascadelle and the Galiote (for smaller boats).The welcome, the capacity, the services and the fuel distributor are on the embankment immediately opposing and alongside the dedicated public port of tourist boats", - "slips": 1600, - "temporarySlips": 300, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.5905, - 43.26933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 572, - "mapId": "F_CA_023", - "name": "PORT GRIMAUD", - "contacts": [ - "0033 04 94562988 Capitaneria", - "0033 04 94560245 Port Grimaud I", - "0033 04 94567365 Port Grimaud II Sud", - "Vhf 12" - ], - "description": "Gigantic tourist port built in the sixties in N of the Foce del Giscle, characteristic because excavated with numerous channels and houses on water like Venice.The entrance is little recognizable from the wide: it is located between two beaches and is signaled by a column with the green summit on the head of the semicircular protection dam.The green light is in Lampi (4 sec.).The reception and the capacity are on the tip, the distributor on the left of Dredata Passe at 3 meters.", - "slips": 2414, - "temporarySlips": 300, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.587166667, - 43.271 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 573, - "mapId": "F_CA_012", - "name": "CAVALAIRE", - "contacts": [ - "0033 04 94641601 Bureau du port", - "Vhf 9" - ], - "description": "In the w of the gulf of cavalaire the\nNew port is a modern marina\nEquipped with all services.The port is raveroed\nfrom the Mistral and has a backdrop of 8 m\nAt the entrance to just over 2 m in the W part W. Reception and distributor are on the central quay, while the alagigation crane is straight.With good weather you can anchor in front of the beach, to have a close to N and across the bay around the dubreuil tip.Towards Capo Negro there are other coves for anchors and are those of Bonporteau;Punta Dattier;Punta de la Chappe;Rayol's loop;The Canadel and Pramousquier in the ANSA formed by Chief Negro.", - "slips": 1140, - "temporarySlips": 40, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.538166667, - 43.1745 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 574, - "mapId": "F_CA_019", - "name": "PORT DU LAVANDOU", - "contacts": [ - "0033 04 94004110 Capitainerie", - "Vhf 9" - ], - "description": "The new port is located at the end of the Rade de Bormes and is signaled to the extremity of the casting s from an isophase light (4 sec., Capacity 13 mg).At about 2.3 miles from the entrance for s and there is the danger of the Isolotto de la Fourmigue, reported by a lightning light (2 every 6 sec., 8 mg capacity) covered by the green sector of Le Lavandou.Access is easy except with strong wind from scirocco.The backdrop varies from around 6 to 4 m;In the Ancien Port (which is accessed from behind the dam n) varies from 4 to 1.5 m.On the left-handed embankment entering is the welcome, the services, the capitaneria and the fuel distributor", - "slips": 1050, - "temporarySlips": 100, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.371, - 43.13466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 575, - "mapId": "F_CA_001", - "name": "BORMES-LES-MIMOSAS", - "contacts": [ - "0033 04 94015581 Capitaneria", - "Vhf 9" - ], - "description": "The port is about a mile of the port of Le Lavandou.The input is signaled on the casting and a red light to Lampi (6 sec., Capacity 10 mg).The pass is dragato at 3 m and marked on the left from red cylindrical buoys and green conical to starboard.Difficult entrance with strong wind from E. for the public harbor turns to the left, after the helicopter track.The services are at the bottom behind the piers.Wide possibility of shipbuilding assistance with 45 ton Travel Lift and 20 ton mobile crane.A s of the port of Bormes Les Mimosas there are two possible anchors ridden by the Mistral in the assess of Gau and to Port du Pradet.", - "slips": 950, - "temporarySlips": 80, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.365833333, - 43.126 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 576, - "mapId": "F_CA_015", - "name": "PORT MIRAMAR", - "contacts": [ - "0033 04 94015345 Capitaineria", - "Vhf 9" - ], - "description": "Marina with limited compensation from the low backdrop (1.60 m) on the mouth of the Maravenne which on the left bank has a 1.20 m dragna basin and signposted by a sparkling light and to Lample (15th century).The port of Miramar, on the right bank, is protected by a forane dam with a green isophase light (4 sec., 8 mg).\nAccess for a dredging channel reported by buoys.The captain, reception and distributor are straight.There is water availability, electricity, services, assistance.In the Gulf of Hy\u00e8res there are other smaller marina but of river and often inappened;I am: Port Pothuau les Salins (43 * 08 'N - 06 * 12' E);The Aiguade Le Ceinturion (43 * 06.5 N - 06 * 10 'E);La Capte (43 * 04 'N - 06 * 09' E).", - "slips": 1140, - "temporarySlips": 200, - "seaFloor": { - "minDepth": -1.2, - "maxDepth": -1.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.246, - 43.11366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 577, - "mapId": "F_CA_013", - "name": "HYERES", - "contacts": [ - "0033 04 94125440 Capitainerie", - "Vhf 9" - ], - "description": "Port of tourist importance for its proximity to the islands of Hy\u00e8res. Located on the east coast of the Giens peninsula it is ravished by all winds. The marina consists of four basins for a total capacity of 1,350 seats. The input n is signaled on the external casting with isophase green light (4 sec., 8 mg) and red to flashes (4 sec.) And gives access to the basin n. 3.\nInside the depth is 3 m only at the beginning and from the dam, to go down to 2.5 m in part N towards the Cala di Carenaggio and, turning to the left, behind the counter presented. While it is 1.80 meters between the front docks. The Cala Drivi, the services, the dry area are between the part of the counter presented (sparkling light and to lights 15 sec.) And the end of the head of the dock dam S.\nThe input s is marked by a green light to Lampi (4 sec.) And a red one (occ., 4 sec.) And gives access to the basins n. 1, 2 and 4 (Port la Gavine). The depth is about 3 m along the casting and to go down to 2. The most internal basin is 2.5 m deep.\nThe reception and capacity are in the partition embankment between the entrance pelvis n. 2 and in basin 1. As of Hy\u00e8res port is possible the anchor in the Rada de la Badine, quite protected by or, and after Cap Esterel in part s of the Giens peninsula in front of Port Fondue / Pradeau (43 * 02 'n - 06 * 09 'E) From here or beyond the fort, in Port du Niel (43 * 02.5 n - 06 * 07' e), ravished by the Mistral but not by the southern dials, in the section of the Ile du Grand Ribaud (43 * 01 'n - 06 * 08' e), only with favorable weather", - "slips": 1359, - "temporarySlips": 120, - "seaFloor": { - "minDepth": -1.8, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.160666667, - 43.081 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 578, - "mapId": "F_CA_006", - "name": "PORQUEROLLES", - "contacts": [ - "0033 04 98046311 Capitaneria", - "Vhf 9" - ], - "description": "The island is the closest to the coast, recently separated than a mile of Petit Passe from Ile du Ribud. It is recognizable from the large for Forte S. Agathe, it has a high and rocky coast with a few anchors available except in the coast N. La Punta W is surrounded by the dry Petit Langoustier reported by the Meda Cardinale n with the Jeaune Garde headlight (SCINT. A Sectors, 6 mg). The bay behind, as well as the parfait a s of the tip are suggestive from good weather. A S, Cap d'Armes hosts the Porquerolles lighthouse (2 flashes, 10 sec., Range 28 mg). At the end and Porquerolles the Gros and Petit Serranier islets prolong the eastern tip for S e The port of Porquerolles is in part N of the low and flat island with a sandy bottom, between the alicastra bay and the loop of the Bon Renaud, both from good times. The entrance to N W, signposted by a light to sectors (2 occ., 6 sec., Capacity 10 mg) is open to the Mistral. The backdrop is on 3 m and is reported by Boe the lowering in the part of the hospitality, capacity and fuel distributor are to the left of the central embankment.", - "slips": 626, - "temporarySlips": 265, - "seaFloor": { - "minDepth": -1.6, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.196666667, - 43.00433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 579, - "mapId": "F_CA_009", - "name": "PORT CROS", - "contacts": [ - "0033 04 94014070 Capitainerie", - "Vhf 72" - ], - "description": "The island is a national park, therefore the rules concerning protected zones are to be observed.There are no lights for nocturnal approach.The part or is faced by the Ile du bagaud (where it is prohibited.With Mistral the Port Man refuge is better, which instead is to be avoided with the N E. in the part and there is the danger reported of the dry lady.Port Cros has two docks, plus a fifteen buoy in part of the bay du moulin.Permitted anchors are those in the channel and in the annex of Janet (but there is power).", - "slips": 75, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.378333333, - 43.009 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 580, - "mapId": "F_CO_001", - "name": "AJACCIO", - "contacts": [ - "0033 4 95515555 Camera di Commercio", - "0033 4 95223198 Capitaneria", - "Vhf 9" - ], - "description": "The port of Ajaccio is located at the end of the homonymous Gulf that opens between head of wall and peaks of the parade (opposite the IsoLes Sanguinaires) and is the second large gulf that met by the west coast of the Corsica. The port of Ajaccio is accessed, leaving the two bright themes of the Guardiola (red flashlight, a period 2.5 sec., 2 miles range) and the citadelle (4 red flashes, every 15 sec., Capacity 7 miles). The port of the capital of Corsica is formed by three basins: the first immediately after the entrance of the casting s, if (red light, at eclipse, period 4 sec., Capacity 7 miles) is the Port Tino Rossi, capable of 260 seats, 120 for the passage, bottom of 6 to 10 m) with all the services and fuel station. The second basin, after the Jet\u00e9 des Capucins (Light to Lampi every 4 sec.) And the small pier of the 3 Marie is the Bassin des Capucins, reserved for fishing boats and commercial traffic. The third basin is the Port de l'Amiraut\u00e9 \"Charles Ornano\", protected to s from the Margonajo pier (light to Lampi Violets, period 4 sec.) On the edge of the casting and which has the red entry light, 2 flashes Every 6 sec., 6 miles range. The capacity of 830 seats of which 160 destined for the passage. In Ajaccio you can find all the services of a city, the largest on the island, and a lifestyle that is less detached from the continental one. History enthusiasts can visit the birthplace and the museum dedicated to his son most illustrious: Napoleon Bonaparte.", - "slips": 1090, - "temporarySlips": 280, - "seaFloor": { - "type": [ - "mud", - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.745166667, - 41.92466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 581, - "mapId": "F_CO_006", - "name": "ILE-ROUSSE", - "contacts": [ - "0033 4 95602651 Capitaneria", - "Vhf 9" - ], - "description": "To avoid the dangers of the rousse (rock\nCovered with 6.5 m of water) It is good to approach the alignment (165 *) of Mount Colombaja S and the village and the end of the foranee pier on which a isophase green light indicates the entrance.Another dry clench is on the joint of the aforementioned danger and the Genoese tower on the island.In practice, coming from s with a sailboat just turn well off to enter the port.Another danger, once entered, is reported by a \"fuck\" to about 150 m to s or from the entry light.The assignment is frequent and increases removing from shore.", - "slips": 250, - "temporarySlips": 86 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.936, - 42.63916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 582, - "mapId": "CR_373", - "name": "BRGULJE", - "description": "Anchor protected on sandy bottom in the gulf of the same name behind the Brguljski islet.It is very frequented by yachts.There is water and current in a quay.Many gavitelli are available for mooring.Arrival point of the hydrofoil.The Bonaster Peninsula is a military area" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.8385, - 44.22166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 583, - "mapId": "CR_374", - "name": "PODGARBE", - "description": "Bay uninhabited with two hits of which to the south-east is righted on every side." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.8615, - 44.21416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 584, - "mapId": "CR_375", - "name": "LUCINA", - "description": "The ferry docking pier takes up a lot of the port.Inside the protected basin there is enough water for yachts.The berth in Radio is on a mixed sand and algae background.The town of Molat a short distance away offers a restaurant and a food store.Bathing anchor in Sabusa and in the fall north of Mali Tun" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.8675, - 44.21083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 585, - "mapId": "CR_075", - "name": "CAVLENA", - "description": "In the northernmost part of the bay there is a good night from the twenty of the first two quadrants.The backdrop is a bit high and you should get close to the shore to give bottom in 7-8 meters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.46716667, - 45.09983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 586, - "mapId": "CR_076", - "name": "ROVENSKA", - "description": "A long frangiflutti brush riddened by the sea the bay that is more defense as the previous ones, but not enough with bora wind that raises a strong stand." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.50733333, - 44.52216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 587, - "mapId": "CL_060", - "name": "LE CASTELLA", - "contacts": [ - "0962 20921 Capitaneria di Crotone", - "0962 795036 Club Nautico" - ], - "description": "Located in the Levante Creek of Le Castella 20 miles south of Crotone.Marina recently completed, well marked by the lighthouse which is next to the pre-existing pier.", - "seaFloor": { - "type": [ - "rock", - "sand" - ], - "minDepth": -1.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.03183333, - 38.9095 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 588, - "mapId": "F_CO_013", - "name": "CENTURI", - "contacts": [ - "0033 4 95701793 Capitaneria" - ], - "description": "Marina fishing boat and tourist located at 2.5 miles of Corso in the Bay of Centuri.The bay is protected from the winds of SW from the island of Capense (Centuri) and the rocky coast.Access to the port is not possible with strong winds from W to N, and in particular with Libeccio.The draft inside of the pelvis is limited to fishing boats under 2 m and in any case accessible only with good weather and calm sea.Accommodation works are underway.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.348333333, - 42.96666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 589, - "mapId": "F_CO_014", - "name": "CAVALLO", - "contacts": [ - "Vhf 67" - ], - "description": "The horse island is at the center of a rocky platform surrounded by sinuous and tight passages.The entrance to the marina is only possible with calm sea and in any case it is necessary to maneuver with prudence by carefully observing the nautical paper.The arrival is located on the southern side of the island and the entrance is signaled by red and green buoys.Keep themselves scrupulously inside the corridor, taking care, right in front of the entrance to the clenching rocks.", - "slips": 250, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.251666667, - 41.37333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 590, - "mapId": "LI_991", - "name": "MARINA DEL FEZZANO", - "contacts": [ - "0187 790768 Capitaneria", - "0187 790103 Direzione Marina", - "www.marinadelfezzano.it", - "Vhf 9" - ], - "description": "Landing for 243 berths with floating piers and ground floor services of the Fezzano.", - "slips": 243, - "seaFloor": { - "minDepth": -6.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.831833333, - 44.08166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 591, - "mapId": "SA_990", - "name": "PERD\u2019 E\u2019 SALI", - "contacts": [ - "070 900057 Capitaneria", - "070 805460 Saromar" - ], - "slips": 256, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.032833333, - 39.02866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 592, - "mapId": "TO_990", - "name": "MARINA DI SALIVOLI - PIOMBINO", - "contacts": [ - "0565 221000 Capitaneria", - "0565 42809 Direzione Marina", - "0565 48028 Yacht Club", - "www.marinadisalivoli.it", - "Vhf 9" - ], - "description": "Tourist port between Porto Baratti and Piombino in an area, in front of the island of Elba, of great interest to nautical tourism.Good back to the northern quadrants, the entrance to the marina has no dangers of sorts.", - "slips": 480, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.5095, - 42.9315 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 593, - "mapId": "CR_001", - "name": "KOPER", - "contacts": [ - "05 6626100 Marina" - ], - "description": "Koper is a medieval town with Venetian traits in its architecture and rises on a slight declivio south of the pegs of Stagnone and fields, points of reference for the presence of Monticello Sermin.It is equipped with a commercial port, a marina and essential services.It is a port of permanent entry and has all the maritime, police and customs offices.Night reported by a light (2 flashes, 10s, 4 m), it is ravished by the wind, but it is sensitive to the wave raised by the winds of the III and IV quadrant.", - "slips": 70 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.72516667, - 45.55066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 594, - "mapId": "CR_400", - "name": "SKARDA", - "description": "Anchoring in front of the country is ravished by southern winds.The narrow creek of Griparica (44 * 16.6 n - 14 * 43.4 e) is instead good, twenty from the north and west of goodwilled seafar of 5-15 meters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.72, - 44.27416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 595, - "mapId": "CR_002", - "name": "IZOLA", - "contacts": [ - "05 6400250 Marina" - ], - "description": "Island of Istria appears from the sea with its bell tower on the houses behind the Punta Petelin which protects the entrance of the marina (light to Lamp, 5s, 6 m) in the south-east rod, which is exhibited by twenty and wave of theIV Dial.The fuels supply station is at the root of the Frangiflutti Nord pier at the entrance of the internal basin.Outside the marina, numerous gavitelli are available for mooring at the wheel enough protected even by Bora.\n\nOther Ridoved: a nearby and safe anchor with ugly weather from the south, but good close to Bora is the Baia di Strunjan, as soon as he passed the roney leader south.", - "slips": 550 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.649, - 45.5375 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 596, - "mapId": "CR_003", - "name": "PIRAN", - "contacts": [ - "05 6400250 Marina" - ], - "description": "Piran appears in the visitor's eyes as a Venetian town and you immediately see from the bell tower (S. Juri), a copy of that of San Marco, but also from the houses, squares and calls of the old city.The marina is located close to the Punta Madonna (white isophase light, 4s, 11 m) and is signaled by a red entrance light on the Frangiflutti pier (ISO, 4S, 3 m).It is repaired by all twenty, but the Libeccio causes an annoying senses inside.The refueling of water and fuel is on the south pock in straight by entering, in summer reserved for yachts.\n\nOther Ridoved: The Bay of Piran offers good anchors ridden from the north east towards the tip of S. Bernardino;From the south west instead we must approach the south coast of the bay, in now Croatian waters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.56616667, - 45.526 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 597, - "mapId": "CR_004", - "name": "PORTOROZ", - "description": "Portoroz (Portoro\u017e) is the southerner port of Slovenia.It is located on the internal part of the northern coast of the bay of Piran and its mild climate enjoys a renowned fame of international seaside resort thanks to the fact of being home to a casino.The marina is modern and equipped with 650 berths, plus 350 on the ground.Other services available are the tennis court, bowls, a mini golf, bowling and a restaurant.Portorose also has a landing field for touring aircraft.The border with Croatia is on the south side of the bay, to the mouth of the Dragonja stream.", - "slips": 650 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.59333333, - 45.50516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 598, - "mapId": "CR_005", - "name": "SAVUDRIJA", - "description": "Punta Salvore is the westernmost part\nof the Istrian peninsula.From here the\nCroatia.Punta Salvore is surrounded by bases backdrops and dry covered by the red lighthouse sector (3 flashes, 15s, 30 m) equipped with fog siren.The marina of Salvore to the north east of the Cape is the first port of Croatia and is ravished by Bora, but the low bottom (3 m) and the narrow entrance preferably insert the smaller boats.The mooring is on the pier to T or next to the frangiflutti pier.A mile further south is SAGAR with the remains of the Roman port, used and then destroyed by the pirates." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.50216667, - 45.4995 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 599, - "mapId": "CR_006", - "name": "UMAG", - "contacts": [ - "052 741066 ACI Marina" - ], - "description": "The Paklena Tip and the Dry homonym on its extension to the sea up to the Garofoulin Scoglio signposted by Bright Meda (2 flashes, 8s, 30 m) cover the bay from the north with the port of Umag (Umag) whose entrance expects to leave aLeft The red cylindrical boa and straight the black conical one, both bright.The outer green conical boa is Serza Luce.The pier for the handling of the entrance formalities is on the tip, while on the left there is the modern marina with 550 berths, 350 on the ground.The boats in transit are welcomed at the outermost piers: this involves a long walk to the toilets.In the basin there is a sea excursion at 1.2 m.There is a paid gavitelli field.", - "slips": 550 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.51183333, - 45.437 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 600, - "mapId": "CR_007", - "name": "DALJA", - "description": "The coast south of Umag has numerous seaside coves (Spina, Lovrecica) of which that of Dalja is the wider and safer with seabed between 8 and 2 m.The combinable pier (2.5 m) outside is reserved for fishing vessels." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.53783333, - 45.3575 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 601, - "mapId": "CR_008", - "name": "NOVIGRAD", - "contacts": [ - "052 757035 Capitaneria", - "052 757077 Marina" - ], - "description": "Access to the port of Novigrad (Cittanova) is hindered south-west from about 3.5 m basfondo, in the red port of the port lighthouse (in Lampi, 5s, 8 m).The marina, equipped with 80 berths, 30 on the ground, is in the heart of the country but the services (WC) are poor.Of the gavitelli are available in the northern part of the bay.The larger boats moor close to the breakwater.The stop is raveroed but exposed to west;In the summer season there is a master's office.Behind is good in the bay, even if with Scirocco you create a little senses.In summer between bars, concerts, shows and rides there is deafening music until late at night.", - "slips": 80 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.55533333, - 45.3195 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 602, - "mapId": "CR_009", - "name": "MIRNA", - "description": "The Rada di Quieto with the hans of Mirna to the south and Tarska to the east are a pleasant anchor enough ravished by the winds and with a good underwater background.The recommended anchorage is north of the Valeda ANSA." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.58533333, - 45.30933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 603, - "mapId": "PU_064", - "name": "MARINA BOCCA DI PUGLIA", - "contacts": [ - "0831 521022 Capitaneria", - "0831 411516 Direzione porto", - "www.marinadibrindisi.it", - "Vhf 8" - ], - "description": "The Marina is located inside the port, in the breasts Bouches of Puglia, and offers with all the most modern services.The headlights and headlights are those of the port of Brindisi.", - "slips": 642, - "vesselMaxSize": { - "maxLoA": 35.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -11.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.96416667, - 40.65483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 604, - "mapId": "PU_101", - "name": "CASALABATE", - "contacts": [ - "0832 650630 Capitaneria", - "0832 389091 Lega Navale Italiana" - ], - "description": "Marina with a slide run by the Casalabate nautical circle.Only for small boats.Frequented only in the summer.The band in front of the entrance is full of slums and rocks.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.1235, - 40.4985 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 605, - "mapId": "CR_018", - "name": "MEDULIN", - "description": "The Bay of Medulin opens between the head Kameniak and the Punta Marlera.The main passage, between the Phenera and Ceja islets to keep on the left and the Bodulas islet, at night is reported by the white sector of the lighthouse (2s, 4 m) of Capo Munat, entry point to the most internal creek with theInhabited by Medulin and Pomer.The Marina Pomer (44 * 49.4 N - 13 * 54.4 e) has 220 berths with essential services, fuel supply.The Ridoved from Bora that here blows strong are behind the Pomerski and Premanturskj islets.The backdrop is mediocre contractor.The Cape Coveratures Kameniak (ANSA PORTIC) and those after Capo Marlera, Kuje (44 * 53.4 N - 14 * 00 'and), Vinjole (44 * 55.1 N - 14 * 01.9 e), Krnicka (44 * 57' N- 14 * 02.3 and) are not fully reliable because they exposed to Bora or Scirocco.A good back is that of Budava (44 * 53.4 N - 14 * 00 'and) that however is partly mussel farming area and military port." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.92266667, - 44.81183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 606, - "mapId": "CR_019", - "name": "ZALIJEV RASA", - "description": "The mouth of the Arsia river forms a fjord over five miles to which is a marshy area, Val Peocio, with commercial ports (cement and carbonidist) of Trget and Brsica.At night the entrance to the Arsia Canal is signaled by a lighthouse (in Lampi, 4s, 8 m) facing that of Krnica on the coast.More suitable for pleasure the tunaric anchorses at the bottom of straight after the first big loop, where the bora makes you feel less angry than in the rest of the fjord.Going up the Istrian coast after the Canal d'Arsia, towards Punta Nera (44 * 57 N - 14 * 09 'E) Other anchors to avoid for similar reasons and why open to the south are those of Koromacno and Prklog exposed to the winds of Iand the dial." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.05816667, - 44.94133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 607, - "mapId": "CR_020", - "name": "RABAC", - "contacts": [ - "052 872085 Capitaneria" - ], - "description": "The entrance to the bay is signaled by a lighthouse (in Lampi, 3S, 6 m) on the Punta S. Andrija (attention in approach to the dry - 1.5 m - at about 350 m from the head for the north east).The port of Albona is communication with the island of Cres and offers numerous dealer opportunities for refueling and staying on the ground.The north side in front of the beach is shallow from Bora, while in the north-east part of the bay there is the best anchorage and the possibility of refueling of water on a quay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.1615, - 45.06783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 608, - "mapId": "CR_021", - "name": "PLOMIN", - "description": "The village of Fianona is at the bottom of a deep fjord and tightened by the south winds and in which the sirocco raises a rough sea.The bora here blows from the south-west direction of \"shore\" on the upwind coast.The entrance to the Plominska Luka is signaled by a lightning light on the north tip (2s, 8 m).Boats of a small draft can be moored in the mouth of the river." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.20333333, - 45.11366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 609, - "mapId": "CR_022", - "name": "MARINA ADMIRAL", - "contacts": [ - "051 271533 ACI Marina" - ], - "description": "A modern marina with all the services reported by night from the light to Lample (2, 5s, 6 m) on the East head of the Frangiflutti pier.It has 200 berths, crane of 15 ton, mechanical and electric assistance, restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.30133333, - 45.3285 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 610, - "mapId": "CR_023", - "name": "OPATIJA", - "contacts": [ - "051 711249 Capitaneria" - ], - "description": "Abbey is a renowned holiday center from the nineteenth century.The marina has over 300 berths and all the main services, it is also ravished by all winds but not by bora and levante.In the harbor inside the depth is 3 meters, outside meters 5.", - "slips": 300, - "seaFloor": { - "minDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.31083333, - 45.33766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 611, - "mapId": "CR_024", - "name": "RIJEKA", - "contacts": [ - "051 212696 Capitaneria" - ], - "description": "From the Preluk river the coast is rocky and at a peak and does not have a furious. The port of Rijeka is the largest commercial port of Croatia but does not have a pleasure facilities. It is repaired by a long dam that runs parallel to the coast and consists of six basins of which the last is the real port of the city. As in the sailing channel you wanted between the Istrian coast and the island of Cres, the entrance to the port (and the Gulf of Rijeka) is on the tip for those who enter. The mouth of the Eneo river marks the beginning of the town of Susak who has a communicating port with that of river through a canal and is the usual site of the tugboats and the brajdic marina. Rijeka's lighthouse is a typical striped tower on a quadrangular characteristic block (in Lample, 15s, 15 m). The construction sites and repairs of Avarie are in Luka Brgud and Martinscica (45 * 18.7 N - 14 * 29 'E), respectively to the west and east of Rijeka. The local nautical club is in Zurkovo." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.41616667, - 45.32883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 612, - "mapId": "CR_025", - "name": "BAKARSKI KANAL", - "contacts": [ - "051 761214 Capitaneria Bakar" - ], - "description": "The entrance to Buccari bay is hampered by two dried reported on each of the two tips.The north is signaled by a buoy (3s, 4 m), the one on the tipstick from a meda.The area has peaked and the oil and commercial port of Bakar.The sirocco raises Maretta from which you can repair better in Bakarac (45 * 16.8 n - 14 * 35.1 e) port for small boats, and in the case, anchoring of luck." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.56033333, - 45.27916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 613, - "mapId": "CR_026", - "name": "TIHI KANAL", - "description": "The Tii channel or \"bad weather\" is the sea arm between the coast, always rocky and peak, and the island of Krk.It extends from the ISOLOTTO DI S. MARCO that to the north it divides its entry (safer the east pass) to the Punta Ertak to the south. The precedence in the transit is of those coming from the north.The area for its tightness and conformation of the coast profile is exposed to the hardest effects of the bora and the scirocco.On the coast there are also numerous redes themselves that allow the passage yachts to even anchor.First of all the former ferry moorings for the islands that the new bridge with the mainland has made it in use like those of Cresnjeva (and Voz on the island of Krk) and then that of Dubno and south Jadranovo and the percin loop (45 *13.6 n - 14 * 37.1 E) Rough both from Bora and Scirocco." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.60216667, - 45.2315 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 614, - "mapId": "CR_027", - "name": "CRIKVENICA", - "contacts": [ - "051 242321 Capitaneria" - ], - "description": "Ferry port by vigil at the mouth of the Dubracina river.Rounded by the dominant winds.Inside the FrangiFlutti pier the backdrop is 5 m, less than three on the external quay where there is a fuel pump and the water intake.Each type of refueling is possible on the ground." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.68916667, - 45.17066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 615, - "mapId": "F_CA_008", - "name": "CAP D\u2019AIL", - "contacts": [ - "0033 04 93782846 Capitaineria", - "Vhf 9" - ], - "description": "The Port of Cap d'Ail is located on the French territory just beyond the border with the Principality of Monaco (divides them the embankment of Fontvieille).Access is allowed with any time, but the assignment is remarkable outside the forane dam and makes it problematic in difficult conditions.The entrance lights have characteristic of 4 sec.The fuel distributor is immediately on the left entering", - "slips": 253, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.412833333, - 43.72266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 616, - "mapId": "F_CA_016", - "name": "MONACO", - "contacts": [ - "00377 977773000 Capitaneria", - "Vhf 12" - ], - "description": "Monaco has two ports, the first is Port de la Condamine, known for the television shooting of the Formula 1 Grand Prix, not very repaired by the first quadrants, with strong senses and which is undergoing a restructuring and modernization to improve receptivity and services for adultsYacht (the mythical \"Labrax\" was also removed, the ship that stated perpetually in front of the port).The fuel distributor is on the left, as well as the construction situation area.Red and green entry lights to flashes (4 sec.).The second is the port de fontvieille more to w, he enters the rock after the sea with the oceanographic museum and the point St. Martin, before the heliport.Entrance lights: red and green to Lample, 6 sec.", - "slips": 650, - "temporarySlips": 60, - "seaFloor": { - "minDepth": -7.0, - "maxDepth": -12.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.430333333, - 43.7355 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 617, - "mapId": "F_CA_011", - "name": "BEAULIEU SUR MER", - "contacts": [ - "0033 04 93011049 Ufficio del porto", - "Vhf 9" - ], - "description": "At the attack of the Cap Ferrat Peninsula, the port has the entrance protected by a breakwater barrier that allows entry from N to the boats of greatest draft, from S instead it is possible, inside a path marked by bright buoys,Only boats with limited water guy.Fuel dispenser in the head at the straight pier", - "slips": 743, - "temporarySlips": 156, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.34, - 43.70883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 618, - "mapId": "F_CA_030", - "name": "ST JEAN CAP FERRAT", - "contacts": [ - "0033 04 93764545 Capitaineria", - "Vhf 9" - ], - "description": "The port entrance is addressed to N and on the forane dam there is the headlight with red flashes (4 every 12 sec. Capacity 9 mg).The wave and the wind strong from and makes it difficult to enter.The backdrop at the entrance is 3.5 m, inside varies from 4 to 2 m.The places for the passage are a dozen public part, at the bottom of the port.It is possible to anchor in the bay in front of the arrival Pierre Fourmi or in the meat of the ladder with wind from or, beyond the St. Hospice peninsula in the Lilong Baiette and Fosses with good weather", - "slips": 560, - "temporarySlips": 10, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.335166667, - 43.69233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 619, - "mapId": "F_CA_037", - "name": "VILLEFRANCHE SUR MER", - "contacts": [ - "0033 04 93017070 Capitaineria", - "Vhf 9" - ], - "description": "Three-quarter of the deep bay, between Cap Ferrat and Cap de Nice, on the left, the port of Villefranche sur Mer has the entrance to it, at the end of the foraneity dam on which there is a light (with sparkling light, capacity 8mg).Water and current are available in a quay, the capacity is at the internal end.Less than a quarter of a mile later than the port The Sant\u00e8 pier works for shelter for fishing boats and landing boats for the service boats of the numerous pleasure boats that in the season stop in the Rada: it is reported by a lightning light (2Occ., 6 sec., 10 mg).The pleasure boats normally anchor in the Espalmador bay", - "slips": 420, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.311166667, - 43.69983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 620, - "mapId": "F_CA_005", - "name": "NIZZA", - "contacts": [ - "0033 04 92004214 Ufficio del porto", - "Vhf 9" - ], - "description": "The port of Nice is very busy\nFrom ferries to Corsica and ships\nfrom cruise, so much so that it is the study\nAn additional enlargement project.\nHaving regard to traffic is good to pay attention\nat the entrance.\nThere is also great presence of Naviglio\nPleasure, the part dedicated to boats is the most internal one.The reception and the capacity are on the right entering after the yacht club. Fuel refueling is from tank truck.Input is allowed with any time.It is not very visible from the wide.The night approach is done on the Cap Ferrat's lighthouse (3 flashes every 3 sec., Range 25 mg) and then on the lightning light of the port (period 5 sec. Capacity 14 mgl).", - "slips": 503, - "temporarySlips": 153, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.2895, - 43.69033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 621, - "mapId": "F_CA_028", - "name": "ST LAURENT DU VAR", - "contacts": [ - "0033 04 93071270 Capitainerie", - "Vhf 9" - ], - "description": "Located about five miles from Nice, in the immediate vicinity of the airport, just beyond the Va river, the port of St. Laurent is private and has over a thousand berths.The backdrop at the entrance (oriented for O) is about 4 m to descend up to 2.2-2.5 m inside the bottoms.The light is in Lampi (3 every 12 sec., 11 mg).The capacity is immediately on the left so \"as the fuel distributor. The contiguity of the second airport of France and the busy Via Litoranea does not make an idyllic stop, but it can be a resource for a mooring in times of sold out", - "slips": 1094, - "temporarySlips": 256, - "seaFloor": { - "minDepth": -2.2, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.178, - 43.655 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 622, - "mapId": "F_CO_004", - "name": "CALVI", - "contacts": [ - "0033 4 95651060 Capitaneria", - "Vhf 9" - ], - "description": "It is the most popular port of Costa W of Corsica and it is always difficult to find mooring.For some years the neighboring area has also been equipped in front of the beach with buoys and dead bodies (for a fee).Anchoring with good weather conditions on the side and the beach (outside the area of compared with 300 m), and a W in the adjacent Bay of Revellata.Part N just entered the tip is dedicated to commercial traffic and ferries.Attention to the big tuning metal buoy located on the left just out of the cast.", - "slips": 450, - "temporarySlips": 200, - "seaFloor": { - "minDepth": -1.7, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.761833333, - 42.565 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 623, - "mapId": "F_CO_005", - "name": "CARGESE", - "contacts": [ - "0033 4 95264724 Capitaneria", - "Vhf 9" - ], - "description": "is a small fishing and pleasure port,\nAt the N end of the Gulf of the Sagone, well protected from NW winds with a forane dam that protects it also from itself, but difficult night access and with sea and wind from Western dials.The Rada is a good weather berth on 5 m backdrops.In approach it is necessary to have the actor to abundantly circumvent the tip of carpese and present to the entrance with route N. Attention even when you come from s to the danger of the Marifaja rock, about 3 miles for 140 * from the port light.", - "slips": 235, - "temporarySlips": 35, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.599666667, - 42.13066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 624, - "mapId": "CR_077", - "name": "VELI LOSINJ", - "description": "Dangerous marina for the bora to be attended only with beautiful time declared." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.5005, - 44.52366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 625, - "mapId": "CR_078", - "name": "BALDARKA", - "description": "Baia Aperteta northeast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.485, - 44.5285 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 626, - "mapId": "CR_079", - "name": "OSOR", - "description": "Osor stands on a promontory to the east of the entrance to the homonymous channel that connects the bay of Ossero and the Losinjski Kanal.The 150 m and wide channel 12 has a depth of about three meters.It is available by day (opening of the high bridge over water 1.5 m) from 9 to 17. With strong wind from the north or south it is not practicable for the rough sea.The current can reach 5 knots.The closest anchors are north Bijar and to the south, in the Lo\u0161inj canal, sons that has low waters and a bad scenery." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.394, - 44.69233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 627, - "mapId": "CR_080", - "name": "BIJAR", - "description": "Porto Bijar is well repaired by all directions and very attended.It has a number of bollards for the ground mooring.The moles are reserved for fishing boats.Possibility of supplies at the campsite." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.3895, - 44.6975 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 628, - "mapId": "CR_081", - "name": "VALUN", - "description": "Valun is at the bottom of the Cherso valley and is a small inhabited fishermen with a minimum marina and a pier than for yachts.It's a little safe anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.3635, - 44.90716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 629, - "mapId": "CR_082", - "name": "STARA KULA", - "description": "The high tower tower marks the entrance to the terminal part of the Velebiski Kanal.An area with slums, both in the north and south, dry part (signposted in front of Vinjerac) and rocks.Crvena anchoring preza east of the head is ravished by all winds, not bora.Attention to the Skrpelji scatters underweight." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.45166667, - 44.28 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 630, - "mapId": "CR_083", - "name": "STARIGRAD PAKLENICA", - "contacts": [ - "023 79062 Capitaneria" - ], - "description": "Marina with mooring pier.Anchor completely exposed to the north east." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.43483333, - 44.2955 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 631, - "mapId": "CR_084", - "name": "CAPO DUGA", - "description": "Night reported by a lighthouse (3S, 5 m) Departures the Ljubacka Vrata, (Strait of Giuba).The part around the garment offers good furiousness as the berths of Lisarica, Obicajac, to the north, or of Cruscica Duboka to the south. The Razanac islets and their dried, in the middle of the canal constitute a danger with strong wind." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.30833333, - 44.34983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 632, - "mapId": "CR_085", - "name": "BLIZNICA", - "description": "Baietta oriented for north-east south-west with backdrop on 15 m.Some bits on the ground make mooring safer." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.13266667, - 44.47533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 633, - "mapId": "CR_086", - "name": "UVALA STINICA", - "description": "Bay with two loops riddened respectively by Bora and Scirocco.Goodweight sandy bottom." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.89166667, - 44.72433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 634, - "mapId": "CR_087", - "name": "STARIGRAD", - "description": "Stone from Bora and Scirocco, but port opened to the twenty of west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.8795, - 44.7975 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 635, - "mapId": "CR_088", - "name": "MALIN", - "description": "Fjord for low draft boats.The Dry reported PLICINO OD MALINA (1.5 m) hinders the North West entrance." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.9095, - 44.90866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 636, - "mapId": "CR_089", - "name": "JURIEVA", - "description": "Protected from north-east and south-east, but open to the west.Attention to dry 1.5 miles from the entrance to the southwest." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.917, - 44.92933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 637, - "mapId": "CR_090", - "name": "SENJ", - "description": "Entrance port placed in a valley that acts as a bora accelerator." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.89783333, - 44.991 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 638, - "mapId": "CR_091", - "name": "VINODOLSKI KANAL", - "description": "South of Capo Ertak begins the Vinodolsky canal that extends to Senj.This stretch of sea is the northern part of Velebitsky Kanal (Morcolaca Canal), the longest navigable channel of the Dalmatian coast ending at the Ljubacka Vrata at the bottom of the Pago channel.The ports overlooking the coast are those of Crikvenika, Novi Vinodolskj, Povile, Klenovica.Good anchors are those of Kacjak (45 * 12 'N - 14 * 39.5 and), Selce, Teplo, Zrnovica, Jelena." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.65116667, - 45.17633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 639, - "mapId": "CR_092", - "name": "KRALJEVICA", - "contacts": [ - "0512 81330 Capitaneria" - ], - "description": "The port in the southern part of the entrance to the Buccar bay is raveroed but unexplained for commercial and shipbuilding activity that occupies the docks.The anchor for yachts is in the middle of the port on a backdrop of 15-20 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.5625, - 45.274 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 640, - "mapId": "CR_093", - "name": "VOLOSKO", - "description": "Volosko is a suburb of Abbey and its port is not ravished by the first two quadrants, therefore the stop on a quay that has a backdrop of 3-4 m to take into account.Bars and restaurants are very crowded in the summer season.\nNot recommended the anchorage also in the nearby preluk bay without any shelter from the south." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.325, - 45.34833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 641, - "mapId": "CR_094", - "name": "LOVRAN", - "description": "Small dock, accessible only with good weather, exposed to Bora and Scirocco.It is possible to approach the yacht with drawing above the exterior of the quay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.28, - 45.29133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 642, - "mapId": "CR_095", - "name": "MOSCENICKA DRAGA", - "contacts": [ - "052 872085 Capitaneria" - ], - "description": "Marina for fishing boats.The pleasure boats can anchor in a radiation;Not recommended the night anchoring." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.25633333, - 45.2365 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 643, - "mapId": "CR_096", - "name": "BRESTOVA", - "description": "He is a starting point and arrival of ferries with the frontier Porozina on the island of Cres.The quay is reserved for line boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.22483333, - 45.14283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 644, - "mapId": "CR_097", - "name": "IKA - ICICI", - "contacts": [ - "051 704004 ACI Marina" - ], - "description": "Small fishing port used solely by lands.The mooring at the jetty under the lighthouse (2 flashes, 5s, 4 m) in the center of the bay is only for short stops.The yachts prefer the Marina Aci (tel. 051 704004) to icici about half a mile to the north." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.284, - 45.30433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 645, - "mapId": "CR_365", - "name": "LUKA JAZI", - "description": "Pleasant bathroom inlet with a small dock, depth 1 terretone.It is protected from the west but to reappear from Bora better anchor south of the tovarnjak islet" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.87933333, - 44.22233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 646, - "mapId": "CR_366", - "name": "VELI RAT", - "description": "Marine pigcick with services and electricity for 150 boats.Possibility of supplies (no fuel).In front of the village leads to the rama of Cuna, protected from every part and with the muddy backdrop (3.5 m) excellent scenic.Many buoys are available for mooring.To the north of the village there is the panther rada, wide and with sandy beach and clear water, more suited to a seaside berth.To access it you must pay attention to the dry, reported by a boa, luminous (3 s, 3m) on the extension of the okljucic tip.On the western part of the bay, two hoens are opened, Susica with a small pier and Slatine, well riddled by the west.Veli Rat has on the external end of the northwest coast one of the largest headlights in the middle", - "slips": 150 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.84766667, - 44.14466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 647, - "mapId": "CR_367", - "name": "SOLISCICA", - "description": "Attigua at the Bay of Pantera, south of the south east is the Bay of Soliscica, which has at the end of the village of Soline, well riddled except from the north west, and a little earlier, the cave of Lucica well righted by Scirocco from theLow and open coast in Bora (a clearly visible wreck is to testify it)" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.865, - 44.1505 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 648, - "mapId": "CR_368", - "name": "DOBRA", - "description": "Disabitten bay that offers its west and bathing possibilities" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.8755, - 44.16633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 649, - "mapId": "CR_395", - "name": "SILBA", - "description": "The country physically divides the island.Also the ports are two, that of Zalic (44 * 22.4 N - 14 * 41.8 and) to the west, to attend in times of bora, and that of Luka Silba (44 * 22.5 N - 14 * 42.4 and) protected by the third andFourth quadrant and with water and current in a quay.On the west coast also to signal the anchoring of PapRanica (44 * 23.4 N - 14 * 41.1 e) and Luka SV Ante (44 * 21.4 N - 14 * 42.4 e).With Bora the stand in port is very strong." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.70433333, - 44.37533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 650, - "mapId": "CR_389", - "name": "OLIB", - "description": "Hold over to East Silba and is complementary to this island as regards.The port of Ulbo (44 * 22.8 N - 14 * 47 'and) has a long pier for North East / southwest that just ridden with the tramontana.The external tip is reserved for the ferry.Many mooring buoys, water and current in a quay are available to the dealer.Possibility of refueling and restaurants in the village.There is a slide for small boats.Bathing anchors are north, the one behind the Kurjak Scoglio and to the south, those of Bave, St. Nicholas and Juzna Slatina." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.76983333, - 44.38116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 651, - "mapId": "CR_382", - "name": "IST", - "contacts": [ - "023 372449 Capitaneria" - ], - "description": "The island is very visible from afar for the presence of a white church on top of the highest mountain.The Siroka bay (44 * 16.2 N - 14 * 46.3 E) has a protective pier with water and electricity and several berths in a quay.There are also several mooring boards.With ugly weather from the south is an anchor protected in the Kosiraca bay (44 * 16.8 N -14 * 45.8 and) on the bottom of sand and algae where the boats of local fishermen are moored.In the village there is a shop for food and a couple of restaurants." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.7655, - 44.27016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 652, - "mapId": "CR_394", - "name": "SESTRUNJ", - "description": "The bays returned from the north winds are those of dumbocy with a small mooring on the southern tip and Kablin (44 * 08.5 N - 15 * 00.8 and) perfectly protected by the bora but with a high backdrop for anchoring.The small pier is destined for ferry and touring boats.A bathing berth is that of permanje.The harbor of Hrvatin with a combinable pier (water depth 2 m) on the north east side of the island, is close enough to the country but exposed to the bora.A" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.01216667, - 44.134 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 653, - "mapId": "T_009", - "name": "PORT EL KANTAOUI", - "contacts": [ - "00216 73 348799 Capitaneria", - "Sig. Raouf Seghaier", - "www.portelkantaoui.com.tn", - "Vhf 16 - 6" - ], - "description": "Modern 5-mile tourist port north of the city of Sousse, built in a natural channel around a tourist center with hotels, bars and restaurants.A pleasant stop, well ravished by all winds, where you can make entry practices in Tunisia.For landing it is a conspicuous point the block of the Hannibal Palace hotel with two small towers, a s of the entrance hall.\nDominant winds: if in summer, sw in winter.", - "slips": 340 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.60266667, - 35.89233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 654, - "mapId": "T_008", - "name": "MARINA CAP MONASTIR", - "contacts": [ - "00216 73 462305 Capitaneria", - "Sig. Monsour Chaabane", - "Web: www.marinamonastir.com", - "Vhf 16" - ], - "description": "Great Marina NATO in a tourist center\nof Monastir, one of the most beautiful Arabic cities\nof Tunisia.Already from the wide you see\nThe towers of the minarets and the great mosque.Cap Monastir has the international airport and the marina offers conventions on flights to and from Europe to the shipowners who leave the boat for the winter.It is 188 miles from Malta, 226 from Palermo and 80 from Lampedusa.The port is accessible with all time and stands immediately to the Egdemo island.In the access channel there are 6 m of draft and inside the port 4-6 m.", - "slips": 386, - "temporarySlips": 126 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.838, - 35.77683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 655, - "mapId": "T_007", - "name": "MAHDIA", - "contacts": [ - "00216 71 738300 Capitaneria", - "Sig. Rahmane Slama", - "Vhf 16" - ], - "description": "Big fishing port, well-resistant\nExcept to twenty from s, located on the cap\nAfrique distant 34 miles from Monastir.\nFor landing, identify the lighthouse of\nCap Afrique, white and red.From the\nport fades 3-4 miles for a big one\nIndustrial blockboy with two chimneys.\nWarn by radio of your arrival.\nThe pandror, where there are 5 meters of\nBackdrop, gives access to a large basin.\nTo identify the \"quai\" reserved for pleasure\nThe entry practices: tear to starboard\nand enter the internal basin supplied with\nGreen and red lights: the pier is in front.\nDangers: Stay from Cap Afrique.\nServices: water, electricity, hauling stop and\nTravel up to 250 t, naval mechanic, diesel,\nWeekly market on Friday.\nHazards: in front of the port there is a dam\nsubmerged at 0.50 meters between the brush and the\nLeft-wing marked by a headlight e\nA series of floats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.07233333, - 35.49966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 656, - "mapId": "SA_110", - "name": "SANT\u2019ANTIOCO", - "contacts": [ - "0781 83071 Capitaneria", - "0781 83505 - 0781 828049 Seastars", - "349 1393324 Gestore (Valentino Cubeddu)" - ], - "description": "Fully quack the port is on the waterfront, meeting place and summer of tourist appointments.Due to the bass backdrops, access is limited to limited fishing boats.Coming from N you reach the landing entering from the S. Pietro canal: pay attention to the dry.Coming from s, the passage under the bridge that unites Sant'Antioco at the mother island, is limited to boats with a maximum height of 8 m.", - "slips": 130, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.46, - 39.066 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 657, - "mapId": "TO_056", - "name": "GIANNUTRI", - "contacts": [ - "0564 812529 Capitaneria", - "0565 919411 Ente Parco Arcip. Tosc." - ], - "description": "A Giannutri can moor it in the Cala Spalmatio in Radia (attention to gavitelli) or in a quay.Fishing prohibited.It is protected within the Tuscan Archipelago National Park.", - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.10683333, - 42.25316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 658, - "mapId": "CR_028", - "name": "NOVI VINODOLSKI", - "contacts": [ - "051 244345 Capitaneria" - ], - "description": "Luka Novi is exposed to the twenty of the west.The 5.5 m backdrop in the center of the port, outside the Nord pier is reduced to 2." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.785, - 45.1255 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 659, - "mapId": "CR_029", - "name": "LUKOVO OTOCKO", - "contacts": [ - "041 5200625 Capitaneria" - ], - "description": "Gulf open to the north, defended west from Punta Malta.Good shelter from Scirocco and Libeccio.The deep backdrop makes anchor problematic, better to moor themselves at the pier.The nearby island of Goli is breeding to navigation because the seat of a criminal colony." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.89016667, - 44.85716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 660, - "mapId": "CR_030", - "name": "JABLANAC", - "contacts": [ - "053 887049 Capitaneria" - ], - "description": "It is the port of departure of the ferry to Pag and Rab.Well ravished by all winds, but without a place and assistance" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.89583333, - 44.70416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 661, - "mapId": "CR_031", - "name": "ZAVRATNICA", - "description": "Just south of Jablanac is an anchorage for a landscaping and seaside park." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.89466667, - 44.6985 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 662, - "mapId": "CR_032", - "name": "KARLOBAG", - "contacts": [ - "053 684030 Capitaneria" - ], - "description": "Porto for a good time and ferry stopover for p. The close open to the West.The mooring is on both sides of the northern pier." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.07116667, - 44.52416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 663, - "mapId": "CR_033", - "name": "LUKOVO SUGARJE", - "description": "Large creek roughed with all winds.The best anchoring is in front of the town of Porat in the south-east part, but you can only access it in case of extreme necessity because military area." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.17783333, - 44.44683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 664, - "mapId": "FR_050", - "name": "PORTICCIOLO CEDAS", - "contacts": [ - "040 676611 Capitaneria", - "040 305953 Fed. It. Pesca Sportiva", - "Vhf 16" - ], - "description": "Protected by a curvilinear FrangiFlutti pier with open access to NW.Port management: Italian fishing federation.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 8.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.73583333, - 45.69383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 665, - "mapId": "VE_060", - "name": "MARINA DI CHIOGGIA", - "contacts": [ - "041 400242 Capitaneria", - "041 499722 Marina di Chioggia", - "www.marinadichioggia.com" - ], - "description": "Private dock in Vallei di Chioggia located on the right of the novoy canal about 5 km from the mouth.Keep the briccole on the right side at about 5 m.Entrance allowed only to boats with trees lower than 4 m or with foldable trees.", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.187, - 45.2275 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 666, - "mapId": "FR_051", - "name": "PORTO IND. DI ZAULE", - "contacts": [ - "040 676611 Capitaneria" - ], - "description": "Located in the bottom of the bay of Muggia long 1 km wide 200 m.50 berths available for pleasure boats in the bottom of the canal port.On the sides of the entrance channel pontiens and docks used by private individuals.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.78733333, - 45.607 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 667, - "mapId": "CR_384", - "name": "LAVSA", - "description": "A deep inlet (43 * 45.1 N - 15 * 22.2 and) and a series of dead bodies on the bottom allow its tranquility even with the bora despite the opening to the north east. A couple of restaurants offer some chances to the numerous passing yachts." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.37383333, - 43.7605 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 668, - "mapId": "CR_392", - "name": "RAVNI ZAKAN", - "description": "A combinable pier (43 * 43.5 N - 15 * 26.2 and) in the southern part of the island allows the landing.There is a large restaurant with marinara cuisine.A seaside anchor is in the fronting Kameni Zakan on a sand backdrop of 3 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.43283333, - 43.72416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 669, - "mapId": "CR_391", - "name": "PRIMOSTEN", - "contacts": [ - "022 570266 Capitaneria", - "022 581035 Marina Kremik" - ], - "description": "Primosten is a very tourist resort, in the harbor there is a quay with water and electricity.To the south there is the Kremik marina well equipped with 250 berths, crane (5 tons) and slide (40 tons)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.92366667, - 43.57983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 670, - "mapId": "CR_288", - "name": "ROGACIC", - "description": "The Island of Lissa (VIS) has long been outside the tourist circuit because military base.The climate is mild and favors the cultivation of citrus fruits and olives.The sea around VIS is full of dry, especially to SE, well-marked rocks and islets: pay attention.Dead bodies for water and electricity docks.The fuel distributor is in the northern part.The bora blows strong and scirocco creates wave in the bay.Then it is better to moor on Boe in front of the town of Kut.\n\nBay open to Levante with different coves on the north coast all with bad backdrop.The deepest is also the righted with anchor in front of the Croatian navy bunker." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.19166667, - 43.079 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 671, - "mapId": "CR_387", - "name": "LUKA", - "description": "Luka is the old \"Porto Peocio\", already used by the Venetian fleet.The bay is half a mile to the south-east of the town and is righted by every wind but the bora enters you.The west side has a combinable quay that must be left free for the local movement of taxi boats.The 3 m anchor is on a bad backdrop, in front of a campsite.Ferries dock on the east side of Punta Kriz to a quay with a distributor with the only one of the Badija island." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.14216667, - 42.9575 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 672, - "mapId": "CR_302", - "name": "BADIA", - "description": "On the south side of the island in front of a former convent there is an anchorage ravished by Bora and a restaurant.The sandy and algae seabed of 4-6 m is not much, better to bring a top to earth." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.16166667, - 42.95016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 673, - "mapId": "CR_302", - "name": "PRZINA", - "description": "Seaside resort very frequented with a pleasant anchoring that affects the undersigned not only of the southern winds but also from the west as the other contiguous bays of Rasohatica, Pavja, Orlandusa and Bacvica which at night are also exhibited to the strong gusts of \"fall\" from the surrounding hills." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.18216667, - 42.91116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 674, - "mapId": "CR_380", - "name": "SIPANSKA LUKA", - "description": "Sipan is a very green island with a Mediterranean scrub rich in every kind of trees.Sipanska Luka (42 * 43.8 N - 17 * 51.9 E) is at the bottom of the deep inlet open north west, but rawn from the other directions.The short pier, reserved for the ferry, the wave raised by the mistral.The mooring is on the bottom of mud of 3-4 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.845, - 42.7375 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 675, - "mapId": "CR_386", - "name": "LOPUD", - "description": "Vibrant island Tourist center with many hotels that have a marina (42 * 41.4 N - 17 * 56.6) always busy.The anchor is possible in front of the gravel beach.The backdrop is 3 m.On the south coast there is the bay of Sunj (42 * 40.8 n - 17 * 57.5 and) with a beautiful sandy beach very busy and a dry on the tip sudest.Bathing anchor in 4 m of water and refreshment point on the ground." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.93533333, - 42.69 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 676, - "mapId": "CR_034", - "name": "CRES", - "contacts": [ - "051 571622 ACI Marina" - ], - "description": "The Gulf of Cres opens between the Capo Pernat and the Punta Kovacine (light to 2 bands of flashes, 6s, 8 m) that with the tip Krizice constitute the entrance of the 400 meter rod that leads to the port of Cherso in the partNorth.Distributor and alagigation stop are at the root of the ferry pier.The navy in the south part has a 4 m seabed a seaside anchor to the south of Cherso is the bay of Nedomisie.", - "slips": 360 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.38816667, - 44.95666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 677, - "mapId": "CR_035", - "name": "MARTINSCICA", - "contacts": [ - "041 5200625 Capitaneria", - "041 698292 Nautica Venezia" - ], - "description": "The coast west of Capo Pernat up to Martinscica offers some interesting bays and riduits such as those of Grabrovice and Punta Zaglav (Scoglio Zaglav, to NNO of the Punta is reported by a light (3 flashes, 15s, 10 m), Luka,S. Ivan, Zanja, Vrutek, Breg, Slatine, Tiha. However, they are at risk, both for the night twenty falling from the mountain with rather strong gusts, and because the winds from the south (especially the sirocco) tend to blow parallel toCoast lifting the sea. Even the port of San Martino has similar characteristics, but offers a sharter more consistent to low draft boats that can take refuge in the west part, inside the FrangiFlutti pier or on the external buoys. The sea becomes big.Inside the bay with the south-west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.3545, - 44.80616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 678, - "mapId": "CR_036", - "name": "USTRINE", - "description": "Bay north of Ossero, with several well-protected loops from all winds, especially in the northern part, while in Cala Camisa La Bora and the south west can create problems.Bathing anchors nearby are those of the Levrera Islet (Zeca) recognizable for its light color and signaled by light to sectors (2 flashes, 10s, 6 m).Between Zeca and the coast there is the dry with the rocks Visoki outcrops reported by a lightning light to white lights (3s, 6 m)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.38466667, - 44.7395 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 679, - "mapId": "CR_037", - "name": "KALDONTA", - "description": "The eastern south coast of Cresfing that caught up on the Lo\u0161inj canal is open to the scirocco.The most protected anchorage from all winds is that of this bay that is also exploited for aquaculture and that of Jadrisica bay closer and with low waters.\nThe martinsic loop instead is exposed to scirocco and has rocks at the bottom.Bathing anchorsished from the bora are those of Ridulja and Majiska more to the north and those of Galboeica and Bela to the south, but exposed to the Scirocco.\nAt the south end of the island of Cherso between the Suha and St. Damjan tips there are roughed and inhabited bays almost exclusively in summer (camping)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.44916667, - 44.6335 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 680, - "mapId": "CR_038", - "name": "JADRISICA", - "description": "Jadrisica is a rawn creek from all winds.The backdrop in the bay becomes poor from the Bokinic budget.Other bays: Baldarin, with sandy bottom rottoose from Ponente and Bora;Meli, ditto but access dried up and rocks on the east tip of the bay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.512, - 44.6085 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 681, - "mapId": "CR_039", - "name": "KOLORAT - MALJNSKA - UL", - "description": "Wide bay with various differently oriented and protected loops.The nearby ones of Maljnska and Kolorat are protected from the south and levant, those of VRC and UL from Tramontana and Ponente." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.52266667, - 44.64333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 682, - "mapId": "CR_040", - "name": "KRUSCICA", - "description": "Just below head Tarej (lightning light, 5s, 6 m) is protected by a tram.For the best bora Krusja, on the Plavnik island opposite, just under 2 miles." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.46783333, - 44.94566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 683, - "mapId": "CR_041", - "name": "NEREZINE", - "description": "The mooring at the pier is very exposed with the north east. Marina's berths are 50 and as many on the ground.Several services are available including technical assistance, the 20 ton travel lift, the post office, change, refueling food, water and fuel." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.39866667, - 44.6605 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 684, - "mapId": "CR_042", - "name": "S. MARTIN", - "description": "The marina is defended by a pier with a light and is not safe with bora." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.4805, - 44.53383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 685, - "mapId": "CR_043", - "name": "LUSSINPICCOLO - MALI LOSINJ", - "contacts": [ - "051 231438 Capitaneria", - "051 231626 Marina" - ], - "description": "To enter the bay (44 * 33.5 n - 14 * 25.6 and) narrow and about 3 miles long, oriented for north-eastern north-west, coming from the north, you can leave straight the Zabodaski islet at night reported by the lighthouseIn bands of Lampi (2, 6s, 4 m) or, coming from the south, to the left passing between the rock and the Murter islet.The Moost passage (1.5 m depth) between the island of Coludarc and the coast is not recommended for yachts.The navy is on the east foxide side at the entrance to Privlaka Kanal.The closest anchors are those of Valle Kovcanja to the North immediately before the entrance into the bay, Zapodaski and Artaturi (44 * 34.4 N - 14 * 24.6 e).Towards the south the most beautiful and famous bays are those of Cikat (44 * 31 'N - 14 * 27.4 e), Balvanida (44 * 29.5 n - 14 * 30.4 e), Krivica (44 * 30' N - 14 * 29.8 e), Plijeski." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.456, - 44.54116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 686, - "mapId": "CR_044", - "name": "UNIJE", - "description": "The town of the island of Unje is on the west coast and has a landing on an elongated pier for east-west with a dozen berths.The Rada is well sheltered by Scirocco, sandy sandy bottom.The crane and the surrounding dry constitute a danger entering, but also contribute to closing the bay.Towards the subtle point The northern side of the Samuncel islet has a semi-clenched dry.On the east coast of UNJE the most valid anchors are those of VOVISCA (44 * 39.8 N - 14 * 16 'E), Podkujni (44 * 39.5 n - 14 * 15.7 e), Maracol (44 * 38.8 n - 14 * 15.5 e).A shelter from Bora ha ha in Vrulje (44 * 37.2 N - 14 * 15 'and) on the south coast. The islets of Sracane (Canidole) have interesting seabed for divers, less for sailors." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.24233333, - 44.6365 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 687, - "mapId": "CR_045", - "name": "SUSAK", - "contacts": [ - "051 239001 Capitaneria" - ], - "description": "The island of Susak (Sansego) has the appearance of a platform and is surrounded by dry.It has a powerful lighthouse in bands of flashes (2, 10s, 19 m).The dragoon marina is difficult to access because it tends to cover themselves.Exposed to the north east is uncertainty with Bora.On the ground there is the possibility of refueling water and food.A bora behind is the bay of Porat (44 * 31 'N - 14 * 17.6 e), on the northwest coast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.31116667, - 44.51216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 688, - "mapId": "CR_046", - "name": "ILOVIK - S. PETAR", - "description": "The reduced between the two islands (44 * 27.7 N - 14 * 33 'and) is one of the most known and practiced by those who are on the route between the top and the Middle Adriatic.With the sirocco the wave becomes annoying and the strong current.Numerous gavitelli available.The center of the channel must be left free.A shelter from Bora is in the coves of the western part of the island.Bathing anchors in Parzine and Umgradica, and between St. Petar and the Kozjak islet.In the town of Ilovik possibility of food supplies.The numerous gavitelli on both banks of the channel are not sufficient to satisfy the demand for passing yachts in the peak months.The site has become" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.5485, - 44.462 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 689, - "mapId": "GR_050", - "name": "KIPARISSIA", - "description": "Along the west coast of the Peloponnese, after the gulf of Kiparissiakos is the small landing of Kiparissa, under the conspicuous Monte Psikro (1350 m).Here the prevailing wind comes from the north-west and frequently reinforces with violent gusts.The port is open to this wind that conditions the moorings.It is therefore necessary to prepare an anchor line and cables adapted to the strong wind.The entrance to the basin has depth on 6-8 meters and the east pier has 4 meters backdrops.Only one's own is used for mooring." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.65333333, - 37.26666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 690, - "mapId": "GR_051", - "name": "NAVARINO", - "description": "Continuing the navigation of the Peloponnese counterclockwise, after kiparissa, there are numerous anchors.Immediately inside the Natural Gulf of Navarino, on the right, we find the landing of Pilos, with a large punched pier in front of the town.Also a little out of town, east, there is a marina with cement docks with depth to mooring of 2-3 meters, while along the dock of the Frangiflutti pier the draft is on 4 meters.Here dominates all year the north-west wind that can sometimes create difficulties in moored boats.\nVery relevant Navarino's natural creek, rich in history for war vicissitudes.Today it is a paradise for pleasure with numerous anchors, especially in the north part, in front of a long beach that separates the Navarino basin with another closed lagoon.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.671, - 36.90233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 691, - "mapId": "GR_052", - "name": "PILOS", - "description": "The port of Pylos is moderately protected by the Sfiktiria island from the west winds, while with north wind, the conformation of the same island provides violent accelerations." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.70033333, - 36.91933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 692, - "mapId": "GR_053", - "name": "METHONI", - "description": "We have reached the southern part of the Peloponnese, and is certainly the most interesting for the numerous anchors, the typical Greek villages, some with delicious mares.\nThe first town with landing landing is Methoni, where a Turkish tower dominates in the end of Capo Soukouli, while on the west side of the harbor there is a strong Venetian of considerable dimensions.The port is actually an anchor in front of the beach where the town overlooks.On the ground you have to go down with the Dinghy, except for a momentary mooring, giving bottom to anchor,\nAt the concrete jetty in the stone pier where the draft is 2 meters.The dominant wind comes from north-west west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.70966667, - 36.81383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 693, - "mapId": "GR_054", - "name": "MESSINIAKOS KOLPOS", - "description": "To the south of Methoni there are two islands, Sapi\u00e9ntza and Skhiza the largest, and numerous islets where placing a good detailed card can be identified by good anchors and reduced (here the dominant wind is the north-western west).On the island Sapi\u00e9ntza there is a small natural gulf, Port Longos, with good backdrops and beautiful beaches.Leaving these islands, continuing the periplo counterclockwise of the Peloponnese, you enter the Messiniakos Kolpos.Here are some anchors, and an arrival, Koroni (36 * 47.91 N - 21 * 57.65 E), a marina consisting of a holly where at the outer point the maximum depth of the bottom is 2 meters.At the end of the gulf is the most important marina of Peloponnese, Kalamata Marina." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.70066667, - 36.75066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 694, - "mapId": "GR_055", - "name": "KALAMATA", - "contacts": [ - "Vhf 69", - "27210 Kalamata Marina", - "<www.medmarinas.com>" - ], - "description": "The Kalamata Marina is located east of the commercial port of the city of Kalamata, which houses a fishing flottiglia and is a ferry stop.It offers 250 moorings for boats to a maximum of 25 meters.The draft is on average 3 meters, at the entrance the backdrop is 4 meters which is reduced to 3 along the short access channel.The port has a structure to accommodate even ground boats (about 150) for the winter season;The yard has a 30-ton crane." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.10416667, - 37.02316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 695, - "mapId": "GR_056", - "name": "LIMENI", - "description": "Going down the east side of the Messiniakos Kolpos and before entering the Lakonikos Kolpos, there are some interesting landings. Among these kitries (36 * 55.07 N - 22 * \u200b\u200b08.05 and) Kardhamili (36 * 53.12 N - 22 * \u200b\u200b13.96 E) and Port Limeni (36 * 41.01 N - 22 * \u200b\u200b22.31 E). No one is a real port but everyone offer good anchorage near a town. The first landing at the west of Lakonikos Kolpos, after Capo Tainaro, is Porto Kayio (36 * 25.98 N - 22 * \u200b\u200b29.48 and) a natural gulf, without structures and with numerous possibilities of anchorage. The backdrops are also high under the coast, so you have to equip yourself with adequate lines.\n\nLimeni is the deepest bay of Messiniakos Kolp, with different possibilities of anchorage; It is 18 miles from AK Kitries. For those who decide to stand in the port of Kalamata it represents one of the most beautiful stops of a cruise in the southern Peloponnese coast. The prevailing wind comes from the west and in the night it sometimes tends to turn north east. In these conditions it is in favor of choosing the bottom of the manda at the bottom left by entering the Limeni Omos. Here is a holly with the interior of which you can moor with the plan on the ground; The backdrop is about 3 meters. The other close is located on the opposite side, to the south, and represents an excellent alternative when there are southern winds. In this bay there is a guide light (fl. 1-5s6m), however to enter the night there is a lot of caution. For the entire bay Limeni the backdrop is high under the coast and one of the most adopted techniques is to give bottom to your own in 10-12 meters and putting the plan tops on the ground." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.37183333, - 36.68566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 696, - "mapId": "GR_057", - "name": "PORTO KAYO", - "description": "Going down the east side of the Messiniakos Kolpos and before entering the Lakonikos Kolpos, there are some interesting landings. Among these kitries (36 * 55.07 N - 22 * \u200b\u200b08.05 and) Kardhamili (36 * 53.12 N - 22 * \u200b\u200b13.96 E) and Port Limeni (36 * 41.01 N - 22 * \u200b\u200b22.31 E). No one is a real port but everyone offer good anchorage near a town. The first landing at the west of Lakonikos Kolpos, after Capo Tainaro, is Porto Kayio (36 * 25.98 N - 22 * \u200b\u200b29.48 and) a natural gulf, without structures and with numerous possibilities of anchorage. The backdrops are also high under the coast, so you have to equip yourself with adequate lines.\n\nOnce dubbed the head Matapan and enter Lakonikos Kolpos, the first anchorage is Porto Kayo, a true natural port, with numerous possibilities of choice according to weather conditions. As throughout the southern coast of the Peloponnese here the seabed are high up almost below coast. In the southern tip of the Limeni port there is a light (FL.5S8M) which however must not encourage the night entrance; If you do it only very carefully and with the use of the radar. Here the prevailing wind comes from west A with unstable weather, there can be verified by the north east wind that inside the bay create wave also due to two slums of 3.5 and 7.5 meters amid the bay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.49133333, - 36.433 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 697, - "mapId": "GR_058", - "name": "GITHION", - "description": "The landing of the town of Ythion is composed of an anchor behind a conspicuous promontory, Nisis Kranai, combined with the mainland with a street on a flap of land.This promontory allows its southern winds.The real port of the city of Ythion is further north of Nisis Krana;Here is a pier where in the header there is the ferry moor for Crete and Kithera, while in the southernmost part omge the pleasure boats on a backdrop of about 6 meters.The quay on the front of the city is reserved for fishing boats.\nServices: water in a quay, electricity on request, fuel on mini-market service, mechanic" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.5715, - 36.76066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 698, - "mapId": "GR_059", - "name": "PLITRA", - "description": "Plitra is located inside the Gulf of Xilis where in addition to the small marina there are numerous possibilities of anchorage.The port is a protection from the prevailing winds that in the Gulf comes from the south, a situation that can compromise an anchorage if this is not adequate.The porch is that a short pier where they can moor a dozen boats.A little behind it offers a basebondo with cliffs by creating a small natural basin.Plitra offers great attractions, it is a popular tourist location with hotels and holiday homes.On the other hand there are beautiful beaches and rock backdrops for snorkelin reachable with Dinghy." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.83716667, - 36.68566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 699, - "mapId": "GR_060", - "name": "ELAFONISOS", - "description": "Elafonisis is an island a short distance from the mainland in the southernmost part of the Peloponnese peninsula, west of Capo Malaeas.Between the island and the peninsula there is a passage for boats that have a fish less than 2 meters.Elafonisis offers numerous anchors both on the west side and in the east side. The best landing is near the main town, in the northern summit, divided into two basins, one for local fishing boats, high for ferries and forThe pleasure.The mooring at the pier is limited however from the low backdrop (2-3 m) and therefore the most practical anchorage could be to get to the wheel in the middle of the port.Before dubbing the Capo Malaeas there is the Gulf Vatika where, waiting perhaps of the favorable time, you can visit, and maybe you will pay you, the fishing port of Neapolis (36 * 29.06 N - 23 * 03.9 e).", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.98333333, - 36.50133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 700, - "mapId": "GR_061", - "name": "PELAGIA", - "description": "Pelagia is the first landing of the east coast of Kithera and is 4 miles from the northern tip of the island (Spathi).The pier was built for the ferry stop that connects this beautiful Greek resort to the rest of the village.However, it is long enough to accommodate pleasure boats.The backdrop is 3 meters deep but in the case there were other boats you can give bottom to the anchor ridden by the wind from the west on a backdrop on 5-6 meters, both on one side and on the other of the pier.Anchors are however considered open to winds from Nord-est. The country is graceful and peaceful as all those of the Greek islands.At the root of the pier there is the attack of the water hose, a minimarket is right in front of the mooring.There are numerous taverns on the promenade of Palagia." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.98683333, - 36.3265 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 701, - "mapId": "GR_062", - "name": "DHIAKOFTI", - "description": "The Dhiakofti marina rises on a natural close to the Kithera island and the islet of Makronisos.The practicable anchors are both on the west side and in the south side of the Makronisos island.This allows you to find a refuge with almost all wind conditions.Only with strong wind from the north-east it is worth abandoning the anchorage and take refuge in the shares south of the island.In the ferry pier there is not much room for other boats, but you can stop for the night and to refuel water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.07583333, - 36.27 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 702, - "mapId": "GR_063", - "name": "KAPSALI", - "description": "Ormos Kapsali is anchoring in front of the Kapsal country to the south of the Kithera island and is chosen as a stop for the preparation of the crossing (18 miles) to the Andikithera island.Another excellent refuge with northern winds is avelomona (36 * 13.46 N - 23 * 04.89 E), a dual inlet of the homonymous town.Kapsali represents a protected stopover from northern winds.With forecasts of strong west winds it is advisable to reach a refuge in the east side of the island.Even with south wind the mooring can be revealed uncomfortable.In the pier the depth varies between 2 and 4 meters, and welcomes a dozen boats.On the island of Andikithera the only airport is Potamou in the north-east coast, natural harbor open to the north and ravished only for the western sectors." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.99916667, - 36.1425 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 703, - "mapId": "GR_064", - "name": "KITRIES", - "description": "Going down the east side of the Messiniakos Kolpos and before entering the Lakonikos Kolpos, there are some interesting landings.Among these kitries (36 * 55.07 N - 22 * 08.05 and) Kardhamili (36 * 53.12 N - 22 * 13.96 E) and Port Limeni (36 * 41.01 N - 22 * 22.31 E).No one is a real port but everyone offer good anchorage near a town.The first landing at the west of Lakonikos Kolpos, after Capo Tainaro, is Porto Kayio (36 * 25.98 N - 22 * 29.48 and) a natural gulf, without structures and with numerous possibilities of anchorage.The backdrops are also high under the coast, so you have to equip yourself with adequate lines." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.13416667, - 36.91783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 704, - "mapId": "FR_062", - "name": "APPRODO NAUTICO TERRANOVA", - "contacts": [ - "0481 711574 App. Nautico Terranova" - ], - "description": "Marina located in the Terranova area in the municipality of San Canzian d'Isonzo (GO).Entry from Punta Sdobba.The Terranova nautical landing is made up of a floating dock along the shore.", - "slips": 80, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.5265, - 45.66866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 705, - "mapId": "FR_063", - "name": "DARSENA NAVIGARE 2000", - "contacts": [ - "333 6696797 Darsena" - ], - "description": "The dock is located at the beginning of the island hatched in the center of the Grado town.", - "slips": 120, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.38883333, - 45.682 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 706, - "mapId": "FR_064", - "name": "MARINA PLANAIS", - "contacts": [ - "0431 6249832 Marina", - "www.marinaplanis.it" - ], - "description": "The marina is at the confluence between the Aussa and Horn rivers.The entrance is from Porto Buso: go up the Aussa river for about 3 miles, the landing is on the left.The marina is being expanded to bring the berths from 47 to 120. The ground storage service has spaces of approximately 10,000 square meters and an area of 4,000 square meters is reserved for small cancellations.", - "slips": 47, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "minDepth": -4.5, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.256, - 45.767 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 707, - "mapId": "VE_110", - "name": "MARINA FIORITA", - "slips": 134, - "vesselMaxSize": { - "maxLoA": 13.0 - }, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -6.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.44216667, - 45.4695 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 708, - "mapId": "RO_006", - "name": "CESENATICO - DARSENA", - "contacts": [ - "0547 83911 Circolo Vela Cesenatico", - "0547 81094 Circ. Nautico Cesenatico", - "0547 81677 Darsena - Onda Marina", - "www.cncesenatico.it" - ], - "description": "A light color skyscraper, at about 1,000 m to s from the canal port, is visible with clear time at 20 mgl.A cylindrical tank in the center of the village is also conspicuous.The marina is frequented by fishing boats and pleasure boats.\n\nDarsena managed by the Cesenatico nautical circle.", - "slips": 30, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.3995, - 44.205 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 709, - "mapId": "PU_064A", - "name": "BRINDISI - PORTO INTERNO", - "contacts": [ - "0831 521022 Capitaneria", - "0831 411479 Circolo della Vela", - "Vhf 74, 11 (Piloti Vhf 12)" - ], - "description": "Three basins characterize the port: external port, medium port, internal port.From n you leave the Aragonese castle on the left, from and to whether to leave the white boa of Capo S. Cataldo to the left to avoid dry.You can moor at the inner harbor, at the central quay next to the sailor monument.In the external port there is the new marina, a mouth of Puglia.", - "slips": 10, - "vesselMaxSize": { - "maxLoA": 50.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.97266667, - 40.65266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 710, - "mapId": "PU_064", - "name": "BRINDISI - PORTO MEDIO", - "contacts": [ - "0831 521022 Capitaneria", - "0831 411479 Circolo della Vela", - "Vhf 11" - ], - "description": "Three basins characterize the port: external port, medium port, internal port.From n you leave the Aragonese castle on the left, from and to whether to leave the white boa of Capo S. Cataldo to the left to avoid dry.You can moor at the inner harbor, at the central quay next to the sailor monument.In the external port there is the new marina, a mouth of Puglia.", - "slips": 5, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.96833333, - 40.65133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 711, - "mapId": "SI_151", - "name": "BONAGIA", - "contacts": [ - "0923 573062 Capitaneria" - ], - "description": "Appointed by a FrangiFlutti pier and a small quay.To enter keeping close to the red light and get up left as soon as he passed her cross.", - "slips": 70, - "seaFloor": { - "minDepth": -0.8, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.59333333, - 38.06833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 712, - "mapId": "SI_150", - "name": "MARINA DI COFANO", - "contacts": [ - "330 899720 Marina" - ], - "description": "It is a boe field and a floating dock for boarding and landing, positioned every year from May to September and managed by a private company. The access channel is bordered by BOE.I feel the manager before approaching the buoys.", - "seaFloor": { - "minDepth": -1.8, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.60133333, - 38.066 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 713, - "mapId": "CR_192", - "name": "RASLINE", - "description": "Rasline is a marina with an internal basin of 3 m of backdrops in Lake Prokljansko Jezero.Further ahead The bottom of the river is lowered and no longer navigable beyond the port of Skradin." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.859, - 43.8075 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 714, - "mapId": "CR_193", - "name": "SKRADIN", - "description": "The marina is capable of 220 boats and is equipped with the main services.We can refill of water and fuel.From Skradin you go in a short time to visit the Roski and Krka Falls in the National Park.Just before the port, on the opposite bank there is a restaurant with a mooring for small boats.", - "slips": 220 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.923, - 43.81516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 715, - "mapId": "CR_194", - "name": "ZABLACE", - "contacts": [ - "022 364000 Marina Solaris" - ], - "description": "Just half a mile south of the door inlet door there is this marina, often busy, in which it is possible to reappear behind the two piers that protect the inlet." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.8715, - 43.7 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 716, - "mapId": "CR_195", - "name": "JADRTOVAC", - "description": "Access to the Interior Lake of Morinje, whose average depth is 1 m, is southeast of Brodarica and passes under a 22 m high bridge.There is no backdrop to go beyond the landing in front of the chapel.Anchor ravished on a mud backdrop of 3-5 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.9255, - 43.67033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 717, - "mapId": "CR_196", - "name": "MIRINE", - "description": "Solitary bay well rawn from every part, but without resources.The loop at the bottom of the bay is the most protected." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.94366667, - 43.64866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 718, - "mapId": "CR_197", - "name": "LUKA GREBASTICA", - "description": "Bay returned by northern winds, but open to west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.91566667, - 43.637 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 719, - "mapId": "CR_198", - "name": "ROGOZNICA", - "description": "The bay is a close to every wind and very busy.The moorings are on the village quay on the islet (connected permanently to the mainland).In the northern part of the bay there is a quay for fishing boats protected by Bora and instead to the south, in Razanj, a pier to attract in the event of sirocco" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.95033333, - 43.52183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 720, - "mapId": "SA_122", - "name": "OLBIA - BOAT SERVICE", - "contacts": [ - "0789 21243 Capitaneria", - "0789 53060 Olbia Boat Service", - "Vhf 9-12-16" - ], - "description": "The town is established in the most internal part of the narrow and long creek that opens at the end of the homonymous gulf and is visible from the wide.Access is facilitated for alignment with the conspicant lighthouse that rises on the mouth island.\nThe port is ravished by all winds and includes three zones: maritime station, the internal port and the industrial area.", - "slips": 12, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.54, - 40.92533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 721, - "mapId": "FR_058", - "name": "PORTO LEGA NAVALE", - "contacts": [ - "0431 81706 Lega Navale Italiana", - "Vhf 15 - 16" - ], - "description": "Neighborhood in Porto San Vito.It has five piers and docks.In the structure there is a sailing school.", - "slips": 66, - "vesselMaxSize": { - "maxLoA": 16.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.3805, - 45.68033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 722, - "mapId": "VE_104", - "name": "CHIOGGIA - PORTO INTERNO", - "contacts": [ - "041 5508211 Capitaneria", - "041 401565 Circolo Nautico Chioggia" - ], - "description": "Access is a s of the Venice lagoon.Built on an island, it is combined with the Lido di Brondolo from a bridge with arches and underwater from a revolving bridge;The Lombardo channel colleague to the Brenta river.The landings are: the Citizen Basin of Vigo, managed by the Master's office, where pleasure boats can moor parallel to the dam;The Darsena Moselle, in Sottomarina, where pontiens wanked by the homonymous hotel;Move especially sailboats;In the internal port there are few spaces but in transit you can flank to fishing vessels;At Sporting Club, modern Marina in city center with all services and moorings.\n\nCommercial port of Chioggia consisting of the Basin of Vigo, from the maritime and 3-channel basin: Lombardo external Lombard, Lombardy, S. Domenico, reserved for fishing vessels.It offers no possibility of admission to pleasure boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.285, - 45.2305 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 723, - "mapId": "VE_105", - "name": "CHIOGGIA - ROMEA YACHTING CLUB", - "contacts": [ - "041 5508211 Capitaneria", - "041 401565 Circolo Nautico Chioggia", - "041 5585143 Yachting Club", - "Vhf 9" - ], - "description": "Access is a s of the Venice lagoon.Built on an island, it is combined with the Lido di Brondolo from a bridge with arches and underwater from a revolving bridge;The Lombardo channel colleague to the Brenta river.The landings are: the Citizen Basin of Vigo, managed by the Master's office, where pleasure boats can moor parallel to the dam;The Darsena Moselle, in Sottomarina, where pontiens wanked by the homonymous hotel;Move especially sailboats;In the internal port there are few spaces but in transit you can flank to fishing vessels;At Sporting Club, modern Marina in city center with all services and moorings.\n\nPrivate dock located in the Novissimo channel on the left after traveling 4.5 km from the mouthpiece.", - "slips": 85, - "vesselMaxSize": { - "maxLoA": 11.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.18933333, - 45.22666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 724, - "mapId": "VE_107", - "name": "PORTO VIRO", - "contacts": [ - "0426 322580 Centro Turistico Nautico", - "Vhf 9", - "www.podivenezia.it" - ], - "description": "Located on the left bank of the Pila Po river.The dock has 7 piers.", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 17.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.23316667, - 45.00833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 725, - "mapId": "VE_106", - "name": "FOCE DEL PO DELLA PILA", - "description": "More external outlet in the Po. Borders with Maistra point.Accessible access with fish less than 1.5 m.Follow the wooden poles entered.", - "slips": 55, - "vesselMaxSize": { - "maxLoA": 6.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -1.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.55066667, - 44.97333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 726, - "mapId": "RO_019", - "name": "CANTIERE NAUTICO BRANCALEONI", - "contacts": [ - "0533 996449 Capitaneria", - "0533 355118 Cantiere Nautico", - "Vhf 16" - ], - "description": "Private dock located in the western part of the Goro bag at the Foce del Po di Volano managed by the Brancaleoni nautical shipyard.Navigating dating back the mouth of the Po di Volano along the canal marked by Briccole exceeding the bridge.Boat stopover with lower than 4.5 m or foldable shaft.\n\nDepth in channel: 3-3.5 m.", - "slips": 90, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.28283333, - 44.81783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 727, - "mapId": "RO_023", - "name": "NAUTICA MONDO", - "contacts": [ - "0533 996449 Capitaneria", - "0533 355209 Nautica Mondo" - ], - "description": "Next to the Brancaleoni nautical construction site, equipped with floating piers and managed by Nautica Mondo.", - "slips": 89, - "vesselMaxSize": { - "maxLoA": 15.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.27933333, - 44.82066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 728, - "mapId": "RO_009", - "name": "MARINARA", - "contacts": [ - "0544 453900 Capitaneria", - "0544 538855 Marinara", - "0544 530513 Circolo Velico Ravennate", - "0544 530017 Lega Navale Italiana", - "0544 531162 Ravenna Yacht Club", - "www.marinara.it", - "www.adriaticwindclub.com", - "Vhf 9 - 11", - "Vhf 12 Corporazione Piloti" - ], - "description": "From the Largo the city of Marina di Ravenna is visible only in the part near the port, some large buildings and, between the pine forest, and a hinterland made of chimneys. Two very long cliffs of almost 3 km protect the port of Ravenna. The lighthouse is the conspicuous point located at the root of the guardian pier s; It is a white octagonal tower erected on a three-storey brick building. During the landing maneuver it is recommended to enter the port just have the lighthouse in the cross. The moorings in transit of Marina di Ravenna are located between the guardian pier s and the root of the forane dam; Some pontoons are managed by various circles. Between the foraneous dam and the southern pier is the marina, marinara, equipped with all services. Porto Corsini is on the left bank of the Baona canal and is reserved for merchant ships. The canal traffic is forbidden to pleasure boats. The Marina is managed by the Velico Ravenna circle (390 moorings) and the Ravenna Yacht Club (268 moorings).", - "slips": 1150, - "vesselMaxSize": { - "maxLoA": 40.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -5.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.29383333, - 44.492 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 729, - "mapId": "RO_020", - "name": "CIRCOLO NAUTICO AMICI DELLA VELA", - "contacts": [ - "0544 72355 Capitaneria", - "0544 973109 Il Sestante", - "0544 71709 Marina di Cervia", - "0544 71731 Lega Navale Italiana", - "www.circolonauticocervia.it", - "Vhf 14 - 16" - ], - "description": "The two locations are separated from the Saline Canal where, in the mouth, the port of Cervia stands.A s of the port, inwards, the cylindrical tower on cement structure, white in the upper and dark part in the lower part;The old red lantern is hidden.The shores of the canal are punched and on the south shore there is the entrance to the dock and from this to the Marina di Cervia.In transit it is also moored side by fishing boats.Very crowded in the summer.", - "slips": 45, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.36016667, - 44.26883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 730, - "mapId": "CR_249", - "name": "LUKA", - "description": "Disable bay but certainly the best close to the north coast of Brazza.The anchor is on a sandy bottom and a cable to the ground in the North.There is a restaurant with a combinable embarrasser.Great boat traffic for tourists." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.81416667, - 43.3425 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 731, - "mapId": "CR_250", - "name": "POVLJA", - "description": "Bay with two loops ridden by all winds but not from the north and north west.Preferable lormge is close to the pier in front of the village.There are some shops and restaurants.Anchoring is in the western cove, but the bottom does not rely on." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.82833333, - 43.34 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 732, - "mapId": "CR_251", - "name": "RASOTICA", - "description": "Anchor in a narrow fjord close to a short pier.Anchoring is on a mediocre contractor background." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.89183333, - 43.30383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 733, - "mapId": "CR_252", - "name": "SUMARTIN", - "contacts": [ - "021 648222 Capitaneria" - ], - "description": "The port is not raveroed from the south and southwest, but it is a quiet stopover.The mooring is possible inside the FrangiFlutti pier (depth 2.5 m), but there is little place for the pleasure.A small yard gives technical assistance and there is also a restaurant.The ferry connections to Makarska are frequent from which, at the time of Turkish raids, the founders of Sumartin fled.A nearby seaside berth is that of Studena on the south coast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.86933333, - 43.28083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 734, - "mapId": "CR_253", - "name": "STUDENA", - "description": "Bay surrounded by greenery with an anchor rounded from west to east. 8 m backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.84366667, - 43.26933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 735, - "mapId": "CR_254", - "name": "BOL", - "contacts": [ - "021 635903 Capitaneria" - ], - "description": "It is the most conspicuous tourist center (famous its golden beach) of the southern coast of Brazza, which is high here and steep.The port is open south west, otherwise it is quite ravero.The bora blows you with fan gusts a little from all directions.The pier is reserved for the ferry that stops inside the forane dam.The yachts moor at the north quay.There is a market, various hotels and restaurants, a fruit and vegetable market.We can refill of water and fuel.Entering or coming out of Bol, remember the dangers of the dry offshore of the tip Dugi Rat, which with good weather is instead a discreet bathing anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.658, - 43.25866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 736, - "mapId": "CR_255", - "name": "LUCICE", - "description": "Anchor on sand west of Capo Zastup.There are 3 loops of which the most west is the most protected, but it has a backdrop of 15 m, while the east of 8 m's backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.448, - 43.30183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 737, - "mapId": "CR_256", - "name": "OSIBOVA", - "description": "It is a solitary fjord surrounded by Mediterranean Bosco.The anchor on sand is in m.6 of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.43083333, - 43.30766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 738, - "mapId": "CR_257", - "name": "MILNA (BRAC)", - "description": "Open to the west, but ridden by Punta Zagla, the wide Bay of Milna is protected from both Bora and twenty of the second and third dial.In the old port the ferry stop is the central quotation, the fuel, fuel.The marina is after the site in the southern ass. There are 170 berths.An anchor is located before entering the port on the north coast in a roughed pine with a pine forest around." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.43133333, - 43.32833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 739, - "mapId": "CR_258", - "name": "BOBOVISCE", - "description": "Creek with two coves that are rawn anchors, but not by west that rises Maretta.The backdrop is 8-10 m.At the bottom of the sudest cove there is a combinable quay and a restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.44516667, - 43.3545 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 740, - "mapId": "CR_258", - "name": "STINIVA", - "description": "Creek that develops for west-east open then to the third twenty and fourth dial.The anchor is in 5-10 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.44266667, - 43.36816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 741, - "mapId": "CR_258", - "name": "STIPANSKA", - "description": "Creek that develops for North-South surrounded by Mediterranean wood.It constitutes a pleasant and safe.The anchor is in 3-7 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.43983333, - 43.37166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 742, - "mapId": "CR_261", - "name": "HVAR", - "contacts": [ - "021 741007 Capitaneria" - ], - "description": "Hvar is probably the most famous Dalmatian island for the beauty of his pine forests, the lavender fields, the mild climate. For boating it offers numerous possibilities for its jagged coast and rich in bays and anchors. The port of Hvar is very busy by ferries, tourist boats, yachts. In summer it is difficult to find mooring and may perhaps be a little in stand-by to be able to land. Located in a bay that has the protection of Pakleni islets is raveroed from the north by the mountain ridge of the island. The port is quack and the first part is reserved for ships. The pleasure boats moor on dead body in the interior part or in front of the hotels with a top of the ground. The Krizna Luka Baietta has some gavitelli in front of the fuel distributor that is combined with smaller boats. Instead, the anchorage is prohibited in the passage of the Galisnik islet. The stop is those not to be missed for the beauty of the city and the historic center. Every refueling is possible in shops and market and the rich fruit and vegetables market. On the docks there are bars and restaurants under palm trees. The anchors around Hvar are not lacking, to be reported mainly to the west those of Vela Garska which has a comprehensive pier well ravished by every wind and Pelegrin, an uninhabited bay which is open to the winds of the second and third quadrant. Other interesting anchors are on the small Spalmadori Archipelago (Pakleni Otoci)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.437, - 43.168 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 743, - "mapId": "CR_264", - "name": "PARJA", - "description": "Bay open to the north with anchor in the backdrop of 5-7 m.There is a restaurant with mooring gavitelli and non-jurthection boat (depth lower than the meter).Pay attention to the rock on the tip before entering the bay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.39866667, - 43.19633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 744, - "mapId": "CR_264", - "name": "DUGA", - "description": "Creek rottoose from Bora and Scirocco.Anchor in 8-12 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.40916667, - 43.197 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 745, - "mapId": "CR_264", - "name": "PRIBINIA", - "description": "Bay with two ridone loops from all sides.In that west there is the village of Vira and the ferry pier.The anchor is in the east bay on the bottom of 8-10 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.42733333, - 43.199 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 746, - "mapId": "CR_265", - "name": "STINIVA", - "description": "Sheight with Tramontana is good only behind the Frangiflutti pier.Insicure anchors are also those of Jagodna, Lozna and Sviracina, all open to the north." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.46616667, - 43.209 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 747, - "mapId": "CR_266", - "name": "STARIGRAD", - "contacts": [ - "021765060 Capitaneria" - ], - "description": "Large bay surrounded by Mediterranean scrub with numerous bays ridden like Luka Tiha and Zavala and the port of Starigrad.The port is west-east and is well protected except as a west.Ferries dock in the southern part of the bay.The yachts moor more inside and on dead bodies, with running water and electricity in a quay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.582, - 43.18483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 748, - "mapId": "CR_267", - "name": "GLAVNA", - "description": "Protected from every side except as a mistral as well as the contiguous bay of Vlaska." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.53283333, - 43.23016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 749, - "mapId": "CR_266", - "name": "ZUKOVA", - "description": "The bora can raise Maretta, for the rest it is well rotto." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.58583333, - 43.2135 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 750, - "mapId": "CR_269", - "name": "VRBOSKA", - "contacts": [ - "021 774018 ACI-Marina" - ], - "description": "The port is at the bottom of a long and narrow fjord which, however, cannot cushion of the sirocco sea that can have sex even of 2 m.The bora also can blow violent.There is a marina with 85 berth and 30 on the ground, 5 tons cranes, technical assistance, fuel supply and the main services also laundry.Nearby bathing anchors are those in front of the hotel area on the northern part of the coast and the Zecevo islet (43 * 11.4 N - 16 * 42 'e), nudist colony with restaurant, ravished by bora and with backdrop of 7 m,And Maslinica (43 * 11.4 N - 16 * 40.9 e), a quiet bay with clear water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.68533333, - 43.17533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 751, - "mapId": "CR_270", - "name": "JELSA", - "contacts": [ - "021 761055 Capitaneria" - ], - "description": "Porto fishing vessel and a very popular vacation place with an open marina to the east and a few places for the passage.It is moored on the north side behind the pier paying attention to the bottom.The south side is reserved for the ferry." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.7, - 43.1675 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 752, - "mapId": "CR_271", - "name": "PRAPRATNA", - "description": "Baietta Amena with some houses and a restaurant for bathing park." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.75266667, - 43.16433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 753, - "mapId": "CR_272", - "name": "VELA STINIVA", - "description": "Small bay for bathing stop with a combinable pier.The backdrop is 15 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.81166667, - 43.15983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 754, - "mapId": "CR_272", - "name": "POKRIVENIK", - "description": "Creek with two loops of which to the west has a restaurant with a combinable pier (2 m).In the east of the east, wave with Bora.Attention when entering the bay: all the tips of the west coast sprouts out with slums." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.8875, - 43.1575 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 755, - "mapId": "CR_274", - "name": "BRISTOVA", - "description": "Baietta surrounded by houses with a short jetty pier.Anchor in 10 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.0155, - 43.14433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 756, - "mapId": "CR_275", - "name": "VLASKA", - "description": "Bathing anchor in front of a campsite in 5 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.54283333, - 43.23066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 757, - "mapId": "CR_276", - "name": "SUCURAJ", - "contacts": [ - "022 773228 Capitaneria" - ], - "description": "Just below the eastern toe of Hvar the port of Securaj is a terminus of ferries and traffic is remarkable in season.The sirocco causes Maretta in port.The yachts moor in 3-4 m of water on the quay in front of the village.Continuing on the coast to the west meet numerous bathing bortions only ridden by Bora and open to the sea." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.19133333, - 43.12283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 758, - "mapId": "CR_277", - "name": "ZAGLAV", - "description": "The Kozja bay is recognized because there is a white chapel and a cross on the right.The anchor is on the bottom of mud in 10 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.04833333, - 43.11283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 759, - "mapId": "CR_277", - "name": "DUBOKA", - "description": "Just west of Kozja this bay offers an anchorage ravished from west to the east passing to the north.Anchor in 6 m of water.To the west of Duboka to Zavala (Pitavska Plaza) (43 07.3 N - 16 42 E) There is a series of interesting coves for the dealer, all with similar features: Smokvina, Pelinovik, Smarska (which has a jetty jetty), Torac, Skozanje, Srhov Dolac, Medvidina, Ervanj." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.04016667, - 43.113 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 760, - "mapId": "CR_279", - "name": "IVAN DOLAC", - "description": "Anchor in front of a village of holiday homes." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.639, - 43.12416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 761, - "mapId": "CR_280", - "name": "NEDJELJA", - "description": "Numerous holiday homes have risen by the sea.The bathing anchor is close to the sandy tip." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.57983333, - 43.13583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 762, - "mapId": "CR_281", - "name": "PISCENA", - "description": "Baietta west of a tip that has a restaurant with a small boat in the bottom." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.5455, - 43.13683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 763, - "mapId": "CR_282", - "name": "DUBOVICA", - "description": "Creek with anchor and at the bottom a beach and a restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.53233333, - 43.142 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 764, - "mapId": "CR_283", - "name": "ZARACE", - "description": "The promontory has two one south-east with a group of houses and a restaurant, the other in the northwest.The bottoms of the bays are rocky." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.5165, - 43.1475 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 765, - "mapId": "CR_284", - "name": "MILNA", - "description": "It is close to Bora in a wooded environment with a tourist center and a restaurant.The north-west bay of Vlaska is more solitary, but three piers have recently been placed for a total of 60 berths.", - "slips": 60 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.48483333, - 43.15883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 766, - "mapId": "CR_285", - "name": "PALMIZANA", - "contacts": [ - "021 744995 ACI-Marina" - ], - "description": "The only port of the island in the extreme East part. Before the entry there is the dry Baba reported by a Meda.There is a modern marina with 180 berths of the ICI with water and electric current in a quay.With the bora there is a little maretta in port.There is a restaurant and a minimarket for essential supplies.A taxi boat makes the shuttle with Hvar." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.39816667, - 43.16616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 767, - "mapId": "CR_287", - "name": "LOVISCE", - "description": "On the North Costa known bay and recognizable by the light to red light (3S, 3M) with a non-good sander of sand and algae of 6-8 m.Of the three Anse the central one and the west have a rustic restaurant, the one to the east is the best close to Bora." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.69916667, - 43.09883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 768, - "mapId": "CR_287", - "name": "MANASTIR", - "description": "The name comes from an ancient monastery of the XVI century of which the ruins remain.The restaurant at the bottom of the bay has some gavitelli for transit." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.70783333, - 43.09733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 769, - "mapId": "CR_288", - "name": "VISKA LUKA", - "contacts": [ - "021 711111 Capitaneria" - ], - "description": "The Island of Lissa (VIS) has long been outside the tourist circuit because military base.The climate is mild and favors the cultivation of citrus fruits and olives.The sea around VIS is full of dry, especially to SE, well-marked rocks and islets: pay attention.Dead bodies for water and electricity docks.The fuel distributor is in the northern part.The bora blows strong and scirocco creates wave in the bay.Then it is better to moor on Boe in front of the town of Kut.\n\nIt is open to the north-east and therefore suffers both the bora and the sirocco.Vis is an entry port and seasonal customs.The Tip Pririso riddened the gavitelli in front of the quay that has water and current sockets and also a fuel distributor.With strong wind of the first quadrants the wave in port becomes sensitive.In the village there is the capability and the police office, as well as several shops, bars and restaurants." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.20883333, - 43.07433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 770, - "mapId": "CR_288", - "name": "STONCICA", - "contacts": [ - "021 711111 Capitaneria" - ], - "description": "The Island of Lissa (VIS) has long been outside the tourist circuit because military base.The climate is mild and favors the cultivation of citrus fruits and olives.The sea around VIS is full of dry, especially to SE, well-marked rocks and islets: pay attention.Dead bodies for water and electricity docks.The fuel distributor is in the northern part.The bora blows strong and scirocco creates wave in the bay.Then it is better to moor on Boe in front of the town of Kut.\n\nIt is a bay open to the north, but rawn from the other winds.The anchor is in restricted spaces because the backdrop falls quickly." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.2455, - 43.075 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 771, - "mapId": "CR_292", - "name": "KOMIZA", - "contacts": [ - "021 713085 Capitaneria" - ], - "description": "Komiza is open to the west wind and Libeccio that raises sometimes sensitive even in port.The end of the pier is reserved for the ferry, the yachts moor later on dead bodies.There is water and electricity in the quay.In the village there are shops for the provisions, the pharmacy and restaurants.A small yard offers technical assistance.An anchorage ravished by the first quadrants is located after the tip Krizni and a mooring on a combinable hilly can be found further north before the Banacj chief." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.081, - 43.04166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 772, - "mapId": "CR_288", - "name": "RUKAVAC", - "description": "Creek open to the south east, but rawn by the GRAVENK islets (which has a cave to see) and Budikovac (with two bathing beans on low backdrop).On the shore there are holiday homes and the northernmost part of the Cala is often occupied.It is moored on a cozy hedging in front of the restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.2185, - 43.01883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 773, - "mapId": "CR_288", - "name": "RUDA", - "description": "The part of the bay useful for a stop is almost always occupied by local boats.In the East ANSA the deep and rock backdrop makes anchorage problem as in the adjacent bays of Mala and Sailing Travna, to the west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.20033333, - 43.01716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 774, - "mapId": "CR_298", - "name": "KORCULA", - "contacts": [ - "020 711178 Capitaneria", - "020 711661 ACI-Marina" - ], - "description": "The island of Korcula, as the Venetians called it, of whose presence are still many signs, is richly covered by the Mediterranean scrub. Over 26 miles long and has a developed road system, very busy summer. The island in the east part is very close to the mainland of the Peljesac peninsula from which it divides the Peljeski Kanal, very windy and sometimes difficult for navigation.\nThere are several possibilities offering the town of Korcula, another of the airports not to be missed. There are two ports including just. West Harbor: Rounded by the winds of the second and third dial and protected by a FrangiFlutti pier from the north; is quacked and generally used by commercial vehicles; The yachts can dock in front of the capacity, but the senses caused by the twenty of the trash and the continuous movement of hydrofoils and ferries do not recommend it; In the old city it is possible every refueling. Harbor East: Rounded by the winds of mistral and Libeccio is a marina capable of 135 berth and 15 on the ground; There is technical assistance, a fuel distributor, a 10 ton crane, the main services and a restaurant.", - "slips": 135 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.13316667, - 42.9635 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 775, - "mapId": "CR_302", - "name": "VRNIK", - "description": "Natural close to the south west of the islet, but not from Scirocco.In the North part it is possible to moor in front of some houses on a sand backdrop in 8 m of water and peaks on the ground on bollards." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.1675, - 42.93233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 776, - "mapId": "CR_302", - "name": "LUMBARDA", - "description": "This tourist resort created on the site of a Greek colony, west of Punta Raznijc, in the Baia Prvizal has a marina with 150 berths, 40 for transit, and minimum services.Before entering we need to pay attention to Scoglio Knezic and his dry, north-east of the bay and also to the baseless reported in front of the marina.In the Attiguary Tatinja Bay there is close to the south sectors mooring at the marina pier with anchor in 3-5 m of water on a sandy bottom.", - "slips": 150 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.1735, - 42.927 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 777, - "mapId": "CR_304", - "name": "PUPNATSKA", - "description": "Rough to the northern winds, for bathing across the south coast of Korcula." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.00033333, - 42.9225 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 778, - "mapId": "CR_305", - "name": "ZAVALATICA", - "description": "The small pier at the bottom of the bay does not protect the boats to the mooring from the strong senses caused by the winds of the second and third quadrant.There is a restaurant and grocery store.Small hoops for bathing activities are shining, Grahova, Vlaska, Brendana." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.9335, - 42.90933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 779, - "mapId": "CR_306", - "name": "BRNA", - "description": "Large bay on which the road from Curzola comes.It is open to the twenty of the third quadrant but well returned by others.The Punta Mali Zaglav divides it into two hans, that to the south-east in front of the houses of Brna is quacked and combinable, the one to the north-west in the middle of a beautiful pine forest is narrow and has a sandy backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.84766667, - 42.9015 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 780, - "mapId": "CR_307", - "name": "PRIZBA", - "description": "Fishing village that has undergone a recent tourist development.It is located west of Punta Ratak, at the root of a promontory that forms two hans, a levante with the gravel beach in front of the country and the other in Ponente, Mali Prizba with a small jetty pier (2 m).The mixed sand and rock bottom is bad for anchoring.Warning by entering the bay at about 400 m southwest of the Punta Ratak dates back to a meter from the surface I wary Cerin.The Otocac islets and then Crklica, Sridnjac, Vrhovnjak can be related to the south for small yachts.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.78666667, - 42.9045 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 781, - "mapId": "CR_308", - "name": "GRSCICA", - "description": "Bay with a dry (1 m) in the middle and, a fishing village.Enter holding up to the north coast.A trattoria with spaccio wines is the only resource of this quiet bay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.771, - 42.9045 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 782, - "mapId": "CR_309", - "name": "KARBUNI", - "description": "Well ravished anchoring from every part, even from the south from the Zvirinovik islet, but problematic for the high backdrop (15-20 m).Better being under the island." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.718, - 42.91616667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 783, - "mapId": "CR_310", - "name": "TRI LUKE", - "description": "Wide bay with three green and well-roughed coves, not from the south, where it is possible to anchor on sand backdrop in 5 m of water.The bay more east has a church and some house." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.67016667, - 42.922 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 784, - "mapId": "CR_311", - "name": "VELA LUKA", - "contacts": [ - "020 812023 Capitaneria" - ], - "description": "The topographical configuration of this large inlet makes it roughed practically always.Only large west storms can create wave in the port.The yachts mooring takes place in the internal part of the quay which is supplied with water intake and electricity and on which there is the fuel distributor.The anchorage is possible in the Northern Band of the port and even outside in Plitvina's assessment, while the southern loop is occupied by a shipyard.In the city it is possible any type of refueling.In the bay the osjak islet is a protected area for the typical Dalmatian flora.On the west coast of Curzola there are several ridone bays, the most interesting are, to the south those of Zaklopatica, Krnji Rat and Poplat (42 * 56.6 n - 16 * 40.4 and), while in the north there are a gradina who is surrounded by the islets sv.Ivan and Gubesa and, finally, Meja who has a combinable disused pier by the military." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.70133333, - 42.96116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 785, - "mapId": "CR_312", - "name": "PRIHONJA", - "description": "It is among the first bays that meet in the north coast of Curzola after Capo Proizd.It is righted by the southern winds and a little even from the bora.There is a small combinable pier and a breakwater in the south-east.The backdrop is sand and algae and varies between 6 and 12 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.70016667, - 42.99233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 786, - "mapId": "CR_313", - "name": "PRAPRATNA", - "description": "Bay returned by southern winds.The quay is combined only by small boats.The anchor is prohibited for the presence of submarine cables." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.70733333, - 42.99066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 787, - "mapId": "CR_314", - "name": "BRISTVA", - "description": "Bay that is close to a pier occupied by a construction site.The backdrop is low." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.78616667, - 42.97066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 788, - "mapId": "CR_315", - "name": "RACISCE", - "description": "Bay in the northern coast of Korcula at the west entrance of the canal with the island Peljesac.Sheltered from every direction except from the north with goodwill bottom for anchoring in 10-12 m of water.The mooring is inside the FrangiFlutti pier which is exposed only with a strong mistral." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.0185, - 42.979 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 789, - "mapId": "CR_316", - "name": "PRIGRADICA", - "description": "The inlet of the creek is open to the bora.A FrangiFlutti pier does not stand out.In the village there is a restaurant and various shops.Half a mile east of prigradica there are the islets with dry hridi naplovci;Three miles north The Plocic Islet with light (2 flashes, 10s.10 m) has a dry and rocks outcropping on the south-east tip." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.81016667, - 42.96833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 790, - "mapId": "CR_317", - "name": "KNEZA", - "description": "Bay opened in Levante, roughed from the third and fourth quadrant also by the islets Kneza Vela and Mala (there is no passage for the yachts between the latter and the shore).The anchor is 5 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.04983333, - 42.97483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 791, - "mapId": "CR_317", - "name": "VRBOVICA", - "description": "A dry signaled by a Meda makes it dangerous in the inlet.The west loop, less inhabited is well ridden by the west.In the ease of Levante there is a small quay and a considerable number of houses.Anchoring in clear waters and sand background is not recommended with the bora." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.1035, - 42.96583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 792, - "mapId": "CR_317", - "name": "BANJA", - "description": "At the bottom of the bay surrounded by a pine forest there is a combinable hollar (2 m).Anchor in 10-12 m of water is quite ravished by the bora.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.1135, - 42.96416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 793, - "mapId": "CR_320", - "name": "MALI LAGO", - "description": "Mali Lago is the basin formed by the two islands of Lastovo and Prezba (connected by a bridge).The anchors here are well returned by every wind, especially in the north-east part and in the southern creek. It is accessed from the north by paying a lot of attention to the submerged cliff between Mali and Maslovnjak veils.The channel that combines the lake veiled Mali basin is about 250 m long, wide 5 and deep 1 m.The height of the bridge is 2 m.With strong wind the current can exceed 3 knots.The Bay of Borova on Prezna is exposed to Bora." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.83483333, - 42.78016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 794, - "mapId": "CR_320", - "name": "VELJI LAGO", - "contacts": [ - "020 805006 Capitaneria" - ], - "description": "Natural harbor.Incarse you need to keep yourself from the cuf tip, or at night keep in the white sector of the Punta Kremene lighthouse on Prezba (light to Lampi, 5s, M8).The anchor is near the bridge, to the north or in the Jurieva Anse (here asking the coast guard it is possible to moor at the pier to '' t '') and kremena depending on the wind, on backdrops less than 10 m.Water and fuel in Ubli.Between prezba and the island of MraCara there is a raveroed basin accessible both from the north and south with two possibilities of anchoring, one in the south of Mrcara, the other in the west coast of Prezba." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.812, - 42.7515 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 795, - "mapId": "CR_322", - "name": "ZAKLOPATICA", - "description": "Zaklopathic is in the northern part of Lastovo.Anchoring near the coast of the islet you have a close to Bora that the same enters the bay.There are two restaurants in the south-east part with a combinable quay.Two good westwards, but not from Bora, are also in Korita and Krucica.On the north coast of the island there is the pier of Mihajlo that serves with a favorable time from boarding for the village of Lastovo.The east tip of Lastovo is surrounded by dangerous rocks and dry, the Lastovnjaci or Donji Skolji, reported north by Tajan Veli lighthouse (Lamplei, 5S, 8M) and the Vrhovnjaci reported to the east of Glavtat's lighthouse (5 flashes, 30s, 22M)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.87616667, - 42.7775 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 796, - "mapId": "CR_323", - "name": "SKRIVENA LUKA", - "description": "Bay that forms a well-rotted natural harbor from every part, in the southern part of Lastovo.However, there is the phenomenon of '' reimbursed '' of the bursts of Bora.The channel to enter is quite tight and has a depth of 6 m.The anchor is 10 m of water.There is a restaurant and a few houses inhabited only in summer. The south coast of Lastovo west of Capo Struga is sprinkled with low backdrops, including 2 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.88133333, - 42.72833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 797, - "mapId": "CR_324", - "name": "POMENA", - "description": "The creek is protected from the north and bora from the Isolotto di Pomestak.In the inner part of the dack can be moored in 3-6 m of water on a dead body.In the attached Cala di Lokva the anchor is 8 m of water.By approaching Pomena from the north you need to pay attention to the Seka CRNA south of Glavtat then to the slums around the northeastern tip of Pomestak and finally to the extension of the rocky bottom of Mljet in the passage (4.5 m) between the two islands.Coming from the west There is another seka crna to avoid north of the Sparozni Rat tip and a islet to leave to the left." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.34183333, - 42.78983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 798, - "mapId": "CR_325", - "name": "POLACE", - "description": "Anchor optimally rottoose and surrounded by wooded hills.The entrance is protected by the moracnik islands, overs and kobrava.The most direct way to the port is the transition between Mljet and Kobrava.At the bottom of the bay there is a dry covered by 2 m of water, you must be careful when moving from the quay to the anchor in the Rogac bay.Acqua water is not available for boaters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.38533333, - 42.78916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 799, - "mapId": "CR_326", - "name": "KOSARICA", - "description": "Tiny marina that behind a frangiflutti pier gives you back to small boats.It is almost always busy." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.46583333, - 42.77883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 800, - "mapId": "CR_327", - "name": "SOBRA", - "contacts": [ - "020 745040 Capitaneria" - ], - "description": "Bay not returned by bora with scarce resources on the ground.The entrance is made dangerous by the presence of dry SEPERSKA.The ferry runs to the quay to the south of the Badanj islet which is the only one behind by the first quadrant.Yachts can moor at the quay in front of the country restaurant on a background of sand and bowls." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.615, - 42.74233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 801, - "mapId": "CR_328", - "name": "PROZURA", - "description": "The bay, not protected by Bora and Maestrale, is just returned by the Borovac and Planjak islets.You have to leave them to the left to enter the bay.On the east side of the bay there are the islets and rocks Senjevci.You can take care of caution to the molets in front of the two restaurants, or at the west quay paying attention to the backdrop that becomes less than 2 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.64633333, - 42.73766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 802, - "mapId": "CR_328", - "name": "OKUKLJE", - "description": "Creek perfectly returned from every side with a jelly ferry and in the internal part for yachts.There are dead bodies and socket in a quay for restaurant guests.In the western part of the port there is a dock in the UNCINO to which moor in just over 2 m of water and a low backdrop with emerging rocks which is signaled by a meda.The anchorage is on a sandy bottom of 5 m.There are several restaurants and coffee." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.67666667, - 42.72983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 803, - "mapId": "CR_330", - "name": "SAPLUNARA", - "description": "Open anchorage to the southwest on sandwich and algae bottom.There is a beach among the trees and a cove, Blacca, surrounded by pines, but with low backdrops and not available for pleasure.The anchor in front of the beach is on sand in 4 m of water.If you get up the libeccio you can turn the gruj chief and give bottom to the anchor close to podskolj, between the two islands." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.73433333, - 42.69333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 804, - "mapId": "CR_331", - "name": "LOVISTE", - "description": "Loviste is a large bay allestock of the tip of the Peljesac peninsula.It houses several tourist settlements and inhabited.Loviste is the most developed and has a combinable pier (3 m) reserved for the ferry in the eastern part. The anchor is prohibited in front of the beach with the hotel and the restaurant.To anchor it is better the North-West loop with a mooring hip for small boats or the North-East loop in front of Mirce with a restaurant in Riva.The 7 m backdrop is not a good car.The west winds cause sets.In the village you can refuel of water and fuel and every food.Bathing anchors between the two west tips of Peljesac are north, Krizica and Cesminova, to the south Przine." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.02266667, - 43.02366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 805, - "mapId": "CR_317", - "name": "VIGANJ", - "description": "Location in the southern slope.There is a small pier that allows mooring ravished by northern winds." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.096, - 42.98216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 806, - "mapId": "CR_333", - "name": "KUCISCE", - "description": "The docking pier has the depth of 2 m in newspaper.It is raveroed from the north." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.11566667, - 42.97783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 807, - "mapId": "CR_334", - "name": "OREBIC", - "description": "Starting point and arrival of the ferries to Curzola (Korcula) that moor on the external pier.The marina is very busy in summer and is completely exposed to west.The backdrop is 2-3 m.The marina is capable of 220 seats of which 25 for the transit and another 20 on the ground.We can supply water and food.As a testimony of the great maritime tradition of the past in Orebic a marine museum was built.From the village the path to climb the summit at Mount Ilija of 961 m, the highest point of the Peljesac peninsula with an enchanting view." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.177, - 42.97233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 808, - "mapId": "CR_337", - "name": "TRSTENIK", - "description": "Marina ravished by a frangiflutti pier with 4 m of water around.The inner part is reserved for the ferry.With sea and southern winds a strong stand is created.The bora falls into the port with force.Two small and amene bay to the south-east of the harbor allow anchoring in 7 m of water on sandwiches." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.40483333, - 42.91183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 809, - "mapId": "CR_337", - "name": "ZULJANA", - "description": "Marina Rounded by a frangiflutti pier with depth of the internal basin of 2-3 m.With winds from west it creates stand.The bora blows here with extreme force.The anchor is on a sand bottom of 8 m.The dangers at the entrance consist of the Kosmac islet and the dry miriste, especially if it comes from the contiguous bay of Vucine." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.445, - 42.892 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 810, - "mapId": "CR_339", - "name": "PRAPRATNO", - "description": "Bay rottoose from rising with bottom of 10 m not a good warder, especially in case of bora.In summer the sandy beach is very popular by the nearby campsite guests whose structure can be a resource for supplies.Another close to Scirocco is that of Przine, protected by the extreme tip of Vratnik.The bay has a bowls beach but hides some rocks towards shore." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.6735, - 42.81083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 811, - "mapId": "CR_339", - "name": "STON", - "description": "It is a medieval vintage village that stands on the Istmo of Peljesac at the bottom of the Stonski Kanal and has a well-rottoated marina.The channel that from Broce leads to the port of Ston, dragato at 2.5 m, is twenty meters wide and is signaled by bright mede.The phenomenon of the sex makes it dangerous for sailing with the sirocco.In the village there are shops, the market and a hotel with restaurant.The mooring in port is on the west quay in 3 m of water.Also Broce has two moles only in the newspapers (3 m), but the night stop is not recommended because the marshy area of the nearby saline in summer is infested by mosquitoes.Better to stop in the Cala di Kobas which offers a good berth exposed only from the north over 12 m wheel backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.70133333, - 42.83 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 812, - "mapId": "CR_340", - "name": "DOLI", - "description": "To the north of the entrance of the Stonski Kanal there is this open baietta in Scirocco which has a small harbor with two parallel piers that allow mooring or anchoring in 4 m of water.There is a restaurant in Riva, the warehouses of a factory and some houses." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.79966667, - 42.80333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 813, - "mapId": "CR_340", - "name": "BUDIMA", - "description": "The bay has a bowls beach and is open to Bora and Scirocco.The coastline goes nearby.Anchor in 6 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.841, - 42.80183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 814, - "mapId": "CR_340", - "name": "JANSKA", - "description": "Fishing village with a combinable quay.The anchor is on a background of sand and algae in 8-10 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.84433333, - 42.79466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 815, - "mapId": "CR_343", - "name": "SLANO", - "contacts": [ - "020 871177 Capitaneria" - ], - "description": "Wide bay protected with different possibilities of anchorage.The northern part of the quay is reserved for pleasure boats.The Cala Banja is a great shocked by Bora, while the Ansa Osmine in the west part is unsuitable for the anchor for the rocky bottom.A solitary anchorage is in the narrow fjord towards Capo Gornji." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.87066667, - 42.7735 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 816, - "mapId": "CR_344", - "name": "BRSECINE", - "description": "Large beach at the bottom of the bay open south. There is a pier to be shocked for local boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.95283333, - 42.72533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 817, - "mapId": "CR_345", - "name": "ZATON", - "description": "Narrow inlet well rottoose with different possibilities of mooring.The dock of Veli Zaton turning to the left allows mooring in internal and external headboard in 2-3 m of water.Anchoring one must pay attention to a submerged rock at 4 m right in front of the dock.There is a restaurant and shops for the purchase of food.Two anchors are at the north end in front of Soline and on the east shore in the stikovica cala, in 7 m of water and muddy backdrop.The phenomenon of '' reimbursed '' night of the wind of earth intense.Annoying wave with winds from the south and south-west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.0465, - 42.68833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 818, - "mapId": "CR_346", - "name": "DUBROVNIK", - "contacts": [ - "020 418989 Capitaneria" - ], - "description": "It is the most sought after tourist destination in Croatia and probably of the Adriatic.The ancient ragusa with the charm of its walls and white stone houses, is a stop not to be missed.However, it is necessary to discard Stara Luka, the Old Port which is under the eastern part of the walls, reserved for the premises taxi boats that make the shuttle with the island of Lokrum and the nearby beaches." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.118, - 42.63783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 819, - "mapId": "CR_347", - "name": "MARINA GRUZ", - "description": "It is the commercial port located in the annex south east of Punta Kantafig.The quay for the pleasure is at the bottom left after the red light.The Marina Porat-Gruz has 40 seats and has sockets and water in a quay.With winds from west and for the port movement there is stand.The Orsan Club Marina is private and has a pier with two brushes where you can occasionally find a place in transit.Near is the quay with fuel." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.07883333, - 42.66316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 820, - "mapId": "CR_348", - "name": "MARINA DUBROVNIK", - "contacts": [ - "020 455020 ACI-Marina Miho Pracat" - ], - "description": "The marina is located in the terminal tract of the Dubrovacka river about 2 miles from Gruz.Going up the river does not give particular problems, you pass under the new viaduct, the backdrop is deep and the current rarely exceeds the node.The Miho Pracat of the ICI navy opens on the left bank and has 3-6 m backdrops.The berths are 450 in the water and 110 on the ground.There is water and electricity in a quay, a 60 ton Travel Lift, technical assistance, services and laundry, bar, restaurant, supermarket, Ship Chandler, tennis and pool.A bus service for Dubrovnik works until late at night." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.11766667, - 42.67133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 821, - "mapId": "CR_349", - "name": "KOMOLAK", - "description": "Going up the river after the Marina Dubrovnik gets to Komolac in a pleasant and peaceful environment.The backdrops are 2.5 m and you need to pay attention to sandbanks.There is a restaurant.The bora here blows violent." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.12983333, - 42.67116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 822, - "mapId": "CR_350", - "name": "CAVTAT", - "contacts": [ - "020 478065 Capitaneria" - ], - "description": "Cavtat, or old Ragusa, is located on the southern coast of Zupski Zaliev, returned by Scirocco, but open between north and north-west. The entrance to Cavtat, a seasonal customs harbor, is hindered, about half a mile to Northwest, from La Plicina Seka Velika with Bright Meda (2 flashes, 10s), at night in the red sector of Capo Rok Lighthouse and from the Platina Seka Mala, With less than 2 m of water at about 250 meters per northwest from the same lighthouse. Coming from the west there is also to avoid the SUPETAR islet and the SWEET SUPERKA SUPERARANTE to the south-east of the islet and not easily visible, at about three quarters of millet for the northwest from the point of Punta Rok, at night in the sector Green of this. Franco entrance is in the white sector. The quay is combined and the mooring is 4-5 m of water. There is water on a quay and all the services that can offer a lively tourist citadel. The Tiha bay is more protected from the west and less from the north and is also finged, the 2-3 m mud backdrop is mediocre contractor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.21766667, - 42.58983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 823, - "mapId": "CR_351", - "name": "MOLUNAT", - "description": "He has two bays ridden by a '' t 'peninsula.Respectively from Northeast, Gornji Molunat, also protected from the islet Veli Skolj, with a quay juxtaposed in front of the fishing village with shop and restaurant and Donji Molunat, rottoose from Scirocco with a backdrop of 8-12 m, good carer." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.43783333, - 42.44533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 824, - "mapId": "CR_352", - "name": "HERCEG-NOVI", - "description": "It is an international port of permanent entry with customs and police station, instead the yachts run and practical in Zelenica, 2 miles away.The port, exposed to southern winds has a frangiflutti pier oriented per west approachable (4 m).A clenche rock is about 300 m to the south east from the port entrance.On the dock there is a water intake and the root of the pier a fuel distributor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.5305, - 42.44916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 825, - "mapId": "CR_353", - "name": "TIJAT", - "description": "On the east coast of the Gulf of the same name, Tijat is thanks to its airport a relevant summer international tourist traffic center.It has no particular attractions for nautical pleasure.The dock of the port is exposed to Bora and to the southwestern up to the west and lacks water faucet.It is possible to refuel fuel and gas.The presence of a military argency recommends some attention in keeping away remotely.The southernmost kaliman marina is well rawn and more suitable for yachts, but not always mooring is available.It is forbidden to anchor at the bottom of the bays of Polje and Krtole, separated by the road islet and by dry tunia tunia;Instead, it is allowed to do it close to the Kukuljina tip." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.68633333, - 42.433 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 826, - "mapId": "CR_353", - "name": "RISAN", - "description": "The mouth of verige is the inner entrance to the Bay of Risan and Kotor.The banks are high and surrounded by rocks.The current can be sensitive in the two senses.There is a speed limit of 8 knots in the channel.It can happen that the ferry between Lepetane and Kamenari through the route.The port of Risan is well rawn and has a jetty pier (2-3 m). With wind from the third quadrant outside the pier, wave is formed.It can be supplied with water and fuel from a road distributor.There is a market and other shops, bars and restaurants.Risan arose on the ruins of a Roman settlement that can be admired some finds." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.69083333, - 42.512 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 827, - "mapId": "CR_353", - "name": "DONJI MORINJ", - "description": "ANSA that is located in the south-west end of the Bay of Risan.It has a comprehensive quay ridden with southern winds, but dangerously exposed to the bursts of the bora and to the nocturnal catabatics winds.The road passes to the shoulders of the port." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.657, - 42.49066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 828, - "mapId": "CR_353", - "name": "PERAST", - "description": "It has a distinguished marinar past to be considered a historic site.The museum makes it testimony.On one of the two facing downtown islands, Sveti Djordje there is a XII century Benedictine monastery.The other islet was built by the inhabitants of the place with debris and wrecks of enemy ships sunburned on a pre-existing dry.Above a church dedicated to the Madonna of Skrpjela has arisen that preserves valuable examples of ex-voting silver.There is a combinable quay (4 m)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.69516667, - 42.485 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 829, - "mapId": "CR_357", - "name": "KOTOR", - "description": "The fortified city of Kotor, born on the site of a Greek colony of the third century ahead Christ, is a show not to be missed.The citadel resisted the attacks of enemies, pirates and earthquakes over the centuries.The port of Kotor is well ravished by every wind.The mooring is on the main quay supplied with water, electricity and fuel.Even the countries of Muo and Prcanj on the west coast of the bay have docking docks." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.763, - 42.42966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 830, - "mapId": "CR_358", - "name": "TRASTE", - "description": "The bay opens between the Kociste boss and the tip of trays about 5 miles south of the mouths of Kotor.It has an anchor rawn in front of the village of Trasse (Bigova) and can be moored at a quay that can be combined on each side.There is the possibility of some essential refueling.There is no running water.Also present the possibility of enjoying a Turkish coffee in an original bar: an old burst boat on the pier." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.68583333, - 42.363 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 831, - "mapId": "CR_359", - "name": "BUDVA", - "description": "The danger to navigation comes from the Tunja counter and extends another 400 meters west-west-west from the light (3 flashes, 10s, 8m) of the islet for the presence of the Scoglio Galijola.At night these dangers are covered by the green sector and enter the port in the white sector of the Budva lighthouse (ISO, WRG, 2S, 6M, detection between 10 and 15 degrees).The mooring is at the quay in front of the offices of the Master's office." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.83966667, - 42.27183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 832, - "mapId": "CR_360", - "name": "SVETI STEFAN", - "description": "The fishermen's island today luxury hotels, connected to the ground land, is very famous and constitutes a recall for boats.On the side to Sudest of the island there is a reduced in transparent and inviting waters.The Northeast loop has frequented beaches and deep backdrops not suitable for anchor.There are no available services for transit, but you can make some requests to the hotel." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.88733333, - 42.2565 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 833, - "mapId": "CR_361", - "name": "PETROVAC", - "description": "The Bay of Petrovac has a large beach, edged at the end of rocks, at the foot of the mountains of Montenegro, but is not rawn.In addition, the existence on the backdrop in front of the port of many rocky boulders advises the anchor.The dock of the port, ravished by Bora, is only combined from the outside because the interior has little more than 1 m of water.There is a restaurant, some shops and a market.The water faucet is near the pier." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.9485, - 42.19733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 834, - "mapId": "CR_362", - "name": "BAR", - "contacts": [ - "085 311436 Yacht Club Jadran" - ], - "description": "Large creek surrounded by Mediterranean scrub with a recognizable lighthouse on the Volujica tip (Lample, 4s, 16 m).The large port is intended for commercial activities, the Jadran Yacht Club Marina is east before entering.It has services and piers for mooring.There is running water, ship-chandler and fuel with tank." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.0805, - 42.09966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 835, - "mapId": "CR_363", - "name": "VALDANOS", - "description": "Ancient base of pirated ships Today seaside resorts with beach surrounded by verdant hills north of Punta Mendra with the lighthouse (10s, 11 m).Anchoring in the south side of the bay is on 5 m sand backdrop, open to the northwest is well ravished by the other directions and is not very disturbed by the release of the Libeccio." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.152, - 41.95733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 836, - "mapId": "CR_364", - "name": "ULCINJ", - "description": "Ulcinj is the last port of Montenegro, stronghold by exotic and oriental characteristics less than ten miles from the mouth of the Bojana river that marks the border with Albania.The bay is open to the south and is righted by northern winds, but suffers a lot of sirocco.In a dock there is no water, there are many shops and markets for border procurement in the city" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.20733333, - 41.921 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 837, - "mapId": "LI_078", - "name": "GENOVA - AEROPORTO", - "contacts": [ - "010 27777 Capitaneria", - "010 6143420 Direzione", - "Vhf 71", - "www.marinadigenova.it" - ], - "description": "Among the industrial port of Genoa Voltri and Sestri Ponente is rallying the marina Genoa airport.The arrival was designed for large yachts.Two of the three docks are available for about 180 moorings.", - "slips": 180 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.841333333, - 44.4155 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 838, - "mapId": "SI_122", - "name": "LIPARI - MARINA LUNGA", - "contacts": [ - "090 9811320 Capitaneria", - "Vhf 11" - ], - "description": "The Rada di Lipari, where there is the village, is on the side and between the Punta S. Giuseppe and the Monterosa promontory, on which a cross arises.A S of the castle opens the short marine cove delimited from one side by a islet on which a church rises and a fing dam.The beach towards N is instead long marine for which a regular row of houses winds.Pignataro is Lipari's port-refuge.\nA part of the quay is reserved for pleasure.Others landings, both on the side and island, are a cannetto, to N of the Monterosa promontory, and Porticello, a s\nDi Punta Chestagna.To the north of Agip refueling, between Monastery and Pignataro there is the Floating Porto Salvo dock (368/7190843).\nLand tongue extending from N of submonster to the port of Pignataro.Along this tongue of departs 4 piers.The floating dock is managed by the company La Buona Fonda for 40 moorings.", - "slips": 40 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.95833333, - 38.47166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 839, - "mapId": "SI_141", - "name": "VULCANO - GELSO", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "Arid and deserted island, has three volcanoes, one of which is active, a volcano fosse (386 m) in the northern part of the island;Mount Vulcanello (122 m) at the extreme N, connected by a low Istmo, seen from the wide, from and and from W, seems to be an islet.Between Mount Vulcanello and the southernmost part of the island there are two inlets: Port of Levante A e;Port of Ponente A W. The port of Levante has a 85 m long dam and fed in the S. side in the spaces left free from hydrofoils and ferry ships can moor pleasure boats.\nEven in the port of Ponente, spaces in the only dock are limited for pleasure.\nMasonry jetty between peaks of the pigs and flag flag intended for evacuation of the island;It can be moored in a backdrop between 2 and 5 m.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.99833333, - 38.36833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 840, - "mapId": "PU_064", - "name": "BRINDISI - PORTO ESTERNO", - "contacts": [ - "0831 521022 Capitaneria", - "0831 411479 Circolo della Vela", - "Vhf 74 - 11", - "www.porto.br.it" - ], - "description": "Three basins characterize the port: external port, medium port, internal port.From n you leave the Aragonese castle on the left, from and to whether to leave the white boa of Capo S. Cataldo to the left to avoid dry.You can moor at the inner harbor, at the central quay next to the sailor monument.In the external port there is the new marina, a mouth of Puglia.", - "slips": 5, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.0015, - 40.65483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 841, - "mapId": "PU_064A", - "name": "BRINDISI - LEGA NAVALE", - "contacts": [ - "0831 521022 Capitaneria", - "0831 411479 Circolo della Vela", - "0831 418824 Lega Navale Italiana", - "Vhf 74 - 9", - "www.lnibrindisi.it" - ], - "description": "Three basins characterize the port: external port, medium port, internal port.From n you leave the Aragonese castle on the left, from and to whether to leave the white boa of Capo S. Cataldo to the left to avoid dry.You can moor at the inner harbor, at the central quay next to the sailor monument.In the external port there is the new marina, a mouth of Puglia.\n\nQuay located in the inner part N in the Cristo del Passo area.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 18.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.93583333, - 40.64166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 842, - "mapId": "PU_009", - "name": "GALLIPOLI - BLUE SALENTO", - "contacts": [ - "0833 266862 Capitaneria", - "0833 263165 Circolo della vela", - "0833 264301 Lega Navale Italiana", - "Vhf 11 - 9", - "www.bleusalento.com" - ], - "description": "Gallipoli is built on a islet and partly on the mainland, in front of a promontory to which it is united by a bridge.In the part and of the islet the Revello Castle is visible and at the Levante of this, on the mainland, there is the village.The conspicuous point of the city is the high skyscraper 54 m (a m of the capacity) which at night has three red lights.Gallipoli has five docks.Coming from n you meet in order: Porto Gaio, Darsena Fontanelle, Cala Fontanelle, Mercantile Port, S. Giorgio and Breast of the Canneto.The Merchant Port is in the city and is the largest basin.\nApprodior located at the fierce port entering the left.", - "slips": 160, - "vesselMaxSize": { - "maxLoA": 60.0 - }, - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -10.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.99983333, - 40.06716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 843, - "mapId": "CR_399", - "name": "ZDRELAC", - "description": "The Strait of Zdrelac (44 * 01 'N - 15 * 15.6 e) Artificial passage wide about twenty meters and deep four, created in the 1800s, divides this island from Ugljan.The close that was formed is excellent from all sides and the backdrop of 5/6 m is a good coach.Currents can reach 4 knots.On the north part there is a docking pier.In the north-western part there is a signaled dried.The bridge that connects the two islands has a minimum height of 16.5 m.The precedence in the strait is for those coming from the north.Kablin's creek can be a good bora close to those who are about to enter the Zdrelac Strait.The port of Zdrelac (44 * 00.8 N - 15 * 17 'E) is instead on the east coast and has a frangiflutti pier that ridden the internal area, a backdrop 3 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.256, - 44.018 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 844, - "mapId": "CR_398", - "name": "VRGADA", - "description": "The Baia S. Andrija (43 * 51'5 N - 15 * 30 'and) open to the north west presents a dried from a meda at the entrance.There is a little back and shallow from Bora and the Scirocco rises a little wave.The bath anchor is close to the artina islet (with rocks).The Vrgada Luka port (43 * 51.5 n - 15 * 30.5 and) is on the north east coast and is ravished by west.The combinable pier (depth 2 m) allows mooring to a few boats in the newspapers.Restaurants and shops in the village.The Kranje Baietta, to the south is a great seaside berth in 5 m of clear water and so is to say those of Murvenjak island uninhabited." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.50716667, - 43.8605 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 845, - "mapId": "CR_397", - "name": "SIT", - "description": "To the west of Pasman, the island of Sit delimita to the east the homonymous channel that separates it from Zut and extends between the Balabra islets (2, 10s, 3m) to the north and the dry Misi and the rock Galijolica (2,10s,7m) to the south. The numerous dangers of the channel are in the red sectors of the two headlights.To the north east of Sit there is a bay (43 * 56 'N - 15 * 17.5 E) A possible shelter on the coast of Pasman." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.29283333, - 43.9365 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 846, - "mapId": "CR_385", - "name": "LEVRNAKA", - "description": "It is the first of the external crowned islands and has two bays of which the largest to the north east (is relatively returned by the SUSICA islet, but the low profile gets over the southern winds. There is a restaurant with a combinable pier (43 *49.4 n - 15 * 15.5 e) and several gavitelli with the possibility of having, at a high price, electricity. A west pier with a bar is used at embark and landing tourist boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.25283333, - 43.8265 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 847, - "mapId": "SA_120", - "name": "LA MADDALENA - MARINA NIDO D\u2019AQUILA", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "Vhf 9 - 11" - ], - "description": "It is the largest island of the archipelago, the only one with a town\n\nI arrive a short distance from Cala Gavetta on the southern coast of the island.", - "slips": 150, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.380333333, - 41.21333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 848, - "mapId": "SA_023", - "name": "BOSA MARINA - PORTO FLUVIALE", - "contacts": [ - "0785 375468 Capitaneria", - "0785 373554 P. Fluviale", - "335 1048852 Gestore servizi portuali" - ], - "description": "The village rises to the mouth of the river I fear whose southern shore has a docking quay with seabed of about 3 m;The river can be climbed for over two miles taking into account the variable backdrops.A s of the river is the commercial port partly quack.In the summer, floating piers are installed.The approach to Bosa, coming from N (Alghero): left Capo Marargiu (keep at least 300 m) on the route 125 * to locate the tower located in the pier of overflight of the port.", - "slips": 180, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.474, - 40.29016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 849, - "mapId": "SA_125", - "name": "CASTELSARDO - ISOLA ROSSA", - "contacts": [ - "079 470916 Capitaneria", - "079 694184 Comunità Montana" - ], - "description": "Nine miles to Ne of Castelsardo, is located opposite a recognizable land tongue due to the presence of a 23-meter high cylindrical tower.The marina is 9 miles from the tower", - "slips": 368, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.8725, - 41.00983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 850, - "mapId": "CR_386", - "name": "KOLOCEP", - "description": "To the north in the bay of Donje Celo (42 * 40.7 N - 18 * 00.6 and) there is the ferry pier whose moor at night.With bora the only one is under the east bank. Anchor with cable to the ground in 6-8 m.On the ground: a hotel, bars and shops." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.99883333, - 42.68116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 851, - "mapId": "CR_390", - "name": "PODOBUCE", - "description": "Small inlet with a bora rounded pier with 2-4 m of water in a headboard." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.2835, - 42.94383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 852, - "mapId": "TO_061", - "name": "CALA DE\u2019 MEDICI", - "contacts": [ - "0586 753104 Capitaneria", - "0586 764884 Direzione porto", - "www.calademedici.net", - "Vhf 9 - 2" - ], - "description": "Little more in Castiglioncello, in a crackling locality, is the marina with 585 berths.Backdrops from 3 to 8 m.All the most modern services in the quay and the possibility of assistance in the site on site." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.42116667, - 43.398 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 853, - "mapId": "TO_021", - "name": "PORTO TURISTICO MARINA DI SCARLINO", - "contacts": [ - "0566 866302 Marina di Scarlino", - "Vhf 72" - ], - "description": "Entrance to the port is easily identifiable for the sand-colored control tower with pyramid roof in copper, 15 m high, behind the subfluct dam.Input channel delimited by elastic media with red flashing light (left) and green (right) with access route 112 *.", - "slips": 564, - "temporarySlips": 56, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -2.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.78116667, - 42.88716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 854, - "mapId": "LA_051", - "name": "FOCE DEL GARIGLIANO", - "contacts": [ - "0823 971721 Capitaneria", - "0823-932186 Nautica Garigliano", - "Vhf 16" - ], - "description": "Porto Canale at the mouth of the Garigliano river, with low calm backdrops.Going up the river, there is a wooden jetty that is a refuge for small boats.On the left side a beach has recently been created: enter N, side of Gaeta.However dangerous access (1.50 / 1.60 m of seabed) since there are no entry lights.About 1 mile more upstream pontiens are set up for seasonal mooring.", - "slips": 100, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.7, - "maxDepth": -2.1 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.75933333, - 41.22183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 855, - "mapId": "CA_107", - "name": "ACQUAMORTA - MONTE DI PROCIDA", - "contacts": [ - "081 8687059 Capitaneria", - "081 8684211 Comune" - ], - "description": "Marina immediately located in the islet of S. Martino, joint to the coast from a raised street and on the top of which a quadrangular tower stands.It is protected in N from a cliff of two-arm overflow, of which the first quack and a cliff of S. La Darsena of the fishermen is reserved for residents, while three floating piers are intended for pleasure.Contact the municipality.", - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -0.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.03933333, - 40.7915 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 856, - "mapId": "CA_102", - "name": "NISIDA", - "contacts": [ - "081 2445111 Capitaneria", - "081 5047765 Nisida Mare", - "081 5708000 Onda Azzurra" - ], - "description": "Tourist marina Located on the coast of the Nisida islet, of volcanic origin: it has (from May to October) of floating piers reserved for pleasure boats.", - "slips": 460, - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -6.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.16533333, - 40.80083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 857, - "mapId": "SI_135", - "name": "STROMBOLI - SCARI", - "contacts": [ - "090 986390 Sabbia Nera", - "Vhf 77" - ], - "description": "Commercial pier in the east side of the island of Stromboli whose header is destined for ferries.To the north of the pier there is a boe field managed by the black sand company.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.23416667, - 38.78483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 858, - "mapId": "SI_123", - "name": "CEFALU - PORTO VECCHIO", - "contacts": [ - "0921 421580 Capitaneria" - ], - "description": "Consisting of a pier of 70 m not signaled by lights and free of services.Mooring: at the pier with dead bodies;With Still in Radia." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.018, - 38.0375 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 859, - "mapId": "CR_158", - "name": "MARINA BETINA (N)", - "contacts": [ - "022 434497 Marina Betina" - ], - "description": "Marina that can accommodate up to 180 yachts, plus 260 on the ground, adjacent to a shipyard.It is equipped with essential services.With Bora it is less ravished and creates Maretta in port.", - "slips": 180 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.59983333, - 43.82966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 860, - "mapId": "CA_101", - "name": "NAPOLI - PORTO COMMERCIALE", - "contacts": [ - "081 2445111 Capitaneria", - "081 5511806 Lega Navale", - "Vhf 11 - 14" - ], - "description": "The port of Naples is located in the northernmost part of the Gulf of the same name, and has two accesses at the ends of the foranea dam;The port is predominantly used for the intense commercial traffic.", - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -14.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.2795, - 40.83033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 861, - "mapId": "CA_104", - "name": "NAPOLI - MARINA VIGLIENA", - "contacts": [ - "081 2445111 Capitaneria", - "081 7529017 Cantiere Nav. Partenope", - "Vhf 72" - ], - "description": "Tourist landslook managed by the shipyard, located in the commercial port of Naples, immediately to W of the subfluct for the mouth of Levante, in the most oriental dock;Access from the levant mouth.Complete nautical assistance.", - "slips": 160, - "vesselMaxSize": { - "maxLoA": 26.0 - }, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -1.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.3065, - 40.82783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 862, - "mapId": "CA_110", - "name": "MARINA DI PUOLO", - "contacts": [ - "081 8789295 Capitaneria", - "081 5339810 Bruno Cinque" - ], - "description": "Marina for small boats, located between Sorrento and Marina della Campus, consisting of a pier of cliff cliff oriented by a small quack pier.", - "slips": 30, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "type": [ - "sand", - "rock", - "sand" - ], - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.345, - 40.62783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 863, - "mapId": "CA_103", - "name": "MAIORI", - "contacts": [ - "089 851279 Capitaneria", - "Vhf 16" - ], - "description": "Marina consisting of a pier of overflight and a subfluy quay from which 4 floating jacks depart.The port in 2005 was completed.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.8, - "maxDepth": -4.2 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.63666667, - 40.64766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 864, - "mapId": "CA_105", - "name": "POSITANO", - "contacts": [ - "089 875486 Capitaneria", - "089 875032 Lucibello Mario S.a.s.", - "Vhf 12 - 11" - ], - "description": "Large creek with a shore quay, a single iron jetty for hydrofoil mooring and a beach.At about 300 m from the shore there are gavitelli and during the summer season on the side and a pier is placed for the mooring of small pleasure boats.Possibility of radiator anchoring on seabed of 25-30 m, opposite the country.", - "slips": 150, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.487, - 40.62483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 865, - "mapId": "CA_106", - "name": "SORRENTO - MARINA PICCOLA", - "contacts": [ - "081 8073071 Capitaneria", - "081 8072582 Coport", - "081 8072283 Coop. Stella Polare", - "Vhf 13" - ], - "description": "The marina of Sorrento (Marina Piccola) is constituted by the pier of overflow oriented by, used above all to commercial traffic (except the first section, reserved for the transit of the boaters), by a quay of shore and a moletto of a subfluy.The internal water mirror houses dead bodies for boats up to 16 m.A 200 m catwalk serves the front of the Boe field", - "slips": 250, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.37966667, - 40.63033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 866, - "mapId": "CA_100", - "name": "SORRENTO - MARINA GRANDE", - "contacts": [ - "081 8073071 Capitaneria", - "340 5395547 Coop. Azzurra", - "Vhf 16 - 13" - ], - "description": "Located about mile about W of the port of Marina Piccola, the landing is protected by a hammer pier to Levante and a straight oriented pier or in the west.", - "slips": 100, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.3655, - 40.62883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 867, - "mapId": "CA_109", - "name": "MARINA DI PISCIOTTA", - "contacts": [ - "0974 938383 Capitaneria", - "0974 973510 Gerardo Tammarano" - ], - "description": "The marina marina di pisciotta, during the completion phase, is defended by a pier of punched superfluous internally, and from a subfluy mol from which another internal pier of about 80 m is departed.", - "slips": 100, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -0.7, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2245, - 40.10216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 868, - "mapId": "CA_108", - "name": "SANT\u2019AGNELLO DI SORRENTO", - "contacts": [ - "081 8788339 Capitaneria" - ], - "description": "Approdive protected by the frustrating pier s of the Marina di Cassano and another very parallel to the previous one, both consisting of cliffs.In the floating pontien center and buoy camp.", - "slips": 250, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.5, - "maxDepth": -8.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.38783333, - 40.635 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 869, - "mapId": "LA_050", - "name": "SCAURI", - "contacts": [ - "0771 681209 Capitaneria", - "0771 683925 Darsena Flying", - "339 6856064 P.O.D.A (pontili)" - ], - "description": "Small docked dock with mooring rings subject to covering.Good frog anchor.In summer you add six floating piers managed by the cooperative p.o.d.a .. there are 150 seats in 3 m.of water on the banks of the Garigliano river.Foce subject to covering.Inquire from the Captain.", - "slips": 250, - "seaFloor": { - "type": [ - "sand", - "mud" - ], - "minDepth": -1.2, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.70216667, - 41.25133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 870, - "mapId": "FR_056", - "name": "MARINA LEPANTO", - "contacts": [ - "0481 45555 Marina", - "www.marinalepanto.it" - ], - "description": "12 miles from Trieste inaugurated in June 2003. Take the navigable canal which starts from the fisherman's village.Jointed in front of the Burgo paperers follow the canal to the left.", - "slips": 250, - "vesselMaxSize": { - "maxLoA": 22.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.8 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.56383333, - 45.795 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 871, - "mapId": "FR_055", - "name": "OCEAN MARINA", - "contacts": [ - "0481 413305 Direzione", - "www.nautilusitalia.it" - ], - "description": "After the fisherman's village, continue along the canal to the Timavo cartiere.Then turn left into the eastern channel where the Darsena is located.Expected embodiment and dredging works.", - "slips": 180, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.58083333, - 45.779 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 872, - "mapId": "FR_053", - "name": "TENUTA PRIMERO", - "contacts": [ - "0431 80050 Capitaneria", - "0431 896900 Marina", - "www.tenutaprimero.com" - ], - "description": "The Marina Tenuta Primero is an international tourist landing.Take the alignment: Mule of Muggia, Sdobba, Duino for about 3 mgl.Take the primero channel reported by red and green lights.The white mule mule light is about 4 mgl from the grade port exit.", - "slips": 410, - "vesselMaxSize": { - "maxLoA": 28.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.47166667, - 45.7005 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 873, - "mapId": "FR_054", - "name": "MARINA DI SANT\u2019ANDREA", - "contacts": [ - "0431 66490 Capitaneria", - "0431 622162 Marina", - "www.marinasantandrea.it", - "Vhf 9" - ], - "description": "Passed Porto Buso The Corno river rises for about 3 miles.The bottoms in the channel are 6 m.about.", - "slips": 700, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -4.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.243, - 45.7615 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 874, - "mapId": "FR_057", - "name": "MARINA STELLA", - "contacts": [ - "0431 589288 Ufficio", - "www.marinastella.it" - ], - "description": "Entrance from the port of Lignano.Continue to the Cialisia canal reported by Briccole then the Stella river.The opening of the dock is via remote control with telephone warning.Dangerous night navigation.", - "slips": 74, - "vesselMaxSize": { - "maxLoA": 24.0 - }, - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.06166667, - 45.7625 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 875, - "mapId": "VE_051", - "name": "MARINA ALBERONI", - "contacts": [ - "041 5508211 Capitaneria", - "041 401565 Circolo Nautico Chioggia" - ], - "description": "Access is a s of the Venice lagoon.Built on an island, it is combined with the Lido di Brondolo from a bridge with arches and underwater from a revolving bridge;The Lombardo channel colleague to the Brenta river.The landings are: the Citizen Basin of Vigo, managed by the Master's office, where pleasure boats can moor parallel to the dam;The Darsena Moselle, in Sottomarina, where pontiens wanked by the homonymous hotel;Move especially sailboats;In the internal port there are few spaces but in transit you can flank to fishing vessels;At Sporting Club, modern Marina in city center with all services and moorings.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 14.0 - }, - "seaFloor": { - "type": [ - "mud", - "sand" - ], - "minDepth": -1.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.31616667, - 45.34816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 876, - "mapId": "VE_103", - "name": "VEN MAR", - "contacts": [ - "041 2760310 Darsena" - ], - "description": "Entering the port of Malamocco, turn to the right, take Canale Rocchetta, take the Scoasse canal for just over 1 mgl.Fri Mar is located in the Lands lost.", - "slips": 70, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.345, - 45.38566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 877, - "mapId": "VE_101", - "name": "PORTO FOSSONE", - "contacts": [ - "0426 330289 Capitaneria", - "0426 68281 Ufficio porto", - "www.portofossone.com", - "Vhf 9" - ], - "description": "Going up for about 1 mgl the mouth of the Adige on the left side lies the Darsena of Porto Fossone.To enter the Meda on the right.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 14.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.30233333, - 45.14333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 878, - "mapId": "MA_020", - "name": "MARINA DEI CESARI", - "contacts": [ - "0721 800279 Ufficio", - "www.marinadeicesari.it", - "Vhf 8" - ], - "description": "Inside the port of Fano to N of the New Darsena is located the modern Marina dei Cesari, which however can accommodate the fish from the fish not exceeding 3.50 m.Contact the direction of the Marina with VHF before entering.", - "slips": 500, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "minDepth": -3.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.01683333, - 43.853 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 879, - "mapId": "PU_104", - "name": "FOCE DEL CAPOIALE", - "contacts": [ - "Vhf 16" - ], - "description": "The mouth of the chief river is prolonged by 2 moles of which 1 is quack.\nBackdrops subject to the interruption.Enter keeping the left side.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.66683333, - 41.92316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 880, - "mapId": "LI_075", - "name": "ONEGLIA", - "contacts": [ - "0183 666333 Capitaneria", - "0183 272398 Soc. A.S.N.O." - ], - "description": "The long pier of the port of Oneglia, managed by the Soc. A.s.n.o.It is used as a mooring for members, with catenerie, for about 300 berths.For transit it is necessary to contact the Imperia Mare management company (0183/667453).Sandbones from 1.70 to 6 m.Bag with twenty from Libeccio at noon." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.039166667, - 43.88416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 881, - "mapId": "LI_076", - "name": "S. BARTOLOMEO AL MARE", - "contacts": [ - "0183 497458 Capitaneria", - "0183 408089 Ser. Mar.", - "0183 40921 Comune (uff. Porto)", - "www. sanbart.net" - ], - "description": "Marina to about 1 mile in Ne of Diano Marina, landing with good services.", - "slips": 174, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.1085, - 43.91983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 882, - "mapId": "LI_074", - "name": "CELLE LIGURE - CALA CRAVIEU", - "contacts": [ - "019 97271 Capitaneria", - "019 993794 Porticciolo" - ], - "description": "Small tourist arrival between Albisola and Varazze, located w Of the habit of Ligurian cells, for small boats.", - "slips": 80, - "seaFloor": { - "minDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.543333333, - 44.33766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 883, - "mapId": "LI_056A", - "name": "RAPALLO - MARINA CARLO RIVA", - "contacts": [ - "0185 6891 Porto Turistico Spa", - "Vhf 09" - ], - "description": "A bell tower and a skyscraper are conspicuous points in the center of the town, within the Tigullio G..The port, a mile in Levante di S. Margherita, is divided into two basins, a municipal and a private one.Traversie from the dial II.\n\nModern marina fully equipped and flanked by construction sites for every type of repairs.Contact for authorization to enter.\nMoorings: 400", - "slips": 400, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -9.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.232833333, - 44.34516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 884, - "mapId": "TO_036B", - "name": "CALA DI MOLA - ELBA", - "contacts": [ - "0565 951095 Capitaneria", - "0565 921158 P.to Luna", - "0565 968692 Cala di Mola" - ], - "description": "Behind tip of the banner there is Porto Azzurro.The port consists of a pier of about 80 m oriented for SW, where there is a distributor.There is a quay with floating piers.The anchor can be given to the piers of the nearby radius or moor in Cala di Mola." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.39266667, - 42.7585 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 885, - "mapId": "T_011", - "name": "TABARKA", - "contacts": [ - "00216 78 670599 Capitaneria", - "Sig. Rachid Ghazouani", - "Vhf 16 - 8 - 1" - ], - "description": "Tabarka is the first port to W in the northern coast of Tunisia.It is 130 miles from Cagliari, 170 from Marsala.The landing is facilitated by detecting the island of Tabarka (now united by a bridge) surmounted by the Genoese Fort.The port is in front of the town and consists of two basins, the old port, a W, with dams without lights, the other A and is a good landing.The bottom is on 5 m, in the basin at the bottom where the pleasure boats must be moored the drawing boats in the quay is between 2.5 and 3 m.", - "slips": 100, - "temporarySlips": 70 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.765666667, - 36.95916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 886, - "mapId": "T_002", - "name": "BIZERTA", - "contacts": [ - "00216 72 436610 Capitaneria", - "Sig. Faouzi Brahmi", - "www.portplaisance.bizerte1.com", - "Vhf 16 - 24" - ], - "description": "Bizerta is the closest airport to Italy (Cagliari is 122 miles, 173 from Palermo).The port reserved for pleasure is well raveroed, located in the eastern part of the pelvis in the city center and access does not have difficulty.From the Largo there are the great moles that form an avamp, to the right of which, in front of the city, is the marina.A dried channel at 11 meters of depth colleague (there is an openable bridge) a large navigable interior lake.Dominant wind NW (Mistral).", - "slips": 150, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.8935, - 37.27666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 887, - "mapId": "T_003", - "name": "CAP ZEBIB", - "contacts": [ - "00216 97 841487 Capitaneria", - "Sig. Anor Fergeni", - "Vhf 16" - ], - "description": "Zebib Cap is a nice fishing port that reserves half of a pier to pleasure boats.The backdrop at the entrance is 3 meters, in the head of the pier is 2.80 m while the two sides is about 2.50 m.Boats with greater fish can give background to the outside of the harbor, in the bay close to the pier, south of the mouth.", - "slips": 30 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.06966667, - 37.26533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 888, - "mapId": "T_004", - "name": "GHAR-EL-MELH", - "contacts": [ - "00216 72 448622 Capitaneria", - "Sig. Matoussi Hatem", - "Vhf 16" - ], - "description": "Porto Fishing Vessel to the south of Cap Flour, great close to the Maestrale, 6 kilometers to the town of Ghar-El-Melh from which it takes its name.Like other Tunisian fishing ports the pleasure boats here are well received and can accost with fishing boats without giving bottom to the anchor.The fish at the entrance is 3 meters, in the basin 2-3." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.2315, - 37.14916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 889, - "mapId": "GR_040", - "name": "VATHI", - "description": "Vathy is one of the most fascinating cities of Ionian Greece.It combines the dynamism of modern inhabited centers with ferries that shuttle for Patras, Corfu and toast with the tranquility of the alleys and suggestive corners.Located at the end of a deep bay, boats can find place both at the totally quack city center, or in one of the many Dinghy distance away.\nIn the town quay the best places are south of the ferry pier.The backdrop is mud with a surface of algae: it is still necessary to remain on the algae but that it frank in the mud.\nIn this case you won't have problems when the wind reinforces as usual in summer in the afternoon.\nNormally after sunset this wind falls." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.69816667, - 38.37866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 890, - "mapId": "PU_109", - "name": "MARINA CALA DELLE SIRENE", - "contacts": [ - "0884 583871 Capitaneria", - "0884 571108 Centro Nautico", - "www.caladellesirene.com", - "Vhf 16 -6" - ], - "description": "The Marina is close to the Manfredonia Industrial Harbor (500 m.).Consisting of a long pier and two quack arms.", - "slips": 220, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.93316667, - 41.63433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 891, - "mapId": "PU_110", - "name": "PALESE", - "description": "Located about 2 miles south of S. Spirito, only for small limited fishing boats.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.76933333, - 41.1615 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 892, - "mapId": "PU_103", - "name": "CALA SAN GIORGIO", - "contacts": [ - "080 491226 Camping S. Giorgio" - ], - "description": "Cala Naturale with a campsite offering small boats assistance and also has a stop and a workshop.", - "vesselMaxSize": { - "maxLoA": 5.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.962, - 41.09783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 893, - "mapId": "PU_108", - "name": "SAN CATALDO", - "contacts": [ - "0832 650630 Capitaneria", - "0832 650450 Lega Navale Italiana", - "0832 650131 Darsena Salento", - "Vhf 16" - ], - "description": "Darsena managed by Salento Darsena located in the hinterland of San Cataldo di Lecce reachable through a reported channel.", - "slips": 210, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.30116667, - 40.3955 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 894, - "mapId": "PU_102", - "name": "PORTO BADISCO", - "contacts": [ - "0832 650630 Capitaneria" - ], - "description": "Narrow and deep inlet.Excellent shelter with winds from the III and IV Dial.Dangerous with levante and scirocco.", - "vesselMaxSize": { - "maxLoA": 6.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.48566667, - 40.07866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 895, - "mapId": "PU_105", - "name": "PORTO MIGGIANO", - "contacts": [ - "0832 650630 Capitaneria", - "0836 949797 Onda Blu", - "0836 949828 Comune", - "Vhf 9" - ], - "description": "Porto dug into the coast and quack on the south side;Inside there is a docked dock with about 1 m backdrops.Outside the harbor there is a floating dock for the mooring of pleasure boats;This pier and an external buoy field at the hatch of the port, is managed by blue wave. The falchin part of the port is managed by the municipality.", - "slips": 61, - "vesselMaxSize": { - "maxLoA": 20.0 - }, - "seaFloor": { - "minDepth": -0.3, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.445, - 40.0285 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 896, - "mapId": "PU_106", - "name": "MARINA DI ANDRANO", - "contacts": [ - "0832 650630 Capitaneria", - "0832 926317 Comune" - ], - "description": "The port is about 2.5 miles to N of Tricase;The basin consists of 2 banks in concession for moorings to the municipality.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 5.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.40816667, - 39.9745 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 897, - "mapId": "PU_107", - "name": "TORRE VADO", - "contacts": [ - "0833 758580 Capitaneria", - "0833 712318 Comune" - ], - "description": "I mainly carry a fishing vessel in concession to the municipality.", - "slips": 150, - "vesselMaxSize": { - "maxLoA": 10.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.2725, - 39.831 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 898, - "mapId": "PU_111", - "name": "TORRE SAN GIOVANNI D\u2019UGENTO", - "contacts": [ - "0833 266862 Capitaneria di Gallipoli", - "Vhf 16" - ], - "description": "Marina to about 12 miles south of Gallipoli.The day input recommended;Navigate at least 2 miles from the coast Traversia: II and III quadrant.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.11733333, - 39.8825 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 899, - "mapId": "PU_112", - "name": "TREBISACCE", - "contacts": [ - "0962 20921 Capitaneria di Crotone" - ], - "description": "Dock where you can dock in favorable weather conditions." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.535, - 39.86133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 900, - "mapId": "PU_113", - "name": "S. CATERINA DI NARDO\u2019", - "contacts": [ - "0833 266862 Capitaneria di Gallipoli" - ], - "description": "Docked marina on the side S. Travel a long corridor 150 m reported by red gavitelli with backdrops from 1 to 4 m.", - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.98466667, - 40.13516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 901, - "mapId": "PU_114", - "name": "PORTO SAGUERRA", - "contacts": [ - "099 8315604 Service Boat", - "Vhf 13" - ], - "description": "Darsena managed by the SOC.Service Boat Silver Bay for Small Boats.", - "slips": 120, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -0.8, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.33016667, - 40.36133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 902, - "mapId": "PU_115", - "name": "LIDO GANDOLI", - "contacts": [ - "099 5331088 Ufficio", - "www.lidogandoli.com" - ], - "description": "Small fingern natural creek whose backdrops are subject to bureau.Refuge for small boats with limited draft.", - "slips": 50, - "vesselMaxSize": { - "maxLoA": 6.0 - }, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.295, - 40.377 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 903, - "mapId": "PU_060C", - "name": "TARANTO - PORTO MERCANTILE", - "contacts": [ - "099 4707514 Capitaneria", - "099 7332888 Cantiere Greco", - "Vhf 16 - 12" - ], - "description": "The old city is on an island combined with the mainland with bridges;Taranto Nuova is at the Levante of the Navigable Canal.The main conspicuous points are, in the coast between Ginosa Marina and Taranto, three cylindrical pylons painted with black and white bands.Coming from if, once the headlight of Capo S. Vito has been spotted, follow a route that does not approach them to less than 1 mgl and when it is detected for 90 * governing the St. Paul's islet.To enter the Grand Sea, combine a starboard between the head of the St. Vito dam and that of St. Paul.Coming from W or NW lean to 1.5 mgl a of the isolot of St. Paul and leave it to starboard the Cardinal WSt. Paul reimburse between the heads of the dam of the latter and that of the St. Vito dam.\nLocated within the Grand Sea of Taranto in the part ne.", - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.22216667, - 40.475 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 904, - "mapId": "PU_117", - "name": "TARANTO MARINA - MOLO S.EGIDIO", - "contacts": [ - "099 4707514 Capitaneria", - "099 4712115 Molo Sant’Eligio", - "Vhf 11", - "www.molosanteligio.com" - ], - "description": "The old city is on an island combined with the mainland with bridges;Taranto Nuova is at the Levante of the Navigable Canal.The main conspicuous points are, in the coast between Ginosa Marina and Taranto, three cylindrical pylons painted with black and white bands.Coming from if, once the headlight of Capo S. Vito has been spotted, follow a route that does not approach them to less than 1 mgl and when it is detected for 90 * governing the St. Paul's islet.To enter the Grand Sea, combine a starboard between the head of the St. Vito dam and that of St. Paul.Coming from W or NW lean to 1.5 mgl a of the isolot of St. Paul and leave it to starboard the Cardinal WSt. Paul reimburse between the heads of the dam of the latter and that of the St. Vito dam.\n\nLooking for the merchant port consisting of floating piers.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 30.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -7.0, - "maxDepth": -12.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.22416667, - 40.47816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 905, - "mapId": "PU_118", - "name": "TARANTO YACHT", - "contacts": [ - "099 4707514 Capitaneria", - "099 4712115 Taranto Yacht", - "www.tarantoyacht.it", - "Vhf 16 - 12" - ], - "description": "The old city is on an island combined with the mainland with bridges;Taranto Nuova is at the Levante of the Navigable Canal.The main conspicuous points are, in the coast between Ginosa Marina and Taranto, three cylindrical pylons painted with black and white bands.Coming from if, once the headlight of Capo S. Vito has been spotted, follow a route that does not approach them to less than 1 mgl and when it is detected for 90 * governing the St. Paul's islet.To enter the Grand Sea, combine a starboard between the head of the St. Vito dam and that of St. Paul.Coming from W or NW lean to 1.5 mgl a of the isolot of St. Paul and leave it to starboard the Cardinal WSt. Paul reimburse between the heads of the dam of the latter and that of the St. Vito dam.\n\nJetty of about 250 m inside the merchant port.", - "slips": 200, - "vesselMaxSize": { - "maxLoA": 35.0 - }, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -1.5, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.22216667, - 40.48016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 906, - "mapId": "CR_380", - "name": "SUDURAT", - "description": "Sipan is a very green island with a Mediterranean scrub rich in every kind of trees.Sipanska Luka (42 * 43.8 N - 17 * 51.9 E) is at the bottom of the deep inlet open north west, but rawn from the other directions.The short pier, reserved for the ferry, the wave raised by the mistral.The mooring is on the bottom of mud of 3-4 m.At the south end of the island the Bay of Sudurat (42 * 42.3 N - 17 * 55 'E) is amena but not recommendable for anchoring." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.91316667, - 42.70983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 907, - "mapId": "CR_378", - "name": "TIJAT", - "description": "Disabled island with a pleasant anchorage in south eastern part. There is a beam combinable by small boats (43 * 43 'N - 15 * 46.5 and)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.77466667, - 43.71266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 908, - "mapId": "CR_377", - "name": "ZVERINAC", - "description": "The bay in front of the village (44 * 09.6 n - 14 * 55.1 e) is righted by winds from the north, but open to the west.The mooring is on buoy in front of the pier reserved for the ferry.The smaller yachts can enter the pier to '' L 'where the backdrop is by m.1.5.In the village there is a restaurant and some possibility of refueling.The Kablin bay at the southern end of the island is a great close to the bora but the backdrop is relevant (over 10 m of water)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.915, - 44.1605 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 909, - "mapId": "CR_379", - "name": "SMOKVICA", - "description": "Just south of Opat the islet of Smokvica Vela has in the south coast the wide bay of Lojena (43 * 43.5 N - 15 * 28.9 E) rottoose from the northern winds.Anchors can give some problems for the rapid increase of the bottom.Dead bodies in a quay in front of the restaurant." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.4785, - 43.72116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 910, - "mapId": "CR_101", - "name": "DRAGOVE", - "description": "Bay rottoose from Scirocco from the Dumboka Punta which in one of the two Anse houses a former submarine base.It is a bit returned by the Magarcic islet, but open to the northern winds" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.929, - 44.124 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 911, - "mapId": "CR_102", - "name": "BOKASIN", - "description": "Bay just returned by Planatak islets.At the bottom of the bay with deep waters there is a quay accinulated in front of a bunker" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.94533333, - 44.11283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 912, - "mapId": "CR_103", - "name": "BOZAVA", - "contacts": [ - "023 377601 Capitaneria" - ], - "description": "Porto well protected and organized (only with the Scirocco there is a bit wave behind the Frangiflutti pier).There are moorings on a dead and current body in a quay.It is a very popular tourist center that in summer offers the main services.The bay constitutes a good possibility of anchorage, but the backdrop descends quickly.Bathing infrastructures are located towards the Nadjelje Punta, but also northernmost in the bay of Dobra who has a rock in the central part" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.91016667, - 44.13883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 913, - "mapId": "CR_104", - "name": "BRBINJ", - "description": "BRBINJ offers different possibilities: to the north in the ANSA of Lucina Little protected by the UTRA islet with numerous mooring gavitelli, restaurant and supermarket on the ground.To the south, in the bay Bok, surrounded by heights and excellent behind every time on a dock on dead body or anchor in the southwestern.The biggest boats also moor on gavitelli with peaks on the ground in the northern part of the bay of Punta Koromasnjak, near the lighthouse" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.00983333, - 44.07333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 914, - "mapId": "CR_105", - "name": "SAVAR", - "description": "Large bay completely open to the north and returned from east from Punta Pelegrin with a marina with combinable moles that houses small boats, depth 2/3 m" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.02116667, - 44.06533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 915, - "mapId": "CR_106", - "name": "OVCA", - "description": "Small bay rottoose to the north and open to the south-east with a stone hide that can be combined with low fish yachts (1.5 m)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.02983333, - 44.04483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 916, - "mapId": "CR_107", - "name": "LUKA (DUGI OTOK)", - "description": "Deep inlet close to the island Rava and Luski (whose passage is not recommended for the strong currents).It is an anchor with a good backdrop.Inside the harbor they can find space smaller yachts.On the ground, some tourist facilities offer the main services" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.093, - 43.98483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 917, - "mapId": "CR_108", - "name": "ZMANSCICA", - "description": "Rounded marina with a deep interior basin 2 m, equipped with dead bodies.There is a village with a restaurant.A seaside mooring is on the nearby Krknata island." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.12133333, - 43.9725 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 918, - "mapId": "CR_109", - "name": "ZAGLAV (DUGI OTOK)", - "description": "The town dominates Triluke bays (treports), of which the median one has a ferry quay, with water and fuel taking.The anchor is exposed to Bora" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.14933333, - 43.952 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 919, - "mapId": "CR_110", - "name": "SASCICA", - "description": "Creek north of well-reappeared salts from the scirocco, but with deep waters that make anchor problem.Very practiced in summer for bathrooms." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.16083333, - 43.94283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 920, - "mapId": "CR_111", - "name": "SALI", - "description": "Salts is the main reference port of the island and the only one to refuel.It is frequented by fishing fleet, but also from all yachts that cross in the area.It is possible to stock up groceries.There is the captain, the pharmacy and a medical center.The places in the quay are exposed to the scirocco, in this case the nearby bays of Dumboka (which is used for fish breeding) and Rasovac offer a night" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.17, - 43.93583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 921, - "mapId": "CR_112", - "name": "KUSCICA", - "description": "That of Kuscica is an uninhabited bay that is part of the telascic natural park.It is returned from all sides, except that from Scirocco, and the Cuska leader has just opened.The backdrop is sandy with algae and depth varies between 5 and 10 meters" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.22233333, - 43.89433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 922, - "mapId": "SI_124", - "name": "BALESTRATE", - "contacts": [ - "091 8682501 Capitaneria" - ], - "description": "Basin enclosed between a nnw oriented pier and one of NW oriented subfluy from which a quay develops.", - "slips": 60, - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.00666667, - 38.055 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 923, - "mapId": "SI_125", - "name": "PUNTA CELESI", - "contacts": [ - "091 455269 Autonautica Sicula" - ], - "description": "Docked harbor consisting of a pier, suitable for small boats.Dock in the inside.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.3 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.33483333, - 38.19783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 924, - "mapId": "SI_126", - "name": "BANDITA", - "description": "Marina near the state road 113 in Banded location to the east of the port of Palermo.It can be used as a refuge for small boats.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.3905, - 38.10566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 925, - "mapId": "SI_127", - "name": "S. ERASMO", - "description": "Marina Located about 1,000 meters from the merchant port.Suitable for boats with reduced draft.", - "slips": 30, - "seaFloor": { - "minDepth": -0.3, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.37933333, - 38.11266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 926, - "mapId": "SI_128", - "name": "MARINA DI NETTUNO", - "contacts": [ - "06 9844683 Capitaneria", - "090 9281180 Marina di Nettuno", - "www.marinadinettuno.it", - "Vhf 9" - ], - "description": "Private port for 850 berths, very rawn, 2 miles to Anzio.It offers all nautical services.For transit, moorings are assigned in floating piers at the foot of the tower and in the show, at the distributor.In progress works to expand the piers and interior pontiens.", - "slips": 160, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.561, - 38.195 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 927, - "mapId": "SI_129", - "name": "GIARDINI NAXOS", - "contacts": [ - "347 6210852 Pontile Walter", - "330 392598 Nautica Scala", - "Vhf 16" - ], - "description": "Marina formed by a 250 m pier pier.In summer, floating piers are added.", - "slips": 200 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.27583333, - 37.8275 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 928, - "mapId": "SI_130", - "name": "POZZILLO", - "contacts": [ - "095 7641373 Capitaneria" - ], - "description": "Recommended allowed access in daytime hours with minor-sized boats.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.20166667, - 37.66 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 929, - "mapId": "SI_131", - "name": "LINOSA - CALA POZZOLANA", - "contacts": [ - "0922 972041 Capitaneria", - "Vhf 14" - ], - "description": "Looking for a quay of 80 m.On the coast of Ponente of the island.", - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.85, - 35.86333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 930, - "mapId": "SI_132", - "name": "LAMPEDUSA - CALA PALME", - "contacts": [ - "0922 970141 Capitaneria" - ], - "description": "High above sea level of 133 m, Lampedusa is 80 miles away from Pantelleria.Conspicuous point is the bell tower with the church that emerges decisively from the town, always visible because it remains illuminated even at night.The island has no water courses but only small and scarce springs.The climate is therefore african, with long droughts and rains almost exclusively winter.The port is a large natural inlet, with rocky shores except at the bottom of the coves.\n\nCala Quarchinata;A part in front of the beach is equipped with gavitelli and dead bodies for fishing and pleasure driving units.Contact the maritime authority for the assignment of mooring." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.606, - 35.49633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 931, - "mapId": "SI_133", - "name": "LAMPEDUSA - CALA SALINA", - "contacts": [ - "0922 970141 Capitaneria" - ], - "description": "High above sea level of 133 m, Lampedusa is 80 miles away from Pantelleria.Conspicuous point is the bell tower with the church that emerges decisively from the town, always visible because it remains illuminated even at night.The island has no water courses but only small and scarce springs.The climate is therefore african, with long droughts and rains almost exclusively winter.The port is a large natural inlet, with rocky shores except at the bottom of the coves.\n\nCove open to and if about 100 m wide;Access to the port must take place until it is exceeded by the FrangiFlutti pier and tapping for 285 * until the subfluy molle should be scapular." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.6035, - 35.497 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 932, - "mapId": "SI_134", - "name": "LAMPEDUSA - CALA PISANA", - "contacts": [ - "0922 970141 Capitaneria" - ], - "description": "High above sea level of 133 m, Lampedusa is 80 miles away from Pantelleria.Conspicuous point is the bell tower with the church that emerges decisively from the town, always visible because it remains illuminated even at night.The island has no water courses but only small and scarce springs.The climate is therefore african, with long droughts and rains almost exclusively winter.The port is a large natural inlet, with rocky shores except at the bottom of the coves.\n\nNatural bay located on the side and island;There is a quay equipped with bettage with mooring rings about 100 m long." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.62516667, - 35.51066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 933, - "mapId": "GR_003", - "name": "ASSOS", - "description": "Natural harbor 6 miles south of Capo Dhafnoudhi, the northernmost tip of Kefalonia.A promontonium with a strong Venetian of the sixteenth century contains the bay where there is a town and its port consisting of a single cement pier.\nNear the pier the draft is 1.5 - 2 meters, the bay instead waters of 7-10 meters of mud, suitable for short daily stops since the dominant wind from the north enters directly to the bay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.5385, - 38.38133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 934, - "mapId": "GR_002", - "name": "ARGOSTOLI", - "description": "Entering the large Gulf of Argostoli leaving the Vardiani island to the left, and locate the city of Lixouri to the left and to the right the leader Ay Thodhotrol with its characteristic lighthouse.Dubbed this head tap to the front until the city of Argostoli is faced in front of the bow.Here in the pier in front of the town there is a dock with a backdrop of 2-4 meters.Normally it is moored south of the ferry pier with anchor on the bottom of a good seal.On the west side of the bay there is a new port, Marina Argostoli, for 250 Dragato boats for backdrops from 3 to 3.5 meters.In addition to providing all services, in the new marina there is a Travel Lift and a ground stop square." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.49183333, - 38.18283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 935, - "mapId": "GR_029", - "name": "POROS", - "description": "Small town overlooking the sea in the east coast of Kefalonia.The marina suffers some local orography with north-eastern winds.Normally in summer the wind falls at sunset but it can happen that strongly bushes all night making the rest difficult.For the mooring giving bottom to his own again and then rejoicing stern or bow.Choose a frank position from the movement of the ferry that in anticipation of wind reinforcements gives bottom to the anchor then brings a large cable on a large gavitello, thus closing a good part of the pelvis.The bottom is mud and algae, goodweight;The draft is 7.5 meters on average," - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.78033333, - 38.14983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 936, - "mapId": "GR_032", - "name": "SAMI", - "description": "Ben-shaped port in front of the citantic rather anonymous, having been totally rebuilt after the 1953 earthquake. To the west of the main port it was recently built a new basin for small boats and with a good backdrop, which in addition to local fishermen's boats can accommodateMaximum three other pleasure boats.\nWell protected by the dominant winds, the mooring in the port must be carried out with a further abiding by stern or bow;The mud background is of good seal.", - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.6455, - 38.2555 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 937, - "mapId": "GR_005", - "name": "EFIMIA", - "description": "Bay with village and marina protected by a large cement pier in the straight side by entering.Good backdrop (3 - 8m on a quay) with water and electricity.\nThe bottom of the harbor is sand, rock and algae and normally has good seal.\nIn summer, the wind is generally strengthened in the afternoon but falls in the evening.With strong wind from south east a bit of wave can penetrate the port.\nEfimia is a good stopping point to visit daily, by boat or with the tender, the many nearby beaches with crystal clear waters or cliffs to practice snorkellin." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.60333333, - 38.30066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 938, - "mapId": "GR_008", - "name": "FISKARDO", - "description": "Fiskardo is the first landing of the north-east coast of Kefalonia and one of the most famous of the island, so much so that in summer it is quite difficult to find a free mooring.The town was the only one that was saved from the earthquake that in 1953 destroyed Celafonia.Pleasant landing, around an almost completely quack bay.\nThe marina is protected by all directions, only the south creates a bit of senses.Good holding the sand, rock and algae backdrop.Normally it is a bottom to his own again and then rejoicing stern or bow.In the central part of the quay there is a floating dock equipped with water and electricity.", - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.58233333, - 38.45983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 939, - "mapId": "GR_038", - "name": "VASILIKI", - "description": "Vasiliki is at the bottom of the large homonymous bay south of Lefkas, known as an important training center of many surfers.\nAfter all in the east side of the bay, there is the marina with two basins where the pleasure boats can moor.The draft is not important (1.5 - 2 m) and therefore for the needs of a greater backdrop you can give bottom to the anchor and rely on a stern along the quay east of the ferry jetty.\nWith weak wind a good anchor to the wheel is in the west side of the bay, at the bottom, opposite the town of bridges." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.60516667, - 38.62683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 940, - "mapId": "GR_034", - "name": "SIVOTA - MOURTOS Nord", - "description": "Interesting to Nautical Tourism in the Greek Continental Coast 7 miles from Capo Lekimmis (Corfu).Three islands, Sivota, Nikolaos and Mavros Notos, close to the continental coast and the town of Mourtos, form a set of fascinating anchors and reduced for every wind.\nIn Mourtos the marina has recently completed, although there are numerous possibilities for the islands for stops.\nThe bay under the hotel that dominates the promontory south of Mourtos is disturbed until late at night from strong music." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.22816667, - 39.412 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 941, - "mapId": "GR_039", - "name": "VATHI", - "description": "Access to Vathy turns out as you proceed inside the bay.Excellent anchors and at the end of the village the almost totally quack pier of the country.A good anchor is in the west breast before the port, which offers good protection from the dominant winds.\nIn the evening you can get up, reinforcing, the North East and make the throbbing anchorage, but usually this wind falls over a few hours.\nVathy is the capital and main port of the island of Meganisi and for this reason he does not, like the other bays, the placid and pleasant welcome for visitors.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.7815, - 38.66583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 942, - "mapId": "GR_036", - "name": "SPARTOKHORI", - "description": "Like all bays of Meganisi, Spartakhori offers pleasant stops, quiet hospitality and numerous services.The marina is visible to the east entering the bay.\nThe closed basin is reserved for fishing boats but the boats can give bottom to the outside and rely on a stern, or at the dock where the ferry docks (bottom 3 m).\nHere a good protection from the dominant wind winds west - North West is ensured, but not from those from east that sometimes they spire in the evening.\nGood anchors are in the deepest part of the bay, to the jetty of a tavern or facing a day beach frequented by bathers, from drifts and surfboards.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.762, - 38.664 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 943, - "mapId": "GR_035", - "name": "SKORPIOS - SKORPIDHI", - "description": "East De Ormos Vlikho are the two Skorpidhi and Skorpios Islands.They are private, the first uninhabited, belonging to the Greek Aristotle Onassis armor's family.\nSkorpios is inhabited by island maintenance personnel.The home of the Onassis family is in the highest part of the vegetation.\nYou can browse around the island and anchor in front of the coast, but it is not allowed to land.The anchors are south of Skorpios, but the most raught is\nTo the east, in front of a sandy beach on 6 - 8 meters, mud and algae background." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.74516667, - 38.69766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 944, - "mapId": "GR_024", - "name": "ORMOS VLIKHO", - "description": "After Nitri, sailing south, you reach Ormos Vlikho, a deep bay.At the nearest point the backdrop is 10 meters.On the east side there are some yards that have cranes and travel lift for the alage of ground boats.In the construction sites, on the east side, the anchorage is protected by the dominant winds that in this area are generally from N, with gusts.\nTo the east, at the bottom of Ormos Vlikho, there is the village of Vlikho with a quack frontset and backdrop of 1.5 - 2 meters.The most comfortable anchor is about 5 - 6 meters to the center of the bay.The backdrop is mud and algae, excellent scenic.The village of Vlikho can therefore reach the Dinghy, where beyond the nice \"taverns\", you can find all kinds of refueling.", - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.712, - 38.70466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 945, - "mapId": "GR_021", - "name": "NIDRI", - "description": "The city of Nidri and its pier along the summer shore is quiet.The mud and algae background is a goodger.The bay is deep and rawy.Nidri is a base of water sports and there are many charter boats that in summer here make a stop.\nThe neighboring and southern bays are quiet and numerous boats spend time to anchor.The bottom is mud, sand and algae, a goodger, and the vegetation around resembles that of a lake, given the rich vegetation always green, pines, cypresses and olive groves." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.71283333, - 38.70683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 946, - "mapId": "GR_022", - "name": "NIKIANA", - "description": "Small marina fishing boat 1.5 miles away from Lycia.\nIn summer it is difficult to find a place at the pier because of the presence of several local boats and charter boats that make here base.Better then giving bottom at anchor not far from the pier on a background of sand and algae of about 5-6 meters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.72083333, - 38.76166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 947, - "mapId": "GR_019", - "name": "LYGIA", - "description": "Vessel marina at the south exit of the Lefkas canal.The fishing village is very welcoming.Fresh fish you can buy it directly from the fishermen or enjoy it in one of the many taverns.The pier is supplied with water sockets but is almost totally occupied by fishing boats.Boats can give bottom to anchor.The backdrop is sand and algae.In the afternoon the gusts reinforce for the breeze and therefore the good hold of the anchor must be verified.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.721, - 38.789 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 948, - "mapId": "SI_146", - "name": "S. VITO", - "description": "Marina located a and the port of Mazara del Vallo, consisting of two cliffs and divided into two basins from a pier.Access available only Day (H: 7/19).", - "slips": 30, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.6, - 37.64333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 949, - "mapId": "GR_018", - "name": "LEFKAS MARINA", - "contacts": [ - "+30 26450 Direzione Marina", - "www.medmarinas.com", - "Vhf 69" - ], - "description": "Lefkas is an island separated from the Greek continent from a canal.For whose access you must reach a basin and a swivel bridge (VHF 12) that is opened at times.\nEntering the Lefkas canal is straight: a lively city, where the sailor finds every product for its boat, but also supermarkets, typical restaurants.In August the city organizes a folk music festival that involves both tourists and citizens.\nThe depth in the center of the canal is 6 meters;Go to the top speed of 5 knots.\n\nModern marina south of the city of Lefkas, offers all navigation services and browsing support.In the basin there is a maintenance service and the possibility, although limited, to leave the boat on the ground.The port currently experienced sold out: the increase in the number and length of the pontiens is expected by bringing the current capacity from 480 to 620 berths.", - "slips": 480, - "vesselMaxSize": { - "maxLoA": 40.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.715, - 38.82866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 950, - "mapId": "GR_017", - "name": "LEFKAS", - "description": "Lefkas is an island separated from the Greek continent from a canal.For whose access you must reach a basin and a swivel bridge (VHF 12) that is opened at times.\nEntering the Lefkas canal is straight: a lively city, where the sailor finds every product for its boat, but also supermarkets, typical restaurants.In August the city organizes a folk music festival that involves both tourists and citizens.\nThe depth in the center of the canal is 6 meters;Go to the top speed of 5 knots." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.72416667, - 38.84683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 951, - "mapId": "GR_001", - "name": "AMVRAKIKOS KOLPOS", - "description": "The Gulf of Amvrakikos is little frequnized by tourism but offers many interesting anchors and numerous archaeological sites.The entrance to the Gulf takes place through the Preveza channel.The north coast of the Gulf is characterized by lagoons and low funds, so it is advisable to have an updated nautical card.Deeper even below the waters of the south coast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.73366667, - 38.93333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 952, - "mapId": "GR_031", - "name": "PREVEZA", - "description": "Four couples of lights (red and green) drive to Preveza and at the entrance of the great Amvrakikos Kolpo basin.The channel is regularly dredged to keep it on 8 meters but its fishing is often 5-6 meters.Preveza offers good services to nautical tourism.The quay in front of the city is available for mooring giving bottom to anchor.\nAttention should be paid to the undertaking caused by the passage of ships and ferries.\nThe city of Preveza is pleasant with its alleys, markets and the numerous taverns with always fresh fish.To the north of the town there is a Preveza Marina, a basin with piers, water and electricity." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.75616667, - 38.95716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 953, - "mapId": "GR_010", - "name": "GAIOS Nord", - "contacts": [ - "06620 32259 Ormeggi", - "Vhf 12 - 18" - ], - "description": "It is a channel between two islets, Panayia and Nikolaos where there is a strong Venetian, and the island of Paxos. Completely quack from the side of the gaios town, it is the most important port of the island.\nThe channel has two entrances, the one to the north with a fishing on 20 meters, the one south over 1.8 meters.\nInside the channel the draft ranges from 15 to 2 meters. The fishing village is very pleasant and offers bars and taverns, grocery stores and others of local raw materials including cheeses and olive oil produced on the island.\nUsually the mooring in Gaios is made by giving bottom to the anchor to the center of the canal and ensuring two ground cables. In the case of southern winds, if you find yourself in the southernmost part of the inhabited center, this mooring can suffer an annoying roll. Better then move to the northern part of the canal where the seabed are greater and the wave already comes damped.\nOn July 20, each year for the celebrations of the Prophet Elia, local products are offered (fish, bread, salt, oregano and pepper, wine).\nOn August 15th a religious celebration takes place on the island of Panayia where there is the Monastery of Verglianniton, a grill of beef is offered.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -15.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.19183333, - 39.20633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 954, - "mapId": "GR_016", - "name": "LAKKA", - "description": "Bay north of the island of Paxos.The part at the bottom where the village is quack but only the boats with low draft can reach mooring in front of the houses.The others can anchor a good sander of sand and algae over 3-4 meters.On the ground there are all the approval, supermarkets, mail and water supply.", - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.13516667, - 39.24066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 955, - "mapId": "GR_020", - "name": "MONGONISI", - "description": "At 1 mile south of Gaios on the island of Paxos there is the bay of Mongonisi that takes its name from a small island very close to the island of Paxos.Entrance to the bay is difficult to identify from the wide.Mongonisi is one of the most fascinating anchors of Ionian Greece.\nOnce inside it gives a bottom to the anchor, then attached to the pier in the coast or s;Or you can anchor in the middle of the bay in 7-8 meters of goodwill backdrop, sand and algae.MONDONISSI offers good protection from twenty dominanders but with strong wind from N - NW the anchor can become unpleasant.Towards the south, at the bottom of the bay, the ACQUE mirror narrows and the backdrop dates back until 1 meter, where a bridge was built.\nTo the south of Paxos there is the smallest island of Antipaxos, uninhabited, where there are only bays for daily moorings." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.20533333, - 39.18483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 956, - "mapId": "GR_007", - "name": "EFIRA", - "description": "Ormos Fanari, bay on the mainland coast south of Parga.Good summer anchor.With wind from the north the basin is calm.The best anchor is in the north part near the promontory in 3-4 meters background.In the case of winds from northwest and west the bay becomes very exposed and the wave that is formed makes anchor unmanageable.\nTo the south of the bay there is the Navigable Ach\u00e9ron river with a dinghy (peach in the center 1.5 - 2 m) up to the friendly Glyky fishing village where they are available\nWater, food supplies, taverns." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.47183333, - 39.237 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 957, - "mapId": "GR_014", - "name": "KASSIOPI", - "contacts": [ - "006630 81420 Municipio", - "006630 81240 Polizia" - ], - "description": "In the north coast of Corfu (Kerkyra) there is the Baia Ormos Imerolia where with weak winds from NW or W it is possible to anchor on a sand background of Nuona holding.\nHowever, dubbing the chief Ak Kassiopi surmounted by a castle can be found better close to the Kassiopi marina.\nAt the entrance there are 6 meters of backdrop and at the quay all around the basin about 3 meters.In the basin there is an irregular backdrop.Give bottom with its own again and combine at the east quay usually reserved for pleasure.The country is all around the port, with the traditional taverns and the fishing village.\nYou can refuel water and fuel.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.923, - 39.79133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 958, - "mapId": "GR_006", - "name": "MERLERA (ERRIKOUSA)", - "description": "The island is about 8 miles east of Othoni.Rather low is often covered by the summer fog, you will only look at 1.5-2 miles.It's a good night to break the crossbar from Italy to the course to Corfu.\nThe marina is located west of the island where there is also the only inhabited center.Avoid nighttening because the landing has no lights.Giving bottom to anchor on 3-4 meters of backdrop you can approach the left moletto or in the head of the straight pier.Several taverns on the ground, the country does not have many supplies", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.58233333, - 39.87266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 959, - "mapId": "GR_025", - "name": "FANO (OTHONOI)", - "description": "Othonoi is the first Greek island more in Ponente who meets those coming from the northern Adriatic or in crossing from Italy to Corfu.Coming from the north will see the lighthouse north east of the island.While those who come from the west to reach the Marrimiolo of Ormos Ammos located south must make course on the south west end of the island.It is a good close to the northern winds, giving bottom to the anchor in 4 meters of backdrop and combine to the moles, inside to the left, outside to the outside that of straight, since inside the basin it is necessary to leave freeFerry maneuver area.Several taverns offer fresh fish and typical Greek dishes.", - "seaFloor": { - "type": [ - "sand", - "algae" - ], - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.40216667, - 39.83033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 960, - "mapId": "GR_030", - "name": "PORT ATHENI", - "description": "To enter Port Atheni, the latest bay east of the northern coast of Meganisi, pay attention to the Megalo Nisopulo and Mikro Nosopoulo islands in the promontory west of Port Atheni.\nAlso insidious the slums of Chief Elia, east of the entrance, and the one inside, in the center, which divides the dock into two bays.\nThe water inside the bay is crystal clear.\nThose of the west coast have deeper waters than those of the east coast.\nAs we proceed towards the bottom of the bay the backdrop dates back.A \"tavern\" has a hipetto just where it can moor (2-3 m in a background)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.80716667, - 38.66916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 961, - "mapId": "GR_034", - "name": "SIVOTA - MOURTOS Sud", - "description": "Interesting to Nautical Tourism in the Greek Continental Coast 7 miles from Capo Lekimmis (Corfu).Three islands, Sivota, Nikolaos and Mavros Notos, close to the continental coast and the town of Mourtos, form a set of fascinating anchors and reduced for every wind.\nIn Mourtos the marina has recently completed, although there are numerous possibilities for the islands for stops.\nThe bay under the hotel that dominates the promontory south of Mourtos is disturbed until late at night from strong music." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.22783333, - 39.39816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 962, - "mapId": "GR_010", - "name": "GAIOS Sud", - "contacts": [ - "06620 32259 Ormeggi", - "Vhf 12 - 18" - ], - "description": "It is a channel between two islets, Panayia and Nikolaos where there is a strong Venetian, and the island of Paxos. Completely quack from the side of the gaios town, it is the most important port of the island.\nThe channel has two entrances, the one to the north with a fishing on 20 meters, the one south over 1.8 meters.\nInside the channel the draft ranges from 15 to 2 meters. The fishing village is very pleasant and offers bars and taverns, grocery stores and others of local raw materials including cheeses and olive oil produced on the island.\nUsually the mooring in Gaios is made by giving bottom to the anchor to the center of the canal and ensuring two ground cables. In the case of southern winds, if you find yourself in the southernmost part of the inhabited center, this mooring can suffer an annoying roll. Better then move to the northern part of the canal where the seabed are greater and the wave already comes damped.\nOn July 20, each year for the celebrations of the Prophet Elia, local products are offered (fish, bread, salt, oregano and pepper, wine).\nOn August 15th a religious celebration takes place on the island of Panayia where there is the Monastery of Verglianniton, a grill of beef is offered.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -15.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.18983333, - 39.1965 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 963, - "mapId": "GR_026", - "name": "PARGA", - "description": "Ormos Parga is a great folphus with a promontory at the center surmounted by a Venetian castle.In the W side there is the VALTOU marina that offers a limited number of boats.More possibilities in the east anchors, close to the Panayia island." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.39483333, - 39.27816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 964, - "mapId": "GR_033", - "name": "SIVOTA", - "description": "Leaving the island of Mikonos if you head south in the channel between Meganisi and the island of Lefkas, the latter offers in this stretch of south east coast, some remarkable bays, excellent anchors.\nThe coast of Lefkas in this stretch is overlooking the sea, hills rich in always green vegetation, scarce villas or towns inhabited by the sea, unless precisely in the deep bays.\nThe first is dessimou, outer bay to Vlikho in front of the North Tip West of Meganisi. Dessimou is a good anchor especially in the northern part of 10 -12 meters of mud and algae background.\nThe second bay in the south east coast of Lefkas is Ormos Rouda with the friendly town of Poros at the end. Very protected anchorage, the Poros country is at the bottom surrounded by clear water.\nThe third bay is sivota, difficult to find the entrance so much is closed and protected by every wind, although from the hills around they can come strong gusts. But the quacked basin all around the town, offers numerous choices, the last of which can be to give bottom to the center in front of the village. The best anchor point is usually in the west side.\nAround the town inhabited the shore is all taped with a backdrop of 2-3 meters. The hills around the sivota are of ancient olivets, whose products, olives and oil can be purchased in the shops of the country" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.6915, - 38.61466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 965, - "mapId": "GR_028", - "name": "PETRITI", - "description": "Fishing marina north of the Levkimmis bay.Many popular \"taverns\" offer fresh, well-rotten fish, boats find mooring north near the village, or outside the pier giving bottom to anchor." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.00333333, - 39.45216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 966, - "mapId": "GR_004", - "name": "BENITSES", - "description": "Marina to 5 miles south of Corfu, identifiable for a large white-colored hotel complex north of Benitses.\nThe new port is equipped with all technical services arose around the old fishing village." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.91566667, - 39.5495 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 967, - "mapId": "GR_011", - "name": "GARITSAS", - "contacts": [ - "06610 30470 Noak Yacht Club", - "Vhf 16 - 18" - ], - "description": "Marina near the historic center of Corfu and close to the fort, of the Limeniskos Nautical Club. It can be given to the outside of the pier (inside the basin the seabed are variable between 2 and 3.5 meters) on a bottom of 2-10 meters and then approach to putting top peaks on the pier.\nBay protected by the dominant winds from NW, but must be abandoned with the establishment of winds from the southern sectors.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.92683333, - 39.62116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 968, - "mapId": "GR_012", - "name": "GOUVIA", - "contacts": [ - "0030 91900 Marina", - "Vhf 69 - 16", - "www.gouviamarina.gr" - ], - "description": "The large Baia Ormos Gouvion is crossed by submarine cables and therefore anchorage is prohibited.To reach the bay at the bottom of the Marina Gouvia you must follow the corridor formed by red and green buoys.The Marina Gouvia is equipped with services, water, fuel, electricity.\nNumerous availability of spaces for ground storage.", - "slips": 960, - "vesselMaxSize": { - "maxLoA": 80.0 - }, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.85533333, - 39.65916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 969, - "mapId": "GR_013", - "name": "KALAMI", - "description": "To the south is Ayios Stefanoou there is a bay Ormos Kouloura, good anchorage, with a marina for boats with limited fish.\nDouble in charge Ak Kouloura Two big bays open with Belle\nWhite sand beaches, Ormos Kalami and Agny.These are excellent riduits where you can give bottom to the anchor.On the beach there are typical restaurants, some with a pontot to approach.Anchors protected from west winds.However the frequent passage of high-speed ferries create a lot.Therefore if it intends to stand at night it is better to stay more distant from the ground rather than undergoing or moored to a pier of the \"taverns\"." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.9425, - 39.7455 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 970, - "mapId": "GR_037", - "name": "STEFANOU", - "description": "The first landing (a bay with a hikel) in the east coast of Corfu is Ayios Stefornou.Before entering the channel between Corfu and Albania you have to dub the Meda Cardinale n Nisis you will perished (fi.r.5s5m) on a large bas -way to leave, sailing through the south, very straight (until you find yourself well within Albanian territorial waters).In the small basin of Ayios Stefanoou you can give bottom to the center over 2-3 meters, excellent protection for winds from NW.", - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.95183333, - 39.76533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 971, - "mapId": "FR_059", - "name": "MARINA DI PORTEGRANDI", - "contacts": [ - "0422 823263 Direzione", - "041 5200625 Capitaneria", - "www.marinadiportegrandi.it" - ], - "description": "New Marina located in the archaeological and naturalistic park in the highway area.Entry from the Lido port.Follow the treport channel then that of Burano and the Silone Canal to Portegrandi.", - "slips": 320, - "vesselMaxSize": { - "maxLoA": 250.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.44433333, - 45.55433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 972, - "mapId": "AB_011", - "name": "LE MARINELLE", - "contacts": [ - "0873 310340 Capitaneria", - "339 7081871 Le Marinelle" - ], - "description": "New marina opened in the summer of 2007 located at the end of the San Salvo Marina waterfront.", - "slips": 180, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -2.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.6925, - 42.15333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 973, - "mapId": "SI_138", - "name": "PIZZOLUNGO", - "contacts": [ - "0923 571078 Hotel Tirreno" - ], - "description": "Porticciolo of the Tyrrhenian hotel suitable for only small boats.", - "seaFloor": { - "minDepth": -1.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.55066667, - 38.05 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 974, - "mapId": "SI_139", - "name": "FAVIGNANA - PUNTA LONGA", - "description": "Natural shelter located in NW of Punta Longa on the Costa S, consisting of a punched cliff and a dock frequented by fishing parking.", - "slips": 20, - "seaFloor": { - "minDepth": -0.4, - "maxDepth": -1.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.32166667, - 37.91666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 975, - "mapId": "GR_015", - "name": "KIONI", - "description": "The Meridional PSIGADHI boss is recognizable for the three old windmills.Turning inside the bay Ormos Kioni at the bottom there is the inhabited center with the ferry hip.\nBoats can stand both inside this hike and in the cement quay, giving bottom to anchor and abetting from stern or bow.\nEven in the west side of the bay there is the possibility of mooring but in this case it is necessary to stay more distant from the ground and bring a top to the rocks.\nKioni is a quiet and charming, welcoming country with numerous \"taverns\"." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.69166667, - 38.44816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 976, - "mapId": "SI_147", - "name": "PORTO PALO DI MENFI", - "contacts": [ - "0925 22219 Capitaneria", - "338 9480194 Yacht Club Ponente" - ], - "description": "Old port frequented by fishing boats, now being renovated with a new layout of the piers inside the basin.Before entering contacting the port dealer.", - "slips": 250, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.91433333, - 37.57483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 977, - "mapId": "SI_140", - "name": "MARZAMEMI - LA BALATA", - "contacts": [ - "0931 841505 Marina Sporting Marzamemi", - "Vhf 16" - ], - "description": "The arrival is located in N of the port of Marzamemi and consists of a beach travigate from which a jetty starts.The island A S acts as natural breakwater.In the basin there are some floating piers managed by the Marina Sport Club Marzamemi with good assistance for transit.", - "slips": 150, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.3 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.12, - 36.74 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 978, - "mapId": "SI_137", - "name": "SCOGLITTI", - "contacts": [ - "Vhf 16" - ], - "description": "Vessel port with an internal dock protected by two partially quack piers.It is crossed by upper boats the 20 m and with draft over 1.50 m.", - "slips": 30, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.42666667, - 36.88633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 979, - "mapId": "SI_042", - "name": "SIRACUSA - MARINA YACHTING", - "contacts": [ - "0931 756515 Marina", - "www.marinayachting.it" - ], - "description": "Apprope located in the large port composed of floating piers.Possible stand up with winds from the dial.", - "slips": 180, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.29166667, - 37.06 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 980, - "mapId": "SI_136", - "name": "AUGUSTA - CALA DEL MOLO", - "contacts": [ - "0931 978922 Capitaneria", - "Vhf 11-12" - ], - "description": "The Radius of Augusta enclosed between Chief S. Croce and Punta Magnisi has an important industrial, commercial and military airport.The Rada is closed to N among the islet on which the city stands, and from which the northern dam extends, and a s of the breast of the Priolo where the southern dam is born.Two entrances to the rada, one in s between the southern dam and the central dam and one more in N between the latter and\nThe northern dam.The landlines are managed by the property that must be contacted for the stop, and usually directs the yachts to the pier's fall.\nLocated at SW of the city protected by s from a natural arm;The mooring is managed by the port dealer.", - "seaFloor": { - "minDepth": -1.8, - "maxDepth": -4.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.21766667, - 37.3145 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 981, - "mapId": "SI_143", - "name": "AUGUSTA - PORTO XIFONIO", - "contacts": [ - "0931 978922 Capitaneria", - "0931 702076 Ionio Yachting", - "0931 994761 Mare Nostrum", - "Vhf 11-12" - ], - "description": "The Radius of Augusta enclosed between Chief S. Croce and Punta Magnisi has an important industrial, commercial and military airport.The Rada is closed to N among the islet on which the city stands, and from which the northern dam extends, and a s of the breast of the Priolo where the southern dam is born.Two entrances to the rada, one in s between the southern dam and the central dam and one more in N between the latter and\nThe northern dam.The landlines are managed by the property that must be contacted for the stop, and usually directs the yachts to the pier's fall.\nApprodation formed by the creek between the end of the islet on which Augusta rises and Punta S. Elia.", - "slips": 90 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.23033333, - 37.23283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 982, - "mapId": "SI_121", - "name": "AUGUSTA - CANTIERE GOLDEN BAY", - "contacts": [ - "0931 978922 Capitaneria", - "Vhf 12" - ], - "description": "The Radius of Augusta enclosed between Chief S. Croce and Punta Magnisi has an important industrial, commercial and military airport.The Rada is closed to N among the islet on which the city stands, and from which the northern dam extends, and a s of the breast of the Priolo where the southern dam is born.Two entrances to the rada, one in s between the southern dam and the central dam and one more in N between the latter and\nThe northern dam.The landlines are managed by the property that must be contacted for the stop, and usually directs the yachts to the pier's fall.\nThe yard is located in the Creezing N of Porto Magarese.", - "slips": 170, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.20916667, - 37.24383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 983, - "mapId": "SI_144", - "name": "BRUCOLI", - "contacts": [ - "0931 375058 Marina di Brucoli" - ], - "description": "Porto Canale which due to the debris brought by the porry stream The seabed are irregular.Reserved for boats with fishing limited to the maximum 2 m.Entering staying in the center of the channel.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.188, - 37.28333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 984, - "mapId": "SI_145", - "name": "ACI CASTELLO", - "description": "Marina frequented by fishing boats.Pay attention in the summer period to the numerous caviters positioned in the pelvis and anchorboats.", - "slips": 60, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -1.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.16333333, - 37.55666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 985, - "mapId": "CR_113", - "name": "VELI IZ", - "contacts": [ - "023 277006 Marina Veli" - ], - "description": "Rounded port, but with reduced backdrop in port and in the marina that has 50 seats and all the comforts.It is possible to refill of water and food.A pleasant bathing berth is in the bay, further north.", - "slips": 50 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.11433333, - 44.05366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 986, - "mapId": "CR_123", - "name": "PREKO", - "contacts": [ - "023 286183 Capitaneria" - ], - "description": "Perko is in front of Zadar and has two ports: one north of the Galovac islet with a jetty jetty on the two sides and a basin for small boats.The town is a few hundred meters.The south port is in the village that offers some tourist attraction as restaurants and bars.There is also the possibility of refueling about half a mile further south where the ferry stops." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.19166667, - 44.08316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 987, - "mapId": "CR_124", - "name": "KALI", - "description": "Very busy fishing port, but opened in Bora.Yachts can find mooring in the outermost part of the breakwater.The village is on the hill overlooking the possibility of refueling of water and food." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.20433333, - 44.068 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 988, - "mapId": "CR_125", - "name": "KUKLJICA", - "description": "Rough bay and protected by two piers with opening to the south east. There is a fishing village that in summer is very popular.The anchor is on the bottom of 5 m, not excellent coach.A yard can give mechanical assistance.Possibility of supplies in the village." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.253, - 44.0335 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 989, - "mapId": "CR_126", - "name": "SABUSICA", - "description": "Well reaped by Bora and Scirocco with a rocky dry to continue the Punta Karantun." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.23666667, - 44.02133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 990, - "mapId": "CR_127", - "name": "LAMJANA MALA", - "description": "The two loops of Lamjana Mala and Lamjana Vela are two good bounds on the backdrop of M.10 / 15 protected by northern winds.Attention must be paid to a rock on the west end to enter the second and low backdrops (4 m) between the islets Skolj, Bisage, Golac, to enter the other.Lamjana Vela has commercial traffic and is not suitable for yachts.Lamjana Mala is exploited for fish breeding." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.222, - 44.03566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 991, - "mapId": "CR_128", - "name": "BANJ", - "description": "Marina with poor backdrop (1.5 / 2 m) and not perfectly rawn." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2975, - 44.00366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 992, - "mapId": "CR_129", - "name": "DOBROPOLJANA", - "description": "Landing for small boats protected by a breakwater south and a pier to the north.The backdrop is on 2.5 m and the close is precarious to the west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.3275, - 43.9925 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 993, - "mapId": "CR_130", - "name": "NEVIDANE", - "description": "Marina with little place and poor backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.3425, - 43.98283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 994, - "mapId": "CR_131", - "name": "PASMAN", - "description": "Vessel harbor protected by a breakwater pier with backdrop ranging from 2 m to 4 m.It is not ravished by Northwest.The currents for the tightness of the channel and the low backdrop can constitute a problem of maneuver at the entrance and exit." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.388, - 43.95966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 995, - "mapId": "CR_132", - "name": "KRAJ", - "description": "Tiny landing for boats and small boats.The seabed slightly exceeds the meter and touches 2 m in the center." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.396, - 43.937 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 996, - "mapId": "CR_133", - "name": "TKON", - "description": "Reference center of the island and ferry service port for Biograd is little suitable for yachts." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.42216667, - 43.92283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 997, - "mapId": "CR_134", - "name": "ZAKLOPICA", - "description": "Bay uninhabited for seaside activities, well returned from all sides from the Gnalic tip, but open to Bora." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.4535, - 43.90033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 998, - "mapId": "CR_135", - "name": "TRILUKE (ISOLA PASMANN)", - "description": "Disabitten bay roughed from the north." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.44233333, - 43.88733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 999, - "mapId": "CR_136", - "name": "LANDIN", - "description": "Bay open to the south with good anchors." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.38866667, - 43.908 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1000, - "mapId": "CR_136", - "name": "ZINCENA", - "description": "Rough bay from the north but open to the south" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.37633333, - 43.90666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1001, - "mapId": "CR_138", - "name": "SOLINE", - "description": "In summer the bay is equipped with gavitelli for mooring" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.3495, - 43.92666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1002, - "mapId": "CR_139", - "name": "SV ANTE", - "description": "Well roughed and less frequented bay that has the attractiveness of a Romanesque church." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.34333333, - 43.9335 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1003, - "mapId": "CR_140", - "name": "PINIZELIC", - "description": "Good shocked from every part due to Pinizel and Glamoc islets, with low bottom (3-5 m) and bad contractor.With strong wenty wind you can rose to scapulating the northern tip of Zut, to Bizkovica with a sandy bottom of 5-7 m, more than in Bodovac that remains discovered." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.25483333, - 43.88833333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1004, - "mapId": "CR_141", - "name": "LUKA ZUT", - "contacts": [ - "099 47028 ACI Luka Zut" - ], - "description": "Large bay with different coves that reap the prevailing winds.In the western part there is a marina with 120 seats, crane, workshop and catering services.In the eastern part of the bay the struna and sariscina anchors are ridden both from Bora and Scirocco, but open to the west.In front of the restaurants there are gavitelli for mooring" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.28966667, - 43.88233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1005, - "mapId": "CR_142", - "name": "LUKA HILJACA", - "description": "The anchors of this bay are also rawn from the presence to the east of the Tovarnjak, Gustac and Bisage islets.In the northern part there is a landscaped arrival from small boats with gavitelli in front of a restaurant.In the central area of the bay another restaurant has two achievements of which the most north is combined by low fish boats (1.5 m).Finally in front of pristantis there is a pier with the same characteristics as the previous ones, but also very frequented." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.33, - 43.8675 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1006, - "mapId": "CR_143", - "name": "ZUTSKA ABA", - "description": "ANCHORAGE Rounded by Bora between Zut and the Zutska islet for a seaside stop.6 m backdrop with a goodger." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.373, - 43.8235 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1007, - "mapId": "CR_144", - "name": "TOMASOVAC", - "description": "Approx Rounded by Capo Suhi Rat in front of a restaurant with a combinable pier.It is a reception center and information of the natural park." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.22066667, - 43.87233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1008, - "mapId": "CR_145", - "name": "SIPNATE", - "description": "Small jetty pier in front of a restaurant.A close is insured by the silo island, not west.Anchor on the bottom of sand and algae of 5 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.24216667, - 43.85183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1009, - "mapId": "CR_146", - "name": "LUCICA", - "description": "Anchor on a sandy bottom.In the south ens one there is a pier for small boats" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2525, - 43.83783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1010, - "mapId": "CR_147", - "name": "KRAVLJACICA", - "description": "Exposed bay in Scirocco with a combinable pier (depth 3 m).The backdrop descends quickly and the anchor must be under the coast.A shelter also from the southeast is behind the islet in the next scrub of Striznja.There are two restaurants." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.27633333, - 43.82283333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1011, - "mapId": "CR_148", - "name": "STRIZNJA", - "description": "East-west oriented bay with a dry background.There are two restaurants one by side with two small piers and some gavitelli." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2835, - 43.81966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1012, - "mapId": "CR_149", - "name": "MODRI BOK", - "description": "Stone from Bora in an uninhabited bay with a sandy bottom that in Riva is surrounded by rocks." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.28866667, - 43.81416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1013, - "mapId": "CR_150", - "name": "VRULJE", - "description": "Summer inhabited center with some possibility of refueling.There are several morracks mostly for boats fishing little and some gavitelli in front of the restaurant.The anchor is on sandwiches of sand and algae of 5/7 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.29666667, - 43.8095 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1014, - "mapId": "CR_151", - "name": "LOPATICA", - "description": "Bay returned by all directions, but with a bit wave if there is sirocco.Mud and algae backdrop.The bora blows powerful.There is a restaurant with gavitelli." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.33816667, - 43.7875 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1015, - "mapId": "CR_152", - "name": "ROPOTNICA", - "description": "Narrow inlet with different molets of which one, with dead bodies, combinable.The quay in front of the restaurant has a depth of 1 m.In the approximation pay attention to the submerged rocket that checks at 600 m south of the entrance and to another east of the Gustac islet." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.36033333, - 43.77966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1016, - "mapId": "CR_153", - "name": "PISKERA", - "contacts": [ - "099 470009 ACI Piskera" - ], - "description": "Between the island of Piskera and the Panitula Vela and Mala islets there is a seasonal navy (43 * 45.6 N - 15 * 21.2 and) and an anchor area rounded.There are 150 seats available on 6 piers with essential services, water and electricity.Access to the channel is only from the south. The pier in front of the restaurant is juxtaposed by dinghies (depth 1 m).The prevailing winds blow sideways to the boats, in axis on the canal, with the sirocco rises a little maretta.A ravished anchorage then is north in the mana islet, or to the south in the deep bay of Lavsa." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.3495, - 43.758 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1017, - "mapId": "CR_154", - "name": "OPAT", - "description": "Narrow bay from the north.There are two restaurants with some gavitelli.The anchorage is problematic for the non-good background.Two dangerous dry are in front of the entrance." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.452, - 43.736 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1018, - "mapId": "CR_155", - "name": "STATIVAL", - "description": "Anchor in the north-eastern part of the island with two loops a little riddened from the north east from the ragged islet which in turn has a protected bake from Scirocco.The seabeds have two drys of 7-8 m in the center." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.2645, - 43.8595 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1019, - "mapId": "CR_156", - "name": "LUPESCINA", - "description": "Bay of any possible from the second and third quadrant for those who are about to enter the narrow katin, that is for a seaside stop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.24366667, - 43.87433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1020, - "mapId": "CR_157", - "name": "MARINA HRAMINA", - "contacts": [ - "022 435190 Marina Hramina" - ], - "description": "Modern marina and capable of over 400 berths (plus 250 on the ground) and equipped with a 50 ton Travel Lift, refueling, all services including laundry, mechanical assistance, shops, restaurant, supermarket.Rounded with every wind.The south quay is reserved for charter." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.58733333, - 43.82533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1021, - "mapId": "CR_158", - "name": "MARINA BETINA (S)", - "contacts": [ - "022 434497 Marina Betina" - ], - "description": "Marina that can accommodate up to 180 yachts, plus 260 on the ground, adjacent to a shipyard.It is equipped with essential services.With Bora it is less ravished and creates Maretta in port.", - "slips": 180 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.60566667, - 43.82066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1022, - "mapId": "CR_159", - "name": "TISNO", - "description": "The swivel bridge on the Strait (depth 2.5 m) is open twice a day in summer (usually at 9-9.30 E17-17.30).The current species with wind is very strong in the two directions.Tisno has a small combinable pier (2 m) with the seasonal master and the possibility of refueling water, better, however, the northernmost landing of Loviska which gives the opportunity to access the resources of the campsite." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.64716667, - 43.797 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1023, - "mapId": "CR_159", - "name": "JEZERA", - "description": "The creek is sheltered by every wind.In the north part is the fishing village that has a high summer frequentation of tourists.In the south part a modern marina is capable of 220 berths plus 55 on the ground.There is a fuel distributor and a 12 ton crane." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.6505, - 43.784 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1024, - "mapId": "CR_161", - "name": "S. NIKOLA", - "description": "CALK with a molcel on the bottom that is combined (1.5 m) from the small yachts.Bathing anchor in 8 m of water.Frequentable for bathrooms Also the nearby Baietta south of Punta Murteric and subsequent bays with sandy bottoms of Koromasna, Kosirina, Vucrade, the latter with a restaurant.They are all bays that do not offer shelter from bad weather from the south" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.63016667, - 43.772 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1025, - "mapId": "CR_162", - "name": "SLANICA", - "description": "Hotel tourist complex with a very popular beach.The anchor is on sand in 8 m of water" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.57616667, - 43.8155 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1026, - "mapId": "CR_163", - "name": "VRSAK", - "description": "Anchor relatively protected from each part but not by west, even behind the pier at , water depth 4 m outside, 2 m inside.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.568, - 43.82533333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1027, - "mapId": "CR_164", - "name": "KAPRIJE", - "description": "The port of Kaprije (43 * 41.2 N - 15 * 42.7 e) is in front of the country (which is above) and is defended by two piers with an appendix that serves to dock at the ferry.A second of the wind the boaters must leave the quay part necessary for the maneuver.The internal basin has 2-3 m backdrops.The anchor is on the bottom (5-6 m) of a goodwill mud.On the northern tip of the island the two Ridossi of Vanjska and Rametic are open to the west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.695, - 43.69066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1028, - "mapId": "CR_165", - "name": "MUNA", - "description": "Bay with high backdrop to the bottom open north west, but with effective breakwater.Good scirocco.The combinable quay is reserved for the ferry.The innermost part is defended by two small piers, but it is only for smaller boats" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.65316667, - 43.66683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1029, - "mapId": "CR_166", - "name": "MIKAVICA", - "description": "Northwest oriented bay with a small combinable pier, but without breakwater.Anchor in 10-12 m on non-good backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.61916667, - 43.67383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1030, - "mapId": "CR_167", - "name": "NOZDRA VELA", - "description": "Both the Bay of Nozdra Sailing and Nozdra Mala are uninhabited and the anchors in 10-12 m of water are not on a good backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.598, - 43.67033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1031, - "mapId": "CR_168", - "name": "TRATINSKA", - "description": "Deep bay open to the south east with a quay not accomplished in front of the houses (depth 1 m) to which the boats of local fishermen are moored.Anchor in the northern part with seaworthiness." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.62733333, - 43.65816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1032, - "mapId": "CR_169", - "name": "STUPICA", - "description": "Stupic sailing bay has a restaurant in the west part with mooring gavitelli.The bend of stupy mala that has two good retreats, once prohibited for pleasure, is not recommended because former mined military area.The east tip of the creek has a basement to be around." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.695, - 43.63066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1033, - "mapId": "CR_378", - "name": "PRVIC LUKA", - "description": "Creek that allows protected anchors from each part but not from scirocco.The backdrop is sandy and good car.A frangiflutti pier is an effective shelter even from that direction.The ferry docks in the head of the pier and does not disturb the boats too much moored in the harbor.There is the possibility of refueling with water and food and various restaurants.Before entering the bay there is the danger of the dry galijola." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.803, - 43.71983333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1034, - "mapId": "CR_378", - "name": "SEPURINE", - "description": "It is on the west side of the island of Prvic.It has two moorings on the north and south shores. The latter is righted by Bora, but he is affected by the wavy motion of western and southern winds.On the south side of the pier, the ferry occasionally (when there is Bora).The old port is north in front of the village and has a combinable pier (2.5 m) where the ferry arrives from and by Vodice.There are shops." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.78533333, - 43.73266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1035, - "mapId": "CR_172", - "name": "ZLARIN", - "description": "The ancient village has a harbor ravished with Bora and Scirocco, but open to the north and north-west.A 150 m long pier reserved for the ferry allows its root to the yachts mooring.Of the three piers the two more external are approachable and are supplied with gavitelli.The last one has a taking of water and is reserved for boats with a lower draft.There is the capacity and various shops, bars, restaurants.Towards the west part of the bay there is a mooring pier.In the southest part of the island, protected by the Drvenik island there is a disappointed Magarna bay and good seaside berth." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.8315, - 43.70016667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1036, - "mapId": "CR_173", - "name": "PRIVLAKA", - "description": "Here we are in the Dalmatian coast south of Vir.The breakwater protects from the west (attention to the dry that extends it for 20 m), but the port is always full.There are 2-3 m in the head of the piers." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.1165, - 44.268 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1037, - "mapId": "CR_174", - "name": "PETRCANE", - "description": "It has a breakwater that is reborn from the west.You must be careful not to approach too much because the pier drops obliquely inside.There is the possibility of refueling at the supermarket and going to the restaurant.The bay anchor in Schiavina is at risk of strong wind from the west." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.15583333, - 44.18383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1038, - "mapId": "CR_175", - "name": "DIKLO", - "description": "Anchor ravished partially from Bora and Scirocco in front of a tourist complex.There is a dry to pay attention to shore." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.201, - 44.151 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1039, - "mapId": "CR_176", - "name": "ZARA", - "contacts": [ - "023 254880 Marina Zadar" - ], - "description": "Permanent entrance port.The old port\nHe is a stopover with the islands and Italy.\nThe south quay is destined for ships, while yachts are addressed to the Zadar Marina with moorings on piers and gavitelli at the north quay and inside the FrangiFlutti pier.There are about 300 berths, 200 on the ground, and the main services.There is a 15 ton crane and you can have technical assistance.The refueling is done on the other side of the dock.The port is well raveroed by both Bora and Scirocco.A bridge connects the port area with the old city.Here on the outside there is another mooring in 4 m of water for", - "slips": 300 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.22033333, - 44.12 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1040, - "mapId": "CR_176", - "name": "MARINA BORIK", - "contacts": [ - "023 333036 Marina Borik" - ], - "description": "Marina with 220 berths in water and 50 on the ground.It is equipped with the main services and has a 5 ton crane.It is connected to the city of Zadar by bus." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.20783333, - 44.12816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1041, - "mapId": "CR_176", - "name": "MARINA VITRENJAK", - "description": "Modern private marina with 120 berths and services.Essential.Refueling fuel.15 ton cranes.Free places are available to members." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.218, - 44.12466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1042, - "mapId": "CR_179", - "name": "LUKA GAZENICA", - "description": "Petroleum industrial port which is 2.5 miles south east of Zadar." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.26233333, - 44.08666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1043, - "mapId": "CR_180", - "name": "BIBINJE", - "description": "Small marina with 2 m backdrop.It was once used by the boaters to go down to the ground and recharge the gas cylinders." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.27833333, - 44.07083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1044, - "mapId": "CR_181", - "name": "TURANJ", - "description": "Pleasant landing place in a tourist resort.The mooring at the pier can be both internal and external in 3 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.40766667, - 43.96566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1045, - "mapId": "CR_181", - "name": "S. FILIP E JAKOV", - "description": "The mooring is on the outside of the pier which is combined.Water in a quay.The southern coast is all the beach almost at Biograd." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.42216667, - 43.96 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1046, - "mapId": "CR_183", - "name": "SUKOSAN", - "contacts": [ - "023 393731 Marina Dalmacija" - ], - "description": "The bay of S. Cassiano has limited backdrops and is well returning except as a west.There are submerged ruins at the center of the port.It can only moor in the head of the pier.\n\nMarina Zlatka Luka\n\nThe northern part of the Bay of Sukosan is occupied by a large marina from the characteristic horseshoe shape which is the largest of Croatia: 1,400 berths and as many on the ground.A 50 Ton Travel Lift is available, all services, technical assistance, laundry, fuel station." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.29416667, - 44.0495 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1047, - "mapId": "CR_184", - "name": "BIOGRAD", - "contacts": [ - "023 383210 Capitaneria" - ], - "description": "The town of Zaravecchia is an important tourist center for the islands.The port area is shared between the old port and two modern marina.\n\nMarina Kornati\n023 383800 direction Porto\n\nIt is in the northernmost part of the port of Biograd and has 450 boat spaces and 150 on the ground.There is technical assistance for sailboats and engine.A 10 ton crane is available.\n\nMarina sangulin\n023 383739 Management Porto\n\nIt is in the southern part of the port and has over 200 berths and the main services.A small private marina with interior backdrop of 2 m.It is located in front of the large hotels area.", - "slips": 650 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.43916667, - 43.9425 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1048, - "mapId": "CR_185", - "name": "CRVENA LUKA", - "description": "Small creek with backdrop of 5 m rottoone from the bora surrounded by tourist facilities.There is a combinable docking pier (3 m) and several restaurants and even a slide for small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.47383333, - 43.91366667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1049, - "mapId": "CR_186", - "name": "PAKOSTANE", - "description": "Fame tourist center at the southern entrance of the Pasman canal with a marina, several shops and restaurants.The pier is accisable in the northwest part with a depth of 2-4 m.The Bay of Dugovaca is more protected with the sirocco.To enter you need to be careful to pass along the coast (6 m) or in the passage between the Skolj and Babuljas islets (7 m), not between Skolj and Justina because there is dry.The depth of water between Justina and the coast is 2.5 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.50566667, - 43.90583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1050, - "mapId": "CR_187", - "name": "PIROVAC", - "description": "Tourist country on the north coast of the gulf of the same name.It has a marina for fishermen boats.The water in the quay is 2 m.An anchor in 5 m of water is at the center of the west bay in Jazine bay.To enter the Bay of Pirovac we leave the islet arta veils and on the left the dry kusija (5 m of water).Then we proceed with the dry Arta Mali on the tip and the anchorages of Mala and Vela Luka on the left." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.66316667, - 43.81483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1051, - "mapId": "CR_188", - "name": "TRIBUNJ", - "contacts": [ - "022 447140 Direzione porto" - ], - "description": "To get there from the Gulf of Pirovac you go around Murter or go to the Tisno Strait.The marina of this fishing village is protected from Lukovnik islets and Logorun, (the passage between the two islands is 3 m deep) but suffers the sirocco and the west.The marina offers mooring but not services." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.74633333, - 43.75116667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1052, - "mapId": "CR_189", - "name": "VODICE", - "contacts": [ - "022 443055 Capitaneria", - "022 22211 ACI-Marina" - ], - "description": "Porto not ravished by the bora and open to the sea from Scirocco.It is a very popular seaside tourist center that has several resources.The Marina has 350 berths and 100 places on the ground, 10 tons crane, services, technical assistance, laundry, supermarket and restaurant.A mooring on a juxtaposed quay is in Srima." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.77816667, - 43.754 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1053, - "mapId": "CR_198", - "name": "MARINA FRAPA", - "contacts": [ - "022 559900 Direzione porto" - ], - "description": "In the north-western part of the Bay of Rogosnica the Marina Frapa is home to up to 300 boats in the water and 150 on the ground.It is equipped with a 50 tonic travel lift, water and current in a quay, including laundry, fuel supply, bar and restaurant.", - "slips": 300 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.96616667, - 43.5225 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1054, - "mapId": "CR_200", - "name": "BOROVICA", - "description": "It is the first close to those coming from the north.At the entrance there is the dry melevrin.The kanica loop to the east has higher backdrops.In case of scirocco, take the anchors." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.98516667, - 43.49733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1055, - "mapId": "CR_201", - "name": "SICENICA", - "description": "In the bay there is a rock, Muljica, dried south of the entrance.The interior west is raveroed, but with Scirocco you dance." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.00833333, - 43.48683333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1056, - "mapId": "CR_202", - "name": "STARI TROGIR", - "description": "Anchor in 5-7 meters of pretty protected water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.0355, - 43.48716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1057, - "mapId": "CR_203", - "name": "VIVISCE", - "description": "Deep inlet, protected from every part, north of Punta Artatur.The mooring on the two piers is problematic due to the backdrop (2 m).Anchoring is in 5-10 m of water with mud and sand background." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.13116667, - 43.47916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1058, - "mapId": "CR_204", - "name": "MARINA AGANA", - "contacts": [ - "021 889412 Marina Agana" - ], - "description": "Village with scarce resources where the Marina Agana arose that struggles to take off.It is moored on the dock to the west of the tower." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.12266667, - 43.51316667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1059, - "mapId": "CR_205", - "name": "TROGIR", - "contacts": [ - "021 881544 ACI-Marina" - ], - "description": "Medieval tourist center located on the Trogir islet connected by a bridge.The mooring is on the pier in front of the old city and the cathedral, or in the marina (43 * 30.8 N - 16 * 15.2 and) on the other side of the canal.The marina is on the northern shore is equipped with 180 berths and another 60 on the ground, water, electricity, crane of 10 tons, services, bars, restaurant, shops.\nThe channel is exposed to twenty of west that raise wave, and the current in these cases reaches 3 knots.In the bay to report the anchorages of Vranijca and Razetinovac, the latter with a non-good contractor fund, and the marina of Gornij Okruk for draft boats up to 1.5 m.In the southern part of the Ciovo Peninsula there is a well-reapbed Movarce bay from Bora.The landings (RESNIK, Kastel Novi and Stari) and marina (Arbania and Spinut) of Kastelanski Zaljev are in an area with generally turbid water polluted by industrial drains.", - "slips": 180 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.23916667, - 43.51416667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1060, - "mapId": "CR_206", - "name": "GRADSKA LUKA", - "contacts": [ - "021 362436 Capitaneria", - "021 398548 ACI-Marina", - "021 593805 Marina Spinut" - ], - "description": "Marina with 370 berths in a quay with water and running.10 tons cranes.Bar and restaurant.Technical assistance and main services.Connection with bus to the city center.The fuel distributor is outside the marina on a pier that with bora and scirocco is exposed to the waves.\n\nLabud Yacht Club\nMarina di Circolo Velico reserved for members.There is no availability of mooring.\n\nMornar Yacht Club\nMarina di Circolo Velico who does not have places for transit also because the base of departure and arrival of the charter." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.432, - 43.4995 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1061, - "mapId": "CR_206", - "name": "MARINA SPINUT", - "contacts": [ - "021 362436 Capitaneria", - "021 593805 Marina Spinut" - ], - "description": "Wardly repaired private port in Kastalanski Zaljv that welcomes permanent boats.Of the thousand places available only some can be occupied for transit.There are major services, technical assistance, bars and restaurants." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.42116667, - 43.5185 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1062, - "mapId": "CR_206", - "name": "MARINA ZENTA", - "description": "Private tourist port dedicated to permanent tourism and charter.It has 900 seats but only mooring is rarely possible.There are major services, fuel, 10 tons crane, swimming pool." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.45833333, - 43.49866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1063, - "mapId": "CR_209", - "name": "STOBREC", - "description": "Stobrec is a seaside berth surrounded by sandy beach and pine forest to the mouth of the Zrnovica river.The landing as in the nearby marina of Strozanac is not usable because they occupied permanently from the premises.Identical the speech for Krilo (43 * 27.6 n - 16 * 36.1 and), further south." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.5295, - 43.498 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1064, - "mapId": "CR_210", - "name": "OMIS", - "description": "Landing open south west to the mouths of the Cetina river.There is a pier to '' L '' which has a backdrop of 3 m outside and 2 m inside.The bora blows violent and the scirocco causes sign.The entrance is driven by two buoys that delimit a sandbench on which a wreck lies." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.6825, - 43.43816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1065, - "mapId": "CR_211", - "name": "VRULJA", - "description": "This bay is known for the violence with which the bora can blow and for a source of freshwater submarine.The effect of '' fall '' of cold air from the surrounding Motagne made this area of the brazen channel noticeable.Also the proximity of the coastal road and the high backdrop do not encourage to the park." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.884, - 43.3975 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1066, - "mapId": "CR_212", - "name": "BRELA", - "contacts": [ - "021 603222 Ufficio Porto" - ], - "description": "Very renowned seaside resort with a natural frame of lush pine forests.The marina has a forty berths in a dock on a dead body with water and electricity.The mouth is open to the west and with the ponente there is strong stand.The port office is in the Hotel Soliner on the beach at the entrance to the basin." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.9305, - 43.36516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1067, - "mapId": "CR_213", - "name": "BASKA VODA", - "description": "A long frangiflutti pier riddened the two embarkers from the third and fourth quadrant, creating a basin inside a 4 m basin not yet fully equipped to Marina.Boats are 200 of which 30 reserved for transit.", - "slips": 200 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.94616667, - 43.355 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1068, - "mapId": "CR_214", - "name": "MAKARSKA", - "contacts": [ - "021 611977 Capitaneria" - ], - "description": "Famous for the mild climate even in winter, the bay is righted by all winds but not from south west.In this case you have to move to the Creek of Donja Luka on sand backdrops of 5-10 m.The stone quay surrounds the whole loop and can be moored everywhere except on the pier reserved for the ferry.There are water, fuel and shops.To the north of Makarska there is a private navy with a forty places for small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.01616667, - 43.29 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1069, - "mapId": "CR_215", - "name": "TUCEPI", - "description": "This seaside resort has a marina with 70 boat spaces and thirty are available for passing boats.It is a base of a charter boat flotilla.", - "slips": 70 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.04683333, - 43.2695 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1070, - "mapId": "CR_216", - "name": "PODGORA", - "description": "It can be moored on the marina piers which has 240 seats of which 40 are for transit.In the eastern part there is Marina Caklje with 60 berths, 10 intended for transit.From a distance Podgora is recognized for a monument to wings of seagull.", - "slips": 240 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.07233333, - 43.23783333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1071, - "mapId": "CR_217", - "name": "IGRANE", - "description": "The pier is combinable (3 m for more than half of its length then decreases) and is protected by all winds.There is water on a quay.And some restaurants on the ground.The anchor is on 5 m sand backdrop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.1435, - 43.19333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1072, - "mapId": "CR_218", - "name": "DRVENIK", - "description": "Harbor of ferries for Hvar, well ravished with every time but unsuitable for recreational transit." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.24716667, - 43.15083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1073, - "mapId": "CR_219", - "name": "ZAOSTROG", - "description": "Seaside resort with a jetty combinable on both sides (depth 3-4 m).It is ravished by Bora.The internal basin is only for small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.276, - 43.13733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1074, - "mapId": "CR_220", - "name": "BRIST", - "description": "A fairly short pier gives mooring in 3 m of water." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.32083333, - 43.11583333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1075, - "mapId": "CR_221", - "name": "GRADAC", - "description": "Very refined tourist resort for the long beach.The port is well ravished by all winds, but is exposed to the sirocca with the sirocco.There is the possibility of refueling of water and food." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.33683333, - 43.10216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1076, - "mapId": "CR_222", - "name": "PLOCE", - "contacts": [ - "020 679008 Capitaneria" - ], - "description": "Well-rottoated commercial port northwest of the mouth of the Neretva river.Ploce (Kardaljevo) is in fact the only outlet to the sea of Bosnia although it is in Croatian territory.There is the possibility of refueling, at the ferry pier, but it is an unsuitable trip to pleasure.To enter one we need to approach Cape Visnijca and follow the alignment of the channel center boe (depth 15 m).The current can reach 3 knots.The anchor for yachts is in the northern part of the bay in front of a combinable hilly, but with local boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.42, - 43.0385 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1077, - "mapId": "CR_223", - "name": "DUBOKA", - "description": "It has a combinable quay and anchor on sand in m.5/8 of water is exposed to the scirocco and little protected by Bora.The coastal road passes nearby.\n\nKlek Neum\nThe large 4-mile creek between Duboka and Jazine is an anchoring ravished for merchant ships on 20 m backdrops and does not offer pleasure reasons for pleasure.The Sudest part and the Kleka tip are in the territory of Bosnia.There are no particular problems for transit yachts." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.5495, - 42.94033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1078, - "mapId": "CR_224", - "name": "NEUM", - "description": "It is south of Klek Neum Creek.Tourist center of Bosnia.It is necessary to communicate their entry to the police.\n\nKlek Neum\nThe large 4-mile creek between Duboka and Jazine is an anchoring ravished for merchant ships on 20 m backdrops and does not offer pleasure reasons for pleasure.The Sudest part and the Kleka tip are in the territory of Bosnia.There are no particular problems for transit yachts." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.6045, - 42.922 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1079, - "mapId": "CR_225", - "name": "HODILJE", - "description": "The pier reborn the inside of the basin also from the strongest bora.The coast, like the overlooking Baia di Bistrina (interduct to pleasure boats), is destined to the cultivation of mussels and oysters.The bridge over which the road passes is 6 m high.The canal leading to the Kuta bay has the Vranjak baskfondo that is wandering from the south. Crvika islets and the surrounding drys protect the anchors." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.68783333, - 42.85916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1080, - "mapId": "CR_226", - "name": "MALI STON", - "description": "Fortified outpost at the time of the Republic of Ragusa.It has a small harbor for limited fish boats.The mooring is in front of the circular tower or inside the breakwater.The anchorage outside is 3-5 m of water.The phenomenon of the sex is present especially in the autumn months." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.7095, - 42.84933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1081, - "mapId": "CR_227", - "name": "DRACE", - "description": "It is the port of Janjina which is inland.The entrance is towards Bora, but is ravished by the other directions.The only port structure of the northern coast of Peljesac overlooking the Malo More Given that in Brijetsa there is only one hike and two in Sresenti.The mooring inside is on sand backdrop in 4 m of water.An anchorage ravished by bora in 3 m of water, south of the Dubovac islet, is in the east of Luka." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.45333333, - 42.93 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1082, - "mapId": "CR_228", - "name": "TRPANJ", - "description": "Citadel with a docked medieval fort.It has a marina with a forane dam (a statue rises) and an interior basin for small boats.The ferry has its own reserved pier.The breakwater mooring is on anchor in 6-8 m." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.26283333, - 43.01216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1083, - "mapId": "CR_229", - "name": "DUBA", - "description": "Marina open north west, but protected by Bora and Scirocco.The mooring is on the FrangiFlutti pier and with anchor in 3 m of water.Up to the head lovisans on the north coast there are no other redes." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.17683333, - 43.02483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1084, - "mapId": "CR_230", - "name": "MALI DRVENIK", - "description": "In Borak the outermost part of the ferry docking pier is exposed to the bora.The rina sail anchorage on the south coast of the island is rotted from the bora but the backdrop at rocky strokes makes anchor problem." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.07216667, - 43.44183333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1085, - "mapId": "GR_009", - "name": "FRIKES", - "description": "Frikes is northeast of itaka at the bottom of the Baia Ormos Frikon.In the inhabited center two residual towers of ancient windmills stand out.Moorings for pleasure boats are inside the ferry pier.\nOr from the opposite side where there is a floating dock with the possibility of refueling water and electricity.\nThe village of Frikes is tiny and very pretty.It offers practically every kind of refueling and numerous taverns with the pier.\nWith strong wind from the west they go down from the strong hills.You need to have the anchorage and be sure that the anchor has well taken on the bottom." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.66583333, - 38.45966667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1086, - "mapId": "GR_027", - "name": "PERA PIGADIA", - "description": "To the south east of itaka there is, near the coast, the pear pigadia islet, difficult to identify until it is in the proximity.\nDifferent options for anchorage.In good weather you can approach the small pier, where they can stop 4 - 5 boats.\nOtherwise, passing between the islet to ITAKA in a very clear water seabed on 4 meters, you can find yourself back in one of the south bays on the island of Itaka that takes its name of the same islet, Ormos Pera Pigadia.\nHere you can anchor in front of two hans of white sand.However, this is temporary berths because in summer to the usual wind reinforcement of the wind can become rather uncomfortable." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.747, - 38.33766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1087, - "mapId": "SA_131", - "name": "OLBIA - NAUSIKA", - "contacts": [ - "0789 21243 Capitaneria", - "0789 57181 Cantiere Nausika", - "Vhf 72" - ], - "description": "It is a 50 m long quay for the launch and the hauling of boats, about 1 mile from the lighthouse of Olbia." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.551166667, - 40.92633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1088, - "mapId": "SA_130", - "name": "CAGLIARI - MOTOMAR SARDA", - "contacts": [ - "070 605171 Capitaneria", - "070 6051901 Cantiere", - "Vhf 9 - 11 - 12" - ], - "description": "It is the largest port of the island, which inside the two large piers, of the west and east, has numerous docks and destined for pleasure.Four destinations, from the west towards Levante: Motomar Sarda, quay ichnusa (without services), Italian Naval League, Darsena del Sole, Marina S. Elmo.Warnings: The capacity manages the transit and parking of pleasure boats to which the mooring point is generally assigned to the ichnusa drop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.100833333, - 39.2105 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1089, - "mapId": "SA_129", - "name": "CAGLIARI - LEGA NAVALE", - "contacts": [ - "070 605171 Capitaneria", - "070 300240 Lega Navale Italiana", - "Vhf 9 - 11 - 12" - ], - "description": "It is the largest port of the island, which inside the two large piers, of the west and east, has numerous docks and destined for pleasure.Four destinations, from the west towards Levante: Motomar Sarda, quay ichnusa (without services), Italian Naval League, Darsena del Sole, Marina S. Elmo.Warnings: The capacity manages the transit and parking of pleasure boats to which the mooring point is generally assigned to the ichnusa drop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.123833333, - 39.20233333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1090, - "mapId": "SA_128", - "name": "CAGLIARI - CANTIERI DEL SOLE", - "contacts": [ - "070 605171 Capitaneria", - "070 308730 Gestione ormeggi", - "Vhf 9 - 11 - 12" - ], - "description": "It is the largest port of the island, which inside the two large piers, of the west and east, has numerous docks and destined for pleasure.Four destinations, from the west towards Levante: Motomar Sarda, quay ichnusa (without services), Italian Naval League, Darsena del Sole, Marina S. Elmo.Warnings: The capacity manages the transit and parking of pleasure boats to which the mooring point is generally assigned to the ichnusa drop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.123666667, - 39.20066667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1091, - "mapId": "SA_127", - "name": "CAGLIARI - MARINA S.ELMO", - "contacts": [ - "070 605171 Capitaneria", - "070 344169 Uffici", - "Vhf 9 - 11 - 12" - ], - "description": "It is the largest port of the island, which inside the two large piers, of the west and east, has numerous docks and destined for pleasure.Four destinations, from the west towards Levante: Motomar Sarda, quay ichnusa (without services), Italian Naval League, Darsena del Sole, Marina S. Elmo.Warnings: The capacity manages the transit and parking of pleasure boats to which the mooring point is generally assigned to the ichnusa drop." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.115, - 39.20133333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1092, - "mapId": "CL_054", - "name": "SANTA LITTERATA", - "contacts": [ - "0985 849411 Capitaneria", - "0985 81223 Nautica De Maria" - ], - "description": "Approx consisting of a cliff to \"l\" orthogonal to the coast and protected by an additional massive.Floating pontiens are installed from May to September for pleasure.Entrance corridor reported by yellow buoys.", - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.8355, - 39.65516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1093, - "mapId": "CL_055", - "name": "BELVEDERE MARITTIMO - RIVA DI SCIDRO", - "contacts": [ - "0985 849411 Capitaneria", - "0985 84396 Direzione Porto", - "Vhf 12" - ], - "description": "The port is close to Capo Tirone and protected by a forane dam with N-S trend, divided into the mouth.The port is composed of two docks: to N with a jetty and a s for units in transit.The management is private and the entry intention must be preavened.", - "slips": 300, - "seaFloor": { - "minDepth": -2.6, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.85416667, - 39.60733333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1094, - "mapId": "CL_052", - "name": "AMANTEA", - "contacts": [ - "0982 425606 Capitaneria", - "0982 48565 Porto Turistico \u201cCittà di Amantea\u201d" - ], - "description": "The marina, a s of Torre S. Giovanni, has a curvilinear pier oriented for SW and s and a subfluy pier that from the ground stretches towards W. inside there are three floating piers and a small docked dock.Possible accentuated sanding phenomena: verify the backdrops before the entrance.", - "slips": 285, - "temporarySlips": 20, - "seaFloor": { - "minDepth": -2.8, - "maxDepth": -3.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.06666667, - 39.13333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1095, - "mapId": "CL_053", - "name": "SCILLA", - "contacts": [ - "0965 751598 Capitaneria", - "0965 790122 Boat Service" - ], - "description": "It is a port formed by a pier to \"L\" with ne-if direction, entirely fing and with bollards, and from a quay with a slide.Two buoys fields are set up for pleasure for May to September with mooring service, guard and ferry.Foraneous pier used as a transit (max 24 hours).The Ruffo dock of Calabria is reserved by landing and boarding (draft 1.50 m).", - "slips": 150, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.71716667, - 38.25566667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1096, - "mapId": "FR_060", - "name": "AURISINA", - "description": "Marina reserved for state boats.Possible mooring for pleasure are due to force majeure.", - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -2.5 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.66883333, - 45.74033333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1097, - "mapId": "MA_014", - "name": "FOCE DEL TRONTO", - "contacts": [ - "0861 797735 Capitaneria" - ], - "description": "Fifty m from the mouth of the mouth there is a habit of a hauling and launch of small boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.92033333, - 42.89483333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1098, - "mapId": "VE_109", - "name": "FOCE DEL PO DI LEVANTE", - "description": "Access signposted by a headlight followed by a series of briccole on the left side.Dangers: RED BOE FIELD that indicates the mooring of ships." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.36666667, - 45.069 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1099, - "mapId": "VE_108", - "name": "PORTO LEVANTE", - "contacts": [ - "0426 330289 Capitaneria", - "0426 666047 E. Donà" - ], - "description": "Entry from the mouth of the Levante's little about 4 km on the left after the bridge.", - "slips": 130, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -2.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.36466667, - 45.04866667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1100, - "mapId": "RO_025", - "name": "MARINA DEGLI ESTENSI", - "contacts": [ - "0533 328428 Marina", - "0533 328216 Lega Navale Italiana", - "www.lidicomacchio.com/nautica", - "Vhf 16 - 9" - ], - "description": "Marina Delle Estensi is part of the Porto Garibaldi port complex.The dock is accessed from the canal port (deep 4 m) and opens onto the dock, near the enormous and unused slide of the commercial dock, at about 700 m from the mouth of the port.", - "slips": 300, - "vesselMaxSize": { - "maxLoA": 25.0 - }, - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.235, - 44.675 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1101, - "mapId": "RO_024", - "name": "MARINA ROMEA", - "contacts": [ - "0544 446035 Marina" - ], - "description": "The port is located at the mouth of the lamon protected by two piers.The pontiens are managed by the Nautical Circle of Marina Romea.To get to stay close to the left bank and go up the river for about 600 m.", - "slips": 110, - "vesselMaxSize": { - "maxLoA": 12.0 - }, - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -2.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.28333333, - 44.5 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1102, - "mapId": "FR_061", - "name": "PORTICCIOLO DEI CARBONI", - "description": "Approx consisting of wooden piers, including external ones that act as breakwater.Suitable for bas under 8 m, access is reserved for residents of Lignano." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.143, - 45.69633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1103, - "mapId": "A_007", - "name": "SHENGJIN", - "contacts": [ - "Vhf 9" - ], - "description": "Shengjin is the northernmost commercial port of Albania who has an adaptation for the reception of pleasure boats in project. Bar, in Montenegro, is from Shengjin 36 miles; Cavtat, Croatia, is 68 miles. It is an entrance port in the country and therefore all customs practices can be carried out here. It is a good strong twenty, except from the SW. For access to follow a channel with variable depth between 4 and 4.50 m, reported by red and green buoys. Waiting for a part of the quay to the pleasure, the boats can moor next to the fishing boats. It is the capability indicating the mooring place. The stop is free, near the port you can buy fresh fish to the Rozafa shop, processing factory and fish packaging.\nDepth: 3-4 m on average in a quay, the mouthpiece 6 m.\nMooring on a backdrop of 3 m in the customs quay.\nIn the basin there is a prohibited military area. The \"Detari\" restaurant (355/2812427) can be reached on foot from the port.\nCuriosity: near the mouth of the Bunes river you can observe the phenomenon of the \"fall sand\": almost vertical sand walls that descend from the slopes of the mountain.", - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -4.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.59166667, - 41.81666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1104, - "mapId": "A_001", - "name": "DURRES", - "contacts": [ - "Vhf 15 Capitaneria" - ], - "description": "Durres is the main port of Albania.It is 38 miles from Shengjin.The city offers services and tourist attractions.By considerable interest the Byzantine walls and the Roman amphitheater.Coming from N Pay attention to extended bassifonds for more than 1 mile to Kepi the Durresit (Capo Durazzo) recognizable for the lighthouse.To enter Durres, identify the MEDA of landing at 2.5 miles from the packaging of the port, which allows you to access a channel delimited by red and green buoys.The access route is 18 *.Make up scandal and nautical cards.Call the capitanery on channel 15 channel 15 to get the instructions on the reserved mooring place, normally on the left just entered or straight at the bottom.The stop is free.", - "seaFloor": { - "minDepth": -6.0, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.45833333, - 41.305 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1105, - "mapId": "A_006", - "name": "SAZAN", - "description": "The islet of Sazan (Saseno) has high coasts, the marina of Shen Nikolles (S. Nicol\u00f2) located on the side and is not accessible to pleasure, like the whole island, being a military area.Navigation is prohibited less than 1 mile from the coast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.285, - 40.50166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1106, - "mapId": "T_010", - "name": "SIDI BOU SAID", - "contacts": [ - "00216 71 741645 Capitaneria", - "Sig. Karim Ghannouchi", - "e-mail: port-sbs@gnet.tn", - "Vhf 16 - 9" - ], - "description": "Sidi Bou Said (155 miles from Cagliari, 80 from Marsala) is the nearest port (15 km) to Tuniti a C Cap Carthage.Coming from n Cap Carthage has a lighthouse visible from 22 miles, 146 m high, to leave a starboard.Entering avoiding the green light where inappiaments are created at the end;Follow the canal while standing closer to the red light.The reception pier is in front of the entrance where the backdrop must be checked because in the section to the left there is a point where the fish from 4.5 to 1.55 m.\nOf the 420 berths, many are occupied by local boats;However, there is availability of mooring for boats in transit.", - "slips": 420 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.35033333, - 36.86516667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1107, - "mapId": "T_006", - "name": "KELIBIA", - "contacts": [ - "00216 72 273639 Capitaneria", - "Sig. Hamadi Mathlouthi", - "Vhf 16 - 10" - ], - "description": "Great fishing port between Sid-Bou-Said and Hammamet.On the hill overlooking the harbor there is a lighthouse on the Borj El Mustapha fortress of the 6th century.Here you can carry out all the entry practices in Tunisia.At the entrance there is a 7 meter draw and in the basin between 7 and 5 meters.There is a pier for pleasure boats.", - "seaFloor": { - "minDepth": -5.0, - "maxDepth": -7.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.10666667, - 36.833 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1108, - "mapId": "T_001", - "name": "BENI KHIAR", - "contacts": [ - "00216 229376 Capitaneria", - "Sig. Jabrane Bouguerra", - "Vhf 16" - ], - "description": "Fishing port on the coast and Tunisia 28 miles to Kelibia, near the city of Nabeul.Interesting and welcoming stop.At the entrance the draft is 7.5 meters which can be reduced to 5 and then inside 2 m.In the pelvis there is a pier reserved for the recreation along which the draft varies between 2.2 and 2.4 meters.", - "seaFloor": { - "minDepth": -2.2, - "maxDepth": -2.4 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.796, - 36.44933333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1109, - "mapId": "T_012", - "name": "YASMINE HAMMAMET", - "contacts": [ - "00216 72 241111 Capitaneria", - "Sig. Ahmed Moatemri", - "Web: www.portyasmine.com.tn", - "Vhf 16 - 9" - ], - "description": "Private tourist port 3 miles south of the city of Hammamet to N of the Gulf of the same name;It is at the center of the coast with large beaches, hotels and bathing establishments.The island of Pantelleria is 85 miles, Malta 220, Naples 350. It is the most modern tourist port of Tunisia destined to attract the boats from Europe from Europe.", - "slips": 700 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.547, - 36.3685 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1110, - "mapId": "T_005", - "name": "HERGLA", - "contacts": [ - "00216 73 251464 Capitaneria", - "Sig. Belloumi Said", - "Vhf 16" - ], - "description": "Port for minor fishing naviglio in the friendly country Hergla, typical peasant Arab village.The port is 50 meters from the village and welcomes cruising boats with limited draft: 2 meters deep at the entrance, 1.5-1.7 inside the basin.It is the classic Tunisian airport, quiet and hospitable, to spend a few days of relaxation.", - "seaFloor": { - "minDepth": -1.5, - "maxDepth": -1.7 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 10.51416667, - 36.03166667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1111, - "mapId": "CA_113", - "name": "MARINA DI STABIA", - "contacts": [ - "081 8711077 Capitaneria", - "081 8716871 Marina di Stabia Spa", - "Vhf 69", - "www.marinadistabia.it" - ], - "description": "New tourist port, between Torre Annunziata and Castellammare di Stabia, with 1,000 mooring places and large spaces suitable for major units.It is at the center of the Gulf of Naples, a short distance between the Sorrento Peninsula and the Amalfi, the islands of Capri, Ischia and Procida, Vesuvius, and the evocative archaeological sites of Ercolano, Oplonti, Pompeii and Stabiae.The marina is divided into two areas with a central connection istmo that separates the technical area (including a dock with two hauler and a slide, an area for the shipbuilding and the storage of the boats), from the real navy.Marina di Stabia is equipped with backdrops up to 8 m, control tower, bunkering plant, club house, sailing school, nautical circle.The multi-purpose center, in progress, will include hotels, restaurants, super market, offices.", - "slips": 1000, - "seaFloor": { - "type": [ - "sand" - ], - "minDepth": -3.5, - "maxDepth": -8.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.472, - 40.71716667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1112, - "mapId": "CA_112", - "name": "PORTO DAVIDE", - "contacts": [ - "081 8710107 Porto Davide Srl", - "www.portodavide.it", - "Vhf 9 - 72" - ], - "description": "Tourist marina on the outer side of the external pier of a stabas castellamare, protected by a parallel pier, with three brushes.", - "slips": 220, - "seaFloor": { - "type": [ - "mud" - ], - "minDepth": -2.5, - "maxDepth": -5.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 14.47766667, - 40.6945 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1113, - "mapId": "F_CO_016", - "name": "SANT\u2019AMBROGIO", - "contacts": [ - "0033 4 95607088 Direzione porto" - ], - "description": "Good back to twenty from W to SW and from neither located in the Punta Sant'Ambrogio has the oriented entry to S with a channel reported by Boe.Inside the pelvis the depths range from 1.50 to 2.50.", - "slips": 220, - "temporarySlips": 20 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.828333333, - 42.60333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1114, - "mapId": "F_CO_015", - "name": "PORT TAVERNA", - "contacts": [ - "0033 4 95380761 Capitaneria", - "Vhf 9" - ], - "description": "Tourist port located in the coast and island 22 miles to Bastia.Equipped with an avenger, the entrance channel is drifted regularly at 3 m of the backdrop.The entrance is easy, unless with strong winds from the east and from ne.Set of good quality.", - "slips": 464, - "temporarySlips": 100, - "seaFloor": { - "minDepth": -3.0, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.405, - 41.85666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1115, - "mapId": "SA_126", - "name": "LA MADDALENA", - "contacts": [ - "0789 792664 Capitaneria", - "0789 790600 Comune", - "0789 739280 Lega Navale Italiana", - "Vhf 9 - 11" - ] - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.413666667, - 41.212 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1116, - "mapId": "CR_376", - "name": "BISEVO", - "description": "Biseve is the island of '' Modra Spilja '.The Blue Grotto, the main tourist attraction.It is located beyond the tip that protects the inhabited of Mezuporat on the Levant side.An anchorage relatively protected in 10-15 m of water, (because it always feels the wind both bora and scirocco and it rolls a lot) is on the western side of the island in the bisevska luka (42 * 59 'n - 16 * 00.5 e)." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.99466667, - 42.98083333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1117, - "mapId": "FR_052", - "name": "CANOVELLA DI ZOPPOLI", - "contacts": [ - "040 766729 Coop. Nord Adriatico", - "Vhf 16" - ], - "description": "Small marina usable only by small boats.The management of the port is of the northern Adriatic cooperative.\nThe entrance is not recommended with rough sea.\nParticular attention to miticulture plants.", - "slips": 25, - "vesselMaxSize": { - "maxLoA": 7.0 - }, - "seaFloor": { - "minDepth": -0.5, - "maxDepth": -3.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.65416667, - 45.75 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1118, - "mapId": "A_009", - "name": "VLOR\u00cb", - "contacts": [ - "Vhf 12" - ], - "description": "Located in the bay of Vlor\u00eb, it is the second port for importance of Albania.Here they dock ferries and ships that make business with Italy.The village developed in the eastern bank of the Gulf, closed to the West by the rocky promontory of Karaburun which ends in N with the Gallovecit garment on which there is a tower with a light.The port has two parallel piers about 200 m oriented for SW with the red and green lights at the end.Sheltered from northern winds it is unsustainable for the senses that is created in the basin with winds from NW and SW.In Vlor\u00eb there are no spaces reserved for pleasure, it is usually moored at the quay to the left of the ferries from Italy.Contact the mooring capacity.It is entry port for customs practices." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.48833333, - 40.44666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1119, - "mapId": "A_008", - "name": "TREPORTIT", - "contacts": [ - "090 9811320 Capitaneria" - ], - "description": "TreportiT (Treporti) is a small vessel landing located at 2.5 miles to N of the town of Vlor\u00eb.Scarce the drafts inside the basin, which vary from 1 to 3 m.If you decide to stop you, pay attention to the slums being well distant from the coast." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.43833333, - 40.48333333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1120, - "mapId": "A_003", - "name": "MARINA DI ORIKUM", - "contacts": [ - "00355 0391/2248 (Direz. porto in Albania)", - "0039 0565/252040 (Direz. in Italia)", - "Vhf 15" - ], - "description": "The Orikum Marina is located in the Bay of Dukat, a southernmost part of the Gulf of Vlor\u00eb (Valona).The port was carried out by an Italian company, Ge.Por.tur.of Riornorto Vignale (LI).Equipped with all services is the only marina in Albania.For assistance with approximation and mooring contact the management.The backdrops both at the entrance and in a quay are 3.50 m.In summer a floating dock with water and electricity is positioned.Starting point for excursions in the nearby Belvedere a few kilometers overlooking the Costa S and the Greek islands.By taxi, excursion to the Bel Paese of Berat and Appollonia, where there is an important archaeological site.", - "slips": 300 - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.47166667, - 40.34216667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1121, - "mapId": "A_002", - "name": "HIMAR\u00cb", - "contacts": [ - "Vhf 14" - ], - "description": "The 25 miles in S of Valona are of a desert coast, steep, without aid for an anchor.Himar\u00eb does not have a real port but it is a quay of about 30 m rather run down where, with some precaution due to the strong stand, it is possible to carry out short stops.The backdrop is sandy, deep 3-5 m.\nIn the lovely village there is the port capacity.The most interesting part from the tourist point of view is the high settlement on the hill, behind the port, where there are shops for food supplies and trattorias.Hazards: The mooring at the quay is precarious, suitable only for short stops." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.74166667, - 40.1 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1122, - "mapId": "A_004", - "name": "PANORM\u00cbS", - "contacts": [ - "Vhf 14" - ], - "description": "Before arriving at this beautiful bay with good possibilities for anchoring, coming from N, you meet beautiful coasts and beaches where you can stop for a bathroom.Panorm\u00ebs offers numerous redesions with backdrops between 6 and 10 m.Two promontor protect the bay and in that there is a lighthouse.At the center of the bay, in another small promontory there is a medieval fortress that divides the bay into two inlets.In the N inlet there is a prohibited \"T\" cement pier because it is reserved for the military.Even part N of the bay is used as a military base, therefore prohibited to yachts.Dangers: deep backdrops require a long anchor line.Pay attention to fish farms in the bay." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.785, - 40.06 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1123, - "mapId": "A_005", - "name": "SARAND\u00cb", - "contacts": [ - "Vhf 16 Capitaneria" - ], - "description": "Sarand\u00eb is a few miles from the canal that separates Albania from the Greek island of Corfu, with which it is connected by ferries.The city is located in a beautiful bay open to the south. Coming from n pay attention to the numerous dry that from the promontory that closes to w extend for 500 m.The entrance to the port is reported by two buoys, a red and a green, which indicate the passage to be carried out in the center.There are no moles reserved for pleasure but the boats are well received and can give bottom to the anchor.In the quay there is a drinking water supply service and electricity.Sarand\u00eb is a good base for excursions to the interesting archaeological site of Butrint, 18 kilometers away near the homonymous lake." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.04166667, - 39.86666667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1124, - "mapId": "GR_041", - "name": "PALAIROS", - "description": "Palairos is a place located on the side east of the Gulf Ormos Palairou, whose port offers a good mooring both outside the pier giving bottom in front of the beach on a bottom of about 10 meters, and inside.At the entrance of the marina there is the backdrop of about 4 meters and in the dock right away, entering the depth is 2 meters.Here you can moor in Andana on its interior side, giving bottom to your own.In the jetty there is availability of water and electricity.\nInside the basin the seabed vary between 2 and 3 meters and can be freely moored where there is availability, except in the pier reserved for fishing vessels.\nThe village is quiet, with many taverns, fruit shops and vegetables and mini-market", - "seaFloor": { - "type": [ - "2m" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.87666667, - 38.782 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1125, - "mapId": "GR_042", - "name": "VOUNAKI", - "description": "Always in the Gulf Ormos Palairou, little south of Palairos, there is Vounki Marina, easy to identify for a hotel complex immediately visible.The port is composed of two basins, and is very popular with charter boats, being the sunsail base.The most west basin has the backdrop at the entrance of about 5 meters while the east is 4 meters;In this basin east the docks are equipped with water and electricity.In the port there are some taverns and small grocery stores;The village of Vounaki is a 15 minute walk from the port.", - "seaFloor": { - "minDepth": -4.0, - "maxDepth": -6.0 - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.877, - 38.76916667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1126, - "mapId": "GR_043", - "name": "PORT KASTOS", - "description": "Kalamon in Kastos are two islands to the west\nOf Meganisi. Among them there is a channel\nthat makes navigation interesting\nSailing, although it can cause problems with unexpected wind blows, even if the phenomenon becomes attenuated during the summer. The wind from the west changes direction and around the islands and tends to take the direction from the south. Among the two islands there are no dangers and the seabed are rather high even below coast. However it is advisable to maintain a certain distance from the ground in the circumnavigare the islands. The main ports are Port Kalamos, on the island of Kalamos, and Kastos in that of Kasto.\n\nPort Kastos is a nice marina in front of the village in the east side of the island of Kastos, about half the coast. At the entrance there are about 5 meters basement. You can immediately moor behind the two molts to the right and left entering, giving bottom to your own, or in front of the beach carrying a top to earth. At the end of the marina, on the left, there is a small basin reserved for local fishing boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.9115, - 38.567 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1127, - "mapId": "GR_044", - "name": "KALAMOS", - "description": "Kalamon in Kastos are two islands to the west\nOf Meganisi. Among them there is a channel\nthat makes navigation interesting\nSailing, although it can cause problems with unexpected wind blows, even if the phenomenon becomes attenuated during the summer. The wind from the west changes direction and around the islands and tends to take the direction from the south. Among the two islands there are no dangers and the seabed are rather high even below coast. However it is advisable to maintain a certain distance from the ground in the circumnavigare the islands. The main ports are Port Kalamos, on the island of Kalamos, and Kastos in that of Kasto.\n\nThe port of Kalamos is sufficiently protected, except with wind from the north-east that creates sang and wave inside the pelvis. At the entrance the bottom is around 3.5 meters.\nThe best moorings are those on the right entering, among the little piers where the draft is 2.5 meters. Along the pier to the right, instead, the action of the wind and the senses is more suffered. In the event of a strong wind during the night, wind blows can occur that make the stop in port not sustainable. The mooring, to be carried out with its own, is also very comfortable even in the south-east wind.\nTo the south of the island of Kalamos, on the east side, there is one of the best anchors, Port Leone. You can give bottom to the anchor both in front of the beach in a backdrop on 7-8 meters, or in a more northern assay where there are two small stone moles capable of hosting a single boat with yet two peaks on the ground ." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.934, - 38.62433333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1128, - "mapId": "GR_045", - "name": "ASTAKOS", - "description": "To the south of Kastos, east of the Dragonera Islands, proven and Pontiko (Echinades) there is a deep loop, in the Greek constitutional coast, at the bottom of which we find Astakos. In the town there is the port of ferries to Ithaca, Poros and Kefalonia; Here there is also a discrete flotilla of fishing boats.\nAstakos is a good base to make supplies of all kinds for the cruise. There are also banks, restaurants on the waterfront and shops of all kinds, being a seasonal tourism area of \u200b\u200bthe Greeks. Numerous construction sites and repair of gulets and fishing boats, and naval supplies stores. In front of the Gulf of Astakos there are the Dragonera, proven and Pontiko islands that offer numerous anchors. Here the backdrops are also relevant under the coast, however we recommend the use of detailed cards to enjoy the best of Anse and reduced between an islet and the other. In the summer season dominates the mistral (north-west). By broken through the south along the continental coast there are no shortage of closed winds and the sea where you wanted to spend entire days at the anchor. From here in a few hours you can reach villages where you can find supplies for board galley and any kind of food, especially fruits and vegetables coming from inside the coast where there are large cultivated fields.\nSouth of this stretch of Greek Continental Coast is the Oxia Island where there are fish breeding settlements, well marked by Boe. Place attention especially in night navigation.\nA good anchorage is the omonymous gulf of Oxia, well robesed in backdrops of about 5 meters." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.08333333, - 38.5 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1129, - "mapId": "GR_046", - "name": "AG.NIKOLAOS", - "description": "The port of Nikolaos has a partially quack pier, with two entrances, one to the north and one south of the Nikolaos islet, both with a depth of 5 meters.Entering from the south, the inside of the moletto on the right is reserved for the ferry.Outside, boats that give bottom to anchor and set two cables to the ground.Inside the basin the drafts are reduced between 1.5 and 3 meters.Better anchor on 5 meters and then tie the peaks on the ground, to avoid the problems of the senses and the blows of wind that can occur in the afternoon.\nThe southern pier is reserved for fishing boats." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.7095, - 37.9055 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1130, - "mapId": "GR_047", - "name": "ZAKINTHOS Marina", - "description": "The landing is composed of two basins, a commercial a starboard, and one of a recreation on the left;The latter is Zakinthos Marina whose structures maintain essentiality and nothing have to do with a \"marina\".In the entrance to the Zakinthos Marina the backdrop is about 5 meters, while inside varies between 4 and 2.5 meters.In the largest port of Zakinthos (the one with a straight entrance) the backdrop between the lights is 8 meters and inside is 3-4 meters.The \"useful\" moorings are therefore right after the ferry moletto, supplied with water and electricity;Use your own again.The moorings are in the city, therefore within reach of restaurants, taverns, post office, shops of all kinds." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 20.906, - 37.77816667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1131, - "mapId": "GR_048", - "name": "KILLINI (Glarenza)", - "description": "The small port of Killini could be the first landscape of the Peloponnese, whether he decides to circumnavigate the great Greek peninsula clockwise (passing the Corinth channel) or counterclockwise.A useful GPS point for approaching is that of the head Kavikalidha in the north-western end (37 * 57.05 N - 21 * 07.03 and).The port is a bay protected by the prevailing wind, from the west and from the north-west, from a pier where you can moor it by sinking your own in a well-built mud backdrop.Excellent anchorage is the one at the wheel in front of the beach." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.14766667, - 37.93633333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1132, - "mapId": "GR_049", - "name": "KATAKOLON", - "description": "The port of Katakolon is well protected from the homonymous head and wind from the west.It is a well-studied landing for pleasure boats, having a reserved area for cruise boat hospitality, with three piers on a 4-meter bottom with water and electricity.In the event of overcrowding (rare event) you can find the mooring in other parts of the pelvis, except for the pier reserved for ferries or, still alternatively, you can stay at the wheel outside the port beyond the northern pier.", - "seaFloor": { - "type": [ - "4m" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.3295, - 37.64766667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1133, - "mapId": "GR_075", - "name": "MONEMVASIA MARINA", - "description": "We dubbed the Mal\u00e9as leader and go back the eastern Peloponnese coast: after 17 miles we are in Monemvasia, in the first arrival of the side in the Aegean sea.Monemvasia is the name of the locality but also the one of an island connected to the ground from an artificial dam on which a road that connects the island to the town of Yefira was created.The arrival is located in the southern coast of the peninsula, and an expansion is expected with the prolongation of the pier and new piers.The pier, immediately turning to the right, is destined for a rescue medium, the internal basin is instead for local boats.For short transit you can give bottom to anchor and moor with peaks outside the only jetty.The backdrop in this area is 3-4 meters.With the Meltemi the mooring can be revealed subject to strong roll.In the north side of the pier-road that connects the island of Monemvasia to the mainland there is a jetty that usually houses a ferry." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.03966667, - 36.68383333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1134, - "mapId": "GR_074", - "name": "IERAKA", - "description": "A six miles north of Monemvasia there is a fascinating landscape, Ieraka.You enter a close fjord between high cliffs and, before the lagoon, on the right, there is the village of Ieraka with white houses, taverns: a typical Greek village.The first part of the pier is reserved for the local ferry, while further there, in a backdrop of about 2 meters, you can give bottom by putting the top peaks.It is a discreet refuge for the Meltemi." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.0925, - 36.78883333 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1135, - "mapId": "GR_073", - "name": "KIPARISSI", - "description": "Naving again to another 12 miles, after Ieraka we meet Kiparissi, a town in a large bay with houses a few meters from the sea.On the right entering, in the north side of the bay, there is a pier with several local boats where you can find mooring at a backdrop of 5-6 meters;Another possibility of mooring is in the other pier in the center of the village in seabed of about 3-5 meters.In the bay, both in the north side and in front of the country it is possible to give bottom to the anchor according to the wheel.", - "seaFloor": { - "type": [ - "3-6m" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.00916667, - 36.9815 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1136, - "mapId": "GR_072", - "name": "LEONIDHION", - "description": "Only when you are 1 mile away you can identify white houses that frame Leoniidhion's marina, located about 3 miles north of Cape Yeoryios.Other conspire elements to spot the landing are a white church and a hotel in the north side of the water.A pier where for mooring it should be given to its own still on a backdrop of about 10 meters.The first stretch of the pier is reserved for the allandery that connects Leonidhion with Piraeus.In the north side the bottoms decrease and there are numerous rocks.In front of the town there is a hikel where you can stop local boats and on the opposite side there is a beach.", - "seaFloor": { - "type": [ - "10m" - ] - } - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.90283333, - 37.174 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1137, - "mapId": "GR_070", - "name": "TIROS", - "description": "At 7 miles north of Leonidhion there is a small landing, Tiros, consisting of a short pier, useful for a stop with good weather, shelter with moderate wind.The first section of the indoor of the pier is reserved, in the months of July and August, to the hydrofoil, then join the jetty only on the outside.Alternatively you can give bottom to the anchor in front of the village, or mooring, always using one's own, at the hilly in front of the inhabited center." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.86683333, - 37.23466667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1138, - "mapId": "GR_088", - "name": "ASTROUS", - "description": "Continuing to the north along the eastern Peloponnese coast for another ten miles after Tiros, you reach Astrous.It is a country with a tourism propensity, dominated by a medieval castle and a nice port of fishing.The landing is well protected but with limited place for mooring for boats especially in the summer.The village, typically Greek, is built around the harbor and the beautiful beach.Numerous taverns in the country's long sea where you can enjoy typical products." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.76683333, - 37.41266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1139, - "mapId": "GR_087", - "name": "NAVPLION", - "description": "Going up the Gulf of Navplion you reach one of the most interesting landings of this peloponnese side.Dominated by a strong Venetian on a promontory where the city that has the same name as the Gulf, NAVPLION stands.The port well ravished even if with twenty from NW forms an annoying senses in the basin.The channel at the entrance is well marked by red and green lights and is dredged on 7 meters.For information on the mooring contact the maritime authority at the VHF radio on channel 12. There are numerous taverns typical in the old and narrow streets of the town." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.789, - 37.56266667 - ] - } - }, - { - "type": "Feature", - "properties": { - "id": 1140, - "mapId": "GR_085", - "name": "TOL\u00f2", - "description": "Sailing along the coast of the Gulf Argoligos, 5 miles from Navplion you reach the island tool\u00f2, which in the canal with the mainland has a backdrop of 12-15 meters, therefore widely navigable.Tol\u00f2 is also the name of the fishing village on the coast, which in the westernmost part has a small dock with an elbow hipoon (the basin is completely quack).The outside of the elbow is reserved for the hydrofoil, while inside (backdrop of 4 m) there are moorings for a number of boats to be divided with local fishing boats.Exposed to the east the marina is a good refuge thanks to the position of the island tool\u00f2.Another possibility for parking with good weather is the 6-7 meter bottom anchorage along the beach in front of the village." - }, - "geometry": { - "type": "Point", - "coordinates": [ - 22.85366667, - 37.511 - ] - } - } - ], - "type": "FeatureCollection" -} \ No newline at end of file diff --git a/apps/portolano/resources/images/icons/portolano_icon.png b/apps/portolano/resources/images/icons/portolano_icon.png deleted file mode 100644 index 6516ed2..0000000 Binary files a/apps/portolano/resources/images/icons/portolano_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/algae_icon.png b/apps/portolano/resources/images/icons/seafloor/algae_icon.png deleted file mode 100644 index 7905e8d..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/algae_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/bad_icon.png b/apps/portolano/resources/images/icons/seafloor/bad_icon.png deleted file mode 100644 index 05b8a79..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/bad_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/corals_icon.png b/apps/portolano/resources/images/icons/seafloor/corals_icon.png deleted file mode 100644 index 0575d6e..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/corals_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/good_icon.png b/apps/portolano/resources/images/icons/seafloor/good_icon.png deleted file mode 100644 index 823f686..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/good_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/mud_icon.png b/apps/portolano/resources/images/icons/seafloor/mud_icon.png deleted file mode 100644 index 128e0aa..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/mud_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/rocks_icon.png b/apps/portolano/resources/images/icons/seafloor/rocks_icon.png deleted file mode 100644 index 5873ff5..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/rocks_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/icons/seafloor/sand_icon.png b/apps/portolano/resources/images/icons/seafloor/sand_icon.png deleted file mode 100644 index 2d576cd..0000000 Binary files a/apps/portolano/resources/images/icons/seafloor/sand_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/ports/A/A_001.jpg b/apps/portolano/resources/images/ports/A/A_001.jpg deleted file mode 100644 index 3b1e5db..0000000 Binary files a/apps/portolano/resources/images/ports/A/A_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/A/A_003.jpg b/apps/portolano/resources/images/ports/A/A_003.jpg deleted file mode 100644 index 5c5a50c..0000000 Binary files a/apps/portolano/resources/images/ports/A/A_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/A/A_004.jpg b/apps/portolano/resources/images/ports/A/A_004.jpg deleted file mode 100644 index f06e71c..0000000 Binary files a/apps/portolano/resources/images/ports/A/A_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/A/A_006.jpg b/apps/portolano/resources/images/ports/A/A_006.jpg deleted file mode 100644 index 88dc8ae..0000000 Binary files a/apps/portolano/resources/images/ports/A/A_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/A/A_007.jpg b/apps/portolano/resources/images/ports/A/A_007.jpg deleted file mode 100644 index f71f72b..0000000 Binary files a/apps/portolano/resources/images/ports/A/A_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/A/A_009.jpg b/apps/portolano/resources/images/ports/A/A_009.jpg deleted file mode 100644 index 1d35516..0000000 Binary files a/apps/portolano/resources/images/ports/A/A_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_001.jpg b/apps/portolano/resources/images/ports/AB/AB_001.jpg deleted file mode 100644 index 4e24b2a..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_003.jpg b/apps/portolano/resources/images/ports/AB/AB_003.jpg deleted file mode 100644 index 6cea01e..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_005.jpg b/apps/portolano/resources/images/ports/AB/AB_005.jpg deleted file mode 100644 index 17d781a..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_006.jpg b/apps/portolano/resources/images/ports/AB/AB_006.jpg deleted file mode 100644 index ae29677..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_008.jpg b/apps/portolano/resources/images/ports/AB/AB_008.jpg deleted file mode 100644 index c9a9d24..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_009.jpg b/apps/portolano/resources/images/ports/AB/AB_009.jpg deleted file mode 100644 index 74de6d7..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_010.jpg b/apps/portolano/resources/images/ports/AB/AB_010.jpg deleted file mode 100644 index 5da664d..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/AB/AB_011.jpg b/apps/portolano/resources/images/ports/AB/AB_011.jpg deleted file mode 100644 index ad77573..0000000 Binary files a/apps/portolano/resources/images/ports/AB/AB_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/BA/BA_001.jpg b/apps/portolano/resources/images/ports/BA/BA_001.jpg deleted file mode 100644 index 73eb912..0000000 Binary files a/apps/portolano/resources/images/ports/BA/BA_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_002.jpg b/apps/portolano/resources/images/ports/CA/CA_002.jpg deleted file mode 100644 index 1eaa240..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_003.jpg b/apps/portolano/resources/images/ports/CA/CA_003.jpg deleted file mode 100644 index f6da56c..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_006.jpg b/apps/portolano/resources/images/ports/CA/CA_006.jpg deleted file mode 100644 index 057dbf9..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_007.jpg b/apps/portolano/resources/images/ports/CA/CA_007.jpg deleted file mode 100644 index df35c14..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_008.jpg b/apps/portolano/resources/images/ports/CA/CA_008.jpg deleted file mode 100644 index d3c16ae..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_010.jpg b/apps/portolano/resources/images/ports/CA/CA_010.jpg deleted file mode 100644 index b884e2b..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_011.jpg b/apps/portolano/resources/images/ports/CA/CA_011.jpg deleted file mode 100644 index 66fadce..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_012.jpg b/apps/portolano/resources/images/ports/CA/CA_012.jpg deleted file mode 100644 index e3e84d4..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_013.jpg b/apps/portolano/resources/images/ports/CA/CA_013.jpg deleted file mode 100644 index f96fe46..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_014.jpg b/apps/portolano/resources/images/ports/CA/CA_014.jpg deleted file mode 100644 index bdd8b6d..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_015.jpg b/apps/portolano/resources/images/ports/CA/CA_015.jpg deleted file mode 100644 index cfc8e61..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_016.jpg b/apps/portolano/resources/images/ports/CA/CA_016.jpg deleted file mode 100644 index 6fb0e2d..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_017.jpg b/apps/portolano/resources/images/ports/CA/CA_017.jpg deleted file mode 100644 index 9c0c060..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_018.jpg b/apps/portolano/resources/images/ports/CA/CA_018.jpg deleted file mode 100644 index 1e89dab..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_019.jpg b/apps/portolano/resources/images/ports/CA/CA_019.jpg deleted file mode 100644 index 12c1ad6..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_020.jpg b/apps/portolano/resources/images/ports/CA/CA_020.jpg deleted file mode 100644 index ccb54da..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_021.jpg b/apps/portolano/resources/images/ports/CA/CA_021.jpg deleted file mode 100644 index e25c781..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_023.jpg b/apps/portolano/resources/images/ports/CA/CA_023.jpg deleted file mode 100644 index da6bf4f..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_024.jpg b/apps/portolano/resources/images/ports/CA/CA_024.jpg deleted file mode 100644 index 1526f20..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_025.jpg b/apps/portolano/resources/images/ports/CA/CA_025.jpg deleted file mode 100644 index b8ddef8..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_026.jpg b/apps/portolano/resources/images/ports/CA/CA_026.jpg deleted file mode 100644 index 9edc07c..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_027.jpg b/apps/portolano/resources/images/ports/CA/CA_027.jpg deleted file mode 100644 index 2944f06..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_030.jpg b/apps/portolano/resources/images/ports/CA/CA_030.jpg deleted file mode 100644 index 645fd27..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_031.jpg b/apps/portolano/resources/images/ports/CA/CA_031.jpg deleted file mode 100644 index d17f98d..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_032.jpg b/apps/portolano/resources/images/ports/CA/CA_032.jpg deleted file mode 100644 index 0cd4050..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_033.jpg b/apps/portolano/resources/images/ports/CA/CA_033.jpg deleted file mode 100644 index e70bf9f..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_037.jpg b/apps/portolano/resources/images/ports/CA/CA_037.jpg deleted file mode 100644 index 0835751..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_038.jpg b/apps/portolano/resources/images/ports/CA/CA_038.jpg deleted file mode 100644 index f0940cb..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_039.jpg b/apps/portolano/resources/images/ports/CA/CA_039.jpg deleted file mode 100644 index b6c1566..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_040.jpg b/apps/portolano/resources/images/ports/CA/CA_040.jpg deleted file mode 100644 index ca23bae..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_041.jpg b/apps/portolano/resources/images/ports/CA/CA_041.jpg deleted file mode 100644 index 5326dda..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_042.jpg b/apps/portolano/resources/images/ports/CA/CA_042.jpg deleted file mode 100644 index 08e314f..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_043.jpg b/apps/portolano/resources/images/ports/CA/CA_043.jpg deleted file mode 100644 index 7d5c86d..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_044.jpg b/apps/portolano/resources/images/ports/CA/CA_044.jpg deleted file mode 100644 index 9809c36..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_045.jpg b/apps/portolano/resources/images/ports/CA/CA_045.jpg deleted file mode 100644 index 12cacff..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_046.jpg b/apps/portolano/resources/images/ports/CA/CA_046.jpg deleted file mode 100644 index 49e6953..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_046.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_047.jpg b/apps/portolano/resources/images/ports/CA/CA_047.jpg deleted file mode 100644 index 6e871c2..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_047.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_048.jpg b/apps/portolano/resources/images/ports/CA/CA_048.jpg deleted file mode 100644 index e53dc64..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_049.jpg b/apps/portolano/resources/images/ports/CA/CA_049.jpg deleted file mode 100644 index bd8aaac..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_050.jpg b/apps/portolano/resources/images/ports/CA/CA_050.jpg deleted file mode 100644 index e1075ec..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_056.jpg b/apps/portolano/resources/images/ports/CA/CA_056.jpg deleted file mode 100644 index 7b8205a..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_100.jpg b/apps/portolano/resources/images/ports/CA/CA_100.jpg deleted file mode 100644 index 5ed785f..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_100.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_101.jpg b/apps/portolano/resources/images/ports/CA/CA_101.jpg deleted file mode 100644 index 6c97112..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_101.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_102.jpg b/apps/portolano/resources/images/ports/CA/CA_102.jpg deleted file mode 100644 index be50891..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_102.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_103.jpg b/apps/portolano/resources/images/ports/CA/CA_103.jpg deleted file mode 100644 index 8607311..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_103.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_104.jpg b/apps/portolano/resources/images/ports/CA/CA_104.jpg deleted file mode 100644 index a6653fc..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_104.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_105.jpg b/apps/portolano/resources/images/ports/CA/CA_105.jpg deleted file mode 100644 index 2143924..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_105.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_106.jpg b/apps/portolano/resources/images/ports/CA/CA_106.jpg deleted file mode 100644 index c190a07..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_106.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_107.jpg b/apps/portolano/resources/images/ports/CA/CA_107.jpg deleted file mode 100644 index 0690b34..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_107.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_108.jpg b/apps/portolano/resources/images/ports/CA/CA_108.jpg deleted file mode 100644 index 59b45df..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_108.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_109.jpg b/apps/portolano/resources/images/ports/CA/CA_109.jpg deleted file mode 100644 index 872a40d..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_109.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_110.jpg b/apps/portolano/resources/images/ports/CA/CA_110.jpg deleted file mode 100644 index 0009ad6..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_110.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_111.jpg b/apps/portolano/resources/images/ports/CA/CA_111.jpg deleted file mode 100644 index 989538c..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_111.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_112.jpg b/apps/portolano/resources/images/ports/CA/CA_112.jpg deleted file mode 100644 index c0b0fa7..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_112.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_113.jpg b/apps/portolano/resources/images/ports/CA/CA_113.jpg deleted file mode 100644 index 681ce60..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_113.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CA/CA_990.jpg b/apps/portolano/resources/images/ports/CA/CA_990.jpg deleted file mode 100644 index e5647a3..0000000 Binary files a/apps/portolano/resources/images/ports/CA/CA_990.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_003.jpg b/apps/portolano/resources/images/ports/CL/CL_003.jpg deleted file mode 100644 index 9f8cd2b..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_005.jpg b/apps/portolano/resources/images/ports/CL/CL_005.jpg deleted file mode 100644 index f072b28..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_009.jpg b/apps/portolano/resources/images/ports/CL/CL_009.jpg deleted file mode 100644 index 712822e..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_010.jpg b/apps/portolano/resources/images/ports/CL/CL_010.jpg deleted file mode 100644 index 84f844f..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_011.jpg b/apps/portolano/resources/images/ports/CL/CL_011.jpg deleted file mode 100644 index 9513fa0..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_013.jpg b/apps/portolano/resources/images/ports/CL/CL_013.jpg deleted file mode 100644 index d32cfca..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_016.jpg b/apps/portolano/resources/images/ports/CL/CL_016.jpg deleted file mode 100644 index ce2b04c..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_017.jpg b/apps/portolano/resources/images/ports/CL/CL_017.jpg deleted file mode 100644 index a64a81a..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_018.jpg b/apps/portolano/resources/images/ports/CL/CL_018.jpg deleted file mode 100644 index e0d6d7b..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_031.jpg b/apps/portolano/resources/images/ports/CL/CL_031.jpg deleted file mode 100644 index 3392699..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_031A.jpg b/apps/portolano/resources/images/ports/CL/CL_031A.jpg deleted file mode 100644 index 0aede53..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_031A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_031B.jpg b/apps/portolano/resources/images/ports/CL/CL_031B.jpg deleted file mode 100644 index 93664d2..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_031B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_033.jpg b/apps/portolano/resources/images/ports/CL/CL_033.jpg deleted file mode 100644 index d7476ff..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_037.jpg b/apps/portolano/resources/images/ports/CL/CL_037.jpg deleted file mode 100644 index bef96ac..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_044.jpg b/apps/portolano/resources/images/ports/CL/CL_044.jpg deleted file mode 100644 index 214e0e5..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_047.jpg b/apps/portolano/resources/images/ports/CL/CL_047.jpg deleted file mode 100644 index ec83180..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_047.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_050.jpg b/apps/portolano/resources/images/ports/CL/CL_050.jpg deleted file mode 100644 index c59a380..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_051.jpg b/apps/portolano/resources/images/ports/CL/CL_051.jpg deleted file mode 100644 index 4048181..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_052.jpg b/apps/portolano/resources/images/ports/CL/CL_052.jpg deleted file mode 100644 index 8e62bc6..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_053.jpg b/apps/portolano/resources/images/ports/CL/CL_053.jpg deleted file mode 100644 index 6a93905..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_054.jpg b/apps/portolano/resources/images/ports/CL/CL_054.jpg deleted file mode 100644 index 24f0501..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_054.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_055.jpg b/apps/portolano/resources/images/ports/CL/CL_055.jpg deleted file mode 100644 index 3a50e99..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_055.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CL/CL_060.jpg b/apps/portolano/resources/images/ports/CL/CL_060.jpg deleted file mode 100644 index eca2b87..0000000 Binary files a/apps/portolano/resources/images/ports/CL/CL_060.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_001.jpg b/apps/portolano/resources/images/ports/CR/CR_001.jpg deleted file mode 100644 index 3595baf..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_002.jpg b/apps/portolano/resources/images/ports/CR/CR_002.jpg deleted file mode 100644 index 79b4d87..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_003.jpg b/apps/portolano/resources/images/ports/CR/CR_003.jpg deleted file mode 100644 index dfb85be..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_004.jpg b/apps/portolano/resources/images/ports/CR/CR_004.jpg deleted file mode 100644 index ce3c495..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_005.jpg b/apps/portolano/resources/images/ports/CR/CR_005.jpg deleted file mode 100644 index d9ad287..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_006.jpg b/apps/portolano/resources/images/ports/CR/CR_006.jpg deleted file mode 100644 index 3852432..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_007.jpg b/apps/portolano/resources/images/ports/CR/CR_007.jpg deleted file mode 100644 index 1335f1c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_008.jpg b/apps/portolano/resources/images/ports/CR/CR_008.jpg deleted file mode 100644 index 3804dc5..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_009.jpg b/apps/portolano/resources/images/ports/CR/CR_009.jpg deleted file mode 100644 index 5db49ac..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_010.jpg b/apps/portolano/resources/images/ports/CR/CR_010.jpg deleted file mode 100644 index 6af2de8..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_011.jpg b/apps/portolano/resources/images/ports/CR/CR_011.jpg deleted file mode 100644 index 38fbe19..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_012.jpg b/apps/portolano/resources/images/ports/CR/CR_012.jpg deleted file mode 100644 index 88f4e91..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_013.jpg b/apps/portolano/resources/images/ports/CR/CR_013.jpg deleted file mode 100644 index 46614c7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_014.jpg b/apps/portolano/resources/images/ports/CR/CR_014.jpg deleted file mode 100644 index c299801..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_015.jpg b/apps/portolano/resources/images/ports/CR/CR_015.jpg deleted file mode 100644 index a3a8215..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_016.jpg b/apps/portolano/resources/images/ports/CR/CR_016.jpg deleted file mode 100644 index 5ff7b3a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_017.jpg b/apps/portolano/resources/images/ports/CR/CR_017.jpg deleted file mode 100644 index 2d48659..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_018.jpg b/apps/portolano/resources/images/ports/CR/CR_018.jpg deleted file mode 100644 index 5a3d238..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_019.jpg b/apps/portolano/resources/images/ports/CR/CR_019.jpg deleted file mode 100644 index a6bd9ea..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_020.jpg b/apps/portolano/resources/images/ports/CR/CR_020.jpg deleted file mode 100644 index afe5d81..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_021.jpg b/apps/portolano/resources/images/ports/CR/CR_021.jpg deleted file mode 100644 index ccc1379..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_022.jpg b/apps/portolano/resources/images/ports/CR/CR_022.jpg deleted file mode 100644 index 105ae0c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_023.jpg b/apps/portolano/resources/images/ports/CR/CR_023.jpg deleted file mode 100644 index 122acf8..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_024.jpg b/apps/portolano/resources/images/ports/CR/CR_024.jpg deleted file mode 100644 index dce6294..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_025.jpg b/apps/portolano/resources/images/ports/CR/CR_025.jpg deleted file mode 100644 index 79a7b56..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_026.jpg b/apps/portolano/resources/images/ports/CR/CR_026.jpg deleted file mode 100644 index 2428cf6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_027.jpg b/apps/portolano/resources/images/ports/CR/CR_027.jpg deleted file mode 100644 index 12751dd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_028.jpg b/apps/portolano/resources/images/ports/CR/CR_028.jpg deleted file mode 100644 index 6df3cd1..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_029.jpg b/apps/portolano/resources/images/ports/CR/CR_029.jpg deleted file mode 100644 index 297fbd4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_030.jpg b/apps/portolano/resources/images/ports/CR/CR_030.jpg deleted file mode 100644 index 1b497eb..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_031.jpg b/apps/portolano/resources/images/ports/CR/CR_031.jpg deleted file mode 100644 index 26766c7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_032.jpg b/apps/portolano/resources/images/ports/CR/CR_032.jpg deleted file mode 100644 index c2150da..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_033.jpg b/apps/portolano/resources/images/ports/CR/CR_033.jpg deleted file mode 100644 index aa559b4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_034.jpg b/apps/portolano/resources/images/ports/CR/CR_034.jpg deleted file mode 100644 index ceeffe3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_035.jpg b/apps/portolano/resources/images/ports/CR/CR_035.jpg deleted file mode 100644 index 876d11a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_036.jpg b/apps/portolano/resources/images/ports/CR/CR_036.jpg deleted file mode 100644 index 44bf70d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_036.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_037.jpg b/apps/portolano/resources/images/ports/CR/CR_037.jpg deleted file mode 100644 index d328248..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_038.jpg b/apps/portolano/resources/images/ports/CR/CR_038.jpg deleted file mode 100644 index 2b1d087..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_039.jpg b/apps/portolano/resources/images/ports/CR/CR_039.jpg deleted file mode 100644 index b4072b5..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_040.jpg b/apps/portolano/resources/images/ports/CR/CR_040.jpg deleted file mode 100644 index 3cf2de3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_041.jpg b/apps/portolano/resources/images/ports/CR/CR_041.jpg deleted file mode 100644 index 241e944..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_042.jpg b/apps/portolano/resources/images/ports/CR/CR_042.jpg deleted file mode 100644 index 3c50ff4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_043.jpg b/apps/portolano/resources/images/ports/CR/CR_043.jpg deleted file mode 100644 index bc47d3b..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_044.jpg b/apps/portolano/resources/images/ports/CR/CR_044.jpg deleted file mode 100644 index 673d877..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_045.jpg b/apps/portolano/resources/images/ports/CR/CR_045.jpg deleted file mode 100644 index e4e921e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_046.jpg b/apps/portolano/resources/images/ports/CR/CR_046.jpg deleted file mode 100644 index d22f01c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_046.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_048.jpg b/apps/portolano/resources/images/ports/CR/CR_048.jpg deleted file mode 100644 index cfb27cd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_049.jpg b/apps/portolano/resources/images/ports/CR/CR_049.jpg deleted file mode 100644 index 7353600..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_050.jpg b/apps/portolano/resources/images/ports/CR/CR_050.jpg deleted file mode 100644 index bbe0c03..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_051.jpg b/apps/portolano/resources/images/ports/CR/CR_051.jpg deleted file mode 100644 index e5465d7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_052.jpg b/apps/portolano/resources/images/ports/CR/CR_052.jpg deleted file mode 100644 index 89700f0..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_053.jpg b/apps/portolano/resources/images/ports/CR/CR_053.jpg deleted file mode 100644 index 8e84c5c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_054.jpg b/apps/portolano/resources/images/ports/CR/CR_054.jpg deleted file mode 100644 index 35b8ec4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_054.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_055.jpg b/apps/portolano/resources/images/ports/CR/CR_055.jpg deleted file mode 100644 index ec5f6c6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_055.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_056.jpg b/apps/portolano/resources/images/ports/CR/CR_056.jpg deleted file mode 100644 index 1f7e86f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_057.jpg b/apps/portolano/resources/images/ports/CR/CR_057.jpg deleted file mode 100644 index 35c46c7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_058.jpg b/apps/portolano/resources/images/ports/CR/CR_058.jpg deleted file mode 100644 index 9938613..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_058.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_059.jpg b/apps/portolano/resources/images/ports/CR/CR_059.jpg deleted file mode 100644 index 39a4dd4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_059.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_060.jpg b/apps/portolano/resources/images/ports/CR/CR_060.jpg deleted file mode 100644 index e69da3d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_060.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_061.jpg b/apps/portolano/resources/images/ports/CR/CR_061.jpg deleted file mode 100644 index 3a0755d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_061.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_062.jpg b/apps/portolano/resources/images/ports/CR/CR_062.jpg deleted file mode 100644 index bbcddf9..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_062.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_063.jpg b/apps/portolano/resources/images/ports/CR/CR_063.jpg deleted file mode 100644 index d0aa28f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_063.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_064.jpg b/apps/portolano/resources/images/ports/CR/CR_064.jpg deleted file mode 100644 index 504441d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_064.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_065.jpg b/apps/portolano/resources/images/ports/CR/CR_065.jpg deleted file mode 100644 index 0f50594..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_065.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_068.jpg b/apps/portolano/resources/images/ports/CR/CR_068.jpg deleted file mode 100644 index 9dd3552..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_068.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_070.jpg b/apps/portolano/resources/images/ports/CR/CR_070.jpg deleted file mode 100644 index 358fcd3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_070.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_071.jpg b/apps/portolano/resources/images/ports/CR/CR_071.jpg deleted file mode 100644 index 1f7e86f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_071.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_076.jpg b/apps/portolano/resources/images/ports/CR/CR_076.jpg deleted file mode 100644 index b111edd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_076.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_077.jpg b/apps/portolano/resources/images/ports/CR/CR_077.jpg deleted file mode 100644 index b111edd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_077.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_078.jpg b/apps/portolano/resources/images/ports/CR/CR_078.jpg deleted file mode 100644 index b111edd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_078.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_092.jpg b/apps/portolano/resources/images/ports/CR/CR_092.jpg deleted file mode 100644 index 79a7b56..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_092.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_096.jpg b/apps/portolano/resources/images/ports/CR/CR_096.jpg deleted file mode 100644 index ccc1379..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_096.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_103.jpg b/apps/portolano/resources/images/ports/CR/CR_103.jpg deleted file mode 100644 index a837566..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_103.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_104.jpg b/apps/portolano/resources/images/ports/CR/CR_104.jpg deleted file mode 100644 index 36d193f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_104.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_107.jpg b/apps/portolano/resources/images/ports/CR/CR_107.jpg deleted file mode 100644 index 7a48bb6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_107.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_109.jpg b/apps/portolano/resources/images/ports/CR/CR_109.jpg deleted file mode 100644 index 5920dca..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_109.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_111.jpg b/apps/portolano/resources/images/ports/CR/CR_111.jpg deleted file mode 100644 index c3e5bd6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_111.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_113.jpg b/apps/portolano/resources/images/ports/CR/CR_113.jpg deleted file mode 100644 index be88d04..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_113.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_118.jpg b/apps/portolano/resources/images/ports/CR/CR_118.jpg deleted file mode 100644 index 61453c8..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_118.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_123.jpg b/apps/portolano/resources/images/ports/CR/CR_123.jpg deleted file mode 100644 index 9c81014..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_123.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_125.jpg b/apps/portolano/resources/images/ports/CR/CR_125.jpg deleted file mode 100644 index c220bc4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_125.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_127.jpg b/apps/portolano/resources/images/ports/CR/CR_127.jpg deleted file mode 100644 index 17b6956..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_127.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_136.jpg b/apps/portolano/resources/images/ports/CR/CR_136.jpg deleted file mode 100644 index 4dcffe3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_136.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_141.jpg b/apps/portolano/resources/images/ports/CR/CR_141.jpg deleted file mode 100644 index 094275f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_141.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_142.jpg b/apps/portolano/resources/images/ports/CR/CR_142.jpg deleted file mode 100644 index a746302..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_142.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_148.jpg b/apps/portolano/resources/images/ports/CR/CR_148.jpg deleted file mode 100644 index 170940b..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_148.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_150.jpg b/apps/portolano/resources/images/ports/CR/CR_150.jpg deleted file mode 100644 index f92d779..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_150.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_153.jpg b/apps/portolano/resources/images/ports/CR/CR_153.jpg deleted file mode 100644 index 964ea31..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_153.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_154.jpg b/apps/portolano/resources/images/ports/CR/CR_154.jpg deleted file mode 100644 index 4951801..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_154.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_157.jpg b/apps/portolano/resources/images/ports/CR/CR_157.jpg deleted file mode 100644 index 1480f2d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_157.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_158.jpg b/apps/portolano/resources/images/ports/CR/CR_158.jpg deleted file mode 100644 index 54fe203..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_158.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_159.jpg b/apps/portolano/resources/images/ports/CR/CR_159.jpg deleted file mode 100644 index b41ef5e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_159.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_164.jpg b/apps/portolano/resources/images/ports/CR/CR_164.jpg deleted file mode 100644 index c1844b5..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_164.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_165.jpg b/apps/portolano/resources/images/ports/CR/CR_165.jpg deleted file mode 100644 index b78aa5c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_165.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_169.jpg b/apps/portolano/resources/images/ports/CR/CR_169.jpg deleted file mode 100644 index bc0fec5..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_169.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_172.jpg b/apps/portolano/resources/images/ports/CR/CR_172.jpg deleted file mode 100644 index f41629a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_172.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_173.jpg b/apps/portolano/resources/images/ports/CR/CR_173.jpg deleted file mode 100644 index 751f40a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_173.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_176.jpg b/apps/portolano/resources/images/ports/CR/CR_176.jpg deleted file mode 100644 index 29de933..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_176.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_181.jpg b/apps/portolano/resources/images/ports/CR/CR_181.jpg deleted file mode 100644 index 68df505..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_181.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_183.jpg b/apps/portolano/resources/images/ports/CR/CR_183.jpg deleted file mode 100644 index 070cda0..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_183.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_184.jpg b/apps/portolano/resources/images/ports/CR/CR_184.jpg deleted file mode 100644 index 1b35e8a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_184.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_187.jpg b/apps/portolano/resources/images/ports/CR/CR_187.jpg deleted file mode 100644 index 72399d1..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_187.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_188.jpg b/apps/portolano/resources/images/ports/CR/CR_188.jpg deleted file mode 100644 index 81b672d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_188.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_189.jpg b/apps/portolano/resources/images/ports/CR/CR_189.jpg deleted file mode 100644 index 1060550..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_189.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_190.jpg b/apps/portolano/resources/images/ports/CR/CR_190.jpg deleted file mode 100644 index fb32b84..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_190.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_194.jpg b/apps/portolano/resources/images/ports/CR/CR_194.jpg deleted file mode 100644 index 78ad3e7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_194.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_197.jpg b/apps/portolano/resources/images/ports/CR/CR_197.jpg deleted file mode 100644 index cf2c4b3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_197.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_198.jpg b/apps/portolano/resources/images/ports/CR/CR_198.jpg deleted file mode 100644 index 536bcbc..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_198.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_200.jpg b/apps/portolano/resources/images/ports/CR/CR_200.jpg deleted file mode 100644 index 693bc8f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_200.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_204.jpg b/apps/portolano/resources/images/ports/CR/CR_204.jpg deleted file mode 100644 index 11cf53e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_204.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_205.jpg b/apps/portolano/resources/images/ports/CR/CR_205.jpg deleted file mode 100644 index 1c563dd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_205.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_206.jpg b/apps/portolano/resources/images/ports/CR/CR_206.jpg deleted file mode 100644 index 6d79ab4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_206.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_210.jpg b/apps/portolano/resources/images/ports/CR/CR_210.jpg deleted file mode 100644 index 23a53bf..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_210.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_213.jpg b/apps/portolano/resources/images/ports/CR/CR_213.jpg deleted file mode 100644 index 1c5e2b9..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_213.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_214.jpg b/apps/portolano/resources/images/ports/CR/CR_214.jpg deleted file mode 100644 index 115abf7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_214.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_222.jpg b/apps/portolano/resources/images/ports/CR/CR_222.jpg deleted file mode 100644 index a5d3ed8..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_222.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_223.jpg b/apps/portolano/resources/images/ports/CR/CR_223.jpg deleted file mode 100644 index c9500fa..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_223.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_225.jpg b/apps/portolano/resources/images/ports/CR/CR_225.jpg deleted file mode 100644 index 41338ee..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_225.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_230.jpg b/apps/portolano/resources/images/ports/CR/CR_230.jpg deleted file mode 100644 index bb64ffa..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_230.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_235.jpg b/apps/portolano/resources/images/ports/CR/CR_235.jpg deleted file mode 100644 index a2fd0c7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_235.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_243.jpg b/apps/portolano/resources/images/ports/CR/CR_243.jpg deleted file mode 100644 index 07eb62e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_243.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_245.jpg b/apps/portolano/resources/images/ports/CR/CR_245.jpg deleted file mode 100644 index dd4bff7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_245.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_246.jpg b/apps/portolano/resources/images/ports/CR/CR_246.jpg deleted file mode 100644 index 8a6f688..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_246.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_248.jpg b/apps/portolano/resources/images/ports/CR/CR_248.jpg deleted file mode 100644 index 884f1b7..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_248.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_250.jpg b/apps/portolano/resources/images/ports/CR/CR_250.jpg deleted file mode 100644 index 1d6c747..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_250.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_252.jpg b/apps/portolano/resources/images/ports/CR/CR_252.jpg deleted file mode 100644 index 0f86a53..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_252.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_254.jpg b/apps/portolano/resources/images/ports/CR/CR_254.jpg deleted file mode 100644 index 5b1aba6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_254.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_257.jpg b/apps/portolano/resources/images/ports/CR/CR_257.jpg deleted file mode 100644 index fe97ffe..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_257.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_258.jpg b/apps/portolano/resources/images/ports/CR/CR_258.jpg deleted file mode 100644 index d5e847a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_258.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_261.jpg b/apps/portolano/resources/images/ports/CR/CR_261.jpg deleted file mode 100644 index aee6ead..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_261.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_264.jpg b/apps/portolano/resources/images/ports/CR/CR_264.jpg deleted file mode 100644 index 0dd76bd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_264.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_266.jpg b/apps/portolano/resources/images/ports/CR/CR_266.jpg deleted file mode 100644 index 9532d9a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_266.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_269.jpg b/apps/portolano/resources/images/ports/CR/CR_269.jpg deleted file mode 100644 index 21176b5..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_269.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_272.jpg b/apps/portolano/resources/images/ports/CR/CR_272.jpg deleted file mode 100644 index 2a2ec6d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_272.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_276.jpg b/apps/portolano/resources/images/ports/CR/CR_276.jpg deleted file mode 100644 index a0a411c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_276.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_277.jpg b/apps/portolano/resources/images/ports/CR/CR_277.jpg deleted file mode 100644 index 157efae..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_277.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_279.jpg b/apps/portolano/resources/images/ports/CR/CR_279.jpg deleted file mode 100644 index adf8b6d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_279.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_287.jpg b/apps/portolano/resources/images/ports/CR/CR_287.jpg deleted file mode 100644 index 2b84115..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_287.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_288.jpg b/apps/portolano/resources/images/ports/CR/CR_288.jpg deleted file mode 100644 index 6988f64..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_288.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_298.jpg b/apps/portolano/resources/images/ports/CR/CR_298.jpg deleted file mode 100644 index 9b960d1..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_298.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_302.jpg b/apps/portolano/resources/images/ports/CR/CR_302.jpg deleted file mode 100644 index fb80627..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_302.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_306.jpg b/apps/portolano/resources/images/ports/CR/CR_306.jpg deleted file mode 100644 index d644f7f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_306.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_307.jpg b/apps/portolano/resources/images/ports/CR/CR_307.jpg deleted file mode 100644 index 2f1b1df..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_307.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_310.jpg b/apps/portolano/resources/images/ports/CR/CR_310.jpg deleted file mode 100644 index ffc6bdc..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_310.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_311.jpg b/apps/portolano/resources/images/ports/CR/CR_311.jpg deleted file mode 100644 index 3f93458..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_311.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_315.jpg b/apps/portolano/resources/images/ports/CR/CR_315.jpg deleted file mode 100644 index 91d8900..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_315.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_317.jpg b/apps/portolano/resources/images/ports/CR/CR_317.jpg deleted file mode 100644 index 5a32d02..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_317.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_320.jpg b/apps/portolano/resources/images/ports/CR/CR_320.jpg deleted file mode 100644 index b724d0b..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_320.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_322.jpg b/apps/portolano/resources/images/ports/CR/CR_322.jpg deleted file mode 100644 index bed2211..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_322.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_323.jpg b/apps/portolano/resources/images/ports/CR/CR_323.jpg deleted file mode 100644 index 9906a9b..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_323.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_324.jpg b/apps/portolano/resources/images/ports/CR/CR_324.jpg deleted file mode 100644 index 92e9903..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_324.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_325.jpg b/apps/portolano/resources/images/ports/CR/CR_325.jpg deleted file mode 100644 index 28a0c4d..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_325.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_327.jpg b/apps/portolano/resources/images/ports/CR/CR_327.jpg deleted file mode 100644 index bfe6b92..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_327.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_328.jpg b/apps/portolano/resources/images/ports/CR/CR_328.jpg deleted file mode 100644 index 97d7c5e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_328.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_330.jpg b/apps/portolano/resources/images/ports/CR/CR_330.jpg deleted file mode 100644 index 3ca3df2..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_330.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_331.jpg b/apps/portolano/resources/images/ports/CR/CR_331.jpg deleted file mode 100644 index 37149d6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_331.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_337.jpg b/apps/portolano/resources/images/ports/CR/CR_337.jpg deleted file mode 100644 index 4583cd8..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_337.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_339.jpg b/apps/portolano/resources/images/ports/CR/CR_339.jpg deleted file mode 100644 index 0e9b0ce..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_339.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_340.jpg b/apps/portolano/resources/images/ports/CR/CR_340.jpg deleted file mode 100644 index 249153f..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_340.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_343.jpg b/apps/portolano/resources/images/ports/CR/CR_343.jpg deleted file mode 100644 index 5d224fb..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_343.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_345.jpg b/apps/portolano/resources/images/ports/CR/CR_345.jpg deleted file mode 100644 index 6de1340..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_345.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_346.jpg b/apps/portolano/resources/images/ports/CR/CR_346.jpg deleted file mode 100644 index fcbf4e0..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_346.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_348.jpg b/apps/portolano/resources/images/ports/CR/CR_348.jpg deleted file mode 100644 index 795e921..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_348.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_350.jpg b/apps/portolano/resources/images/ports/CR/CR_350.jpg deleted file mode 100644 index 5f37e85..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_350.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_351.jpg b/apps/portolano/resources/images/ports/CR/CR_351.jpg deleted file mode 100644 index 2d63739..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_351.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_352.jpg b/apps/portolano/resources/images/ports/CR/CR_352.jpg deleted file mode 100644 index 50ed272..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_352.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_353.jpg b/apps/portolano/resources/images/ports/CR/CR_353.jpg deleted file mode 100644 index 8003733..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_353.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_357.jpg b/apps/portolano/resources/images/ports/CR/CR_357.jpg deleted file mode 100644 index 7fc41a1..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_357.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_358.jpg b/apps/portolano/resources/images/ports/CR/CR_358.jpg deleted file mode 100644 index da6aa7e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_358.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_359.jpg b/apps/portolano/resources/images/ports/CR/CR_359.jpg deleted file mode 100644 index ff2737a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_359.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_360.jpg b/apps/portolano/resources/images/ports/CR/CR_360.jpg deleted file mode 100644 index 3eb9f80..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_360.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_361.jpg b/apps/portolano/resources/images/ports/CR/CR_361.jpg deleted file mode 100644 index 657c4a4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_361.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_362.jpg b/apps/portolano/resources/images/ports/CR/CR_362.jpg deleted file mode 100644 index bd6a5ed..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_362.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_363.jpg b/apps/portolano/resources/images/ports/CR/CR_363.jpg deleted file mode 100644 index aba34bf..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_363.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_364.jpg b/apps/portolano/resources/images/ports/CR/CR_364.jpg deleted file mode 100644 index 67c2e74..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_364.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_366.jpg b/apps/portolano/resources/images/ports/CR/CR_366.jpg deleted file mode 100644 index a6b1ef3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_366.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_370.jpg b/apps/portolano/resources/images/ports/CR/CR_370.jpg deleted file mode 100644 index d0050f2..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_370.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_372.jpg b/apps/portolano/resources/images/ports/CR/CR_372.jpg deleted file mode 100644 index 1a587b2..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_372.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_373.jpg b/apps/portolano/resources/images/ports/CR/CR_373.jpg deleted file mode 100644 index c23170c..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_373.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_376.jpg b/apps/portolano/resources/images/ports/CR/CR_376.jpg deleted file mode 100644 index 73eaee5..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_376.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_377.jpg b/apps/portolano/resources/images/ports/CR/CR_377.jpg deleted file mode 100644 index c9ac9bd..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_377.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_378.jpg b/apps/portolano/resources/images/ports/CR/CR_378.jpg deleted file mode 100644 index c80b1e9..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_378.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_379.jpg b/apps/portolano/resources/images/ports/CR/CR_379.jpg deleted file mode 100644 index d099ffb..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_379.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_380.jpg b/apps/portolano/resources/images/ports/CR/CR_380.jpg deleted file mode 100644 index 08a3723..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_380.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_382.jpg b/apps/portolano/resources/images/ports/CR/CR_382.jpg deleted file mode 100644 index 157ff1a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_382.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_384.jpg b/apps/portolano/resources/images/ports/CR/CR_384.jpg deleted file mode 100644 index 09c05ee..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_384.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_385.jpg b/apps/portolano/resources/images/ports/CR/CR_385.jpg deleted file mode 100644 index d3dcaf4..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_385.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_386.jpg b/apps/portolano/resources/images/ports/CR/CR_386.jpg deleted file mode 100644 index eb42433..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_386.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_389.jpg b/apps/portolano/resources/images/ports/CR/CR_389.jpg deleted file mode 100644 index 6cd13ca..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_389.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_391.jpg b/apps/portolano/resources/images/ports/CR/CR_391.jpg deleted file mode 100644 index 751564b..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_391.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_392.jpg b/apps/portolano/resources/images/ports/CR/CR_392.jpg deleted file mode 100644 index a718c2e..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_392.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_394.jpg b/apps/portolano/resources/images/ports/CR/CR_394.jpg deleted file mode 100644 index c903fe6..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_394.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_395.jpg b/apps/portolano/resources/images/ports/CR/CR_395.jpg deleted file mode 100644 index 3d9340a..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_395.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_397.jpg b/apps/portolano/resources/images/ports/CR/CR_397.jpg deleted file mode 100644 index f8bec6b..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_397.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_398.jpg b/apps/portolano/resources/images/ports/CR/CR_398.jpg deleted file mode 100644 index 5f1afe3..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_398.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/CR/CR_399.jpg b/apps/portolano/resources/images/ports/CR/CR_399.jpg deleted file mode 100644 index a49f588..0000000 Binary files a/apps/portolano/resources/images/ports/CR/CR_399.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_002.jpg b/apps/portolano/resources/images/ports/FR/FR_002.jpg deleted file mode 100644 index 1ee3b01..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_002A.jpg b/apps/portolano/resources/images/ports/FR/FR_002A.jpg deleted file mode 100644 index 25bd9be..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_002A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_002B.jpg b/apps/portolano/resources/images/ports/FR/FR_002B.jpg deleted file mode 100644 index 7cf07a0..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_002B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_002C.jpg b/apps/portolano/resources/images/ports/FR/FR_002C.jpg deleted file mode 100644 index ef92253..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_002C.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_003.jpg b/apps/portolano/resources/images/ports/FR/FR_003.jpg deleted file mode 100644 index 3886f95..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_004A.jpg b/apps/portolano/resources/images/ports/FR/FR_004A.jpg deleted file mode 100644 index 112fb4e..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_004A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_004B.jpg b/apps/portolano/resources/images/ports/FR/FR_004B.jpg deleted file mode 100644 index d0fade4..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_004B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_004C.jpg b/apps/portolano/resources/images/ports/FR/FR_004C.jpg deleted file mode 100644 index d0fade4..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_004C.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_006.jpg b/apps/portolano/resources/images/ports/FR/FR_006.jpg deleted file mode 100644 index 5a6047e..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_007.jpg b/apps/portolano/resources/images/ports/FR/FR_007.jpg deleted file mode 100644 index 5e06f92..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_010.jpg b/apps/portolano/resources/images/ports/FR/FR_010.jpg deleted file mode 100644 index d0bb1ab..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_011.jpg b/apps/portolano/resources/images/ports/FR/FR_011.jpg deleted file mode 100644 index 2a88929..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_012.jpg b/apps/portolano/resources/images/ports/FR/FR_012.jpg deleted file mode 100644 index 623e057..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_013.jpg b/apps/portolano/resources/images/ports/FR/FR_013.jpg deleted file mode 100644 index 84d04c1..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_014.jpg b/apps/portolano/resources/images/ports/FR/FR_014.jpg deleted file mode 100644 index e582a82..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_015.jpg b/apps/portolano/resources/images/ports/FR/FR_015.jpg deleted file mode 100644 index 549d26e..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_016.jpg b/apps/portolano/resources/images/ports/FR/FR_016.jpg deleted file mode 100644 index 3b50f54..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_017.jpg b/apps/portolano/resources/images/ports/FR/FR_017.jpg deleted file mode 100644 index bed2c7c..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_019.jpg b/apps/portolano/resources/images/ports/FR/FR_019.jpg deleted file mode 100644 index b69d740..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_020.jpg b/apps/portolano/resources/images/ports/FR/FR_020.jpg deleted file mode 100644 index 35e78a8..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_021.jpg b/apps/portolano/resources/images/ports/FR/FR_021.jpg deleted file mode 100644 index b12cfd2..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_022.jpg b/apps/portolano/resources/images/ports/FR/FR_022.jpg deleted file mode 100644 index 5c7e853..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_024.jpg b/apps/portolano/resources/images/ports/FR/FR_024.jpg deleted file mode 100644 index 414cc8a..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_025.jpg b/apps/portolano/resources/images/ports/FR/FR_025.jpg deleted file mode 100644 index 03afdef..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_027.jpg b/apps/portolano/resources/images/ports/FR/FR_027.jpg deleted file mode 100644 index a47b787..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_030.jpg b/apps/portolano/resources/images/ports/FR/FR_030.jpg deleted file mode 100644 index c4b368d..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_031.jpg b/apps/portolano/resources/images/ports/FR/FR_031.jpg deleted file mode 100644 index 836b529..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_036.jpg b/apps/portolano/resources/images/ports/FR/FR_036.jpg deleted file mode 100644 index 1ab4970..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_036.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_038.jpg b/apps/portolano/resources/images/ports/FR/FR_038.jpg deleted file mode 100644 index c6a71ef..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_039.jpg b/apps/portolano/resources/images/ports/FR/FR_039.jpg deleted file mode 100644 index 5d3dfeb..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_041.jpg b/apps/portolano/resources/images/ports/FR/FR_041.jpg deleted file mode 100644 index 191e9b3..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_042.jpg b/apps/portolano/resources/images/ports/FR/FR_042.jpg deleted file mode 100644 index 706bfa0..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_043.jpg b/apps/portolano/resources/images/ports/FR/FR_043.jpg deleted file mode 100644 index a6265d1..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_047.jpg b/apps/portolano/resources/images/ports/FR/FR_047.jpg deleted file mode 100644 index 43ec92a..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_047.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_050.jpg b/apps/portolano/resources/images/ports/FR/FR_050.jpg deleted file mode 100644 index d615eea..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_051.jpg b/apps/portolano/resources/images/ports/FR/FR_051.jpg deleted file mode 100644 index 1f28391..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_052.jpg b/apps/portolano/resources/images/ports/FR/FR_052.jpg deleted file mode 100644 index a7c2787..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_053.jpg b/apps/portolano/resources/images/ports/FR/FR_053.jpg deleted file mode 100644 index a3df61d..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_054.jpg b/apps/portolano/resources/images/ports/FR/FR_054.jpg deleted file mode 100644 index 7413ab8..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_054.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_055.jpg b/apps/portolano/resources/images/ports/FR/FR_055.jpg deleted file mode 100644 index ebde50c..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_055.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_056.jpg b/apps/portolano/resources/images/ports/FR/FR_056.jpg deleted file mode 100644 index 4b7cbb2..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_057.jpg b/apps/portolano/resources/images/ports/FR/FR_057.jpg deleted file mode 100644 index 0bc1561..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_059.jpg b/apps/portolano/resources/images/ports/FR/FR_059.jpg deleted file mode 100644 index d20117c..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_059.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_060.jpg b/apps/portolano/resources/images/ports/FR/FR_060.jpg deleted file mode 100644 index 92e2208..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_060.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_061.jpg b/apps/portolano/resources/images/ports/FR/FR_061.jpg deleted file mode 100644 index 6e8bc72..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_061.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_063.jpg b/apps/portolano/resources/images/ports/FR/FR_063.jpg deleted file mode 100644 index 9613bd9..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_063.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_064.jpg b/apps/portolano/resources/images/ports/FR/FR_064.jpg deleted file mode 100644 index 90f8f45..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_064.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_990.jpg b/apps/portolano/resources/images/ports/FR/FR_990.jpg deleted file mode 100644 index 282e972..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_990.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_991.jpg b/apps/portolano/resources/images/ports/FR/FR_991.jpg deleted file mode 100644 index 92be9af..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_991.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_992.jpg b/apps/portolano/resources/images/ports/FR/FR_992.jpg deleted file mode 100644 index 824d0b8..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_992.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/FR/FR_993.jpg b/apps/portolano/resources/images/ports/FR/FR_993.jpg deleted file mode 100644 index d0fade4..0000000 Binary files a/apps/portolano/resources/images/ports/FR/FR_993.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_001.jpg b/apps/portolano/resources/images/ports/GR/GR_001.jpg deleted file mode 100644 index 12febcf..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_002.jpg b/apps/portolano/resources/images/ports/GR/GR_002.jpg deleted file mode 100644 index 85b5a29..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_003.jpg b/apps/portolano/resources/images/ports/GR/GR_003.jpg deleted file mode 100644 index 5b4de59..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_005.jpg b/apps/portolano/resources/images/ports/GR/GR_005.jpg deleted file mode 100644 index e690e6d..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_006.jpg b/apps/portolano/resources/images/ports/GR/GR_006.jpg deleted file mode 100644 index fb90ad4..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_007.jpg b/apps/portolano/resources/images/ports/GR/GR_007.jpg deleted file mode 100644 index fb2424a..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_008.jpg b/apps/portolano/resources/images/ports/GR/GR_008.jpg deleted file mode 100644 index 19aa047..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_009.jpg b/apps/portolano/resources/images/ports/GR/GR_009.jpg deleted file mode 100644 index cea43be..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_010.jpg b/apps/portolano/resources/images/ports/GR/GR_010.jpg deleted file mode 100644 index cbc5529..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_011.jpg b/apps/portolano/resources/images/ports/GR/GR_011.jpg deleted file mode 100644 index 7ad2d85..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_012.jpg b/apps/portolano/resources/images/ports/GR/GR_012.jpg deleted file mode 100644 index 2016dc7..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_013.jpg b/apps/portolano/resources/images/ports/GR/GR_013.jpg deleted file mode 100644 index 1c36f30..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_014.jpg b/apps/portolano/resources/images/ports/GR/GR_014.jpg deleted file mode 100644 index bf852f6..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_015.jpg b/apps/portolano/resources/images/ports/GR/GR_015.jpg deleted file mode 100644 index 41778a5..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_016.jpg b/apps/portolano/resources/images/ports/GR/GR_016.jpg deleted file mode 100644 index 18e17c6..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_017.jpg b/apps/portolano/resources/images/ports/GR/GR_017.jpg deleted file mode 100644 index 6a2ddbd..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_018.jpg b/apps/portolano/resources/images/ports/GR/GR_018.jpg deleted file mode 100644 index d0e8afb..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_019.jpg b/apps/portolano/resources/images/ports/GR/GR_019.jpg deleted file mode 100644 index c52793d..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_020.jpg b/apps/portolano/resources/images/ports/GR/GR_020.jpg deleted file mode 100644 index ca76116..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_021.jpg b/apps/portolano/resources/images/ports/GR/GR_021.jpg deleted file mode 100644 index b173cb8..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_022.jpg b/apps/portolano/resources/images/ports/GR/GR_022.jpg deleted file mode 100644 index 11d8785..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_023.jpg b/apps/portolano/resources/images/ports/GR/GR_023.jpg deleted file mode 100644 index 497573f..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_024.jpg b/apps/portolano/resources/images/ports/GR/GR_024.jpg deleted file mode 100644 index 65fccf6..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_025.jpg b/apps/portolano/resources/images/ports/GR/GR_025.jpg deleted file mode 100644 index 03d4cfa..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_026.jpg b/apps/portolano/resources/images/ports/GR/GR_026.jpg deleted file mode 100644 index d2a639e..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_027.jpg b/apps/portolano/resources/images/ports/GR/GR_027.jpg deleted file mode 100644 index e50fb5f..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_028.jpg b/apps/portolano/resources/images/ports/GR/GR_028.jpg deleted file mode 100644 index 721656c..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_029.jpg b/apps/portolano/resources/images/ports/GR/GR_029.jpg deleted file mode 100644 index 43adad1..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_030.jpg b/apps/portolano/resources/images/ports/GR/GR_030.jpg deleted file mode 100644 index 5f4bb72..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_031.jpg b/apps/portolano/resources/images/ports/GR/GR_031.jpg deleted file mode 100644 index 2694989..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_032.jpg b/apps/portolano/resources/images/ports/GR/GR_032.jpg deleted file mode 100644 index d6dde84..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_033.jpg b/apps/portolano/resources/images/ports/GR/GR_033.jpg deleted file mode 100644 index b0bd769..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_034.jpg b/apps/portolano/resources/images/ports/GR/GR_034.jpg deleted file mode 100644 index bc97bce..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_035.jpg b/apps/portolano/resources/images/ports/GR/GR_035.jpg deleted file mode 100644 index 1a54af0..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_036.jpg b/apps/portolano/resources/images/ports/GR/GR_036.jpg deleted file mode 100644 index 0a384dc..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_036.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_037.jpg b/apps/portolano/resources/images/ports/GR/GR_037.jpg deleted file mode 100644 index c71c6de..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_038.jpg b/apps/portolano/resources/images/ports/GR/GR_038.jpg deleted file mode 100644 index 7842232..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_039.jpg b/apps/portolano/resources/images/ports/GR/GR_039.jpg deleted file mode 100644 index bacbedd..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_040.jpg b/apps/portolano/resources/images/ports/GR/GR_040.jpg deleted file mode 100644 index d144ccc..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_041.jpg b/apps/portolano/resources/images/ports/GR/GR_041.jpg deleted file mode 100644 index b312b8b..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_042.jpg b/apps/portolano/resources/images/ports/GR/GR_042.jpg deleted file mode 100644 index 722b896..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_043.jpg b/apps/portolano/resources/images/ports/GR/GR_043.jpg deleted file mode 100644 index 16371bb..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_044.jpg b/apps/portolano/resources/images/ports/GR/GR_044.jpg deleted file mode 100644 index f800c6d..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_045.jpg b/apps/portolano/resources/images/ports/GR/GR_045.jpg deleted file mode 100644 index aafaa99..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_046.jpg b/apps/portolano/resources/images/ports/GR/GR_046.jpg deleted file mode 100644 index fe9d340..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_046.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_047.jpg b/apps/portolano/resources/images/ports/GR/GR_047.jpg deleted file mode 100644 index 2ac6d93..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_047.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_048.jpg b/apps/portolano/resources/images/ports/GR/GR_048.jpg deleted file mode 100644 index 05e78ea..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_049.jpg b/apps/portolano/resources/images/ports/GR/GR_049.jpg deleted file mode 100644 index 8398292..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_050.jpg b/apps/portolano/resources/images/ports/GR/GR_050.jpg deleted file mode 100644 index 209204e..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_051.jpg b/apps/portolano/resources/images/ports/GR/GR_051.jpg deleted file mode 100644 index 195a090..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_052.jpg b/apps/portolano/resources/images/ports/GR/GR_052.jpg deleted file mode 100644 index 5e67767..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_053.jpg b/apps/portolano/resources/images/ports/GR/GR_053.jpg deleted file mode 100644 index 3209e91..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_054.jpg b/apps/portolano/resources/images/ports/GR/GR_054.jpg deleted file mode 100644 index cef3d08..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_054.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_055.jpg b/apps/portolano/resources/images/ports/GR/GR_055.jpg deleted file mode 100644 index 3b93d0d..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_055.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_056.jpg b/apps/portolano/resources/images/ports/GR/GR_056.jpg deleted file mode 100644 index 0440141..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_057.jpg b/apps/portolano/resources/images/ports/GR/GR_057.jpg deleted file mode 100644 index 60e6103..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_058.jpg b/apps/portolano/resources/images/ports/GR/GR_058.jpg deleted file mode 100644 index ff19808..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_058.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_059.jpg b/apps/portolano/resources/images/ports/GR/GR_059.jpg deleted file mode 100644 index ca8a4cc..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_059.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_060.jpg b/apps/portolano/resources/images/ports/GR/GR_060.jpg deleted file mode 100644 index 15a7f98..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_060.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_061.jpg b/apps/portolano/resources/images/ports/GR/GR_061.jpg deleted file mode 100644 index b685c53..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_061.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_062.jpg b/apps/portolano/resources/images/ports/GR/GR_062.jpg deleted file mode 100644 index cfa8d59..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_062.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_063.jpg b/apps/portolano/resources/images/ports/GR/GR_063.jpg deleted file mode 100644 index a217a4f..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_063.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_064.jpg b/apps/portolano/resources/images/ports/GR/GR_064.jpg deleted file mode 100644 index 2970273..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_064.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_070.jpg b/apps/portolano/resources/images/ports/GR/GR_070.jpg deleted file mode 100644 index a04c51b..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_070.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_071.jpg b/apps/portolano/resources/images/ports/GR/GR_071.jpg deleted file mode 100644 index af10399..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_071.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_072.jpg b/apps/portolano/resources/images/ports/GR/GR_072.jpg deleted file mode 100644 index c51ecd4..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_072.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_073.jpg b/apps/portolano/resources/images/ports/GR/GR_073.jpg deleted file mode 100644 index 02ac62c..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_073.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_074.jpg b/apps/portolano/resources/images/ports/GR/GR_074.jpg deleted file mode 100644 index d950f88..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_074.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_075.jpg b/apps/portolano/resources/images/ports/GR/GR_075.jpg deleted file mode 100644 index babb35e..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_075.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_076.jpg b/apps/portolano/resources/images/ports/GR/GR_076.jpg deleted file mode 100644 index ad7fdca..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_076.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_077.jpg b/apps/portolano/resources/images/ports/GR/GR_077.jpg deleted file mode 100644 index 2dab1be..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_077.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_078.jpg b/apps/portolano/resources/images/ports/GR/GR_078.jpg deleted file mode 100644 index 141e519..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_078.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_079.jpg b/apps/portolano/resources/images/ports/GR/GR_079.jpg deleted file mode 100644 index 252b119..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_079.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_080.jpg b/apps/portolano/resources/images/ports/GR/GR_080.jpg deleted file mode 100644 index 854721e..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_080.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_081.jpg b/apps/portolano/resources/images/ports/GR/GR_081.jpg deleted file mode 100644 index 1ee9bd8..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_081.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_082.jpg b/apps/portolano/resources/images/ports/GR/GR_082.jpg deleted file mode 100644 index 83ab1e7..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_082.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_083.jpg b/apps/portolano/resources/images/ports/GR/GR_083.jpg deleted file mode 100644 index b717e0a..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_083.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_084.jpg b/apps/portolano/resources/images/ports/GR/GR_084.jpg deleted file mode 100644 index cd0ac5e..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_084.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_085.jpg b/apps/portolano/resources/images/ports/GR/GR_085.jpg deleted file mode 100644 index f88053e..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_085.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_086.jpg b/apps/portolano/resources/images/ports/GR/GR_086.jpg deleted file mode 100644 index 098c876..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_086.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_087.jpg b/apps/portolano/resources/images/ports/GR/GR_087.jpg deleted file mode 100644 index 4b88afc..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_087.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_088.jpg b/apps/portolano/resources/images/ports/GR/GR_088.jpg deleted file mode 100644 index e94ef98..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_088.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_089.jpg b/apps/portolano/resources/images/ports/GR/GR_089.jpg deleted file mode 100644 index c0fdbcd..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_089.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/GR/GR_090.jpg b/apps/portolano/resources/images/ports/GR/GR_090.jpg deleted file mode 100644 index 30f4095..0000000 Binary files a/apps/portolano/resources/images/ports/GR/GR_090.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_003.jpg b/apps/portolano/resources/images/ports/LA/LA_003.jpg deleted file mode 100644 index 4880c0d..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_005.jpg b/apps/portolano/resources/images/ports/LA/LA_005.jpg deleted file mode 100644 index 4433cd3..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_006.jpg b/apps/portolano/resources/images/ports/LA/LA_006.jpg deleted file mode 100644 index 45dcfd5..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_007.jpg b/apps/portolano/resources/images/ports/LA/LA_007.jpg deleted file mode 100644 index c83a557..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_008.jpg b/apps/portolano/resources/images/ports/LA/LA_008.jpg deleted file mode 100644 index 9d8b61a..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_009.jpg b/apps/portolano/resources/images/ports/LA/LA_009.jpg deleted file mode 100644 index 5027685..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_011.jpg b/apps/portolano/resources/images/ports/LA/LA_011.jpg deleted file mode 100644 index 88fc298..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_012.jpg b/apps/portolano/resources/images/ports/LA/LA_012.jpg deleted file mode 100644 index 26826bf..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_016.jpg b/apps/portolano/resources/images/ports/LA/LA_016.jpg deleted file mode 100644 index f725547..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_018.jpg b/apps/portolano/resources/images/ports/LA/LA_018.jpg deleted file mode 100644 index fedce30..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_019.jpg b/apps/portolano/resources/images/ports/LA/LA_019.jpg deleted file mode 100644 index 26d8f5b..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_020.jpg b/apps/portolano/resources/images/ports/LA/LA_020.jpg deleted file mode 100644 index 38c7d59..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_021.jpg b/apps/portolano/resources/images/ports/LA/LA_021.jpg deleted file mode 100644 index e25b3c3..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_022.jpg b/apps/portolano/resources/images/ports/LA/LA_022.jpg deleted file mode 100644 index cdd6b05..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_024.jpg b/apps/portolano/resources/images/ports/LA/LA_024.jpg deleted file mode 100644 index a07d957..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_025.jpg b/apps/portolano/resources/images/ports/LA/LA_025.jpg deleted file mode 100644 index e6b917d..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_026.jpg b/apps/portolano/resources/images/ports/LA/LA_026.jpg deleted file mode 100644 index 5ca1675..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_026B.jpg b/apps/portolano/resources/images/ports/LA/LA_026B.jpg deleted file mode 100644 index 891e430..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_026B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_027.jpg b/apps/portolano/resources/images/ports/LA/LA_027.jpg deleted file mode 100644 index f26958c..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_029.jpg b/apps/portolano/resources/images/ports/LA/LA_029.jpg deleted file mode 100644 index 399578b..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_031.jpg b/apps/portolano/resources/images/ports/LA/LA_031.jpg deleted file mode 100644 index b1573ca..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_032.jpg b/apps/portolano/resources/images/ports/LA/LA_032.jpg deleted file mode 100644 index b9d4fd5..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_033.jpg b/apps/portolano/resources/images/ports/LA/LA_033.jpg deleted file mode 100644 index 044c633..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_037.jpg b/apps/portolano/resources/images/ports/LA/LA_037.jpg deleted file mode 100644 index 8f005a3..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_039.jpg b/apps/portolano/resources/images/ports/LA/LA_039.jpg deleted file mode 100644 index a01c9fd..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_043.jpg b/apps/portolano/resources/images/ports/LA/LA_043.jpg deleted file mode 100644 index e2ede58..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_050.jpg b/apps/portolano/resources/images/ports/LA/LA_050.jpg deleted file mode 100644 index 15a1456..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LA/LA_051.jpg b/apps/portolano/resources/images/ports/LA/LA_051.jpg deleted file mode 100644 index 635b036..0000000 Binary files a/apps/portolano/resources/images/ports/LA/LA_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_001.jpg b/apps/portolano/resources/images/ports/LI/LI_001.jpg deleted file mode 100644 index 8ab1bd2..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_002.jpg b/apps/portolano/resources/images/ports/LI/LI_002.jpg deleted file mode 100644 index 9a87e68..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_003.jpg b/apps/portolano/resources/images/ports/LI/LI_003.jpg deleted file mode 100644 index 10780a6..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_006.jpg b/apps/portolano/resources/images/ports/LI/LI_006.jpg deleted file mode 100644 index 834dbb7..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_007.jpg b/apps/portolano/resources/images/ports/LI/LI_007.jpg deleted file mode 100644 index e9c5107..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_009.jpg b/apps/portolano/resources/images/ports/LI/LI_009.jpg deleted file mode 100644 index dcc57c7..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_010.jpg b/apps/portolano/resources/images/ports/LI/LI_010.jpg deleted file mode 100644 index 169fad0..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_010A.jpg b/apps/portolano/resources/images/ports/LI/LI_010A.jpg deleted file mode 100644 index fb468e8..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_010A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_010B.jpg b/apps/portolano/resources/images/ports/LI/LI_010B.jpg deleted file mode 100644 index 0f0f443..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_010B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_011.jpg b/apps/portolano/resources/images/ports/LI/LI_011.jpg deleted file mode 100644 index b3a2a02..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_012.jpg b/apps/portolano/resources/images/ports/LI/LI_012.jpg deleted file mode 100644 index 2b70dfb..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_015.jpg b/apps/portolano/resources/images/ports/LI/LI_015.jpg deleted file mode 100644 index 7b5b03c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_016.jpg b/apps/portolano/resources/images/ports/LI/LI_016.jpg deleted file mode 100644 index 9c0b794..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_017.jpg b/apps/portolano/resources/images/ports/LI/LI_017.jpg deleted file mode 100644 index 24da99c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_018.jpg b/apps/portolano/resources/images/ports/LI/LI_018.jpg deleted file mode 100644 index b6aabda..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_019.jpg b/apps/portolano/resources/images/ports/LI/LI_019.jpg deleted file mode 100644 index 3673a2b..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_020.jpg b/apps/portolano/resources/images/ports/LI/LI_020.jpg deleted file mode 100644 index 006e98c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_025.jpg b/apps/portolano/resources/images/ports/LI/LI_025.jpg deleted file mode 100644 index 7273ec5..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_027.jpg b/apps/portolano/resources/images/ports/LI/LI_027.jpg deleted file mode 100644 index c5de9ab..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_028.jpg b/apps/portolano/resources/images/ports/LI/LI_028.jpg deleted file mode 100644 index 9e9f4d5..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_031.jpg b/apps/portolano/resources/images/ports/LI/LI_031.jpg deleted file mode 100644 index b85e700..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_032.jpg b/apps/portolano/resources/images/ports/LI/LI_032.jpg deleted file mode 100644 index de57577..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_033.jpg b/apps/portolano/resources/images/ports/LI/LI_033.jpg deleted file mode 100644 index 29db2a5..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_034.jpg b/apps/portolano/resources/images/ports/LI/LI_034.jpg deleted file mode 100644 index ab82117..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_035.jpg b/apps/portolano/resources/images/ports/LI/LI_035.jpg deleted file mode 100644 index ae81fcf..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_036.jpg b/apps/portolano/resources/images/ports/LI/LI_036.jpg deleted file mode 100644 index 7ab5a2c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_036.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_037.jpg b/apps/portolano/resources/images/ports/LI/LI_037.jpg deleted file mode 100644 index 4577a35..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_038.jpg b/apps/portolano/resources/images/ports/LI/LI_038.jpg deleted file mode 100644 index 29756bf..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_039.jpg b/apps/portolano/resources/images/ports/LI/LI_039.jpg deleted file mode 100644 index 24d841a..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_040.jpg b/apps/portolano/resources/images/ports/LI/LI_040.jpg deleted file mode 100644 index 3ae4f6c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_041.jpg b/apps/portolano/resources/images/ports/LI/LI_041.jpg deleted file mode 100644 index 436f04f..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_043.jpg b/apps/portolano/resources/images/ports/LI/LI_043.jpg deleted file mode 100644 index 8e64ee4..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_044.jpg b/apps/portolano/resources/images/ports/LI/LI_044.jpg deleted file mode 100644 index aeaecb5..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_045.jpg b/apps/portolano/resources/images/ports/LI/LI_045.jpg deleted file mode 100644 index d8035d4..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_046.jpg b/apps/portolano/resources/images/ports/LI/LI_046.jpg deleted file mode 100644 index 1380012..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_046.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_048.jpg b/apps/portolano/resources/images/ports/LI/LI_048.jpg deleted file mode 100644 index 92b011c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_053.jpg b/apps/portolano/resources/images/ports/LI/LI_053.jpg deleted file mode 100644 index d11bc6c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_055B.jpg b/apps/portolano/resources/images/ports/LI/LI_055B.jpg deleted file mode 100644 index e77d3a5..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_055B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_055C.jpg b/apps/portolano/resources/images/ports/LI/LI_055C.jpg deleted file mode 100644 index fd7cb20..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_055C.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_055D.jpg b/apps/portolano/resources/images/ports/LI/LI_055D.jpg deleted file mode 100644 index 741ab3e..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_055D.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_055E.jpg b/apps/portolano/resources/images/ports/LI/LI_055E.jpg deleted file mode 100644 index 716a12c..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_055E.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_055F.jpg b/apps/portolano/resources/images/ports/LI/LI_055F.jpg deleted file mode 100644 index 9100236..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_055F.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_056A.jpg b/apps/portolano/resources/images/ports/LI/LI_056A.jpg deleted file mode 100644 index 9d2de9f..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_056A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_057.jpg b/apps/portolano/resources/images/ports/LI/LI_057.jpg deleted file mode 100644 index b6fa9eb..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_058.jpg b/apps/portolano/resources/images/ports/LI/LI_058.jpg deleted file mode 100644 index 753378b..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_058.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_070.jpg b/apps/portolano/resources/images/ports/LI/LI_070.jpg deleted file mode 100644 index 6f47ef7..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_070.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_071.jpg b/apps/portolano/resources/images/ports/LI/LI_071.jpg deleted file mode 100644 index fdaf79f..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_071.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_072.jpg b/apps/portolano/resources/images/ports/LI/LI_072.jpg deleted file mode 100644 index 16ce39b..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_072.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_073.jpg b/apps/portolano/resources/images/ports/LI/LI_073.jpg deleted file mode 100644 index d9b6a67..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_073.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_074.jpg b/apps/portolano/resources/images/ports/LI/LI_074.jpg deleted file mode 100644 index 4c5c9cf..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_074.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_075.jpg b/apps/portolano/resources/images/ports/LI/LI_075.jpg deleted file mode 100644 index 5c970d2..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_075.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_076.jpg b/apps/portolano/resources/images/ports/LI/LI_076.jpg deleted file mode 100644 index fba1dd7..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_076.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_077.jpg b/apps/portolano/resources/images/ports/LI/LI_077.jpg deleted file mode 100644 index bfb7215..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_077.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_078.jpg b/apps/portolano/resources/images/ports/LI/LI_078.jpg deleted file mode 100644 index 739d245..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_078.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/LI/LI_991.jpg b/apps/portolano/resources/images/ports/LI/LI_991.jpg deleted file mode 100644 index 6dc3c06..0000000 Binary files a/apps/portolano/resources/images/ports/LI/LI_991.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_001.jpg b/apps/portolano/resources/images/ports/MA/MA_001.jpg deleted file mode 100644 index 2b732dc..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_002.jpg b/apps/portolano/resources/images/ports/MA/MA_002.jpg deleted file mode 100644 index e5c4234..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_003.jpg b/apps/portolano/resources/images/ports/MA/MA_003.jpg deleted file mode 100644 index 81c6b0c..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_005.jpg b/apps/portolano/resources/images/ports/MA/MA_005.jpg deleted file mode 100644 index f8ed879..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_008.jpg b/apps/portolano/resources/images/ports/MA/MA_008.jpg deleted file mode 100644 index be97c61..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_009.jpg b/apps/portolano/resources/images/ports/MA/MA_009.jpg deleted file mode 100644 index 08e2119..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_010.jpg b/apps/portolano/resources/images/ports/MA/MA_010.jpg deleted file mode 100644 index bb28e33..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_011.jpg b/apps/portolano/resources/images/ports/MA/MA_011.jpg deleted file mode 100644 index 9a0e8e2..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_012.jpg b/apps/portolano/resources/images/ports/MA/MA_012.jpg deleted file mode 100644 index 76664c7..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_013A.jpg b/apps/portolano/resources/images/ports/MA/MA_013A.jpg deleted file mode 100644 index db7b14a..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_013A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_013B.jpg b/apps/portolano/resources/images/ports/MA/MA_013B.jpg deleted file mode 100644 index 7ef68a0..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_013B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_014.jpg b/apps/portolano/resources/images/ports/MA/MA_014.jpg deleted file mode 100644 index 101d7b3..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_015.jpg b/apps/portolano/resources/images/ports/MA/MA_015.jpg deleted file mode 100644 index 5a14dda..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MA/MA_020.jpg b/apps/portolano/resources/images/ports/MA/MA_020.jpg deleted file mode 100644 index 4197f6e..0000000 Binary files a/apps/portolano/resources/images/ports/MA/MA_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/MO/MO_001.jpg b/apps/portolano/resources/images/ports/MO/MO_001.jpg deleted file mode 100644 index deb9a09..0000000 Binary files a/apps/portolano/resources/images/ports/MO/MO_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_005.jpg b/apps/portolano/resources/images/ports/PU/PU_005.jpg deleted file mode 100644 index db4a671..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_007.jpg b/apps/portolano/resources/images/ports/PU/PU_007.jpg deleted file mode 100644 index 3683fa4..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_009.jpg b/apps/portolano/resources/images/ports/PU/PU_009.jpg deleted file mode 100644 index 501fe0b..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_010.jpg b/apps/portolano/resources/images/ports/PU/PU_010.jpg deleted file mode 100644 index d13da10..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_011.jpg b/apps/portolano/resources/images/ports/PU/PU_011.jpg deleted file mode 100644 index 6cf5114..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_012.jpg b/apps/portolano/resources/images/ports/PU/PU_012.jpg deleted file mode 100644 index 606347d..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_013.jpg b/apps/portolano/resources/images/ports/PU/PU_013.jpg deleted file mode 100644 index b875564..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_014.jpg b/apps/portolano/resources/images/ports/PU/PU_014.jpg deleted file mode 100644 index e6feb14..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_015.jpg b/apps/portolano/resources/images/ports/PU/PU_015.jpg deleted file mode 100644 index 9865815..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_016.jpg b/apps/portolano/resources/images/ports/PU/PU_016.jpg deleted file mode 100644 index 6966ffc..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_018.jpg b/apps/portolano/resources/images/ports/PU/PU_018.jpg deleted file mode 100644 index d2aff36..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_019.jpg b/apps/portolano/resources/images/ports/PU/PU_019.jpg deleted file mode 100644 index 9b9931d..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_022.jpg b/apps/portolano/resources/images/ports/PU/PU_022.jpg deleted file mode 100644 index 88b5b2e..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_023.jpg b/apps/portolano/resources/images/ports/PU/PU_023.jpg deleted file mode 100644 index a0a2914..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_024.jpg b/apps/portolano/resources/images/ports/PU/PU_024.jpg deleted file mode 100644 index 08fc8ca..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_025.jpg b/apps/portolano/resources/images/ports/PU/PU_025.jpg deleted file mode 100644 index 1b6f943..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_026.jpg b/apps/portolano/resources/images/ports/PU/PU_026.jpg deleted file mode 100644 index 74d9505..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_027.jpg b/apps/portolano/resources/images/ports/PU/PU_027.jpg deleted file mode 100644 index 3d1f88d..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_028.jpg b/apps/portolano/resources/images/ports/PU/PU_028.jpg deleted file mode 100644 index 4eaf279..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_029.jpg b/apps/portolano/resources/images/ports/PU/PU_029.jpg deleted file mode 100644 index f3a20a7..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_033.jpg b/apps/portolano/resources/images/ports/PU/PU_033.jpg deleted file mode 100644 index f23eacf..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_034.jpg b/apps/portolano/resources/images/ports/PU/PU_034.jpg deleted file mode 100644 index 7a6ee3e..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_035.jpg b/apps/portolano/resources/images/ports/PU/PU_035.jpg deleted file mode 100644 index bc1e201..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_036.jpg b/apps/portolano/resources/images/ports/PU/PU_036.jpg deleted file mode 100644 index ebd4579..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_036.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_037.jpg b/apps/portolano/resources/images/ports/PU/PU_037.jpg deleted file mode 100644 index 63caa11..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_038.jpg b/apps/portolano/resources/images/ports/PU/PU_038.jpg deleted file mode 100644 index 5f5e437..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_039.jpg b/apps/portolano/resources/images/ports/PU/PU_039.jpg deleted file mode 100644 index f533df0..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_041A.jpg b/apps/portolano/resources/images/ports/PU/PU_041A.jpg deleted file mode 100644 index 0d8fb5a..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_041A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_042.jpg b/apps/portolano/resources/images/ports/PU/PU_042.jpg deleted file mode 100644 index 1720064..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_043.jpg b/apps/portolano/resources/images/ports/PU/PU_043.jpg deleted file mode 100644 index 261a6eb..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_044.jpg b/apps/portolano/resources/images/ports/PU/PU_044.jpg deleted file mode 100644 index c44896d..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_045.jpg b/apps/portolano/resources/images/ports/PU/PU_045.jpg deleted file mode 100644 index d18d5f8..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_048.jpg b/apps/portolano/resources/images/ports/PU/PU_048.jpg deleted file mode 100644 index 01fb0fc..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_049.jpg b/apps/portolano/resources/images/ports/PU/PU_049.jpg deleted file mode 100644 index 6804cd1..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_050.jpg b/apps/portolano/resources/images/ports/PU/PU_050.jpg deleted file mode 100644 index 7e83977..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_051.jpg b/apps/portolano/resources/images/ports/PU/PU_051.jpg deleted file mode 100644 index 156f121..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_052.jpg b/apps/portolano/resources/images/ports/PU/PU_052.jpg deleted file mode 100644 index 3adc43f..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_054.jpg b/apps/portolano/resources/images/ports/PU/PU_054.jpg deleted file mode 100644 index 42befd2..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_054.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_057.jpg b/apps/portolano/resources/images/ports/PU/PU_057.jpg deleted file mode 100644 index 88b5b2e..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_060A.jpg b/apps/portolano/resources/images/ports/PU/PU_060A.jpg deleted file mode 100644 index 5c10a2c..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_060A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_060B.jpg b/apps/portolano/resources/images/ports/PU/PU_060B.jpg deleted file mode 100644 index fa3ccd0..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_060B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_060C.jpg b/apps/portolano/resources/images/ports/PU/PU_060C.jpg deleted file mode 100644 index 95437eb..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_060C.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_064.jpg b/apps/portolano/resources/images/ports/PU/PU_064.jpg deleted file mode 100644 index fb4f5a0..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_064.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_064A.jpg b/apps/portolano/resources/images/ports/PU/PU_064A.jpg deleted file mode 100644 index 4095e1b..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_064A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_101.jpg b/apps/portolano/resources/images/ports/PU/PU_101.jpg deleted file mode 100644 index ea4f26a..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_101.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_102.jpg b/apps/portolano/resources/images/ports/PU/PU_102.jpg deleted file mode 100644 index 03d2f7e..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_102.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_103.jpg b/apps/portolano/resources/images/ports/PU/PU_103.jpg deleted file mode 100644 index 1be0b42..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_103.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_104.jpg b/apps/portolano/resources/images/ports/PU/PU_104.jpg deleted file mode 100644 index ee4b684..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_104.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_105.jpg b/apps/portolano/resources/images/ports/PU/PU_105.jpg deleted file mode 100644 index 913f244..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_105.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_106.jpg b/apps/portolano/resources/images/ports/PU/PU_106.jpg deleted file mode 100644 index 317470a..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_106.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_107.jpg b/apps/portolano/resources/images/ports/PU/PU_107.jpg deleted file mode 100644 index d223d61..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_107.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_108.jpg b/apps/portolano/resources/images/ports/PU/PU_108.jpg deleted file mode 100644 index 6291035..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_108.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_109.jpg b/apps/portolano/resources/images/ports/PU/PU_109.jpg deleted file mode 100644 index 14054af..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_109.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_110.jpg b/apps/portolano/resources/images/ports/PU/PU_110.jpg deleted file mode 100644 index cf28d6a..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_110.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_111.jpg b/apps/portolano/resources/images/ports/PU/PU_111.jpg deleted file mode 100644 index afedbd3..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_111.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_112.jpg b/apps/portolano/resources/images/ports/PU/PU_112.jpg deleted file mode 100644 index 1da293b..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_112.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_113.jpg b/apps/portolano/resources/images/ports/PU/PU_113.jpg deleted file mode 100644 index a8711aa..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_113.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_114.jpg b/apps/portolano/resources/images/ports/PU/PU_114.jpg deleted file mode 100644 index 05a63a0..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_114.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_117.jpg b/apps/portolano/resources/images/ports/PU/PU_117.jpg deleted file mode 100644 index 17517b0..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_117.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_118.jpg b/apps/portolano/resources/images/ports/PU/PU_118.jpg deleted file mode 100644 index afc892b..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_118.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_990.jpg b/apps/portolano/resources/images/ports/PU/PU_990.jpg deleted file mode 100644 index 19fab5f..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_990.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/PU/PU_991.jpg b/apps/portolano/resources/images/ports/PU/PU_991.jpg deleted file mode 100644 index 0f4ad59..0000000 Binary files a/apps/portolano/resources/images/ports/PU/PU_991.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_001.jpg b/apps/portolano/resources/images/ports/RO/RO_001.jpg deleted file mode 100644 index 657d005..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_002.jpg b/apps/portolano/resources/images/ports/RO/RO_002.jpg deleted file mode 100644 index 0e9165c..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_003.jpg b/apps/portolano/resources/images/ports/RO/RO_003.jpg deleted file mode 100644 index 975ccd7..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_004.jpg b/apps/portolano/resources/images/ports/RO/RO_004.jpg deleted file mode 100644 index ff29896..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_005.jpg b/apps/portolano/resources/images/ports/RO/RO_005.jpg deleted file mode 100644 index 023beba..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_006.jpg b/apps/portolano/resources/images/ports/RO/RO_006.jpg deleted file mode 100644 index c3072ad..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_006A.jpg b/apps/portolano/resources/images/ports/RO/RO_006A.jpg deleted file mode 100644 index 2922858..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_006A.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_006B.jpg b/apps/portolano/resources/images/ports/RO/RO_006B.jpg deleted file mode 100644 index 2922858..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_006B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_006C.jpg b/apps/portolano/resources/images/ports/RO/RO_006C.jpg deleted file mode 100644 index 2922858..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_006C.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_008.jpg b/apps/portolano/resources/images/ports/RO/RO_008.jpg deleted file mode 100644 index 89e7a55..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_009.jpg b/apps/portolano/resources/images/ports/RO/RO_009.jpg deleted file mode 100644 index 17d9b27..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_014.jpg b/apps/portolano/resources/images/ports/RO/RO_014.jpg deleted file mode 100644 index bc8c4e1..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_016.jpg b/apps/portolano/resources/images/ports/RO/RO_016.jpg deleted file mode 100644 index fa90fa3..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_018.jpg b/apps/portolano/resources/images/ports/RO/RO_018.jpg deleted file mode 100644 index affa219..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_021.jpg b/apps/portolano/resources/images/ports/RO/RO_021.jpg deleted file mode 100644 index 9cd731f..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_023.jpg b/apps/portolano/resources/images/ports/RO/RO_023.jpg deleted file mode 100644 index 32fcaf0..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_024.jpg b/apps/portolano/resources/images/ports/RO/RO_024.jpg deleted file mode 100644 index 717a1b0..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/RO/RO_025.jpg b/apps/portolano/resources/images/ports/RO/RO_025.jpg deleted file mode 100644 index ae6c329..0000000 Binary files a/apps/portolano/resources/images/ports/RO/RO_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_001.jpg b/apps/portolano/resources/images/ports/SA/SA_001.jpg deleted file mode 100644 index fa9aac5..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_002.jpg b/apps/portolano/resources/images/ports/SA/SA_002.jpg deleted file mode 100644 index 4551f6a..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_003.jpg b/apps/portolano/resources/images/ports/SA/SA_003.jpg deleted file mode 100644 index aba9f26..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_004.jpg b/apps/portolano/resources/images/ports/SA/SA_004.jpg deleted file mode 100644 index f174cd4..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_005.jpg b/apps/portolano/resources/images/ports/SA/SA_005.jpg deleted file mode 100644 index 9bb91bf..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_006.jpg b/apps/portolano/resources/images/ports/SA/SA_006.jpg deleted file mode 100644 index e489fcc..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_007.jpg b/apps/portolano/resources/images/ports/SA/SA_007.jpg deleted file mode 100644 index 562aad0..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_008.jpg b/apps/portolano/resources/images/ports/SA/SA_008.jpg deleted file mode 100644 index 68bffb5..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_009.jpg b/apps/portolano/resources/images/ports/SA/SA_009.jpg deleted file mode 100644 index 263c404..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_010.jpg b/apps/portolano/resources/images/ports/SA/SA_010.jpg deleted file mode 100644 index 0853d63..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_011.jpg b/apps/portolano/resources/images/ports/SA/SA_011.jpg deleted file mode 100644 index c209a18..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_012.jpg b/apps/portolano/resources/images/ports/SA/SA_012.jpg deleted file mode 100644 index bd3dde4..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_013.jpg b/apps/portolano/resources/images/ports/SA/SA_013.jpg deleted file mode 100644 index 6e58e5b..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_014.jpg b/apps/portolano/resources/images/ports/SA/SA_014.jpg deleted file mode 100644 index 4350703..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_016.jpg b/apps/portolano/resources/images/ports/SA/SA_016.jpg deleted file mode 100644 index e8fd855..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_017.jpg b/apps/portolano/resources/images/ports/SA/SA_017.jpg deleted file mode 100644 index d4f6f6e..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_018.jpg b/apps/portolano/resources/images/ports/SA/SA_018.jpg deleted file mode 100644 index 24cbb99..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_020.jpg b/apps/portolano/resources/images/ports/SA/SA_020.jpg deleted file mode 100644 index 66df72c..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_021.jpg b/apps/portolano/resources/images/ports/SA/SA_021.jpg deleted file mode 100644 index d2db324..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_022.jpg b/apps/portolano/resources/images/ports/SA/SA_022.jpg deleted file mode 100644 index 0d8924f..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_023.jpg b/apps/portolano/resources/images/ports/SA/SA_023.jpg deleted file mode 100644 index 6ce5839..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_024.jpg b/apps/portolano/resources/images/ports/SA/SA_024.jpg deleted file mode 100644 index 00b8654..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_025.jpg b/apps/portolano/resources/images/ports/SA/SA_025.jpg deleted file mode 100644 index c15c924..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_028.jpg b/apps/portolano/resources/images/ports/SA/SA_028.jpg deleted file mode 100644 index a483d58..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_029.jpg b/apps/portolano/resources/images/ports/SA/SA_029.jpg deleted file mode 100644 index 7ad5794..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_031.jpg b/apps/portolano/resources/images/ports/SA/SA_031.jpg deleted file mode 100644 index 8bd95ac..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_034.jpg b/apps/portolano/resources/images/ports/SA/SA_034.jpg deleted file mode 100644 index 9bcc7e8..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_035.jpg b/apps/portolano/resources/images/ports/SA/SA_035.jpg deleted file mode 100644 index c99f1c8..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_037.jpg b/apps/portolano/resources/images/ports/SA/SA_037.jpg deleted file mode 100644 index e094c9d..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_039.jpg b/apps/portolano/resources/images/ports/SA/SA_039.jpg deleted file mode 100644 index d954fc1..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_040.jpg b/apps/portolano/resources/images/ports/SA/SA_040.jpg deleted file mode 100644 index 4d74332..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_041.jpg b/apps/portolano/resources/images/ports/SA/SA_041.jpg deleted file mode 100644 index e19f442..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_043.jpg b/apps/portolano/resources/images/ports/SA/SA_043.jpg deleted file mode 100644 index 508fc49..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_044.jpg b/apps/portolano/resources/images/ports/SA/SA_044.jpg deleted file mode 100644 index 6cd9ebf..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_045.jpg b/apps/portolano/resources/images/ports/SA/SA_045.jpg deleted file mode 100644 index 1131a68..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_047.jpg b/apps/portolano/resources/images/ports/SA/SA_047.jpg deleted file mode 100644 index db2ab5b..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_047.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_048.jpg b/apps/portolano/resources/images/ports/SA/SA_048.jpg deleted file mode 100644 index c2d6042..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_049.jpg b/apps/portolano/resources/images/ports/SA/SA_049.jpg deleted file mode 100644 index 882b5cd..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_050.jpg b/apps/portolano/resources/images/ports/SA/SA_050.jpg deleted file mode 100644 index ac27c6a..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_051.jpg b/apps/portolano/resources/images/ports/SA/SA_051.jpg deleted file mode 100644 index 62fdaeb..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_052.jpg b/apps/portolano/resources/images/ports/SA/SA_052.jpg deleted file mode 100644 index d84c0bb..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_053.jpg b/apps/portolano/resources/images/ports/SA/SA_053.jpg deleted file mode 100644 index 598dfe6..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_054.jpg b/apps/portolano/resources/images/ports/SA/SA_054.jpg deleted file mode 100644 index 773b78f..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_054.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_056.jpg b/apps/portolano/resources/images/ports/SA/SA_056.jpg deleted file mode 100644 index c2e03f9..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_057.jpg b/apps/portolano/resources/images/ports/SA/SA_057.jpg deleted file mode 100644 index 8cee24b..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_058.jpg b/apps/portolano/resources/images/ports/SA/SA_058.jpg deleted file mode 100644 index 8b6cbb4..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_058.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_059.jpg b/apps/portolano/resources/images/ports/SA/SA_059.jpg deleted file mode 100644 index b61fb01..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_059.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_061.jpg b/apps/portolano/resources/images/ports/SA/SA_061.jpg deleted file mode 100644 index 1e75d5d..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_061.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_062.jpg b/apps/portolano/resources/images/ports/SA/SA_062.jpg deleted file mode 100644 index 00f6947..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_062.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_064.jpg b/apps/portolano/resources/images/ports/SA/SA_064.jpg deleted file mode 100644 index 5c1cd5b..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_064.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_067.jpg b/apps/portolano/resources/images/ports/SA/SA_067.jpg deleted file mode 100644 index a37658a..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_067.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_068.jpg b/apps/portolano/resources/images/ports/SA/SA_068.jpg deleted file mode 100644 index 1757dc3..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_068.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_069.jpg b/apps/portolano/resources/images/ports/SA/SA_069.jpg deleted file mode 100644 index 52472e7..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_069.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_070.jpg b/apps/portolano/resources/images/ports/SA/SA_070.jpg deleted file mode 100644 index bd2feeb..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_070.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_073.jpg b/apps/portolano/resources/images/ports/SA/SA_073.jpg deleted file mode 100644 index d1e55b7..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_073.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_074.jpg b/apps/portolano/resources/images/ports/SA/SA_074.jpg deleted file mode 100644 index a7c2f77..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_074.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_077.jpg b/apps/portolano/resources/images/ports/SA/SA_077.jpg deleted file mode 100644 index c34624d..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_077.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_078.jpg b/apps/portolano/resources/images/ports/SA/SA_078.jpg deleted file mode 100644 index ba59e5c..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_078.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_080.jpg b/apps/portolano/resources/images/ports/SA/SA_080.jpg deleted file mode 100644 index 3936d87..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_080.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_081.jpg b/apps/portolano/resources/images/ports/SA/SA_081.jpg deleted file mode 100644 index 0a554e6..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_081.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_083.jpg b/apps/portolano/resources/images/ports/SA/SA_083.jpg deleted file mode 100644 index f22042d..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_083.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_087.jpg b/apps/portolano/resources/images/ports/SA/SA_087.jpg deleted file mode 100644 index 14a5f15..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_087.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_089.jpg b/apps/portolano/resources/images/ports/SA/SA_089.jpg deleted file mode 100644 index 25ebddd..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_089.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_090.jpg b/apps/portolano/resources/images/ports/SA/SA_090.jpg deleted file mode 100644 index 5f31289..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_090.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_091.jpg b/apps/portolano/resources/images/ports/SA/SA_091.jpg deleted file mode 100644 index 8ac6113..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_091.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_104.jpg b/apps/portolano/resources/images/ports/SA/SA_104.jpg deleted file mode 100644 index 521f31a..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_104.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_109.jpg b/apps/portolano/resources/images/ports/SA/SA_109.jpg deleted file mode 100644 index 3258c4a..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_109.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_110.jpg b/apps/portolano/resources/images/ports/SA/SA_110.jpg deleted file mode 100644 index 295d151..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_110.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_122.jpg b/apps/portolano/resources/images/ports/SA/SA_122.jpg deleted file mode 100644 index 2a53209..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_122.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_126.jpg b/apps/portolano/resources/images/ports/SA/SA_126.jpg deleted file mode 100644 index 5917bf1..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_126.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SA/SA_990.jpg b/apps/portolano/resources/images/ports/SA/SA_990.jpg deleted file mode 100644 index 1131a68..0000000 Binary files a/apps/portolano/resources/images/ports/SA/SA_990.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_001.jpg b/apps/portolano/resources/images/ports/SI/SI_001.jpg deleted file mode 100644 index e50eeb4..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_002.jpg b/apps/portolano/resources/images/ports/SI/SI_002.jpg deleted file mode 100644 index 4a9e9b6..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_003.jpg b/apps/portolano/resources/images/ports/SI/SI_003.jpg deleted file mode 100644 index 4abf715..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_004.jpg b/apps/portolano/resources/images/ports/SI/SI_004.jpg deleted file mode 100644 index 8f69b89..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_005.jpg b/apps/portolano/resources/images/ports/SI/SI_005.jpg deleted file mode 100644 index 0c857e3..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_007.jpg b/apps/portolano/resources/images/ports/SI/SI_007.jpg deleted file mode 100644 index 64e70bd..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_008.jpg b/apps/portolano/resources/images/ports/SI/SI_008.jpg deleted file mode 100644 index febfac0..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_009.jpg b/apps/portolano/resources/images/ports/SI/SI_009.jpg deleted file mode 100644 index bd51706..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_010.jpg b/apps/portolano/resources/images/ports/SI/SI_010.jpg deleted file mode 100644 index c489cee..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_011.jpg b/apps/portolano/resources/images/ports/SI/SI_011.jpg deleted file mode 100644 index e6b73b5..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_012.jpg b/apps/portolano/resources/images/ports/SI/SI_012.jpg deleted file mode 100644 index b1b6fbc..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_013.jpg b/apps/portolano/resources/images/ports/SI/SI_013.jpg deleted file mode 100644 index d571489..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_015.jpg b/apps/portolano/resources/images/ports/SI/SI_015.jpg deleted file mode 100644 index b4b68a2..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_015.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_016.jpg b/apps/portolano/resources/images/ports/SI/SI_016.jpg deleted file mode 100644 index 2b69a5d..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_017.jpg b/apps/portolano/resources/images/ports/SI/SI_017.jpg deleted file mode 100644 index 537de7c..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_018.jpg b/apps/portolano/resources/images/ports/SI/SI_018.jpg deleted file mode 100644 index 7829467..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_019.jpg b/apps/portolano/resources/images/ports/SI/SI_019.jpg deleted file mode 100644 index 4413b58..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_020.jpg b/apps/portolano/resources/images/ports/SI/SI_020.jpg deleted file mode 100644 index d55bfd7..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_023.jpg b/apps/portolano/resources/images/ports/SI/SI_023.jpg deleted file mode 100644 index 9687910..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_025.jpg b/apps/portolano/resources/images/ports/SI/SI_025.jpg deleted file mode 100644 index 34e91d7..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_025.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_026.jpg b/apps/portolano/resources/images/ports/SI/SI_026.jpg deleted file mode 100644 index eddcea9..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_027.jpg b/apps/portolano/resources/images/ports/SI/SI_027.jpg deleted file mode 100644 index 33dc838..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_028.jpg b/apps/portolano/resources/images/ports/SI/SI_028.jpg deleted file mode 100644 index 62994ee..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_029.jpg b/apps/portolano/resources/images/ports/SI/SI_029.jpg deleted file mode 100644 index 7381b35..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_030.jpg b/apps/portolano/resources/images/ports/SI/SI_030.jpg deleted file mode 100644 index b1e4931..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_032.jpg b/apps/portolano/resources/images/ports/SI/SI_032.jpg deleted file mode 100644 index 4a4f1f9..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_033.jpg b/apps/portolano/resources/images/ports/SI/SI_033.jpg deleted file mode 100644 index d92edaa..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_034.jpg b/apps/portolano/resources/images/ports/SI/SI_034.jpg deleted file mode 100644 index 26333cd..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_037.jpg b/apps/portolano/resources/images/ports/SI/SI_037.jpg deleted file mode 100644 index da6fdf9..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_039.jpg b/apps/portolano/resources/images/ports/SI/SI_039.jpg deleted file mode 100644 index 78bd8ed..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_042.jpg b/apps/portolano/resources/images/ports/SI/SI_042.jpg deleted file mode 100644 index 66261ef..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_046.jpg b/apps/portolano/resources/images/ports/SI/SI_046.jpg deleted file mode 100644 index aa3025a..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_046.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_048.jpg b/apps/portolano/resources/images/ports/SI/SI_048.jpg deleted file mode 100644 index 695cad3..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_049.jpg b/apps/portolano/resources/images/ports/SI/SI_049.jpg deleted file mode 100644 index eb9338d..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_051.jpg b/apps/portolano/resources/images/ports/SI/SI_051.jpg deleted file mode 100644 index 540639e..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_053.jpg b/apps/portolano/resources/images/ports/SI/SI_053.jpg deleted file mode 100644 index b2d8745..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_053.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_055.jpg b/apps/portolano/resources/images/ports/SI/SI_055.jpg deleted file mode 100644 index d306c28..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_055.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_056.jpg b/apps/portolano/resources/images/ports/SI/SI_056.jpg deleted file mode 100644 index 75bf4d3..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_057.jpg b/apps/portolano/resources/images/ports/SI/SI_057.jpg deleted file mode 100644 index 7830bce..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_057.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_058.jpg b/apps/portolano/resources/images/ports/SI/SI_058.jpg deleted file mode 100644 index 03564e4..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_058.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_060.jpg b/apps/portolano/resources/images/ports/SI/SI_060.jpg deleted file mode 100644 index ae2225e..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_060.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_061.jpg b/apps/portolano/resources/images/ports/SI/SI_061.jpg deleted file mode 100644 index 7fc00cc..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_061.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_065.jpg b/apps/portolano/resources/images/ports/SI/SI_065.jpg deleted file mode 100644 index f63b09a..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_065.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_066.jpg b/apps/portolano/resources/images/ports/SI/SI_066.jpg deleted file mode 100644 index 03a3500..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_066.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_067.jpg b/apps/portolano/resources/images/ports/SI/SI_067.jpg deleted file mode 100644 index c06a752..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_067.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_068.jpg b/apps/portolano/resources/images/ports/SI/SI_068.jpg deleted file mode 100644 index 5a426cb..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_068.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_069.jpg b/apps/portolano/resources/images/ports/SI/SI_069.jpg deleted file mode 100644 index e21e737..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_069.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_070.jpg b/apps/portolano/resources/images/ports/SI/SI_070.jpg deleted file mode 100644 index 212ffb1..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_070.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_074.jpg b/apps/portolano/resources/images/ports/SI/SI_074.jpg deleted file mode 100644 index e60f14c..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_074.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_077.jpg b/apps/portolano/resources/images/ports/SI/SI_077.jpg deleted file mode 100644 index eb5eb8f..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_077.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_078.jpg b/apps/portolano/resources/images/ports/SI/SI_078.jpg deleted file mode 100644 index 1aa105b..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_078.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_079.jpg b/apps/portolano/resources/images/ports/SI/SI_079.jpg deleted file mode 100644 index 7e69dea..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_079.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_080.jpg b/apps/portolano/resources/images/ports/SI/SI_080.jpg deleted file mode 100644 index 1cb2f8b..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_080.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_081.jpg b/apps/portolano/resources/images/ports/SI/SI_081.jpg deleted file mode 100644 index 107e668..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_081.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_083.jpg b/apps/portolano/resources/images/ports/SI/SI_083.jpg deleted file mode 100644 index 9271408..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_083.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_087.jpg b/apps/portolano/resources/images/ports/SI/SI_087.jpg deleted file mode 100644 index 7bab4e1..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_087.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_088.jpg b/apps/portolano/resources/images/ports/SI/SI_088.jpg deleted file mode 100644 index 8d97b75..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_088.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_089.jpg b/apps/portolano/resources/images/ports/SI/SI_089.jpg deleted file mode 100644 index d433a09..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_089.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_092.jpg b/apps/portolano/resources/images/ports/SI/SI_092.jpg deleted file mode 100644 index d7eebf5..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_092.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_096.jpg b/apps/portolano/resources/images/ports/SI/SI_096.jpg deleted file mode 100644 index 7ce1b52..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_096.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_099.jpg b/apps/portolano/resources/images/ports/SI/SI_099.jpg deleted file mode 100644 index 975d6b5..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_099.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_100.jpg b/apps/portolano/resources/images/ports/SI/SI_100.jpg deleted file mode 100644 index 21ed341..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_100.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_107.jpg b/apps/portolano/resources/images/ports/SI/SI_107.jpg deleted file mode 100644 index f816af0..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_107.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_109.jpg b/apps/portolano/resources/images/ports/SI/SI_109.jpg deleted file mode 100644 index bb5d1e1..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_109.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_111.jpg b/apps/portolano/resources/images/ports/SI/SI_111.jpg deleted file mode 100644 index 5591a98..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_111.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_117.jpg b/apps/portolano/resources/images/ports/SI/SI_117.jpg deleted file mode 100644 index a0d60f3..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_117.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_118.jpg b/apps/portolano/resources/images/ports/SI/SI_118.jpg deleted file mode 100644 index 2731eb2..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_118.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_119.jpg b/apps/portolano/resources/images/ports/SI/SI_119.jpg deleted file mode 100644 index 5c074a2..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_119.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_124.jpg b/apps/portolano/resources/images/ports/SI/SI_124.jpg deleted file mode 100644 index a29bf73..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_124.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_125.jpg b/apps/portolano/resources/images/ports/SI/SI_125.jpg deleted file mode 100644 index da726c3..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_125.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_126.jpg b/apps/portolano/resources/images/ports/SI/SI_126.jpg deleted file mode 100644 index bc173c1..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_126.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_127.jpg b/apps/portolano/resources/images/ports/SI/SI_127.jpg deleted file mode 100644 index 5c64db7..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_127.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_128.jpg b/apps/portolano/resources/images/ports/SI/SI_128.jpg deleted file mode 100644 index 75dba55..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_128.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_129.jpg b/apps/portolano/resources/images/ports/SI/SI_129.jpg deleted file mode 100644 index c13c244..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_129.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_130.jpg b/apps/portolano/resources/images/ports/SI/SI_130.jpg deleted file mode 100644 index 4c8d73e..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_130.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_131.jpg b/apps/portolano/resources/images/ports/SI/SI_131.jpg deleted file mode 100644 index 7f1f6f9..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_131.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_134.jpg b/apps/portolano/resources/images/ports/SI/SI_134.jpg deleted file mode 100644 index 64d61fb..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_134.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_135.jpg b/apps/portolano/resources/images/ports/SI/SI_135.jpg deleted file mode 100644 index b53cd02..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_135.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_137.jpg b/apps/portolano/resources/images/ports/SI/SI_137.jpg deleted file mode 100644 index 08a6fd5..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_137.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_138.jpg b/apps/portolano/resources/images/ports/SI/SI_138.jpg deleted file mode 100644 index 7a38b24..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_138.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_139.jpg b/apps/portolano/resources/images/ports/SI/SI_139.jpg deleted file mode 100644 index db25b8e..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_139.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_140.jpg b/apps/portolano/resources/images/ports/SI/SI_140.jpg deleted file mode 100644 index 9228712..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_140.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_144.jpg b/apps/portolano/resources/images/ports/SI/SI_144.jpg deleted file mode 100644 index 715eead..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_144.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_145.jpg b/apps/portolano/resources/images/ports/SI/SI_145.jpg deleted file mode 100644 index cbf69dd..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_145.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_146.jpg b/apps/portolano/resources/images/ports/SI/SI_146.jpg deleted file mode 100644 index c4aa7ab..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_146.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_147.jpg b/apps/portolano/resources/images/ports/SI/SI_147.jpg deleted file mode 100644 index cfe882b..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_147.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_150.jpg b/apps/portolano/resources/images/ports/SI/SI_150.jpg deleted file mode 100644 index 7670a9d..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_150.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_151.jpg b/apps/portolano/resources/images/ports/SI/SI_151.jpg deleted file mode 100644 index 0920a98..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_151.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_A01.jpg b/apps/portolano/resources/images/ports/SI/SI_A01.jpg deleted file mode 100644 index 02a36f1..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_A01.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/SI/SI_A02.jpg b/apps/portolano/resources/images/ports/SI/SI_A02.jpg deleted file mode 100644 index b07dba7..0000000 Binary files a/apps/portolano/resources/images/ports/SI/SI_A02.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_001.jpg b/apps/portolano/resources/images/ports/T/T_001.jpg deleted file mode 100644 index 58cb7a3..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_002.jpg b/apps/portolano/resources/images/ports/T/T_002.jpg deleted file mode 100644 index 74510bd..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_003.jpg b/apps/portolano/resources/images/ports/T/T_003.jpg deleted file mode 100644 index c077cbb..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_004.jpg b/apps/portolano/resources/images/ports/T/T_004.jpg deleted file mode 100644 index 30938d6..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_005.jpg b/apps/portolano/resources/images/ports/T/T_005.jpg deleted file mode 100644 index a737124..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_005.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_006.jpg b/apps/portolano/resources/images/ports/T/T_006.jpg deleted file mode 100644 index d9f686d..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_007.jpg b/apps/portolano/resources/images/ports/T/T_007.jpg deleted file mode 100644 index bb16de9..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_008.jpg b/apps/portolano/resources/images/ports/T/T_008.jpg deleted file mode 100644 index a6542c8..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_009.jpg b/apps/portolano/resources/images/ports/T/T_009.jpg deleted file mode 100644 index b852d0d..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_010.jpg b/apps/portolano/resources/images/ports/T/T_010.jpg deleted file mode 100644 index 28fc462..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_011.jpg b/apps/portolano/resources/images/ports/T/T_011.jpg deleted file mode 100644 index 665c587..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/T/T_012.jpg b/apps/portolano/resources/images/ports/T/T_012.jpg deleted file mode 100644 index 58183e1..0000000 Binary files a/apps/portolano/resources/images/ports/T/T_012.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_001.jpg b/apps/portolano/resources/images/ports/TO/TO_001.jpg deleted file mode 100644 index 1ca2b90..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_001.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_002.jpg b/apps/portolano/resources/images/ports/TO/TO_002.jpg deleted file mode 100644 index c95554a..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_003.jpg b/apps/portolano/resources/images/ports/TO/TO_003.jpg deleted file mode 100644 index ad7af15..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_004.jpg b/apps/portolano/resources/images/ports/TO/TO_004.jpg deleted file mode 100644 index 08b4ca1..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_004.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_006.jpg b/apps/portolano/resources/images/ports/TO/TO_006.jpg deleted file mode 100644 index 5a83223..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_006.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_008.jpg b/apps/portolano/resources/images/ports/TO/TO_008.jpg deleted file mode 100644 index 08930c2..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_008.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_009.jpg b/apps/portolano/resources/images/ports/TO/TO_009.jpg deleted file mode 100644 index 186b58a..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_009.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_016.jpg b/apps/portolano/resources/images/ports/TO/TO_016.jpg deleted file mode 100644 index 345d000..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_017.jpg b/apps/portolano/resources/images/ports/TO/TO_017.jpg deleted file mode 100644 index 1247488..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_018.jpg b/apps/portolano/resources/images/ports/TO/TO_018.jpg deleted file mode 100644 index 77e6374..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_018.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_019.jpg b/apps/portolano/resources/images/ports/TO/TO_019.jpg deleted file mode 100644 index ebb2353..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_019.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_020.jpg b/apps/portolano/resources/images/ports/TO/TO_020.jpg deleted file mode 100644 index f695316..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_021.jpg b/apps/portolano/resources/images/ports/TO/TO_021.jpg deleted file mode 100644 index d6fdd26..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_021.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_022.jpg b/apps/portolano/resources/images/ports/TO/TO_022.jpg deleted file mode 100644 index a709449..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_022.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_023.jpg b/apps/portolano/resources/images/ports/TO/TO_023.jpg deleted file mode 100644 index 04bf446..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_024.jpg b/apps/portolano/resources/images/ports/TO/TO_024.jpg deleted file mode 100644 index 16c0cf8..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_024.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_026.jpg b/apps/portolano/resources/images/ports/TO/TO_026.jpg deleted file mode 100644 index 19cee41..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_027.jpg b/apps/portolano/resources/images/ports/TO/TO_027.jpg deleted file mode 100644 index fba8249..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_027.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_028.jpg b/apps/portolano/resources/images/ports/TO/TO_028.jpg deleted file mode 100644 index 92bdc5e..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_029.jpg b/apps/portolano/resources/images/ports/TO/TO_029.jpg deleted file mode 100644 index 8f7c10a..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_030.jpg b/apps/portolano/resources/images/ports/TO/TO_030.jpg deleted file mode 100644 index 5c98647..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_031.jpg b/apps/portolano/resources/images/ports/TO/TO_031.jpg deleted file mode 100644 index 8ab4f62..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_031.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_032.jpg b/apps/portolano/resources/images/ports/TO/TO_032.jpg deleted file mode 100644 index 326e622..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_033.jpg b/apps/portolano/resources/images/ports/TO/TO_033.jpg deleted file mode 100644 index c4c7ffa..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_034.jpg b/apps/portolano/resources/images/ports/TO/TO_034.jpg deleted file mode 100644 index eb95fc5..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_034.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_035.jpg b/apps/portolano/resources/images/ports/TO/TO_035.jpg deleted file mode 100644 index 346a2b3..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_036.jpg b/apps/portolano/resources/images/ports/TO/TO_036.jpg deleted file mode 100644 index ca49efa..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_036.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_036B.jpg b/apps/portolano/resources/images/ports/TO/TO_036B.jpg deleted file mode 100644 index f683f9c..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_036B.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_038.jpg b/apps/portolano/resources/images/ports/TO/TO_038.jpg deleted file mode 100644 index 5f009fc..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_040.jpg b/apps/portolano/resources/images/ports/TO/TO_040.jpg deleted file mode 100644 index d69a460..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_041.jpg b/apps/portolano/resources/images/ports/TO/TO_041.jpg deleted file mode 100644 index 6e0613a..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_041.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_042.jpg b/apps/portolano/resources/images/ports/TO/TO_042.jpg deleted file mode 100644 index bbdafed..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_042.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_050.jpg b/apps/portolano/resources/images/ports/TO/TO_050.jpg deleted file mode 100644 index 4644f02..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_052.jpg b/apps/portolano/resources/images/ports/TO/TO_052.jpg deleted file mode 100644 index c40012e..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_055.jpg b/apps/portolano/resources/images/ports/TO/TO_055.jpg deleted file mode 100644 index dce7dea..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_055.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_056.jpg b/apps/portolano/resources/images/ports/TO/TO_056.jpg deleted file mode 100644 index 827fe5e..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_056.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_061.jpg b/apps/portolano/resources/images/ports/TO/TO_061.jpg deleted file mode 100644 index a85bd18..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_061.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/TO/TO_990.jpg b/apps/portolano/resources/images/ports/TO/TO_990.jpg deleted file mode 100644 index d441568..0000000 Binary files a/apps/portolano/resources/images/ports/TO/TO_990.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_002.jpg b/apps/portolano/resources/images/ports/VE/VE_002.jpg deleted file mode 100644 index a4c9982..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_002.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_003.jpg b/apps/portolano/resources/images/ports/VE/VE_003.jpg deleted file mode 100644 index 59fb909..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_003.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_007.jpg b/apps/portolano/resources/images/ports/VE/VE_007.jpg deleted file mode 100644 index 10246de..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_007.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_010.jpg b/apps/portolano/resources/images/ports/VE/VE_010.jpg deleted file mode 100644 index 5e78d78..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_010.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_011.jpg b/apps/portolano/resources/images/ports/VE/VE_011.jpg deleted file mode 100644 index 6db69c3..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_011.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_013.jpg b/apps/portolano/resources/images/ports/VE/VE_013.jpg deleted file mode 100644 index 25d82d1..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_013.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_014.jpg b/apps/portolano/resources/images/ports/VE/VE_014.jpg deleted file mode 100644 index 19b965e..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_014.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_016.jpg b/apps/portolano/resources/images/ports/VE/VE_016.jpg deleted file mode 100644 index 7556cd3..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_016.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_017.jpg b/apps/portolano/resources/images/ports/VE/VE_017.jpg deleted file mode 100644 index 9aab4d0..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_017.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_020.jpg b/apps/portolano/resources/images/ports/VE/VE_020.jpg deleted file mode 100644 index f810d3b..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_020.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_023.jpg b/apps/portolano/resources/images/ports/VE/VE_023.jpg deleted file mode 100644 index 980c4f5..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_023.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_026.jpg b/apps/portolano/resources/images/ports/VE/VE_026.jpg deleted file mode 100644 index 5b7f8b9..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_026.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_028.jpg b/apps/portolano/resources/images/ports/VE/VE_028.jpg deleted file mode 100644 index bb160a3..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_028.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_029.jpg b/apps/portolano/resources/images/ports/VE/VE_029.jpg deleted file mode 100644 index 837d1b9..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_029.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_030.jpg b/apps/portolano/resources/images/ports/VE/VE_030.jpg deleted file mode 100644 index ac57e58..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_030.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_032.jpg b/apps/portolano/resources/images/ports/VE/VE_032.jpg deleted file mode 100644 index ad297db..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_032.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_033.jpg b/apps/portolano/resources/images/ports/VE/VE_033.jpg deleted file mode 100644 index caa202a..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_033.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_035.jpg b/apps/portolano/resources/images/ports/VE/VE_035.jpg deleted file mode 100644 index b8f71ce..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_035.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_037.jpg b/apps/portolano/resources/images/ports/VE/VE_037.jpg deleted file mode 100644 index 64ef4ae..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_037.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_038.jpg b/apps/portolano/resources/images/ports/VE/VE_038.jpg deleted file mode 100644 index 7e274fc..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_038.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_039.jpg b/apps/portolano/resources/images/ports/VE/VE_039.jpg deleted file mode 100644 index 5514b4e..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_039.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_040.jpg b/apps/portolano/resources/images/ports/VE/VE_040.jpg deleted file mode 100644 index 6ffb5b2..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_040.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_043.jpg b/apps/portolano/resources/images/ports/VE/VE_043.jpg deleted file mode 100644 index 156fcb7..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_043.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_044.jpg b/apps/portolano/resources/images/ports/VE/VE_044.jpg deleted file mode 100644 index 2bc58df..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_044.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_045.jpg b/apps/portolano/resources/images/ports/VE/VE_045.jpg deleted file mode 100644 index 3ef1e8d..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_045.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_046.jpg b/apps/portolano/resources/images/ports/VE/VE_046.jpg deleted file mode 100644 index f8a2167..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_046.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_047.jpg b/apps/portolano/resources/images/ports/VE/VE_047.jpg deleted file mode 100644 index b288f0a..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_047.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_048.jpg b/apps/portolano/resources/images/ports/VE/VE_048.jpg deleted file mode 100644 index 81862d2..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_048.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_049.jpg b/apps/portolano/resources/images/ports/VE/VE_049.jpg deleted file mode 100644 index e32c90a..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_049.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_050.jpg b/apps/portolano/resources/images/ports/VE/VE_050.jpg deleted file mode 100644 index d7138f8..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_050.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_051.jpg b/apps/portolano/resources/images/ports/VE/VE_051.jpg deleted file mode 100644 index 939266d..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_051.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_052.jpg b/apps/portolano/resources/images/ports/VE/VE_052.jpg deleted file mode 100644 index 5f2d006..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_052.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_060.jpg b/apps/portolano/resources/images/ports/VE/VE_060.jpg deleted file mode 100644 index b5000e7..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_060.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_100.jpg b/apps/portolano/resources/images/ports/VE/VE_100.jpg deleted file mode 100644 index dee89c7..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_100.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_101.jpg b/apps/portolano/resources/images/ports/VE/VE_101.jpg deleted file mode 100644 index ef41265..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_101.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_102.jpg b/apps/portolano/resources/images/ports/VE/VE_102.jpg deleted file mode 100644 index bbe2a81..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_102.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_103.jpg b/apps/portolano/resources/images/ports/VE/VE_103.jpg deleted file mode 100644 index e5e2d35..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_103.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_105.jpg b/apps/portolano/resources/images/ports/VE/VE_105.jpg deleted file mode 100644 index a72c125..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_105.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_106.jpg b/apps/portolano/resources/images/ports/VE/VE_106.jpg deleted file mode 100644 index f383f04..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_106.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_108.jpg b/apps/portolano/resources/images/ports/VE/VE_108.jpg deleted file mode 100644 index a01ceca..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_108.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_109.jpg b/apps/portolano/resources/images/ports/VE/VE_109.jpg deleted file mode 100644 index 6d10afa..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_109.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_110.jpg b/apps/portolano/resources/images/ports/VE/VE_110.jpg deleted file mode 100644 index 3d06a8c..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_110.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_990.jpg b/apps/portolano/resources/images/ports/VE/VE_990.jpg deleted file mode 100644 index e32c90a..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_990.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_991.jpg b/apps/portolano/resources/images/ports/VE/VE_991.jpg deleted file mode 100644 index 8f6e37a..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_991.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/VE/VE_992.jpg b/apps/portolano/resources/images/ports/VE/VE_992.jpg deleted file mode 100644 index 3792822..0000000 Binary files a/apps/portolano/resources/images/ports/VE/VE_992.jpg and /dev/null differ diff --git a/apps/portolano/resources/images/ports/no_icon.png b/apps/portolano/resources/images/ports/no_icon.png deleted file mode 100644 index 4ab8081..0000000 Binary files a/apps/portolano/resources/images/ports/no_icon.png and /dev/null differ diff --git a/apps/portolano/resources/images/ports/xPU/xPU_005.jpg b/apps/portolano/resources/images/ports/xPU/xPU_005.jpg deleted file mode 100644 index fb88543..0000000 Binary files a/apps/portolano/resources/images/ports/xPU/xPU_005.jpg and /dev/null differ diff --git a/apps/portolano/resourcesPortolano.qrc b/apps/portolano/resourcesPortolano.qrc deleted file mode 100644 index af17879..0000000 --- a/apps/portolano/resourcesPortolano.qrc +++ /dev/null @@ -1,877 +0,0 @@ - - - resources/data/ports.json - - resources/images/ports/no_icon.png - - resources/images/icons/seafloor/bad_icon.png - resources/images/icons/seafloor/good_icon.png - resources/images/icons/seafloor/rocks_icon.png - resources/images/icons/seafloor/corals_icon.png - resources/images/icons/seafloor/sand_icon.png - resources/images/icons/seafloor/algae_icon.png - resources/images/icons/portolano_icon.png - - resources/images/ports/GR/GR_087.jpg - resources/images/ports/AB/AB_010.jpg - resources/images/ports/CR/CR_264.jpg - resources/images/ports/CR/CR_258.jpg - resources/images/ports/GR/GR_044.jpg - resources/images/ports/FR/FR_050.jpg - resources/images/ports/TO/TO_034.jpg - resources/images/ports/TO/TO_020.jpg - resources/images/ports/GR/GR_050.jpg - resources/images/ports/GR/GR_078.jpg - resources/images/ports/TO/TO_008.jpg - resources/images/ports/SI/SI_028.jpg - resources/images/ports/PU/PU_044.jpg - resources/images/ports/PU/PU_050.jpg - resources/images/ports/LA/LA_016.jpg - resources/images/ports/MA/MA_002.jpg - resources/images/ports/VE/VE_992.jpg - resources/images/ports/VE/VE_038.jpg - resources/images/ports/VE/VE_010.jpg - resources/images/ports/LI/LI_038.jpg - resources/images/ports/SA/SA_990.jpg - resources/images/ports/PU/PU_118.jpg - resources/images/ports/SA/SA_006.jpg - resources/images/ports/LI/LI_010.jpg - resources/images/ports/SA/SA_012.jpg - resources/images/ports/CR/CR_310.jpg - resources/images/ports/CA/CA_037.jpg - resources/images/ports/CA/CA_023.jpg - resources/images/ports/CR/CR_339.jpg - resources/images/ports/CR/CR_311.jpg - resources/images/ports/SA/SA_013.jpg - resources/images/ports/SA/SA_007.jpg - resources/images/ports/LI/LI_011.jpg - resources/images/ports/CR/CR_113.jpg - resources/images/ports/LI/LI_039.jpg - resources/images/ports/CR/CR_107.jpg - resources/images/ports/VE/VE_011.jpg - resources/images/ports/VE/VE_039.jpg - resources/images/ports/PU/PU_051.jpg - resources/images/ports/MA/MA_003.jpg - resources/images/ports/SI/SI_001.jpg - resources/images/ports/SI/SI_015.jpg - resources/images/ports/LA/LA_003.jpg - resources/images/ports/PU/PU_045.jpg - resources/images/ports/SI/SI_029.jpg - resources/images/ports/GR/GR_079.jpg - resources/images/ports/TO/TO_009.jpg - resources/images/ports/TO/TO_021.jpg - resources/images/ports/GR/GR_051.jpg - resources/images/ports/GR/GR_045.jpg - resources/images/ports/TO/TO_035.jpg - resources/images/ports/FR/FR_051.jpg - resources/images/ports/AB/AB_005.jpg - resources/images/ports/GR/GR_086.jpg - resources/images/ports/AB/AB_011.jpg - resources/images/ports/GR/GR_090.jpg - resources/images/ports/GR/GR_084.jpg - resources/images/ports/GR/GR_053.jpg - resources/images/ports/TO/TO_023.jpg - resources/images/ports/FR/FR_047.jpg - resources/images/ports/FR/FR_053.jpg - resources/images/ports/GR/GR_047.jpg - resources/images/ports/CR/CR_298.jpg - resources/images/ports/CR/CR_065.jpg - resources/images/ports/LA/LA_029.jpg - resources/images/ports/CR/CR_071.jpg - resources/images/ports/MA/MA_001.jpg - resources/images/ports/SI/SI_003.jpg - resources/images/ports/CR/CR_059.jpg - resources/images/ports/MA/MA_015.jpg - resources/images/ports/SI/SI_017.jpg - resources/images/ports/VE/VE_991.jpg - resources/images/ports/VE/VE_007.jpg - resources/images/ports/VE/VE_013.jpg - resources/images/ports/CR/CR_111.jpg - resources/images/ports/LI/LI_991.jpg - resources/images/ports/SA/SA_039.jpg - resources/images/ports/SA/SA_011.jpg - resources/images/ports/LI/LI_007.jpg - resources/images/ports/SA/SA_005.jpg - resources/images/ports/CA/CA_008.jpg - resources/images/ports/CR/CR_307.jpg - resources/images/ports/CL/CL_017.jpg - resources/images/ports/CA/CA_020.jpg - resources/images/ports/CL/CL_003.jpg - resources/images/ports/CL/CL_016.jpg - resources/images/ports/CA/CA_021.jpg - resources/images/ports/CR/CR_306.jpg - resources/images/ports/LI/LI_012.jpg - resources/images/ports/SA/SA_004.jpg - resources/images/ports/SA/SA_010.jpg - resources/images/ports/LI/LI_006.jpg - resources/images/ports/CR/CR_104.jpg - resources/images/ports/VE/VE_990.jpg - resources/images/ports/MA/MA_014.jpg - resources/images/ports/SI/SI_016.jpg - resources/images/ports/SI/SI_002.jpg - resources/images/ports/CR/CR_058.jpg - resources/images/ports/PU/PU_052.jpg - resources/images/ports/CR/CR_070.jpg - resources/images/ports/CR/CR_064.jpg - resources/images/ports/FR/FR_052.jpg - resources/images/ports/TO/TO_036.jpg - resources/images/ports/GR/GR_046.jpg - resources/images/ports/GR/GR_052.jpg - resources/images/ports/TO/TO_022.jpg - resources/images/ports/GR/GR_085.jpg - resources/images/ports/CR/CR_272.jpg - resources/images/ports/CR/CR_266.jpg - resources/images/ports/AB/AB_006.jpg - resources/images/ports/CR/CR_276.jpg - resources/images/ports/GR/GR_081.jpg - resources/images/ports/TO/TO_026.jpg - resources/images/ports/FR/FR_042.jpg - resources/images/ports/GR/GR_056.jpg - resources/images/ports/GR/GR_042.jpg - resources/images/ports/TO/TO_032.jpg - resources/images/ports/FR/FR_056.jpg - resources/images/ports/MA/MA_010.jpg - resources/images/ports/SI/SI_012.jpg - resources/images/ports/CR/CR_048.jpg - resources/images/ports/PU/PU_042.jpg - resources/images/ports/CR/CR_060.jpg - resources/images/ports/VE/VE_002.jpg - resources/images/ports/VE/VE_016.jpg - resources/images/ports/A/A_009.jpg - resources/images/ports/LI/LI_002.jpg - resources/images/ports/SA/SA_014.jpg - resources/images/ports/LI/LI_016.jpg - resources/images/ports/SA/SA_028.jpg - resources/images/ports/PU/PU_064A.jpg - resources/images/ports/CA/CA_025.jpg - resources/images/ports/T/T_009.jpg - resources/images/ports/CA/CA_031.jpg - resources/images/ports/CA/CA_019.jpg - resources/images/ports/CR/CR_302.jpg - resources/images/ports/CA/CA_018.jpg - resources/images/ports/CR/CR_317.jpg - resources/images/ports/T/T_008.jpg - resources/images/ports/CA/CA_030.jpg - resources/images/ports/CA/CA_024.jpg - resources/images/ports/CL/CL_013.jpg - resources/images/ports/SA/SA_029.jpg - resources/images/ports/SA/SA_001.jpg - resources/images/ports/LI/LI_017.jpg - resources/images/ports/LI/LI_003.jpg - resources/images/ports/VE/VE_017.jpg - resources/images/ports/VE/VE_003.jpg - resources/images/ports/LA/LA_039.jpg - resources/images/ports/CR/CR_061.jpg - resources/images/ports/MA/MA_011.jpg - resources/images/ports/SI/SI_013.jpg - resources/images/ports/PU/PU_043.jpg - resources/images/ports/LA/LA_005.jpg - resources/images/ports/CR/CR_049.jpg - resources/images/ports/PU/PU_057.jpg - resources/images/ports/LA/LA_011.jpg - resources/images/ports/MA/MA_005.jpg - resources/images/ports/SI/SI_007.jpg - resources/images/ports/GR/GR_043.jpg - resources/images/ports/FR/FR_057.jpg - resources/images/ports/TO/TO_033.jpg - resources/images/ports/FR/FR_043.jpg - resources/images/ports/TO/TO_027.jpg - resources/images/ports/GR/GR_057.jpg - resources/images/ports/CR/CR_288.jpg - resources/images/ports/GR/GR_080.jpg - resources/images/ports/CR/CR_277.jpg - resources/images/ports/AB/AB_003.jpg - resources/images/ports/GR/GR_082.jpg - resources/images/ports/CR/CR_261.jpg - resources/images/ports/AB/AB_001.jpg - resources/images/ports/TO/TO_019.jpg - resources/images/ports/FR/FR_055.jpg - resources/images/ports/TO/TO_031.jpg - resources/images/ports/GR/GR_041.jpg - resources/images/ports/GR/GR_055.jpg - resources/images/ports/FR/FR_041.jpg - resources/images/ports/LA/LA_007.jpg - resources/images/ports/SI/SI_011.jpg - resources/images/ports/SI/SI_005.jpg - resources/images/ports/CR/CR_077.jpg - resources/images/ports/SI/SI_039.jpg - resources/images/ports/CR/CR_063.jpg - resources/images/ports/VE/VE_029.jpg - resources/images/ports/LI/LI_015.jpg - resources/images/ports/SA/SA_003.jpg - resources/images/ports/SA/SA_017.jpg - resources/images/ports/LI/LI_001.jpg - resources/images/ports/PU/PU_109.jpg - resources/images/ports/CR/CR_103.jpg - resources/images/ports/CA/CA_032.jpg - resources/images/ports/CL/CL_005.jpg - resources/images/ports/CL/CL_011.jpg - resources/images/ports/CA/CA_026.jpg - resources/images/ports/CR/CR_315.jpg - resources/images/ports/xPU/xPU_005.jpg - resources/images/ports/CL/CL_010.jpg - resources/images/ports/CR/CR_328.jpg - resources/images/ports/CA/CA_027.jpg - resources/images/ports/CA/CA_033.jpg - resources/images/ports/LI/LI_028.jpg - resources/images/ports/PU/PU_108.jpg - resources/images/ports/SA/SA_016.jpg - resources/images/ports/SA/SA_002.jpg - resources/images/ports/VE/VE_028.jpg - resources/images/ports/VE/VE_014.jpg - resources/images/ports/CR/CR_062.jpg - resources/images/ports/CR/CR_076.jpg - resources/images/ports/SI/SI_004.jpg - resources/images/ports/LA/LA_012.jpg - resources/images/ports/PU/PU_054.jpg - resources/images/ports/LA/LA_006.jpg - resources/images/ports/MA/MA_012.jpg - resources/images/ports/SI/SI_010.jpg - resources/images/ports/GR/GR_054.jpg - resources/images/ports/TO/TO_024.jpg - resources/images/ports/TO/TO_030.jpg - resources/images/ports/FR/FR_054.jpg - resources/images/ports/GR/GR_040.jpg - resources/images/ports/TO/TO_018.jpg - resources/images/ports/GR/GR_083.jpg - resources/images/ports/CR/CR_248.jpg - resources/images/ports/CR/CR_213.jpg - resources/images/ports/CA/CA_108.jpg - resources/images/ports/GR/GR_027.jpg - resources/images/ports/GR/GR_033.jpg - resources/images/ports/FR/FR_027.jpg - resources/images/ports/CR/CR_011.jpg - resources/images/ports/CR/CR_005.jpg - resources/images/ports/PU/PU_027.jpg - resources/images/ports/SI/SI_077.jpg - resources/images/ports/CR/CR_039.jpg - resources/images/ports/PU/PU_033.jpg - resources/images/ports/SI/SI_088.jpg - resources/images/ports/CR/CR_165.jpg - resources/images/ports/SA/SA_059.jpg - resources/images/ports/LI/LI_073.jpg - resources/images/ports/CR/CR_159.jpg - resources/images/ports/SI/SI_117.jpg - resources/images/ports/CR/CR_373.jpg - resources/images/ports/CA/CA_040.jpg - resources/images/ports/CR/CR_398.jpg - resources/images/ports/CR/CR_399.jpg - resources/images/ports/CA/CA_041.jpg - resources/images/ports/CR/CR_372.jpg - resources/images/ports/CR/CR_366.jpg - resources/images/ports/VE/VE_106.jpg - resources/images/ports/SA/SA_070.jpg - resources/images/ports/CR/CR_158.jpg - resources/images/ports/LI/LI_072.jpg - resources/images/ports/SA/SA_064.jpg - resources/images/ports/CR/CR_164.jpg - resources/images/ports/SA/SA_058.jpg - resources/images/ports/SI/SI_089.jpg - resources/images/ports/SA/SA_104.jpg - resources/images/ports/CR/CR_038.jpg - resources/images/ports/PU/PU_026.jpg - resources/images/ports/SA/SA_110.jpg - resources/images/ports/CR/CR_004.jpg - resources/images/ports/CR/CR_010.jpg - resources/images/ports/LI/LI_055F.jpg - resources/images/ports/GR/GR_032.jpg - resources/images/ports/TO/TO_042.jpg - resources/images/ports/TO/TO_056.jpg - resources/images/ports/GR/GR_026.jpg - resources/images/ports/CR/CR_206.jpg - resources/images/ports/CA/CA_109.jpg - resources/images/ports/CR/CR_204.jpg - resources/images/ports/CR/CR_210.jpg - resources/images/ports/FR/FR_024.jpg - resources/images/ports/TO/TO_040.jpg - resources/images/ports/GR/GR_030.jpg - resources/images/ports/GR/GR_024.jpg - resources/images/ports/FR/FR_030.jpg - resources/images/ports/GR/GR_018.jpg - resources/images/ports/LI/LI_055D.jpg - resources/images/ports/CR/CR_006.jpg - resources/images/ports/SI/SI_048.jpg - resources/images/ports/CR/CR_012.jpg - resources/images/ports/PU/PU_018.jpg - resources/images/ports/SI/SI_060.jpg - resources/images/ports/SI/SI_074.jpg - resources/images/ports/PU/PU_024.jpg - resources/images/ports/RO/RO_025.jpg - resources/images/ports/LI/LI_058.jpg - resources/images/ports/CR/CR_172.jpg - resources/images/ports/SI/SI_128.jpg - resources/images/ports/SI/SI_100.jpg - resources/images/ports/LI/LI_070.jpg - resources/images/ports/VE/VE_110.jpg - resources/images/ports/CR/CR_370.jpg - resources/images/ports/CR/CR_364.jpg - resources/images/ports/CA/CA_043.jpg - resources/images/ports/CR/CR_358.jpg - resources/images/ports/CL/CL_060.jpg - resources/images/ports/LA/LA_026B.jpg - resources/images/ports/CR/CR_359.jpg - resources/images/ports/CA/CA_056.jpg - resources/images/ports/CA/CA_042.jpg - resources/images/ports/VE/VE_105.jpg - resources/images/ports/CR/CR_198.jpg - resources/images/ports/SA/SA_067.jpg - resources/images/ports/LI/LI_071.jpg - resources/images/ports/SA/SA_073.jpg - resources/images/ports/CR/CR_173.jpg - resources/images/ports/SI/SI_129.jpg - resources/images/ports/RO/RO_024.jpg - resources/images/ports/RO/RO_018.jpg - resources/images/ports/PU/PU_025.jpg - resources/images/ports/SI/SI_061.jpg - resources/images/ports/SI/SI_049.jpg - resources/images/ports/PU/PU_019.jpg - resources/images/ports/CR/CR_013.jpg - resources/images/ports/CR/CR_007.jpg - resources/images/ports/GR/GR_019.jpg - resources/images/ports/LI/LI_055E.jpg - resources/images/ports/FR/FR_019.jpg - resources/images/ports/GR/GR_025.jpg - resources/images/ports/TO/TO_055.jpg - resources/images/ports/FR/FR_031.jpg - resources/images/ports/TO/TO_041.jpg - resources/images/ports/FR/FR_025.jpg - resources/images/ports/GR/GR_031.jpg - resources/images/ports/CR/CR_205.jpg - resources/images/ports/GR/GR_009.jpg - resources/images/ports/GR/GR_035.jpg - resources/images/ports/FR/FR_021.jpg - resources/images/ports/GR/GR_021.jpg - resources/images/ports/SI/SI_065.jpg - resources/images/ports/PU/PU_035.jpg - resources/images/ports/PU/PU_009.jpg - resources/images/ports/CR/CR_003.jpg - resources/images/ports/CR/CR_017.jpg - resources/images/ports/RO/RO_008.jpg - resources/images/ports/VE/VE_049.jpg - resources/images/ports/SA/SA_077.jpg - resources/images/ports/SI/SI_111.jpg - resources/images/ports/LI/LI_075.jpg - resources/images/ports/SI/SI_139.jpg - resources/images/ports/CR/CR_188.jpg - resources/images/ports/VE/VE_101.jpg - resources/images/ports/CA/CA_046.jpg - resources/images/ports/CR/CR_361.jpg - resources/images/ports/CR/CR_360.jpg - resources/images/ports/CR/CR_348.jpg - resources/images/ports/CA/CA_047.jpg - resources/images/ports/SA/SA_089.jpg - resources/images/ports/VE/VE_100.jpg - resources/images/ports/CR/CR_189.jpg - resources/images/ports/LI/LI_048.jpg - resources/images/ports/SI/SI_138.jpg - resources/images/ports/CR/CR_176.jpg - resources/images/ports/LI/LI_074.jpg - resources/images/ports/SA/SA_062.jpg - resources/images/ports/VE/VE_048.jpg - resources/images/ports/RO/RO_009.jpg - resources/images/ports/VE/VE_060.jpg - resources/images/ports/RO/RO_021.jpg - resources/images/ports/CR/CR_016.jpg - resources/images/ports/SI/SI_058.jpg - resources/images/ports/CR/CR_002.jpg - resources/images/ports/SI/SI_070.jpg - resources/images/ports/PU/PU_034.jpg - resources/images/ports/TO/TO_050.jpg - resources/images/ports/GR/GR_020.jpg - resources/images/ports/GR/GR_034.jpg - resources/images/ports/FR/FR_020.jpg - resources/images/ports/GR/GR_008.jpg - resources/images/ports/CR/CR_214.jpg - resources/images/ports/CR/CR_200.jpg - resources/images/ports/LI/LI_055B.jpg - resources/images/ports/GR/GR_022.jpg - resources/images/ports/TO/TO_052.jpg - resources/images/ports/FR/FR_036.jpg - resources/images/ports/FR/FR_022.jpg - resources/images/ports/GR/GR_036.jpg - resources/images/ports/PU/PU_022.jpg - resources/images/ports/CR/CR_028.jpg - resources/images/ports/PU/PU_036.jpg - resources/images/ports/SI/SI_066.jpg - resources/images/ports/CR/CR_014.jpg - resources/images/ports/RO/RO_023.jpg - resources/images/ports/SI/SI_099.jpg - resources/images/ports/LI/LI_076.jpg - resources/images/ports/CR/CR_148.jpg - resources/images/ports/SA/SA_074.jpg - resources/images/ports/SA/SA_048.jpg - resources/images/ports/VE/VE_102.jpg - resources/images/ports/CA/CA_045.jpg - resources/images/ports/CR/CR_362.jpg - resources/images/ports/CR/CR_376.jpg - resources/images/ports/CR/CR_389.jpg - resources/images/ports/CR/CR_377.jpg - resources/images/ports/CR/CR_363.jpg - resources/images/ports/CA/CA_044.jpg - resources/images/ports/CA/CA_050.jpg - resources/images/ports/VE/VE_103.jpg - resources/images/ports/SA/SA_049.jpg - resources/images/ports/SA/SA_061.jpg - resources/images/ports/SI/SI_107.jpg - resources/images/ports/LI/LI_077.jpg - resources/images/ports/CR/CR_001.jpg - resources/images/ports/CR/CR_015.jpg - resources/images/ports/PU/PU_037.jpg - resources/images/ports/SI/SI_067.jpg - resources/images/ports/CR/CR_029.jpg - resources/images/ports/PU/PU_023.jpg - resources/images/ports/GR/GR_037.jpg - resources/images/ports/GR/GR_023.jpg - resources/images/ports/LI/LI_055C.jpg - resources/images/ports/CA/CA_101.jpg - resources/images/ports/FR/FR_012.jpg - resources/images/ports/GR/GR_006.jpg - resources/images/ports/GR/GR_012.jpg - resources/images/ports/FR/FR_006.jpg - resources/images/ports/FR/FR_990.jpg - resources/images/ports/CR/CR_030.jpg - resources/images/ports/PU/PU_990.jpg - resources/images/ports/CR/CR_024.jpg - resources/images/ports/SI/SI_056.jpg - resources/images/ports/SI/SI_042.jpg - resources/images/ports/PU/PU_012.jpg - resources/images/ports/CR/CR_018.jpg - resources/images/ports/CL/CL_031B.jpg - resources/images/ports/VE/VE_052.jpg - resources/images/ports/VE/VE_046.jpg - resources/images/ports/SI/SI_081.jpg - resources/images/ports/SA/SA_078.jpg - resources/images/ports/CR/CR_150.jpg - resources/images/ports/SA/SA_044.jpg - resources/images/ports/SA/SA_050.jpg - resources/images/ports/LI/LI_046.jpg - resources/images/ports/CR/CR_187.jpg - resources/images/ports/SA/SA_087.jpg - resources/images/ports/CA/CA_049.jpg - resources/images/ports/CR/CR_346.jpg - resources/images/ports/CR/CR_352.jpg - resources/images/ports/CR/CR_385.jpg - resources/images/ports/CR/CR_391.jpg - resources/images/ports/CR/CR_384.jpg - resources/images/ports/CR/CR_353.jpg - resources/images/ports/CA/CA_048.jpg - resources/images/ports/SA/SA_051.jpg - resources/images/ports/SI/SI_137.jpg - resources/images/ports/LI/LI_053.jpg - resources/images/ports/SA/SA_045.jpg - resources/images/ports/SI/SI_080.jpg - resources/images/ports/VE/VE_047.jpg - resources/images/ports/RO/RO_006.jpg - resources/images/ports/CR/CR_019.jpg - resources/images/ports/PU/PU_013.jpg - resources/images/ports/PU/PU_007.jpg - resources/images/ports/SI/SI_057.jpg - resources/images/ports/PU/PU_991.jpg - resources/images/ports/CR/CR_025.jpg - resources/images/ports/CR/CR_031.jpg - resources/images/ports/FR/FR_991.jpg - resources/images/ports/GR/GR_013.jpg - resources/images/ports/FR/FR_007.jpg - resources/images/ports/FR/FR_013.jpg - resources/images/ports/GR/GR_007.jpg - resources/images/ports/CA/CA_100.jpg - resources/images/ports/CR/CR_225.jpg - resources/images/ports/CA/CA_102.jpg - resources/images/ports/TO/TO_061.jpg - resources/images/ports/GR/GR_011.jpg - resources/images/ports/GR/GR_005.jpg - resources/images/ports/FR/FR_011.jpg - resources/images/ports/LI/LI_056A.jpg - resources/images/ports/FR/FR_039.jpg - resources/images/ports/FR/FR_993.jpg - resources/images/ports/GR/GR_039.jpg - resources/images/ports/CR/CR_027.jpg - resources/images/ports/SI/SI_069.jpg - resources/images/ports/PU/PU_039.jpg - resources/images/ports/CR/CR_033.jpg - resources/images/ports/PU/PU_011.jpg - resources/images/ports/SI/SI_055.jpg - resources/images/ports/PU/PU_005.jpg - resources/images/ports/LA/LA_043.jpg - resources/images/ports/RO/RO_004.jpg - resources/images/ports/VE/VE_045.jpg - resources/images/ports/SI/SI_096.jpg - resources/images/ports/VE/VE_051.jpg - resources/images/ports/CL/CL_031A.jpg - resources/images/ports/CR/CR_153.jpg - resources/images/ports/SI/SI_109.jpg - resources/images/ports/LI/LI_045.jpg - resources/images/ports/SI/SI_135.jpg - resources/images/ports/SA/SA_053.jpg - resources/images/ports/SA/SA_047.jpg - resources/images/ports/CR/CR_190.jpg - resources/images/ports/CR/CR_184.jpg - resources/images/ports/SA/SA_090.jpg - resources/images/ports/CR/CR_351.jpg - resources/images/ports/CR/CR_345.jpg - resources/images/ports/CL/CL_055.jpg - resources/images/ports/CR/CR_379.jpg - resources/images/ports/CR/CR_392.jpg - resources/images/ports/CR/CR_386.jpg - resources/images/ports/PU/PU_041A.jpg - resources/images/ports/CR/CR_378.jpg - resources/images/ports/CL/CL_054.jpg - resources/images/ports/CR/CR_350.jpg - resources/images/ports/MO/MO_001.jpg - resources/images/ports/SA/SA_091.jpg - resources/images/ports/LI/LI_044.jpg - resources/images/ports/SA/SA_052.jpg - resources/images/ports/SI/SI_134.jpg - resources/images/ports/LI/LI_078.jpg - resources/images/ports/VE/VE_050.jpg - resources/images/ports/SI/SI_083.jpg - resources/images/ports/VE/VE_044.jpg - resources/images/ports/RO/RO_005.jpg - resources/images/ports/PU/PU_010.jpg - resources/images/ports/SA/SA_126.jpg - resources/images/ports/SI/SI_068.jpg - resources/images/ports/CR/CR_032.jpg - resources/images/ports/PU/PU_038.jpg - resources/images/ports/CR/CR_026.jpg - resources/images/ports/GR/GR_038.jpg - resources/images/ports/FR/FR_992.jpg - resources/images/ports/FR/FR_038.jpg - resources/images/ports/FR/FR_010.jpg - resources/images/ports/GR/GR_010.jpg - resources/images/ports/CA/CA_103.jpg - resources/images/ports/CR/CR_230.jpg - resources/images/ports/CA/CA_113.jpg - resources/images/ports/CA/CA_107.jpg - resources/images/ports/GR/GR_028.jpg - resources/images/ports/GR/GR_014.jpg - resources/images/ports/FR/FR_014.jpg - resources/images/ports/SA/SA_122.jpg - resources/images/ports/PU/PU_014.jpg - resources/images/ports/SI/SI_078.jpg - resources/images/ports/CR/CR_022.jpg - resources/images/ports/PU/PU_028.jpg - resources/images/ports/CR/CR_036.jpg - resources/images/ports/RO/RO_001.jpg - resources/images/ports/VE/VE_040.jpg - resources/images/ports/SI/SI_087.jpg - resources/images/ports/SI/SI_130.jpg - resources/images/ports/SA/SA_056.jpg - resources/images/ports/LI/LI_040.jpg - resources/images/ports/SI/SI_124.jpg - resources/images/ports/CR/CR_142.jpg - resources/images/ports/SI/SI_118.jpg - resources/images/ports/PU/PU_060C.jpg - resources/images/ports/SA/SA_081.jpg - resources/images/ports/VE/VE_108.jpg - resources/images/ports/CR/CR_181.jpg - resources/images/ports/CL/CL_050.jpg - resources/images/ports/CL/CL_044.jpg - resources/images/ports/FR/FR_004A.jpg - resources/images/ports/CR/CR_340.jpg - resources/images/ports/CR/CR_397.jpg - resources/images/ports/CR/CR_382.jpg - resources/images/ports/CL/CL_051.jpg - resources/images/ports/VE/VE_109.jpg - resources/images/ports/CR/CR_194.jpg - resources/images/ports/SA/SA_080.jpg - resources/images/ports/PU/PU_060B.jpg - resources/images/ports/SI/SI_119.jpg - resources/images/ports/CR/CR_157.jpg - resources/images/ports/SI/SI_125.jpg - resources/images/ports/SA/SA_043.jpg - resources/images/ports/SA/SA_057.jpg - resources/images/ports/SI/SI_131.jpg - resources/images/ports/LI/LI_041.jpg - resources/images/ports/RO/RO_014.jpg - resources/images/ports/SI/SI_092.jpg - resources/images/ports/CR/CR_037.jpg - resources/images/ports/SI/SI_079.jpg - resources/images/ports/PU/PU_029.jpg - resources/images/ports/CR/CR_023.jpg - resources/images/ports/SI/SI_051.jpg - resources/images/ports/PU/PU_015.jpg - resources/images/ports/FR/FR_015.jpg - resources/images/ports/GR/GR_001.jpg - resources/images/ports/GR/GR_015.jpg - resources/images/ports/GR/GR_029.jpg - resources/images/ports/CR/CR_235.jpg - resources/images/ports/RO/RO_006A.jpg - resources/images/ports/CA/CA_106.jpg - resources/images/ports/CA/CA_112.jpg - resources/images/ports/CA/CA_104.jpg - resources/images/ports/CA/CA_110.jpg - resources/images/ports/RO/RO_006C.jpg - resources/images/ports/CR/CR_223.jpg - resources/images/ports/GR/GR_003.jpg - resources/images/ports/FR/FR_017.jpg - resources/images/ports/FR/FR_003.jpg - resources/images/ports/GR/GR_017.jpg - resources/images/ports/SI/SI_053.jpg - resources/images/ports/CR/CR_009.jpg - resources/images/ports/LA/LA_051.jpg - resources/images/ports/SA/SA_109.jpg - resources/images/ports/CR/CR_035.jpg - resources/images/ports/CR/CR_021.jpg - resources/images/ports/RO/RO_016.jpg - resources/images/ports/RO/RO_002.jpg - resources/images/ports/VE/VE_043.jpg - resources/images/ports/SA/SA_041.jpg - resources/images/ports/SI/SI_127.jpg - resources/images/ports/LI/LI_057.jpg - resources/images/ports/LI/LI_043.jpg - resources/images/ports/CR/CR_169.jpg - resources/images/ports/CR/CR_141.jpg - resources/images/ports/SA/SA_069.jpg - resources/images/ports/CL/CL_047.jpg - resources/images/ports/CL/CL_053.jpg - resources/images/ports/CR/CR_343.jpg - resources/images/ports/FR/FR_004B.jpg - resources/images/ports/CR/CR_357.jpg - resources/images/ports/CR/CR_380.jpg - resources/images/ports/CR/CR_394.jpg - resources/images/ports/CR/CR_395.jpg - resources/images/ports/FR/FR_004C.jpg - resources/images/ports/CL/CL_052.jpg - resources/images/ports/CR/CR_197.jpg - resources/images/ports/CR/CR_183.jpg - resources/images/ports/PU/PU_060A.jpg - resources/images/ports/SA/SA_083.jpg - resources/images/ports/CR/CR_154.jpg - resources/images/ports/SA/SA_068.jpg - resources/images/ports/SA/SA_054.jpg - resources/images/ports/SI/SI_126.jpg - resources/images/ports/SA/SA_040.jpg - resources/images/ports/RO/RO_003.jpg - resources/images/ports/CR/CR_020.jpg - resources/images/ports/CR/CR_034.jpg - resources/images/ports/PU/PU_016.jpg - resources/images/ports/LA/LA_050.jpg - resources/images/ports/SI/SI_046.jpg - resources/images/ports/CR/CR_008.jpg - resources/images/ports/FR/FR_002.jpg - resources/images/ports/GR/GR_016.jpg - resources/images/ports/GR/GR_002.jpg - resources/images/ports/FR/FR_016.jpg - resources/images/ports/RO/RO_006B.jpg - resources/images/ports/CR/CR_222.jpg - resources/images/ports/CA/CA_111.jpg - resources/images/ports/CA/CA_105.jpg - resources/images/ports/CR/CR_245.jpg - resources/images/ports/CR/CR_279.jpg - resources/images/ports/TO/TO_001.jpg - resources/images/ports/GR/GR_071.jpg - resources/images/ports/GR/GR_059.jpg - resources/images/ports/TO/TO_029.jpg - resources/images/ports/FR/FR_059.jpg - resources/images/ports/SI/SI_009.jpg - resources/images/ports/CR/CR_053.jpg - resources/images/ports/LA/LA_037.jpg - resources/images/ports/A/A_006.jpg - resources/images/ports/CR/CR_127.jpg - resources/images/ports/LI/LI_019.jpg - resources/images/ports/PU/PU_111.jpg - resources/images/ports/LI/LI_031.jpg - resources/images/ports/LI/LI_025.jpg - resources/images/ports/PU/PU_105.jpg - resources/images/ports/T/T_012.jpg - resources/images/ports/CR/CR_325.jpg - resources/images/ports/CR/CR_331.jpg - resources/images/ports/T/T_006.jpg - resources/images/ports/CL/CL_009.jpg - resources/images/ports/CA/CA_016.jpg - resources/images/ports/CA/CA_002.jpg - resources/images/ports/CA/CA_003.jpg - resources/images/ports/CA/CA_017.jpg - resources/images/ports/T/T_007.jpg - resources/images/ports/CR/CR_330.jpg - resources/images/ports/CR/CR_324.jpg - resources/images/ports/PU/PU_104.jpg - resources/images/ports/SI/SI_140.jpg - resources/images/ports/PU/PU_110.jpg - resources/images/ports/LI/LI_018.jpg - resources/images/ports/VE/VE_030.jpg - resources/images/ports/A/A_007.jpg - resources/images/ports/SI/SI_020.jpg - resources/images/ports/SI/SI_034.jpg - resources/images/ports/LA/LA_022.jpg - resources/images/ports/PU/PU_064.jpg - resources/images/ports/CR/CR_046.jpg - resources/images/ports/SI/SI_008.jpg - resources/images/ports/CR/CR_052.jpg - resources/images/ports/GR/GR_058.jpg - resources/images/ports/TO/TO_028.jpg - resources/images/ports/FR/FR_064.jpg - resources/images/ports/CR/CR_287.jpg - resources/images/ports/GR/GR_070.jpg - resources/images/ports/GR/GR_064.jpg - resources/images/ports/CR/CR_250.jpg - resources/images/ports/CR/CR_246.jpg - resources/images/ports/CR/CR_252.jpg - resources/images/ports/GR/GR_072.jpg - resources/images/ports/TO/TO_002.jpg - resources/images/ports/TO/TO_016.jpg - resources/images/ports/LA/LA_008.jpg - resources/images/ports/CR/CR_044.jpg - resources/images/ports/CR/CR_050.jpg - resources/images/ports/MA/MA_008.jpg - resources/images/ports/MA/MA_020.jpg - resources/images/ports/CR/CR_078.jpg - resources/images/ports/LA/LA_020.jpg - resources/images/ports/VE/VE_026.jpg - resources/images/ports/VE/VE_032.jpg - resources/images/ports/SA/SA_018.jpg - resources/images/ports/PU/PU_106.jpg - resources/images/ports/PU/PU_112.jpg - resources/images/ports/LI/LI_032.jpg - resources/images/ports/CR/CR_118.jpg - resources/images/ports/SA/SA_024.jpg - resources/images/ports/T/T_005.jpg - resources/images/ports/T/T_011.jpg - resources/images/ports/CA/CA_015.jpg - resources/images/ports/BA/BA_001.jpg - resources/images/ports/CA/CA_014.jpg - resources/images/ports/CL/CL_037.jpg - resources/images/ports/CR/CR_327.jpg - resources/images/ports/T/T_010.jpg - resources/images/ports/T/T_004.jpg - resources/images/ports/LI/LI_033.jpg - resources/images/ports/PU/PU_113.jpg - resources/images/ports/SA/SA_025.jpg - resources/images/ports/SA/SA_031.jpg - resources/images/ports/PU/PU_107.jpg - resources/images/ports/LI/LI_027.jpg - resources/images/ports/CR/CR_125.jpg - resources/images/ports/A/A_004.jpg - resources/images/ports/VE/VE_033.jpg - resources/images/ports/CR/CR_092.jpg - resources/images/ports/LA/LA_021.jpg - resources/images/ports/SI/SI_037.jpg - resources/images/ports/SI/SI_023.jpg - resources/images/ports/CR/CR_051.jpg - resources/images/ports/MA/MA_009.jpg - resources/images/ports/CR/CR_045.jpg - resources/images/ports/LA/LA_009.jpg - resources/images/ports/TO/TO_036B.jpg - resources/images/ports/TO/TO_017.jpg - resources/images/ports/GR/GR_073.jpg - resources/images/ports/TO/TO_003.jpg - resources/images/ports/GR/GR_088.jpg - resources/images/ports/CR/CR_243.jpg - resources/images/ports/CR/CR_257.jpg - resources/images/ports/FR/FR_063.jpg - resources/images/ports/GR/GR_077.jpg - resources/images/ports/GR/GR_063.jpg - resources/images/ports/LA/LA_031.jpg - resources/images/ports/SI/SI_027.jpg - resources/images/ports/SI/SI_033.jpg - resources/images/ports/LA/LA_025.jpg - resources/images/ports/CR/CR_041.jpg - resources/images/ports/CR/CR_055.jpg - resources/images/ports/LA/LA_019.jpg - resources/images/ports/VE/VE_023.jpg - resources/images/ports/VE/VE_037.jpg - resources/images/ports/CR/CR_096.jpg - resources/images/ports/CR/CR_109.jpg - resources/images/ports/PU/PU_103.jpg - resources/images/ports/SA/SA_035.jpg - resources/images/ports/SI/SI_147.jpg - resources/images/ports/SA/SA_021.jpg - resources/images/ports/PU/PU_117.jpg - resources/images/ports/LI/LI_037.jpg - resources/images/ports/SA/SA_009.jpg - resources/images/ports/CL/CL_033.jpg - resources/images/ports/CA/CA_010.jpg - resources/images/ports/CA/CA_038.jpg - resources/images/ports/CR/CR_337.jpg - resources/images/ports/CR/CR_323.jpg - resources/images/ports/FR/FR_002B.jpg - resources/images/ports/MA/MA_013A.jpg - resources/images/ports/CR/CR_322.jpg - resources/images/ports/FR/FR_002C.jpg - resources/images/ports/CA/CA_039.jpg - resources/images/ports/T/T_001.jpg - resources/images/ports/CA/CA_011.jpg - resources/images/ports/SI/SI_A01.jpg - resources/images/ports/LI/LI_010B.jpg - resources/images/ports/SA/SA_008.jpg - resources/images/ports/SA/SA_020.jpg - resources/images/ports/SI/SI_146.jpg - resources/images/ports/LI/LI_036.jpg - resources/images/ports/PU/PU_102.jpg - resources/images/ports/SA/SA_034.jpg - resources/images/ports/A/A_001.jpg - resources/images/ports/LA/LA_018.jpg - resources/images/ports/CR/CR_054.jpg - resources/images/ports/CR/CR_040.jpg - resources/images/ports/SI/SI_032.jpg - resources/images/ports/CR/CR_068.jpg - resources/images/ports/LA/LA_024.jpg - resources/images/ports/SI/SI_026.jpg - resources/images/ports/GR/GR_062.jpg - resources/images/ports/TO/TO_006.jpg - resources/images/ports/GR/GR_076.jpg - resources/images/ports/TO/TO_990.jpg - resources/images/ports/GR/GR_089.jpg - resources/images/ports/AB/AB_008.jpg - resources/images/ports/CR/CR_254.jpg - resources/images/ports/GR/GR_048.jpg - resources/images/ports/TO/TO_038.jpg - resources/images/ports/GR/GR_060.jpg - resources/images/ports/GR/GR_074.jpg - resources/images/ports/FR/FR_060.jpg - resources/images/ports/TO/TO_004.jpg - resources/images/ports/LA/LA_026.jpg - resources/images/ports/SI/SI_030.jpg - resources/images/ports/LA/LA_032.jpg - resources/images/ports/CR/CR_056.jpg - resources/images/ports/SI/SI_018.jpg - resources/images/ports/PU/PU_048.jpg - resources/images/ports/CR/CR_042.jpg - resources/images/ports/A/A_003.jpg - resources/images/ports/VE/VE_020.jpg - resources/images/ports/PU/PU_114.jpg - resources/images/ports/LI/LI_034.jpg - resources/images/ports/SI/SI_144.jpg - resources/images/ports/SA/SA_022.jpg - resources/images/ports/SI/SI_150.jpg - resources/images/ports/LI/LI_020.jpg - resources/images/ports/CR/CR_136.jpg - resources/images/ports/CA/CA_013.jpg - resources/images/ports/CA/CA_007.jpg - resources/images/ports/FR/FR_002A.jpg - resources/images/ports/CR/CR_320.jpg - resources/images/ports/CL/CL_018.jpg - resources/images/ports/T/T_003.jpg - resources/images/ports/MA/MA_013B.jpg - resources/images/ports/T/T_002.jpg - resources/images/ports/CA/CA_990.jpg - resources/images/ports/CL/CL_031.jpg - resources/images/ports/CA/CA_006.jpg - resources/images/ports/CA/CA_012.jpg - resources/images/ports/SI/SI_A02.jpg - resources/images/ports/LI/LI_010A.jpg - resources/images/ports/CR/CR_123.jpg - resources/images/ports/LI/LI_009.jpg - resources/images/ports/SI/SI_151.jpg - resources/images/ports/SA/SA_037.jpg - resources/images/ports/PU/PU_101.jpg - resources/images/ports/LI/LI_035.jpg - resources/images/ports/SA/SA_023.jpg - resources/images/ports/SI/SI_145.jpg - resources/images/ports/VE/VE_035.jpg - resources/images/ports/SI/SI_019.jpg - resources/images/ports/CR/CR_043.jpg - resources/images/ports/PU/PU_049.jpg - resources/images/ports/CR/CR_057.jpg - resources/images/ports/SI/SI_025.jpg - resources/images/ports/LA/LA_033.jpg - resources/images/ports/LA/LA_027.jpg - resources/images/ports/GR/GR_075.jpg - resources/images/ports/FR/FR_061.jpg - resources/images/ports/GR/GR_061.jpg - resources/images/ports/GR/GR_049.jpg - resources/images/ports/AB/AB_009.jpg - resources/images/ports/CR/CR_269.jpg - - - \ No newline at end of file diff --git a/apps/settings/manifest.json b/apps/settings/manifest.json index a95607f..e404925 100644 --- a/apps/settings/manifest.json +++ b/apps/settings/manifest.json @@ -511,13 +511,13 @@ { "class":"fairwind::connections::SignalKAPIClient", "active":true, - "url":"http://demo.signalk.org/signalk/v1/api", + "url":"http://localhost:3000/signalk/v1/api", "restore":true }, { "class":"fairwind::connections::SignalKWSClient", "active":true, - "url":"ws://demo.signalk.org/signalk/v1/stream" + "url":"ws://localhost:3000/signalk/v1/stream" } ], "keys":{ diff --git a/sdk/bin/fairwindsdk-app-create b/sdk/bin/fairwindsdk-app-create index e8f79a2..476dff7 100755 --- a/sdk/bin/fairwindsdk-app-create +++ b/sdk/bin/fairwindsdk-app-create @@ -5,4 +5,4 @@ if [[ -z "${FAIRWINDSDK_HOME}" ]]; then exit fi -python $FAIRWINDSDK_HOME/scripts/fairwindsdk-app-create.py $@ \ No newline at end of file +python3 $FAIRWINDSDK_HOME/scripts/fairwindsdk-app-create.py $@ \ No newline at end of file diff --git a/sdk/examples/portolano.json b/sdk/examples/portolano.json index 6981452..760519e 100644 --- a/sdk/examples/portolano.json +++ b/sdk/examples/portolano.json @@ -13,7 +13,36 @@ "Email": "fairwind@uniparthenope.it", "Id": "fairwind.apps.portolano", "Icon": ":/resources/images/icons/portolano_icon.png", - "Settings": {} + "Settings": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "userRange": { + "title": "Use Range", + "description": "User range filter or (if not selected), just search", + "default": false, + "type": "boolean" + }, + "range": { + "title": "Range", + "description": "The range in selected distance measure unit (i.e. nautical miles)", + "default": 6.5, + "type": "number" + }, + "lastSearched": { + "type": "array", + "items": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "userRange", + "range" + ] + } } } } \ No newline at end of file diff --git a/sdk/templates/app/CMakeLists.txt b/sdk/templates/app/CMakeLists.txt index fbe25dc..40b3638 100644 --- a/sdk/templates/app/CMakeLists.txt +++ b/sdk/templates/app/CMakeLists.txt @@ -1,3 +1,8 @@ +find_package (SQLite3) + +include_directories(${SQLite3_INCLUDE_DIRS}) + +find_package(Qt5 REQUIRED COMPONENTS Widgets Network Sql Positioning) set(__APPNAME___RESOURCE resources__Appname__.qrc) qt5_add_resources(__APPNAME___RESOURCE_ADDED ${__APPNAME___RESOURCE}) @@ -5,12 +10,11 @@ qt5_add_resources(__APPNAME___RESOURCE_ADDED ${__APPNAME___RESOURCE}) add_library(__Appname__ SHARED __Appname__.cpp __Appname__.hpp - MainPage.cpp MainPage.hpp MainPage.ui - ${__APPNAME___RESOURCE_ADDED} - ) + ${PORTOLANO_RESOURCE_ADDED} + MainPage.cpp MainPage.hpp MainPage.ui) add_dependencies(__Appname__ FairWindSdk) -target_link_libraries(__Appname__ PRIVATE Qt5::Widgets Qt5::Network ${LIBFAIRWINDSDK}) +target_link_libraries(__Appname__ PRIVATE Qt5::Widgets Qt5::Network Qt5::Sql Qt5::Positioning ${LIBFAIRWINDSDK} ${SQLite3_LIBRARIES}) target_compile_options(__Appname__ PRIVATE ${COMPILE_OPTIONS}) add_custom_command( diff --git a/sdk/templates/app/MainPage.hpp b/sdk/templates/app/MainPage.hpp index e6138dd..d39782a 100644 --- a/sdk/templates/app/MainPage.hpp +++ b/sdk/templates/app/MainPage.hpp @@ -17,7 +17,7 @@ namespace __namespace__ { namespace Ui { class MainPage; } QT_END_NAMESPACE - class MainPage : public fairwind::apps:::PageBase { + class MainPage : public fairwind::apps::PageBase { Q_OBJECT public: diff --git a/sdk/templates/app/resources/images/icons/__appname___icon.png b/sdk/templates/app/resources/images/icons/__appname___icon.png index 363b9a5..6516ed2 100644 Binary files a/sdk/templates/app/resources/images/icons/__appname___icon.png and b/sdk/templates/app/resources/images/icons/__appname___icon.png differ