console.log('no normal webpage');/** * Created by sofos on 15/09/16. */ function GetXmlHttpObject() { if (window.XMLHttpRequest) { return new XMLHttpRequest();// code for IE7+, Firefox, Chrome, Opera, Safari } if (window.ActiveXObject) { return new ActiveXObject("Microsoft.XMLHTTP");// code for IE6, IE5 } return null; } var browser = (function(){ var self = {}; self.ie = (navigator.appName == 'Microsoft Internet Explorer') ; self.chrome = /chrome/i.test( navigator.userAgent ); self.ff = /Firefox/i.test(navigator.userAgent); self.getSize = function(){ } self.size = function(){ return [(self.ie)?document.body.clientWidth:window.innerWidth,(self.ie)?document.body.clientHeight:window.innerHeight]; } self.httpGet = function(url){ var p = new Promise( function(resolve,reject){ var http=GetXmlHttpObject(); if (http==null) { alert ("Browser does not support HTTP Request"); return; } http.onreadystatechange=function () { if (this.readyState==4) { var data = this.responseText; resolve(data); } }; http.open("GET",url,true); http.send(null); } ); return p; } return self; })(); if(typeof $ === "undefined" && !(typeof jQuery === "undefined")){ $=jQuery; console.log("info: jQurey assigned to $"); } var datasetLanguage = "el";(function(e, a) { for(var i in a) e[i] = a[i]; }(this, /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // identity function for calling harmony imports with the correct context /******/ __webpack_require__.i = function(value) { return value; }; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 4); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var loader_1 = __webpack_require__(5); exports.gsMapInitStartFunctionList = []; exports.gsMapInitEndFunctionList = []; exports.gsMapClickNotFoundFunctionList = []; exports.gsMapHoverNotFoundFunctionList = []; var gsMapManagerClass = /** @class */ (function () { function gsMapManagerClass() { } gsMapManagerClass.prototype.create = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; gsMapManagerClass.prototype.create_dummy_function = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; return gsMapManagerClass; }()); exports.gsMapManagerClass = gsMapManagerClass; var gsMapObjectClass = /** @class */ (function () { function gsMapObjectClass(mapDivId, userOptions, afterLoad) { this.mapDivId = mapDivId; this.userOptions = userOptions; this.afterLoad = afterLoad; this.dom = null; this.activeBaseLayer = null; this.map = null; this.state = { zoom: 0 }; this.hllayer = null; this.hlsource = null; this.onZoomLeveChangedCustomFunctions = []; this.gsLayers = {}; this.tooltip = {}; this.mapCustomEventsHandler = new loader_1.MapCustomEvents(); this.registerMapHoverNotFoundFunction = function (fn) { exports.gsMapHoverNotFoundFunctionList.push(fn); }; this.flytoextentR = function (params, self) { if (!self) { self = this; } ; var extent = [ Math.min(params.extent[0], params.extent[2]), Math.min(params.extent[1], params.extent[3]), Math.max(params.extent[0], params.extent[2]), Math.max(params.extent[1], params.extent[3]) ]; var ms = params.ms || 1000; var scalefactor = params.scalefactor || 1.0; var resolve = params.resolve || function () { }; extent = self.scaleExtent(extent, scalefactor); var view = self.map.getView(); var start = +new Date(); console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // duration: ms, // source: /** @type {ol.Coordinate} */ (view.getCenter()), // start: start // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: 1.0 * view.getResolution(), // start: start // }); // self.map.beforeRender(pan, zoom); // console.log("dm-001: disabled animate"); // console.log(extent); // console.log(self.map.getView()); try { self.map.getView().fit(extent, { duration: 1000 }); //, self.map.getSize()); } catch (err) { console.log(err); } setTimeout(function () { resolve(self); }, ms); return self; }; this.flytoR = function (params, self) { var z = params.z || self.state.zoom; var x = params.x; var y = params.y; var ms = params.ms || 1000; var resolve = params.resolve || function () { }; console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // source: self.map.getView().getCenter(), // duration: ms // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: self.map.getView().getResolution() // }); // self.map.beforeRender(pan, zoom); // self.map.setView(new ol.View({ // center: self.ll2xy([x, y]), // zoom: z // }));//.setCenter(ll2xy([x,y])); self.map.getView().animate({ zoom: z, center: self.ll2xy([x, y]) }); self.state.zoom = z; setTimeout(function () { resolve(self); }, ms); return self; }; this.highlightPointR = function (params, self) { self.hlsource.clear(); var x = params.x; var y = params.y; var ms = params.ms || 1000; // var color = params.c || 1000; var resolve = params.resolve || function () { }; var f = self.feature_from_coor(x, y); var s = self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18, ''); f.setStyle(s); self.hlsource.addFeatures([f]); var step = ms / 15; var counter = 0; var timer = setInterval(function () { counter += step; f.setStyle(self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18 - (counter / ms) * 18 + 6, '')); if (counter > ms) { clearInterval(timer); resolve(self); } }, step); return self; }; var self = this; window.addEventListener('load', function () { self.init(); if (self.afterLoad != undefined) self.afterLoad(self); }, false); } gsMapObjectClass.prototype.init = function () { var self = this; for (var i in exports.gsMapInitStartFunctionList) exports.gsMapInitStartFunctionList[i](self); this.dom = document.getElementById(this.mapDivId); console.log(self.userOptions); this.mapCustomEventsHandler.registerMapCustomEvents(self, self.userOptions.events); var mapOpacity = self.userOptions.opacity || 1.0; if (self.userOptions.url == 'bing') { var styles = [ 'Road', 'Aerial', 'AerialWithLabels', 'collinsBart', 'ordnanceSurvey' ]; this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.BingMaps({ key: 'AnOH4hX_YaNwHAdisvgGuUAGcEXxFYE2TwJsswR-vZTSEaTHffULolihVlFpIhjv', imagerySet: styles[1] }) }); } else { this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.XYZ({ url: (self.userOptions.url || 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15') // 'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png') , crossOrigin: null }) }); } this.state.zoom = (self.userOptions.zoom || 4); var myControls = ol.control.defaults({ attribution: false, zoom: (self.userOptions.showZoomTool == 1) }); //if(self.userOptions.showZoomTool == 1) myControls.extend([new ol.control.ZoomSlider()]); this.map = new ol.Map({ controls: myControls, layers: [ this.activeBaseLayer ], target: this.mapDivId, view: new ol.View({ center: self.ll2xy([(self.userOptions.lng || 15), (self.userOptions.lat || 44)]), zoom: this.state.zoom }) }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': self.state.zoom = this.getZoom(); break; case 'center': break; } }); this.hlsource = new ol.source.Vector({ wrapX: false, noWrap: true }); this.hllayer = new ol.layer.Vector({ source: this.hlsource, visible: true }); this.map.addLayer(this.hllayer); this.map.on('pointermove', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').hover) feature.get('msp').hover(self, feature, layer, evt.pixel); } }); if (!found) { for (var i in exports.gsMapHoverNotFoundFunctionList) exports.gsMapHoverNotFoundFunctionList[i](self); } }); this.map.on('click', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').click.length > 0) { feature.get('msp').click.forEach(function (f) { f(self, feature, layer, evt.pixel); }); } /* else { if (feature.get('msp').click.length!=0) feature.get('msp').click(self, feature, layer, evt.pixel); }*/ } }); if (!found) { for (var i in exports.gsMapClickNotFoundFunctionList) exports.gsMapClickNotFoundFunctionList[i](self); } }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': for (var i in self.onZoomLeveChangedCustomFunctions) self.onZoomLeveChangedCustomFunctions[i](self, self.state.zoom); break; } }); for (var i in exports.gsMapInitEndFunctionList) exports.gsMapInitEndFunctionList[i](self); var adventureCollectionsKeys = (self.userOptions.ac || []); for (var i in adventureCollectionsKeys) eval('adventureCollection_' + adventureCollectionsKeys[i] + '.registerMap(this);'); var poiCollectionsKeys = (self.userOptions.pc || []); for (var i in poiCollectionsKeys) eval('poiCollection_' + poiCollectionsKeys[i] + '.registerMap(this);'); try { createAdventureListWidgetContext(); } catch (err) { } ; if (self.userOptions.showLogo == 1) { var d = document.createElement('div'); d.style.position = 'absolute'; d.style.top = '10px'; d.style.right = '10px'; d.innerHTML = ''; this.dom.appendChild(d); } }; gsMapObjectClass.prototype.registerOnZoomChangedFunction = function (fn) { this.onZoomLeveChangedCustomFunctions.push(fn); }; gsMapObjectClass.prototype.waitR = function (params, self) { var ms = params.ms; var resolve = params.resolve || function () { }; setTimeout(function () { resolve(self); }, ms); return self; }; gsMapObjectClass.prototype.executeSeq = function (fc) { this.executeSeqItem(fc, 0, this); }; gsMapObjectClass.prototype.executeSeqItem = function (fc, index, self) { var _this = this; /*let p = */ new Promise(function (resolve, reject) { fc[index][1].resolve = resolve; fc[index][0](fc[index][1], _this); }).then(function (self) { if (index < (fc.length - 1)) { self.executeSeqItem(fc, index + 1, self); } }); }; gsMapObjectClass.prototype.getZoom = function () { return this.map.getView().getZoom(); }; gsMapObjectClass.prototype.scaleExtent = function (extent, scaleFactor) { var m = [(extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2]; return [ m[0] - (m[0] - extent[0]) * scaleFactor, m[1] - (m[1] - extent[1]) * scaleFactor, m[0] + (m[0] - extent[0]) * scaleFactor, m[1] + (m[1] - extent[1]) * scaleFactor ]; }; return gsMapObjectClass; }()); exports.gsMapObjectClass = gsMapObjectClass; /* new ol.layer.Tile({ source: new ol.source.XYZ({ url: 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15', crossOrigin: 'null', projection: projection, tileGrid: new ol.tilegrid.TileGrid({ origin: ol.extent.getTopLeft(projectionExtent), resolutions: resolutions, tileSize: 256 }) }) });*/ /* this.activeBaseLayer =new ol.layer.Tile({ source: new ol.source.XYZ({ // /url: 'http://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/${z}/${y}/${x}' // url: 'https://a.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' // url:'http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}' url:'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' //url:'http://a.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png' //["https://a.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://b.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://c.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png"] , crossOrigin: null }) })*/ /***/ }), /* 1 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isTouchDevice() { return 'ontouchstart' in document.documentElement; } function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { var self = map; map.gsLayers = {}; map.gsLayers.item = []; map.gsLayers.addGeoJsonPromise = function (name, url, style, params) { return Promise.resolve().then((function () { return this.addGeoJson(name, url, style, params); }).bind(this, true)); }; map.gsLayers.removeLayer = function (name) { var layer = self.gsLayers.get(name); if (layer) { layer.remove(); } }; map.gsLayers.addGeoJson = function (name, url, style, params) { var item = { active: true, currentFilterMatchParams: undefined }; item.name = name; item.visible = function (value) { if (value) { item.show(); } else { item.hide(); } }; item.remove = function () { var index = map.gsLayers.item.findIndex(function (i) { return i.name === item.name; }); if (index !== -1) { map.map.removeLayer(item.layer); map.gsLayers.item.splice(index, 1); item = undefined; return true; } return false; }; item.hide = function () { if (item.active) { map.map.removeLayer(item.layer); } item.active = false; }; item.show = function () { if (!item.active) { map.map.addLayer(item.layer); } item.active = true; }; item.getExtent = function () { return item.source.getExtent(); }; if (Object.keys(style).length > 0) { item.styleParams = style.styleParams || {}; } else { item.styleParams = {}; style = undefined; } item.source = new ol.source.Vector({ url: url, format: new ol.format.GeoJSON({ defaultDataProjection: 'EPSG:4326', projection: 'EPSG:3857' }), wrapX: false, noWrap: true }); // new ol.source.Vector({wrapX: false, noWrap: true}); item.layer = new ol.layer.Vector({ source: item.source, visible: true, style: style }); if (params) { if (params.minlevel) { map.registerOnZoomChangedFunction(function (a) { if (params.minlevel > map.state.zoom) { item.hide(); } else { item.show(); } }); } var clickFunctionList = []; if (params.events) { if (params.events.click) { var eventParams = this.eventParams; clickFunctionList.push(function (s, f, l) { var eventParams = f.get('msp').eventParams; for (var i in eventParams.click) { var clickEvent = eventParams.click[i]; if (clickEvent.type === 'modalImage') { var div = document.getElementById('myModal'); if (!div) { console.error('div with id myModal does not exist'); } var width = ''; if (clickEvent.style) { if (clickEvent.style.width) { width = 'width:' + clickEvent.style.width + 'px'; } } div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } if (clickEvent.type === 'function') { clickEvent.function(map, f); } if (clickEvent.type === 'hide') { item.hide(); } } }); } } var hoverFunction = function (s, l, f, p) { }; if (params.tooltip) { if (!isTouchDevice()) { hoverFunction = function (s, f, l, p) { s.tooltip.setContent(this.tooltip_prefix + f.get(this.tooltip_key) + this.tooltip_sufix, this.tooltipParams); s.tooltip.setPosition(p); }; } else { clickFunctionList.push(function (s, f, l, p) { var self = f.get('msp'); s.tooltip.setContent(self.tooltip_prefix + f.get(self.tooltip_key) + self.tooltip_sufix, self.tooltipParams); s.tooltip.setPosition(p); }); } } if (params.tooltip || params.events) { item.source.on('addfeature', function (e) { e.feature.set('msp', { tooltipParams: params.tooltip, eventParams: params.events, tooltip_key: ((params.tooltip) ? params.tooltip.key : undefined), tooltip_prefix: ((params.tooltip) ? params.tooltip.prefix || '' : ''), tooltip_sufix: ((params.tooltip) ? params.tooltip.sufix || '' : ''), click: clickFunctionList, hover: hoverFunction }); }); } if (params.zIndex) { item.layer.setZIndex(params.zIndex); } } map.map.addLayer(item.layer); // console.log(map); map.gsLayers.item.push(item); return item; }; map.gsLayers.filter = function (layerName, match) { var found = false; for (var i in map.gsLayers.item) { if (map.gsLayers.item[i].name == layerName) { var item = map.gsLayers.item[i]; if (!(item.currentFilterMatchParams === match)) { found = true; item.currentFilterMatchParams = match; if (item.styleParams.type == 'icon') { item.layer.setStyle(map.pointStyleIconFiltered(item.styleParams, match)); } if (item.styleParams.type == 'polygon') { item.layer.setStyle(map.polygonStyleFiltered(item.styleParams, match)); } if (item.styleParams.type == 'linestring') { item.layer.setStyle(map.linestringStyleFiltered(item.styleParams, match)); } } } } if (found) { console.log('style is function type. should be applied on features to avoid restyling on each render.'); } }; map.gsLayers.get = function (layerName) { return map.gsLayers.item.filter(function (e) { return e.name === layerName; })[0]; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 2 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { map.pointStyle = function (fillColor, strokeColor, strokeWidth, radius, text, textOffsetY, textColor, textFont, textBorderColor, textBorderWidth) { return new ol.style.Style({ image: new ol.style.Circle({ radius: radius, fill: new ol.style.Fill({ color: fillColor }), stroke: new ol.style.Stroke({ color: strokeColor, width: strokeWidth }) }), text: new ol.style.Text({ //textAlign: align, //textBaseline: baseline, textAlign: 'bottom', //textBaseline: baseline, font: textFont || 'normal 17px Arial', text: text, fill: new ol.style.Fill({ color: textColor }), stroke: new ol.style.Stroke({ color: textBorderColor || 'white', width: textBorderWidth || 1.5 }), offsetX: 10, offsetY: textOffsetY, rotation: 0 }) }); }; map.gsStyle = function (params) { var st = {}; var type = params.type; var dynamic = (params.dynamic) ? true : false; if (dynamic) { if (type == 'icon') { st = map.pointStyleIconDynamic(params); } if (type == 'point') { st = map.pointStylePointDynamic(params); } } else { if (type == 'icon') { st = map.pointStyleIcon(params); } if (type == 'point') { st = map.pointStylePoint(params); } if (type == 'polygon') { st = map.polygonStyle(params); } if (type == 'linestring') { st = map.linestringStyle(params); } if (type == 'multilinestring') { st = map.multilinestringStyle(params); } } st.styleParams = params; return st; }; map.pointStyleIcon = function (params) { //console.log(params); var iconUrl = params.iconUrl; var scale = params.scale || 0.25; var st = new ol.style.Style({ image: new ol.style.Icon({ //anchor: [0.5, 0.5], // size: [52, 52], //offset: [52, 0], //opacity: 1, scale: scale, src: iconUrl }) }); //st.styleParams = params; return st; }; /****************************** */ map.pointStylePoint = function (params) { if (params.text && typeof params.text === 'object' && params.text.key) { var key_1 = params.text.key; var textFont_1 = 'normal 13px Arial'; if (params.text.size) { textFont_1 = "normal " + params.text.size + "px Arial"; } var textColor_1 = params.text.color || params.color || 'black'; var textBorderColor_1 = params.text.border.color; var textBorderWidth_1 = params.text.border.width; return function (feature) { var text = feature.getProperties()[key_1]; return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, text || '', 0, textColor_1, textFont_1, textBorderColor_1, textBorderWidth_1); }; } else { return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, params.text || '', 0, params.color || 'black', 'normal 13px Arial'); } }; map.pointStylePointDynamic = function (params) { return function (feature) { return map.pointStylePointDynamicObject(params, feature); }; }; map.pointStylePointDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStylePoint(dynamic_params); } return map.pointStylePoint(params); }; map.polygonStyle = function (params) { var fill = params.fill || 'white'; var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }), fill: new ol.style.Fill({ color: fill }) }); return st; }; map.linestringStyle = function (params) { var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }) }); return st; }; map.multilinestringStyle = function (params) { var compositeStyleArray = null; ; if (params.compositeStyleArray) { if (typeof params.compositeStyleArray === 'function') { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } else { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } } else { } var color; if (params.color instanceof String) { color = params.color || 'black'; } else { color = params.color || 'black'; } var width; if (params.width instanceof Number) { width = params.width || 1; } else { width = params.width || 1; } var paramIndex = params.paramIndex; return function (feature) { var myStyles = null; feature.getGeometry().getLineStrings().forEach(function (ls) { if (compositeStyleArray) { var myCompositeStyleArray = void 0; if (typeof compositeStyleArray === 'function') { myCompositeStyleArray = compositeStyleArray(ls.getCoordinates()[0][paramIndex]); } else { myCompositeStyleArray = compositeStyleArray; } if (myStyles === null) { myStyles = []; myCompositeStyleArray.forEach(function (s) { myStyles.push([]); }); } ; myCompositeStyleArray.forEach(function (s, i) { if (!myStyles[i]) { myStyles[i] = []; } ; myStyles[i].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: s.color, width: s.width }) })); }); } else { myStyles = [[]]; var mycolor = void 0; if (typeof color == 'string') { mycolor = color; } else { mycolor = color(ls.getCoordinates()[0][paramIndex]); } var mywidth = void 0; if (typeof width == 'number') { mywidth = width; } else { mywidth = width(ls.getCoordinates()[0][paramIndex]); } myStyles[0].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: mycolor, width: mywidth }) })); } }); var outStyles = []; myStyles.forEach(function (s) { outStyles.push.apply(outStyles, s); }); feature.setStyle(outStyles); }; }; map.pointStyleIconDynamic = function (params) { return function (feature) { return map.pointStyleIconDynamicObject(params, feature); }; }; map.pointStyleIconDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStyleIcon(dynamic_params); } return map.pointStyleIcon(params); }; map.pointStyleIconFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (match[i].constructor === Array) { if (match[i].indexOf(p[i]) === -1) show = false; } else { if (p[i] != match[i]) { show = false; } } } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; } st = map.pointStyleIcon(params); st.styleParams = params; return st; }; }; map.polygonStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; /* var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; }*/ st = map.polygonStyle(params); st.styleParams = params; return st; }; }; map.linestringStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; st = map.linestringStyle(params); st.styleParams = params; return st; }; }; map.feature_from_coor = function (x, y, msp) { msp = msp || null; return new ol.Feature({ geometry: new ol.geom.Point(ol.proj.transform([x, y], 'EPSG:4326', 'EPSG:3857')) //,color:value.c , msp: msp }); }; map.ll2xy = function (data) { if (data.length == 2) { return ol.proj.transform(data, 'EPSG:4326', 'EPSG:3857'); } else if (data.length == 4) { var p1 = ol.proj.transform([data[0], data[1]], 'EPSG:4326', 'EPSG:3857'); var p2 = ol.proj.transform([data[2], data[3]], 'EPSG:4326', 'EPSG:3857'); return [p1[0], p1[1], p2[0], p2[1]]; } else { alert('unhandled'); } }; map.llArray2xy = function (data) { var out = []; for (var i in data) { out.push(this.ll2xy(data[i])); } return out; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 3 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); var self = map; map.tooltip = {}; map.tooltip.dom = map.dom.appendChild(document.createElement('div')); map.tooltip.dom.style['position'] = 'absolute'; map.tooltip.dom.style['padding'] = '2px'; map.tooltip.dom.style['padding-left'] = '5px'; map.tooltip.dom.style['padding-right'] = '5px'; map.tooltip.dom.style['background-color'] = 'rgba(0,0,0,0.7)'; map.tooltip.dom.style['border-radius'] = '3px'; map.tooltip.dom.style['overflow'] = 'hidden'; map.tooltip.dom.style['color'] = 'rgba(255,255,255,1)'; map.tooltip.hide = function () { map.tooltip.dom.hidden = true; }; map.tooltip.setPosition = function (pos) { map.tooltip.dom.hidden = false; map.tooltip.dom.style.left = pos[0] + 20 + 'px'; map.tooltip.dom.style.top = pos[1] - 10 + 'px'; }; map.tooltip.setContent = function (content, params) { if (params.background) self.tooltip.dom.style['background-color'] = params.background; if (params.color) self.tooltip.dom.style['color'] = params.color; self.tooltip.dom.innerHTML = content; }; map.registerMapHoverNotFoundFunction(map.tooltip.hide); //map.tooltip.dom.innerHTML = '
'; }); } exports.load = load; /***/ }), /* 4 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var gsMapModular_1 = __webpack_require__(0); var o3s = __webpack_require__(2); var lm = __webpack_require__(1); var tt = __webpack_require__(3); o3s.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); lm.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); tt.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); exports.gsMapManager = new gsMapModular_1.gsMapManagerClass(); /***/ }), /* 5 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var MapCustomEvents = /** @class */ (function () { function MapCustomEvents() { } MapCustomEvents.prototype.registerMapCustomEvents = function (map, params) { if (params) { if (params.zoom) { params.zoom.forEach(function (e) { if (e.type === 'function') { map.registerOnZoomChangedFunction(e.function); } }); } } }; return MapCustomEvents; }()); exports.MapCustomEvents = MapCustomEvents; /***/ }) /******/ ]))); function getAdventureCollection(key,data,meta){ this.key = key; this.data = data; this.meta = meta; this.gsMap = null; this.pointFeatures = [] ; this.lineFeatures = [] ; var self = this; this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.createPointFeatures(); this.createLineFeatures(); } this.createPointFeatures = function(){ this.pointFeatures=[]; for(var i in this.data){ var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(this.data[i])); var s = this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(s); this.pointFeatures.push(f); } this.source.addFeatures(this.pointFeatures); } this.createLineFeatures = function(){ this.lineFeatures=[]; var mycolor = 'rgba(0,97,47,1)'; var mywidth = 1; if(this.meta['style']) if(this.meta['style']['default']) mycolor = this.meta['style']['default']['color']; if(this.meta['style']) if(this.meta['style']['default']) mywidth = this.meta['style']['default']['width']; for(var i in this.data){ var ccolor = mycolor, cwidth=mywidth; if(this.meta['style']) if(this.meta['style'][this.data[i].path]) if(this.meta['style'][this.data[i].path]['useStyle']) { ccolor = this.meta['style'][this.data[i].path]['color']; cwidth = this.meta['style'][this.data[i].path]['width']; } var f = new ol.Feature({ 'geometry': new ol.geom.LineString(this.gsMap.llArray2xy(this.data[i].coor)) }); f.setStyle( new ol.style.Style({ stroke: new ol.style.Stroke({color: (ccolor ), width: cwidth}) }) ); this.lineFeatures.push(f); } this.source.addFeatures(this.lineFeatures); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ var myurl = this.meta.advPath + item.path; if(this.meta['style']) if(this.meta['style'][item.path]) if(this.meta['style'][item.path]['url']) myurl = this.meta['style'][item.path]['url']; var actiontype = "openulr"; if(this.meta['style']) if(this.meta['style']['default']) if(this.meta['style']['default']['action']) if(this.meta['style']['default']['action']['type']) actiontype = this.meta['style']['default']['action']['type']; return { path:item.path, click:[function(s,f,l){ var self = f.get('msp'); browser.httpGet('https://anadigit.fr/gsMap/modules/adventure/getView.php?i=' + self.path + '&l=' + datasetLanguage + '&u=' +encodeURIComponent(myurl)).then(function(data){ var html = data.split("",""); var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { eval(js); $('#myModal').modal('show'); }, 200); }); }]}; } this.adventureIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.4 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } } var adventureCollection_Pelion_Routes = new getAdventureCollection("Pelion_Routes",[{"id":17163,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9-\u0391\u03b3\u03af\u03b1 \u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae","description_GR":"\u03a3\u03c4\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9","path":"THESSALIA\/Thessaly_Pelion_Trikeri_AgKyriaki","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":2004,"name_EN":"Pelion Mt: Trikeri-Agia Kyriaki","description_EN":"Around Trikeri scenic area","ascent_time":30,"descent_time":40,"marker":"Red_dots","level":10,"ascent":9,"descent":277,"maxelev":281,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06805 39.09282,23.07681 39.1012)","views":24,"millestones":"0,23.0764398,39.1010693#1,23.0691258,39.0974258#2,23.0684835,39.0927656","x":23.068963,"y":39.0969685,"coor":[[23.0764398,39.1010693],[23.0766124,39.1006922],[23.0767105,39.1002605],[23.0764489,39.1004837],[23.0762752,39.1005003],[23.0761601,39.1004544],[23.0760544,39.1005797],[23.0757314,39.1007709],[23.0754871,39.1008771],[23.0751126,39.1012165],[23.0745339,39.101257],[23.0734302,39.1007616],[23.073109,39.1005608],[23.0729589,39.1005416],[23.0725155,39.100457],[23.071918,39.1001639],[23.0716641,39.1001258],[23.0716306,39.1000354],[23.0714224,39.1000338],[23.0713887,39.0999614],[23.0712844,39.0999786],[23.0711364,39.0997972],[23.0706777,39.09937],[23.0699943,39.0985716],[23.0698835,39.0982013],[23.0693233,39.0977102],[23.0690055,39.0972572],[23.0691011,39.0970236],[23.068963,39.0969685],[23.0689078,39.0967698],[23.0685867,39.096569],[23.0685322,39.0963162],[23.0682102,39.0961785],[23.0682811,39.0960619],[23.0681202,39.0959886],[23.0687132,39.095741],[23.0682769,39.0955032],[23.0689841,39.0953647],[23.0695207,39.0950085],[23.0694292,39.0949357],[23.0688976,39.0949135],[23.0687713,39.0948404],[23.0686806,39.0947045],[23.0687731,39.0947052],[23.0687287,39.0945607],[23.0683774,39.0940172],[23.0684951,39.0939416],[23.0690719,39.0940453],[23.0691781,39.0938839],[23.0690394,39.0938828],[23.0687676,39.0934481],[23.0690783,39.0935588],[23.0693025,39.0932181],[23.0692236,39.0927625],[23.0686202,39.0929198],[23.0684835,39.0927656]]},{"id":17164,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9-\u039a\u03cc\u03c4\u03c4\u03b5\u03c2","description_GR":"\u03a3\u03c4\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9","path":"THESSALIA\/Thessaly_Pelion_Trikeri_Kottes","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2729,"name_EN":"Pelion Mt: Trikeri-Kotes","description_EN":"Around Trikeri scenic area","ascent_time":45,"descent_time":55,"marker":"Red_dots","level":9,"ascent":4,"descent":278,"maxelev":281,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.07628 39.10124,23.09829 39.11332)","views":11,"millestones":"0,23.0764398,39.1010693#1,23.0840806,39.1059955#2,23.0929451,39.1105378#2.7,23.0981347,39.1132777","x":23.0844831,"y":39.1060527,"coor":[[23.0764398,39.1010693],[23.0766359,39.1011069],[23.0768375,39.1012797],[23.0769486,39.1011004],[23.0770692,39.1011329],[23.0772074,39.101179],[23.077511,39.1014833],[23.0778215,39.1016119],[23.0780988,39.1016321],[23.078328,39.1017961],[23.0780941,39.1019925],[23.0782088,39.1020655],[23.0780104,39.1022081],[23.0782051,39.1023538],[23.0786265,39.1028528],[23.0788519,39.1033051],[23.0790921,39.1035052],[23.0793192,39.1038314],[23.0794119,39.1038141],[23.0796057,39.1040319],[23.0802742,39.1042084],[23.0804798,39.1044083],[23.0809747,39.1045924],[23.0815017,39.104975],[23.0818777,39.1054105],[23.0830653,39.1056902],[23.0832475,39.1059078],[23.0834201,39.1059813],[23.0842294,39.1059967],[23.0844831,39.1060527],[23.0856564,39.1065485],[23.0858701,39.1070188],[23.0865309,39.1068978],[23.0870827,39.1071544],[23.0884188,39.1075794],[23.08867,39.1078336],[23.088923,39.1079437],[23.0909306,39.1083199],[23.0919633,39.1089587],[23.0923138,39.1095922],[23.0924907,39.1102243],[23.0928572,39.1105065],[23.093525,39.110746],[23.0938925,39.1109471],[23.0943512,39.111257],[23.094533,39.1115107],[23.0946252,39.1115385],[23.0947051,39.1115932],[23.0947986,39.1121345],[23.094677,39.1126022],[23.0947658,39.1128912],[23.0948563,39.1130541],[23.0950954,39.1130109],[23.0953758,39.1127878],[23.095736,39.1126644],[23.0966022,39.1127613],[23.0971779,39.112964],[23.0980387,39.1134933],[23.0981347,39.1132777]]},{"id":17166,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9-\u0391\u03bb\u03bf\u03b3\u03cc\u03c0\u03bf\u03c1\u03bf\u03c2","description_GR":"\u03a3\u03c4\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9","path":"THESSALIA\/Thessaly_Pelion_Trikeri_Alogoporos","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":6115,"name_EN":"Pelion Mt: Trikeri-Alogoporos","description_EN":"Around Trikeri scenic area","ascent_time":115,"descent_time":125,"marker":"Red_dots","level":9,"ascent":103,"descent":367,"maxelev":298,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.07486 39.10113,23.08384 39.1442)","views":19,"millestones":"0,23.0764398,39.1010693#1,23.0775190,39.1086878#2,23.0779808,39.1166191#3,23.0762767,39.1236506#4,23.0824036,39.1304412#5,23.0815546,39.1386756#6.1,23.0815715,39.1442539","x":23.0752888,"y":39.1221367,"coor":[[23.0764398,39.1010693],[23.0761047,39.1014046],[23.076173,39.1016304],[23.0762511,39.1018473],[23.0762457,39.1022617],[23.0764508,39.1024976],[23.0769898,39.1028443],[23.0771609,39.1030259],[23.0769615,39.1041236],[23.0768055,39.1043702],[23.0764921,39.1044578],[23.0762706,39.1045912],[23.0762445,39.1048163],[23.0763119,39.1049971],[23.0768361,39.106479],[23.0772414,39.1069102],[23.0769193,39.1067815],[23.0769681,39.1070297],[23.0768695,39.1074975],[23.077345,39.1082852],[23.0773829,39.1084792],[23.077496,39.1086784],[23.077588,39.1087152],[23.0779153,39.1092539],[23.0780137,39.1096962],[23.0781159,39.1098412],[23.078124,39.1101026],[23.0780241,39.1101739],[23.0779754,39.1103537],[23.0781214,39.1106883],[23.0781014,39.1113369],[23.0777767,39.1122895],[23.0778195,39.1125601],[23.0779356,39.1126647],[23.0778726,39.1130607],[23.0781243,39.1136844],[23.0785443,39.1143005],[23.078846,39.1151138],[23.0792101,39.1155763],[23.0788477,39.1158708],[23.0786715,39.1160766],[23.0786696,39.1162208],[23.078541,39.1163279],[23.078257,39.1162896],[23.0783126,39.1164612],[23.0777565,39.1167272],[23.07749,39.1167611],[23.0768583,39.1173058],[23.0768092,39.1175216],[23.0765872,39.1176641],[23.0763449,39.1176126],[23.0762593,39.1178011],[23.0767075,39.118913],[23.0766457,39.1192189],[23.0766744,39.1196787],[23.0769656,39.1204109],[23.0770265,39.1210601],[23.0768639,39.1211129],[23.0767461,39.1212742],[23.0763967,39.1214516],[23.0761744,39.1216481],[23.075896,39.121709],[23.0755813,39.1218867],[23.0752888,39.1221367],[23.0751465,39.1224059],[23.0754717,39.1229446],[23.0757014,39.1230726],[23.0757906,39.1233256],[23.0761221,39.1236346],[23.0765149,39.1236737],[23.0774681,39.1242039],[23.0785623,39.124573],[23.078618,39.1247356],[23.0787212,39.1248085],[23.0792627,39.124975],[23.080183,39.1253788],[23.0801424,39.1256082],[23.0803341,39.1259882],[23.0804323,39.1264395],[23.0806256,39.1267023],[23.0810845,39.1278864],[23.0813107,39.1282846],[23.0815282,39.1284666],[23.0818122,39.1288653],[23.0821404,39.1294266],[23.0825595,39.1310158],[23.082577,39.1314484],[23.083104,39.1327411],[23.0832217,39.1334809],[23.0833358,39.133599],[23.0834121,39.13396],[23.0832564,39.1343733],[23.0827068,39.1348195],[23.0826229,39.1350441],[23.0824952,39.1350792],[23.0822825,39.1354199],[23.0821658,39.1354911],[23.0815977,39.1364778],[23.0814988,39.1369636],[23.0813456,39.1371786],[23.0814683,39.137531],[23.0812422,39.1380068],[23.0813541,39.1383051],[23.0815959,39.1383971],[23.0815454,39.1387211],[23.0814402,39.1388013],[23.0811041,39.1388437],[23.0802385,39.1386747],[23.0795941,39.1383993],[23.0793325,39.1380548],[23.0790351,39.1377912],[23.0788898,39.1382856],[23.0790031,39.138692],[23.0788473,39.1395513],[23.0788775,39.139894],[23.0789339,39.1400025],[23.0792775,39.1402756],[23.0793085,39.1405642],[23.0795954,39.1407466],[23.0795076,39.1412686],[23.0795463,39.1415978],[23.0796826,39.1417971],[23.0798123,39.142501],[23.0802444,39.1430811],[23.0805632,39.1434801],[23.0815715,39.1442539]]},{"id":17168,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03af\u03bd\u03b1-\u039b\u03b1\u03cd\u03ba\u03bf\u03c2","description_GR":"\u03a0\u03bf\u03c1\u03b5\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7 \u039c\u03b7\u03bb\u03af\u03bd\u03b1 \u03c3\u03c4\u03bf \u039b\u03b1\u03cd\u03ba\u03bf","path":"THESSALIA\/Thessaly_Pelion_Milina_Lafkos","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3318,"name_EN":"Pelio Mt: Milina-Lafkos","description_EN":"A trail from Milina to Lafkos","ascent_time":65,"descent_time":55,"marker":"Red_dots","level":9,"ascent":318,"descent":13,"maxelev":310,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.22152 39.17327,23.24717 39.17793)","views":15,"millestones":"0,23.2215604,39.1738059#1,23.2312415,39.1749241#2,23.2389527,39.1757757#3,23.2450495,39.1775378#3.3,23.2471166,39.1780918","x":23.2388474,"y":39.1758259,"coor":[[23.2215604,39.1738059],[23.2221315,39.1737197],[23.2231189,39.1734109],[23.2236127,39.1732474],[23.2241624,39.1732061],[23.2258566,39.1731272],[23.2262616,39.1731479],[23.2266478,39.1738173],[23.2268742,39.1740621],[23.2281111,39.1748497],[23.2283395,39.1752072],[23.22831,39.1754232],[23.2294341,39.1752144],[23.2302423,39.1749855],[23.2315745,39.1749042],[23.2319094,39.1745099],[23.2320956,39.174421],[23.2323873,39.1743103],[23.2333146,39.1742083],[23.233144,39.1743919],[23.2333065,39.1743569],[23.2332109,39.1746266],[23.2335089,39.1748989],[23.2340716,39.1753261],[23.2345778,39.1756178],[23.2346804,39.1757626],[23.2353239,39.1762084],[23.2360743,39.1764025],[23.2362354,39.1764937],[23.236349,39.1766927],[23.2368011,39.1766416],[23.2364687,39.176333],[23.2365269,39.1762974],[23.2364364,39.1761075],[23.2371076,39.1761299],[23.237627,39.1762775],[23.2381133,39.1762627],[23.2382649,39.1761646],[23.2385431,39.1761303],[23.2388474,39.1758259],[23.2391499,39.1756837],[23.239094,39.1755032],[23.2396527,39.1752185],[23.2395473,39.1742626],[23.2397825,39.1739217],[23.2399183,39.174211],[23.2401509,39.1741134],[23.2407283,39.1742433],[23.2411422,39.1745073],[23.241561,39.1746542],[23.2423893,39.1751462],[23.2426871,39.1754365],[23.242926,39.1756993],[23.2430442,39.1762498],[23.2431466,39.1764126],[23.2435145,39.1766538],[23.2438898,39.177287],[23.2440614,39.1774773],[23.2441771,39.1774781],[23.2441284,39.177703],[23.24429,39.1777176],[23.2443709,39.1777271],[23.2444037,39.1779076],[23.2445671,39.1777825],[23.2446482,39.177783],[23.2446821,39.1778553],[23.2448797,39.1777845],[23.2450432,39.1776504],[23.2450549,39.1774072],[23.2451938,39.1774081],[23.2452995,39.1772646],[23.2454336,39.1772474],[23.2459277,39.1775931],[23.2460962,39.1776302],[23.2458626,39.1779936],[23.2461555,39.1780766],[23.2463138,39.1780596],[23.2466192,39.1780165],[23.2471166,39.1780918]]},{"id":17169,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u03be\u03b1\u03b3\u03ba\u03b1\u03b8\u03b9\u03ac\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_AgGeorgios_Exagathia","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":3740,"name_EN":"Pelion Mt: Agios Georgios-Exagathia refuge","description_EN":"","ascent_time":155,"descent_time":110,"marker":"Red_dots","level":9,"ascent":523,"descent":2,"maxelev":1127,"minelev":596,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.08493 39.3431,23.10953 39.35539)","views":27,"millestones":"0,23.0850925,39.3429089#1,23.0929335,39.3451745#2,23.0953799,39.3519664#3,23.1032013,39.3547431#3.7,23.1093700,39.3555768","x":23.0946766,"y":39.3502463,"coor":[[23.0850925,39.3429089],[23.0852582,39.3429958],[23.0852914,39.3431177],[23.0854237,39.3432088],[23.0862295,39.3437107],[23.0862978,39.3438104],[23.0863246,39.3438647],[23.086742,39.343895],[23.0869168,39.3438423],[23.0869828,39.3442032],[23.087202,39.344304],[23.0872881,39.3444849],[23.0874096,39.3443958],[23.0877448,39.3444164],[23.0879894,39.3443463],[23.0883016,39.3444388],[23.0888389,39.3444205],[23.0890378,39.3442959],[23.0891656,39.3442789],[23.0893264,39.3444063],[23.0895931,39.3444264],[23.089788,39.3445496],[23.0898272,39.3445228],[23.0901186,39.344426],[23.090447,39.3441582],[23.0907737,39.3440166],[23.0911218,39.3440194],[23.0914483,39.3438958],[23.091808,39.3438986],[23.0920176,39.3438461],[23.0922873,39.343632],[23.092284,39.3435193],[23.0926528,39.3437204],[23.0925915,39.3439722],[23.0925935,39.3447111],[23.0929126,39.3451641],[23.0931663,39.3452923],[23.0935301,39.3456465],[23.0933414,39.3458793],[23.0935562,39.3463225],[23.0933791,39.3465554],[23.0933949,39.3471322],[23.0934975,39.3472772],[23.0934706,39.3475563],[23.0936568,39.3475217],[23.0936196,39.3477016],[23.0936986,39.3478734],[23.0939542,39.3478574],[23.0938931,39.3480912],[23.0942243,39.3485083],[23.0944951,39.3491051],[23.0946438,39.3491918],[23.0948107,39.3497428],[23.0946766,39.3502463],[23.0947622,39.3508056],[23.0946872,39.3512195],[23.0944384,39.3516141],[23.0948911,39.3515545],[23.0953423,39.3516661],[23.095841,39.351688],[23.0957935,39.3517778],[23.0952914,39.3520081],[23.0951966,39.3521606],[23.095123,39.3524664],[23.0952804,39.3528641],[23.0952422,39.3531251],[23.0953928,39.3531443],[23.0955567,39.3530374],[23.0957588,39.3526695],[23.0961081,39.3525822],[23.0963159,39.3526649],[23.0964995,39.3528285],[23.096541,39.3532072],[23.0966233,39.3534106],[23.0967962,39.3535021],[23.0972697,39.3536859],[23.0976524,39.3537069],[23.098011,39.3537998],[23.0986674,39.3542014],[23.099202,39.3541424],[23.1003303,39.354854],[23.1008387,39.3550291],[23.1012441,39.3550953],[23.1017899,39.3550725],[23.1022296,39.355175],[23.1025,39.3549068],[23.1027217,39.3548184],[23.1035008,39.3546982],[23.1045105,39.354706],[23.1046875,39.3544731],[23.1048505,39.3544383],[23.1049772,39.3545114],[23.1051585,39.3548552],[23.1055199,39.3547318],[23.1059377,39.354735],[23.1064335,39.3549911],[23.1070385,39.3548696],[23.1074006,39.3546922],[23.1075516,39.3546843],[23.1075969,39.3547748],[23.1074503,39.3553503],[23.1075154,39.3553914],[23.1080036,39.355332],[23.108373,39.3554881],[23.1092662,39.3555309],[23.10937,39.3555768]]},{"id":17170,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03b9\u03ad\u03c2-\u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c1\u03ac\u03b4\u03b1","description_GR":"\u0388\u03bd\u03b1\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc\u03c2 \u03b4\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2","path":"THESSALIA\/Thessaly_Pelion_Milies_Tsagarada","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":12095,"name_EN":"Pelion Mt: Milies-Tsagarada","description_EN":"A long mountain crossing","ascent_time":330,"descent_time":315,"marker":"Red_dots","level":9,"ascent":624,"descent":528,"maxelev":768,"minelev":385,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.14911 39.32843,23.18397 39.38332)","views":74,"millestones":"0,23.1497742,39.3285184#1,23.1583706,39.3310432#2,23.1671877,39.3325681#3,23.1773650,39.3329996#4,23.1757874,39.3402265#5,23.1748084,39.3452063#6,23.1756270,39.3516432#7,23.1798949,39.3565135#8,23.1832408,39.3621150#9,23.1790154,39.3689043#10,23.1763149,39.3725240#11,23.1811790,39.3785442#12.1,23.1764401,39.3828365","x":23.1776639,"y":39.3547278,"coor":[[23.1497742,39.3285184],[23.1498665,39.3285911],[23.15059,39.3284838],[23.1514868,39.328202],[23.1516137,39.328257],[23.1525766,39.328264],[23.1528345,39.3282839],[23.1528695,39.3282661],[23.1531377,39.3282185],[23.1536661,39.3286548],[23.1539791,39.3286751],[23.1541514,39.3288206],[23.1544292,39.3288766],[23.1547571,39.3288295],[23.1553814,39.3290142],[23.1555759,39.3292409],[23.1558535,39.329315],[23.1565788,39.3297798],[23.1569067,39.3295299],[23.1572431,39.3295323],[23.1577395,39.3298287],[23.1583651,39.3299053],[23.1586763,39.3300788],[23.1587312,39.3303405],[23.1584147,39.3306085],[23.1582713,39.3309589],[23.1586066,39.3312407],[23.1589594,39.3318109],[23.1589343,39.3319729],[23.158758,39.3321608],[23.1587994,39.3325756],[23.1590454,39.3323792],[23.1593479,39.3323093],[23.1605075,39.3323627],[23.1612629,39.33226],[23.1616668,39.3324431],[23.1618994,39.3323998],[23.1620376,39.3324909],[23.1626509,39.3326214],[23.1628255,39.3325776],[23.1631849,39.3325982],[23.1636865,39.3323766],[23.1644277,39.33249],[23.1648492,39.3321687],[23.1657698,39.3318329],[23.1662329,39.3319173],[23.1664401,39.3320539],[23.1667033,39.3323622],[23.1670272,39.3324456],[23.1673147,39.3326639],[23.1675083,39.3326337],[23.1676954,39.3325089],[23.1678508,39.3331047],[23.1681184,39.3330436],[23.1691155,39.3331048],[23.1695568,39.3330719],[23.1705744,39.3331152],[23.1713154,39.3332556],[23.1722121,39.3328475],[23.1726306,39.3327784],[23.174054,39.3327569],[23.1749959,39.3325834],[23.1754829,39.3326049],[23.1757822,39.3328143],[23.1758866,39.332815],[23.1764117,39.3325574],[23.1765861,39.3325316],[23.1769192,39.3328133],[23.1772666,39.3328698],[23.1776095,39.3333138],[23.1780141,39.3334428],[23.178181,39.3340567],[23.1780468,39.3350198],[23.178182,39.336075],[23.1780997,39.3361646],[23.177816,39.3362391],[23.1776154,39.3365261],[23.1773363,39.3365782],[23.177219,39.3366855],[23.1774692,39.3371197],[23.1776032,39.3375712],[23.177493,39.338057],[23.176534,39.338699],[23.1761861,39.3386785],[23.1757446,39.3387294],[23.1755925,39.3388365],[23.1758821,39.3398658],[23.1757487,39.3403604],[23.1760588,39.3406329],[23.1762986,39.340959],[23.176405,39.3417797],[23.1770236,39.3424689],[23.1771468,39.3428482],[23.1776977,39.3433657],[23.1776069,39.3440634],[23.1775587,39.3442162],[23.1773591,39.344413],[23.1770923,39.3444021],[23.1767193,39.3445437],[23.1758363,39.3446275],[23.1755121,39.3445712],[23.1741318,39.3445163],[23.1737963,39.3444238],[23.1735168,39.344512],[23.1738107,39.3446537],[23.1740402,39.3448716],[23.1747907,39.3451923],[23.1752276,39.3455378],[23.1753308,39.3456466],[23.1754651,39.3460711],[23.1758314,39.3464972],[23.1757922,39.3468754],[23.1755713,39.3469098],[23.1752208,39.3471056],[23.1747208,39.3471921],[23.1746731,39.3472999],[23.1749125,39.347662],[23.1751536,39.347889],[23.1753901,39.3485034],[23.1758705,39.3491015],[23.1761346,39.3493377],[23.1760871,39.3493689],[23.1758913,39.3492413],[23.1757059,39.349222],[23.1761405,39.3497657],[23.1763398,39.3505781],[23.1767835,39.3513381],[23.1767186,39.3514638],[23.1757887,39.3515834],[23.1747512,39.3519725],[23.1747489,39.3521707],[23.1746307,39.3523501],[23.1745379,39.3523494],[23.174234,39.3525275],[23.1738822,39.3528403],[23.1742073,39.3528246],[23.1745157,39.3530025],[23.1748512,39.353095],[23.1751375,39.3534214],[23.1756696,39.3535693],[23.1762613,39.3535916],[23.1770003,39.3539121],[23.1773299,39.3545092],[23.1776639,39.3547278],[23.1779532,39.3548019],[23.1781084,39.3552986],[23.1782149,39.3554705],[23.1780619,39.3556497],[23.1780962,39.355695],[23.1785484,39.3557342],[23.1792354,39.3555408],[23.1794555,39.3555784],[23.1796268,39.3558139],[23.1798868,39.3564104],[23.1799071,39.3566629],[23.1802643,39.3568816],[23.1808385,39.3574083],[23.18081,39.3578586],[23.1804361,39.3580722],[23.1800295,39.3581054],[23.1801315,39.3583134],[23.1805462,39.3585866],[23.181255,39.3585195],[23.1821809,39.3587423],[23.1830771,39.3585323],[23.1830647,39.3586043],[23.1831352,39.3591545],[23.1832709,39.3594618],[23.1832204,39.3598128],[23.1833194,39.3602821],[23.1831419,39.3610062],[23.1832734,39.3611152],[23.1835868,39.3612391],[23.1834214,39.3614902],[23.1835237,39.3616711],[23.1835334,39.3618334],[23.1834393,39.3619409],[23.1834851,39.3619953],[23.1833213,39.3621112],[23.1831587,39.3621191],[23.1830276,39.3624065],[23.1825389,39.3629167],[23.1826476,39.3635482],[23.1826235,39.3636201],[23.1824837,39.3636642],[23.1824074,39.3637132],[23.1825773,39.3640748],[23.1824102,39.3644611],[23.1823951,39.3647674],[23.1822385,39.3650005],[23.181746,39.3654296],[23.1818699,39.3657548],[23.1816353,39.3659604],[23.1815989,39.3660953],[23.1816623,39.3666364],[23.181787,39.3668896],[23.1819157,39.3672374],[23.1818754,39.3673362],[23.1815509,39.3673835],[23.181329,39.3674991],[23.1812148,39.3675523],[23.1808083,39.3675675],[23.1804375,39.3675108],[23.1804117,39.3677359],[23.1801754,39.3680856],[23.1801376,39.3683377],[23.1800198,39.36849],[23.1793778,39.3687919],[23.1790988,39.3688259],[23.1789109,39.3690048],[23.1784342,39.3690735],[23.1779245,39.3689798],[23.1771795,39.3691548],[23.1767984,39.3689809],[23.1767509,39.3690706],[23.1768181,39.3692874],[23.1764514,39.3688793],[23.1754258,39.3682323],[23.1753916,39.3683041],[23.175287,39.3683124],[23.1754132,39.3684395],[23.1753552,39.368439],[23.1753649,39.3686013],[23.1752025,39.3685911],[23.1750872,39.3685182],[23.1750864,39.3685903],[23.1748422,39.3686246],[23.1748182,39.3686965],[23.174827,39.3689309],[23.1750072,39.3694007],[23.1752587,39.3697359],[23.1752215,39.3699338],[23.1753927,39.3701874],[23.1753906,39.3703585],[23.1754818,39.3705034],[23.1755115,39.3709361],[23.1758442,39.3712808],[23.1764947,39.3722315],[23.1764466,39.3723754],[23.1754582,39.3734947],[23.1754968,39.3741617],[23.1757348,39.3744067],[23.1761386,39.3746258],[23.176683,39.3747288],[23.1767165,39.3748462],[23.1765736,39.3751515],[23.1766293,39.3753501],[23.1771105,39.3758942],[23.1776745,39.3763126],[23.1779287,39.3764136],[23.1786939,39.3765091],[23.1791538,39.3763051],[23.1792693,39.3763194],[23.1794103,39.3766087],[23.1796628,39.3768628],[23.1801187,39.3775869],[23.1805702,39.3776982],[23.1808117,39.3778981],[23.1809573,39.3783497],[23.181417,39.3787584],[23.181508,39.3789212],[23.1814704,39.3791552],[23.181198,39.3795543],[23.1811958,39.3797435],[23.181321,39.3799516],[23.1814298,39.3805831],[23.1816918,39.3808597],[23.1815858,39.3809851],[23.181099,39.3809096],[23.1808084,39.3809436],[23.1802599,39.3811831],[23.1800845,39.3812899],[23.1799416,39.3815953],[23.1791588,39.3820673],[23.1793064,39.3823567],[23.1793153,39.3825911],[23.1794982,39.3828356],[23.1794375,39.3829343],[23.1791193,39.3829681],[23.1787254,39.3828932],[23.1785046,39.3829097],[23.1781176,39.3832314],[23.1775104,39.3835244],[23.177267,39.3834867],[23.1767133,39.3831764],[23.1764409,39.3829852],[23.1764401,39.3828365]]},{"id":17173,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03b9\u03ad\u03c2-\u039a\u03b1\u03bb\u03ac \u039d\u03b5\u03c1\u03ac- \u03c4\u03bf \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u03ba\u03b1\u03bb\u03bd\u03c4\u03b5\u03c1\u03af\u03bc\u03b9","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ac \u03c4\u03bf\u03c5 \u039a\u03ad\u03bd\u03c4\u03b1\u03c5\u03c1\u03bf\u03c5 \u03a7\u03b5\u03af\u03c1\u03c9\u03bd\u03b1","path":"THESSALIA\/Thessaly_Pelion_Milies_KalaNera","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":4999,"name_EN":"Pelion Mt: Milies-Kala Nera","description_EN":"Via the Chirons cave","ascent_time":90,"descent_time":100,"marker":"Red_dots","level":9,"ascent":45,"descent":417,"maxelev":388,"minelev":11,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.12075 39.30556,23.15005 39.3283)","views":41,"millestones":"0,23.1497742,39.3285184#1,23.1434915,39.3241373#2,23.1463861,39.3189221#3,23.1431381,39.3118847#4,23.1343928,39.3063225#5.0,23.1210057,39.3079497","x":23.14681,"y":39.3199186,"coor":[[23.1497742,39.3285184],[23.1495701,39.3285169],[23.1494897,39.3284532],[23.1493235,39.3284655],[23.14884,39.3279709],[23.1486669,39.3278975],[23.148296,39.3278678],[23.1479707,39.3279015],[23.1476209,39.3280431],[23.1473788,39.3279151],[23.1464775,39.3276202],[23.1461647,39.3275819],[23.1456916,39.3273712],[23.1454597,39.3273604],[23.1452962,39.3274493],[23.1449757,39.3270866],[23.1447153,39.3267422],[23.1447137,39.3268684],[23.1446102,39.3267955],[23.144543,39.3265968],[23.1446063,39.3265477],[23.1445248,39.3263669],[23.1444093,39.326321],[23.1444724,39.325907],[23.1444176,39.3256453],[23.1440267,39.3253541],[23.1439207,39.3245333],[23.1440774,39.3240479],[23.144323,39.3238875],[23.1437868,39.3240908],[23.1434149,39.3241512],[23.1436375,39.3239726],[23.1430099,39.3240581],[23.1427671,39.3239932],[23.1427227,39.3238307],[23.1425721,39.3238116],[23.14284,39.3237234],[23.1429698,39.3235442],[23.1431908,39.3235007],[23.1440575,39.3228223],[23.1444075,39.3226627],[23.1443411,39.3224009],[23.1440329,39.3219841],[23.1440242,39.3217498],[23.144177,39.3215887],[23.1446512,39.3216102],[23.1454135,39.3218862],[23.1456228,39.3218517],[23.146067,39.3215756],[23.1467132,39.3209045],[23.1468148,39.3204773],[23.1468645,39.3202073],[23.14681,39.3199186],[23.1462928,39.3195183],[23.1462477,39.3194099],[23.1462389,39.3191845],[23.1465234,39.318682],[23.1463638,39.3184466],[23.1463882,39.3183476],[23.1468269,39.3178418],[23.1472053,39.3172498],[23.1471832,39.3171596],[23.1469082,39.3168782],[23.1470536,39.3163657],[23.146965,39.3160226],[23.1465998,39.3157316],[23.1466956,39.3146195],[23.1467379,39.3140071],[23.1466814,39.3138805],[23.1462096,39.3135707],[23.1454108,39.3134387],[23.1445707,39.3130721],[23.1439027,39.3126797],[23.1436609,39.3125338],[23.1432388,39.311954],[23.1430354,39.3118128],[23.1418328,39.3115066],[23.1412033,39.310637],[23.1409501,39.3104729],[23.1407072,39.310417],[23.1397532,39.3097072],[23.1392115,39.3094238],[23.1382363,39.3085516],[23.1374642,39.3081494],[23.1367943,39.3079192],[23.1363467,39.3075284],[23.1354829,39.3070354],[23.1348023,39.306733],[23.134482,39.3063702],[23.1332837,39.3057306],[23.1328685,39.3056284],[23.1324099,39.3055799],[23.1315419,39.3054292],[23.1310538,39.3055067],[23.1302949,39.3059155],[23.1295349,39.3062027],[23.1284301,39.3064467],[23.127617,39.3065397],[23.1267625,39.3067901],[23.1263339,39.3067509],[23.1261939,39.3066372],[23.1246059,39.3073146],[23.1242796,39.3074383],[23.123444,39.3076572],[23.1210057,39.3079497]]},{"id":17175,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03b9\u03ad\u03c2-\u039a\u03bf\u03c1\u03cc\u03c0\u03b7","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03b9\u03ba\u03b9\u03bb\u03af\u03b1 \u03c0\u03b7\u03bb\u03b9\u03bf\u03c1\u03b5\u03af\u03c4\u03b9\u03ba\u03c9\u03bd \u03c4\u03bf\u03c0\u03af\u03c9\u03bd","path":"THESSALIA\/Thessaly_Pelion_Milies_Koropi","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":5494,"name_EN":"Pelion Mt: Milies-Koropi","description_EN":"A variety of aspects of Mt. Pilion landscape","ascent_time":95,"descent_time":105,"marker":"Red_dots","level":11,"ascent":118,"descent":486,"maxelev":385,"minelev":12,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.1426 39.29338,23.15323 39.32846)","views":79,"millestones":"0,23.1497742,39.3285184#1,23.1510144,39.3214915#2,23.1508012,39.3148499#3,23.1494149,39.3093574#4,23.1469182,39.3014197#5.5,23.1430291,39.2933095","x":23.1528704,"y":39.3128625,"coor":[[23.1497742,39.3285184],[23.1495701,39.3285169],[23.1494897,39.3284532],[23.1493235,39.3284655],[23.14884,39.3279709],[23.1488787,39.3277414],[23.1492477,39.3274468],[23.1491949,39.3271986],[23.1495361,39.3268046],[23.1500172,39.3265648],[23.1502847,39.3265127],[23.1501275,39.3260791],[23.1502226,39.3258905],[23.1506882,39.325556],[23.1508749,39.325197],[23.1512088,39.3251003],[23.1514557,39.3248318],[23.1517595,39.3246538],[23.1516697,39.3244008],[23.1514311,39.3242865],[23.1512699,39.3239789],[23.1511914,39.3237531],[23.1507552,39.3233715],[23.1508557,39.3227324],[23.1511985,39.3222033],[23.1511916,39.3218158],[23.1509973,39.3215801],[23.151022,39.3214541],[23.1508253,39.3214077],[23.1508961,39.3213091],[23.1513625,39.3211142],[23.1514687,39.3209708],[23.1514704,39.3208267],[23.1517284,39.3205943],[23.1520161,39.3198305],[23.1522382,39.3196879],[23.1521806,39.3196515],[23.1519131,39.3197126],[23.1517294,39.319549],[23.151971,39.3195373],[23.1520427,39.3193666],[23.1520326,39.3192404],[23.1519285,39.3192126],[23.152092,39.3191237],[23.1519089,39.3189151],[23.1519668,39.3189245],[23.1517718,39.3187429],[23.1507208,39.3183568],[23.1504377,39.3180619],[23.1504203,39.317877],[23.1505853,39.317662],[23.150577,39.3173916],[23.1502614,39.3166324],[23.1502552,39.3161818],[23.1505949,39.315914],[23.1505609,39.3158417],[23.1507877,39.3154919],[23.1509287,39.3153488],[23.1507719,39.3153656],[23.1508127,39.3148704],[23.1504949,39.3142914],[23.1505581,39.3141612],[23.1514113,39.3136268],[23.1517844,39.3134673],[23.1519371,39.3133062],[23.1527603,39.3133392],[23.1529822,39.3132147],[23.1521982,39.3128215],[23.1523264,39.3127684],[23.1528704,39.3128625],[23.1529931,39.3127913],[23.152635,39.312667],[23.1522786,39.3124031],[23.151944,39.3122565],[23.151958,39.3120584],[23.1516372,39.3117317],[23.1511279,39.3114576],[23.1505333,39.3107505],[23.1504329,39.3104254],[23.1502373,39.3102888],[23.1502116,39.3101985],[23.1497048,39.3099064],[23.1495129,39.3094725],[23.1493642,39.3093002],[23.1490927,39.3087306],[23.1491632,39.308267],[23.1490148,39.3080677],[23.1490172,39.3078695],[23.1492876,39.3075741],[23.149662,39.3073066],[23.149711,39.3070907],[23.1492196,39.3062986],[23.1485336,39.3054827],[23.1485026,39.3051761],[23.1478422,39.3041621],[23.1469709,39.3032366],[23.147033,39.3028946],[23.1469549,39.3026418],[23.1465201,39.302152],[23.1466299,39.3017113],[23.1470055,39.3013356],[23.1475005,39.3010419],[23.1474069,39.300843],[23.1474766,39.3006227],[23.1475596,39.3004791],[23.1478572,39.3000488],[23.1480257,39.2995454],[23.1480944,39.2986629],[23.1479389,39.2980941],[23.1480835,39.2976446],[23.1480393,39.2974641],[23.148128,39.2969376],[23.1480726,39.296721],[23.1481928,39.2963704],[23.1480913,39.2961354],[23.1481271,39.2960546],[23.1478765,39.2956833],[23.1479366,39.2955035],[23.1481342,39.2954689],[23.1481182,39.2950498],[23.1480629,39.2948332],[23.1482183,39.2944468],[23.1482324,39.2941541],[23.1483738,39.2939659],[23.1483552,39.2938892],[23.1481693,39.2939148],[23.1478417,39.2941557],[23.1476332,39.2941362],[23.1470954,39.293934],[23.1467707,39.2939316],[23.1456374,39.293671],[23.1453353,39.2937229],[23.1450321,39.2938648],[23.1446493,39.2940512],[23.1444747,39.294104],[23.1438608,39.2940454],[23.1434922,39.2938445],[23.1430291,39.2933095]]},{"id":17182,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03bf\u03c5\u03c1\u03af-\u03a7\u03bf\u03c1\u03b5\u03c5\u03c4\u03cc","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Pouri_Chorefto","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5411,"name_EN":"Pelion Mt: Pouri-Chorefto","description_EN":"","ascent_time":110,"descent_time":120,"marker":"Red_dots","level":12,"ascent":128,"descent":543,"maxelev":425,"minelev":4,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.09421 39.45433,23.12103 39.48114)","views":34,"millestones":"0,23.0942567,39.4775425#1,23.1019786,39.4805606#2,23.1085761,39.4761463#3,23.1103612,39.4681268#4,23.1128749,39.4613545#5,23.1190967,39.4568205#5.4,23.1210336,39.4543301","x":23.1078387,"y":39.47676,"coor":[[23.0942567,39.4775425],[23.0944248,39.4775574],[23.0947133,39.4777218],[23.094811,39.4778667],[23.0953344,39.4778528],[23.0956001,39.477981],[23.0957054,39.4779277],[23.09589,39.4781499],[23.0959226,39.4783304],[23.0960598,39.4785117],[23.0962516,39.4787114],[23.096402,39.4787666],[23.0963425,39.4788743],[23.0965508,39.478948],[23.0966675,39.4789128],[23.096811,39.4786076],[23.0970148,39.4785776],[23.096992,39.478627],[23.0971699,39.4786374],[23.0973897,39.4787292],[23.0977394,39.4786599],[23.0978893,39.4787511],[23.098216,39.4786636],[23.0984016,39.478701],[23.0984081,39.4787552],[23.0985434,39.4789139],[23.0988099,39.478988],[23.0992536,39.4788383],[23.099146,39.4790717],[23.0990286,39.4791609],[23.0990626,39.4792243],[23.0996883,39.4793913],[23.0998491,39.4795457],[23.10014,39.4795299],[23.1003032,39.4794952],[23.1007785,39.479607],[23.1008702,39.4797068],[23.1007525,39.479823],[23.1007869,39.4798593],[23.1009385,39.4798244],[23.1011108,39.479988],[23.1013189,39.4800797],[23.1014008,39.4800353],[23.1015041,39.4801442],[23.1015974,39.4801179],[23.1016317,39.4801632],[23.101563,39.4803924],[23.1017468,39.480565],[23.1020725,39.4805585],[23.1019832,39.48072],[23.1018893,39.4807914],[23.1020401,39.4808196],[23.102051,39.4808737],[23.1023656,39.4808221],[23.1021958,39.4809424],[23.1022295,39.4810328],[23.1026123,39.4811304],[23.1027858,39.4812038],[23.1032866,39.4811356],[23.1036608,39.4809763],[23.1044419,39.4804146],[23.1047579,39.4802549],[23.1047839,39.4800388],[23.1049007,39.4799947],[23.1052494,39.4799478],[23.1055203,39.4798778],[23.1061186,39.4793778],[23.1061809,39.4790539],[23.1063185,39.4788613],[23.106643,39.4786025],[23.1067365,39.4785671],[23.10707,39.4777723],[23.1068899,39.4773114],[23.1069147,39.4771854],[23.1074044,39.4770811],[23.1078387,39.47676],[23.1083302,39.4765115],[23.1090652,39.4753998],[23.1090474,39.4749672],[23.1091026,39.4749181],[23.1089368,39.474241],[23.1090952,39.4736746],[23.1093636,39.4735956],[23.1091688,39.47354],[23.1088446,39.4732942],[23.1086728,39.4730947],[23.1086862,39.4729506],[23.1091681,39.4725398],[23.1093823,39.472154],[23.1098176,39.4717519],[23.1100431,39.4713932],[23.1100253,39.4709606],[23.1101468,39.470547],[23.1101389,39.4702586],[23.1104707,39.4697656],[23.1105343,39.4693336],[23.1103983,39.4686568],[23.1102509,39.4683673],[23.1104422,39.4679543],[23.1104734,39.4673238],[23.1108623,39.4666555],[23.1109234,39.4664217],[23.111168,39.4663876],[23.1114581,39.4664258],[23.1118428,39.4663386],[23.1121719,39.4660528],[23.1125233,39.4658483],[23.1129194,39.4657792],[23.1128168,39.4656162],[23.1126783,39.464624],[23.1128379,39.4639585],[23.112842,39.4636342],[23.113077,39.4634377],[23.1136839,39.4632441],[23.1137439,39.4631004],[23.1135836,39.462901],[23.1129911,39.4628784],[23.1128188,39.4627149],[23.1128095,39.4625346],[23.1130816,39.4621583],[23.113052,39.4617436],[23.1128597,39.4613276],[23.113096,39.4610231],[23.1130207,39.4607477],[23.1127944,39.4602594],[23.1124512,39.4598243],[23.1124638,39.4597523],[23.112917,39.4597558],[23.1132678,39.4595962],[23.1140002,39.4595838],[23.1141852,39.4596663],[23.1146037,39.4596605],[23.1149396,39.4597531],[23.1152167,39.4598994],[23.1154004,39.460081],[23.1160048,39.4600856],[23.1163671,39.4599262],[23.1169075,39.4594798],[23.1173162,39.4593297],[23.1172753,39.4588879],[23.1175684,39.4586829],[23.1178044,39.4584053],[23.1180177,39.4583394],[23.1181825,39.4581784],[23.1195569,39.4561075],[23.120429,39.4551589],[23.1206133,39.454827],[23.1207794,39.4545579],[23.1208993,39.4545228],[23.1210336,39.4543301]]},{"id":17183,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039b\u03b1\u03cd\u03ba\u03bf\u03c2-\u039c\u03b7\u03bb\u03af\u03bd\u03b1","description_GR":"\u03a0\u03bf\u03c1\u03b5\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u039b\u03b1\u03cd\u03ba\u03bf \u03c3\u03c4\u03b7 \u039c\u03b7\u03bb\u03af\u03bd\u03b1","path":"THESSALIA\/Thessaly_Pelion_Lafkos_Milina","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3937,"name_EN":"Pelion Mt: Lafkos-Milina","description_EN":"A trail from Lafkos to Milina","ascent_time":70,"descent_time":75,"marker":"Red_dots","level":9,"ascent":6,"descent":312,"maxelev":310,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.22081 39.16904,23.24721 39.17792)","views":18,"millestones":"0,23.2471166,39.1780918#1,23.2427254,39.1724312#2,23.2349380,39.1698436#3,23.2272050,39.1691720#3.9,23.2215604,39.1738059","x":23.2385953,"y":39.1714901,"coor":[[23.2471166,39.1780918],[23.2466192,39.1780165],[23.2463138,39.1780596],[23.2461555,39.1780766],[23.2458626,39.1779936],[23.2460962,39.1776302],[23.2461262,39.1776033],[23.2461667,39.1776081],[23.2463184,39.1773253],[23.2464171,39.1771952],[23.2466723,39.1769085],[23.2467325,39.1764539],[23.2468218,39.1759814],[23.2463484,39.1757981],[23.2459987,39.1758229],[23.245992,39.1756066],[23.2457998,39.1750692],[23.2455249,39.1747971],[23.2452717,39.1746513],[23.2451446,39.1746324],[23.2450742,39.1747221],[23.2449705,39.1746763],[23.2449133,39.1746129],[23.2449187,39.1744733],[23.2447096,39.1734627],[23.2445956,39.1734034],[23.2442832,39.1733833],[23.2439724,39.1732191],[23.2435094,39.1732161],[23.2434062,39.1731253],[23.2433127,39.1732058],[23.2431659,39.1730652],[23.2428209,39.1728467],[23.2426954,39.1726747],[23.2427336,39.1723866],[23.2430043,39.1719738],[23.2429452,39.1717527],[23.2428886,39.1716262],[23.2426811,39.1715437],[23.2419069,39.1714215],[23.2414203,39.1714544],[23.24089,39.1712527],[23.2407868,39.171162],[23.2406235,39.171269],[23.2406451,39.1714133],[23.2402636,39.1713658],[23.2401841,39.1712301],[23.2403048,39.1707713],[23.2399899,39.1709856],[23.2396773,39.1709925],[23.2393501,39.1712787],[23.2390942,39.1713852],[23.2385953,39.1714901],[23.2377854,39.1714487],[23.2372642,39.1714814],[23.2367348,39.1711895],[23.2357968,39.1701562],[23.2353804,39.1701174],[23.2349319,39.1698441],[23.2344554,39.1700212],[23.2342947,39.1700292],[23.2339541,39.1704775],[23.2336045,39.1706914],[23.2331797,39.1706391],[23.2328147,39.1701411],[23.2322498,39.1699211],[23.2317675,39.1695665],[23.2315945,39.1695113],[23.2314539,39.1695013],[23.2313734,39.1694467],[23.2309679,39.1694801],[23.2307939,39.169515],[23.2306189,39.16964],[23.2305383,39.1696034],[23.2304203,39.1698099],[23.2296384,39.1703814],[23.2296233,39.1707057],[23.2295297,39.1707952],[23.2293378,39.1703524],[23.2290616,39.1701974],[23.2286576,39.1700956],[23.2282235,39.169863],[23.2277731,39.1697699],[23.2278151,39.1691033],[23.227338,39.1693345],[23.2270524,39.1689811],[23.2269017,39.1689035],[23.2267193,39.1689744],[23.2252902,39.1694605],[23.2253118,39.1695688],[23.2251934,39.1698113],[23.2249351,39.170143],[23.2249426,39.1705125],[23.2248708,39.1707283],[23.2243655,39.1714097],[23.2241586,39.1716021],[23.2233228,39.1718443],[23.2224866,39.1720911],[23.2217291,39.1723203],[23.2208668,39.1725758],[23.2209868,39.1727794],[23.2212596,39.1732317],[23.2214903,39.1736703],[23.2215604,39.1738059]]},{"id":17184,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03b9\u03bd\u03b1\u03ba\u03ac\u03c4\u03b5\u03c2-\u039a\u03b1\u03bb\u03ac \u039d\u03b5\u03c1\u03ac","description_GR":"\u0391\u03c1\u03ba\u03b5\u03c4\u03ac \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03c0\u03bf\u03bb\u03cd\u03c0\u03bb\u03b5\u03c5\u03c1\u03bf \u03c0\u03b7\u03bb\u03b9\u03bf\u03c1\u03b5\u03af\u03c4\u03b9\u03ba\u03bf \u03c4\u03bf\u03c0\u03af\u03bf","path":"THESSALIA\/Thessaly_Pelion_Pinakates_KalaNera","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4854,"name_EN":"Pelion Mt: Pinakates-Kala Nera","description_EN":"A trip along the richness of Pilion landscapes","ascent_time":100,"descent_time":120,"marker":"Red_dots","level":9,"ascent":38,"descent":611,"maxelev":596,"minelev":13,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.11339 39.308,23.12785 39.33667)","views":13,"millestones":"0,23.1176486,39.3366366#1,23.1145809,39.3313630#2,23.1189554,39.3248863#3,23.1269655,39.3200533#4,23.1236570,39.3137018#4.9,23.1210061,39.3079497","x":23.1228923,"y":39.3226963,"coor":[[23.1176486,39.3366366],[23.1175246,39.3366356],[23.1173386,39.3366613],[23.1172882,39.3366068],[23.117068,39.3365871],[23.1168442,39.3366755],[23.1164885,39.3365332],[23.1163763,39.33669],[23.1161592,39.336418],[23.1154558,39.3364442],[23.1150388,39.336387],[23.1143054,39.3365797],[23.1142258,39.3364529],[23.1139243,39.3364326],[23.1139839,39.3363069],[23.1138443,39.3363419],[23.1133995,39.3357258],[23.1134832,39.3355282],[23.1142587,39.3347592],[23.114261,39.334579],[23.1146291,39.333915],[23.1149071,39.3330341],[23.1148115,39.3327901],[23.1148931,39.3323852],[23.1147509,39.3316993],[23.1145357,39.3312832],[23.1146113,39.3308152],[23.1144434,39.3303274],[23.114296,39.3300559],[23.1142422,39.3297221],[23.1145852,39.329112],[23.1148446,39.3287896],[23.1149966,39.3286916],[23.1149509,39.3286372],[23.1150449,39.3285388],[23.1154978,39.3285062],[23.1157658,39.3284182],[23.1158602,39.3282927],[23.1158638,39.3280044],[23.1159699,39.3278701],[23.1159845,39.3276359],[23.1163127,39.3273681],[23.1160074,39.3263611],[23.1163356,39.3260933],[23.1164415,39.3258913],[23.1165581,39.3258472],[23.1168764,39.3259036],[23.1169949,39.3258775],[23.1171478,39.3257165],[23.1174496,39.3256151],[23.1174069,39.3256914],[23.1175898,39.3257063],[23.1181844,39.3254765],[23.1184885,39.3252806],[23.1184879,39.3251545],[23.1190174,39.3248521],[23.119488,39.324324],[23.1197565,39.3241909],[23.1203848,39.3240515],[23.1207479,39.3237749],[23.1210703,39.3236737],[23.1212905,39.3236934],[23.1217936,39.3233548],[23.1222821,39.3232504],[23.1228923,39.3226963],[23.1233815,39.3225378],[23.1236402,39.322346],[23.1242819,39.3220535],[23.1255254,39.3218826],[23.1259833,39.3215256],[23.1263311,39.3214562],[23.1263677,39.3213123],[23.1265759,39.3211877],[23.1265428,39.3210523],[23.1266396,39.3208187],[23.1269221,39.3204875],[23.1273863,39.3201846],[23.1272942,39.3201298],[23.1269232,39.320109],[23.1271628,39.3197909],[23.1270825,39.3197183],[23.1272257,39.3193949],[23.1277203,39.318804],[23.1270138,39.3177805],[23.1268213,39.3174006],[23.1264539,39.3170915],[23.1262344,39.3170177],[23.1256388,39.3164095],[23.1257694,39.3161672],[23.1260387,39.315971],[23.1259595,39.3158082],[23.125717,39.3157163],[23.1257873,39.3156628],[23.1255561,39.315598],[23.1254761,39.3155073],[23.1252329,39.3154694],[23.1250806,39.3155944],[23.1248416,39.3152232],[23.1248175,39.3152951],[23.1244595,39.314995],[23.1243534,39.3151294],[23.1240231,39.3146403],[23.1238784,39.3147924],[23.1238223,39.3143505],[23.123913,39.3142565],[23.1238408,39.3140848],[23.123592,39.3135783],[23.1232769,39.3129722],[23.1233734,39.3126756],[23.1231197,39.3125566],[23.1231767,39.3120839],[23.1232014,39.311967],[23.1230749,39.3118759],[23.1230999,39.311732],[23.1226858,39.3114585],[23.1220715,39.3114178],[23.1218636,39.3113442],[23.1218069,39.3112446],[23.1214368,39.3111608],[23.1212818,39.3105649],[23.1212476,39.3105196],[23.1211256,39.3102754],[23.1210349,39.3101125],[23.1213057,39.3097902],[23.1211358,39.3094645],[23.121124,39.3088967],[23.1211198,39.308302],[23.1210061,39.3079497]]},{"id":17185,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0392\u03c5\u03b6\u03af\u03c4\u03c3\u03b1-\u039a\u03b1\u03bb\u03ac \u039d\u03b5\u03c1\u03ac","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03b9\u03ba\u03b9\u03bb\u03af\u03b1 \u03c0\u03b7\u03bb\u03b9\u03bf\u03c1\u03b5\u03af\u03c4\u03b9\u03ba\u03c9\u03bd \u03c4\u03bf\u03c0\u03af\u03c9\u03bd","path":"THESSALIA\/Thessaly_Pelion_Vyzitsa_KalaNera","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4934,"name_EN":"Pelion Mt: Vyzitsa-Kala Nera","description_EN":"Aspects of Mt. Pelion landscape","ascent_time":105,"descent_time":120,"marker":"Red_dots","level":9,"ascent":80,"descent":549,"maxelev":488,"minelev":13,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.12069 39.3074,23.13597 39.33312)","views":27,"millestones":"0,23.1319007,39.3332026#1,23.1285932,39.3300487#2,23.1357541,39.3249668#3,23.1318156,39.3174577#4,23.1273486,39.3111362#4.9,23.1210065,39.3079497","x":23.1348643,"y":39.3232139,"coor":[[23.1319007,39.3332026],[23.1317198,39.3328228],[23.1318267,39.332711],[23.1320598,39.3326226],[23.1318691,39.3319183],[23.1318999,39.3316843],[23.1321331,39.3315959],[23.1319695,39.3314821],[23.1317841,39.3314627],[23.1315476,39.3318213],[23.1315255,39.3313526],[23.1316087,39.3311911],[23.1314575,39.331226],[23.131233,39.3315487],[23.1309643,39.3316998],[23.1308021,39.3316806],[23.1305147,39.3314622],[23.1303369,39.3314203],[23.1302577,39.3312576],[23.1305254,39.3311875],[23.1305495,39.3311156],[23.1299479,39.3309759],[23.129914,39.3309036],[23.1300318,39.3307603],[23.1298578,39.330759],[23.1297178,39.330821],[23.1293762,39.3312329],[23.1292167,39.3309975],[23.1288133,39.3307782],[23.1285583,39.3307583],[23.128372,39.3308109],[23.1281373,39.3310254],[23.1280476,39.3307725],[23.1281898,39.3305393],[23.1281215,39.3304306],[23.1283919,39.3301443],[23.1295123,39.3296166],[23.1296877,39.3295007],[23.1301243,39.3289093],[23.1303236,39.3287486],[23.1307638,39.3279499],[23.1307533,39.3278598],[23.1313171,39.3273053],[23.1316157,39.3270778],[23.1321757,39.3268297],[23.1321808,39.3264152],[23.1320561,39.32618],[23.1321149,39.3261174],[23.1332361,39.3264501],[23.1340038,39.3262936],[23.1349543,39.3263548],[23.1350592,39.3263195],[23.1351648,39.3261356],[23.13553,39.3256787],[23.1357212,39.3252296],[23.1357598,39.3249235],[23.1356037,39.3244088],[23.1352837,39.3240189],[23.1352286,39.3237753],[23.1348643,39.3232139],[23.1348631,39.3227228],[23.1349802,39.3226336],[23.1348673,39.3222948],[23.1349092,39.3222816],[23.1349955,39.3220705],[23.134745,39.3216902],[23.1347327,39.3214468],[23.1347724,39.3210507],[23.1345492,39.3203372],[23.1345414,39.3196433],[23.1342337,39.3191995],[23.1343019,39.3187585],[23.1329591,39.3176717],[23.1318708,39.3175014],[23.1315262,39.3172285],[23.1312148,39.317082],[23.1310304,39.3166346],[23.131068,39.3164096],[23.1312676,39.3162129],[23.131295,39.3158707],[23.1307882,39.3155786],[23.1304213,39.3152334],[23.1303054,39.3150253],[23.1302358,39.3150248],[23.130041,39.3148251],[23.1293914,39.3138922],[23.1296993,39.3133809],[23.1295742,39.3131817],[23.1292404,39.312972],[23.1293697,39.3128378],[23.1295093,39.3128028],[23.1294643,39.3126943],[23.1295593,39.3125148],[23.1295881,39.3120645],[23.1295218,39.3117937],[23.1296068,39.3116907],[23.129635,39.3116368],[23.1294624,39.3115274],[23.1291486,39.3115791],[23.1290915,39.3115066],[23.128535,39.3114844],[23.1282232,39.311374],[23.1275974,39.3113332],[23.1269129,39.3107875],[23.1268666,39.3107826],[23.1264155,39.3106756],[23.1262217,39.3104038],[23.1261655,39.3102592],[23.1263815,39.3096842],[23.1263633,39.3092786],[23.1260797,39.3087719],[23.1258045,39.3085175],[23.1254746,39.3079924],[23.1254114,39.3078613],[23.1248001,39.3075864],[23.1246063,39.3073146],[23.12428,39.3074383],[23.1234444,39.3076572],[23.1210065,39.3079497]]},{"id":17186,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u039f\u03bd\u03bf\u03cd\u03c6\u03c1\u03b9\u03bf\u03c2-\u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1","description_GR":"\u03a9\u03c1\u03b1\u03af\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03cd\u03bb\u03b7 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_AgOnoufrios_Makrynitsa","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":4354,"name_EN":"Pelion Mt: Agios Onoufrios-Makrinitsa","description_EN":"A nice trail on the Mt. Pilio gates","ascent_time":85,"descent_time":70,"marker":"Red_dots","level":12,"ascent":557,"descent":20,"maxelev":640,"minelev":99,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96868 39.38126,22.98863 39.40219)","views":38,"millestones":"0,22.9689920,39.3810887#1,22.9769052,39.3859653#2,22.9795314,39.3935217#3,22.9821064,39.3965053#4,22.9855317,39.4016083#4.4,22.9883248,39.4023653","x":22.9810051,"y":39.3948048,"coor":[[22.968992,39.3810887],[22.9691429,39.3811937],[22.9689868,39.3815437],[22.970049,39.3821748],[22.9709212,39.3828674],[22.9712939,39.3833797],[22.9717471,39.3833567],[22.9720366,39.3834133],[22.9725888,39.3837606],[22.9737152,39.3837525],[22.9739919,39.3838811],[22.9742412,39.3840095],[22.9744153,39.384011],[22.9745467,39.3838365],[22.974949,39.3841103],[22.9754019,39.3841053],[22.9758865,39.3843168],[22.9760707,39.384823],[22.976609,39.3853323],[22.9767823,39.3856402],[22.9770672,39.3863816],[22.977296,39.3866178],[22.977446,39.3866822],[22.9775804,39.3868186],[22.9774037,39.3869972],[22.9774014,39.3871504],[22.9774274,39.3873083],[22.9773454,39.3873616],[22.9771488,39.3873058],[22.9770575,39.3871969],[22.9769957,39.3872504],[22.9771097,39.3873956],[22.977062,39.3874853],[22.9773013,39.3877937],[22.9773892,39.3881369],[22.9773702,39.3886458],[22.977504,39.3890254],[22.977419,39.389277],[22.9774702,39.3894757],[22.9774433,39.3897277],[22.9775219,39.3899086],[22.9774094,39.3904573],[22.9774733,39.3908543],[22.9780296,39.3917242],[22.9781833,39.3919553],[22.9785626,39.3922289],[22.9787099,39.3924735],[22.9787056,39.3925996],[22.9788988,39.3928896],[22.9789748,39.3932507],[22.9792391,39.3934423],[22.9795248,39.3935078],[22.9796826,39.3938336],[22.9799925,39.3940886],[22.9806063,39.3942021],[22.9809871,39.3943676],[22.981693,39.394536],[22.9811932,39.3946443],[22.9808122,39.3944878],[22.9810051,39.3948048],[22.9812397,39.394942],[22.9806282,39.3946663],[22.9802804,39.3946273],[22.9797138,39.3944601],[22.9794934,39.3944402],[22.9798384,39.3946774],[22.9796754,39.394703],[22.9793862,39.3946284],[22.9799019,39.3951015],[22.9801688,39.3951128],[22.9806493,39.3956126],[22.9811704,39.3958605],[22.981825,39.3959158],[22.9818988,39.3960831],[22.9815823,39.3961614],[22.9818021,39.3962174],[22.9823405,39.3967267],[22.9828128,39.3969921],[22.9821983,39.3969237],[22.9818192,39.3967942],[22.9816583,39.3966757],[22.9814139,39.3967096],[22.981719,39.3974691],[22.9819153,39.3975429],[22.9822026,39.3977527],[22.9823609,39.3980514],[22.9822447,39.3980504],[22.9822887,39.398222],[22.9825872,39.3984589],[22.9826879,39.398721],[22.9826402,39.3988107],[22.9829188,39.3990159],[22.9828955,39.3995473],[22.982985,39.3997824],[22.9831246,39.3997656],[22.9831753,39.3998696],[22.983084,39.4005626],[22.9833418,39.4004027],[22.9835511,39.4003865],[22.9837011,39.4004509],[22.9836763,39.4005588],[22.9839081,39.4005969],[22.9842063,39.4008518],[22.9845441,39.4009628],[22.9846453,39.401189],[22.9853021,39.4013749],[22.9855309,39.4016112],[22.9856853,39.4016756],[22.9858455,39.4018392],[22.9857516,39.4019104],[22.9857834,39.4019468],[22.9860153,39.4020479],[22.9862457,39.402149],[22.9870103,39.4022818],[22.9877649,39.4023064],[22.9878717,39.4022758],[22.9880694,39.4022595],[22.9882367,39.4023556],[22.9883248,39.4023653]]},{"id":17189,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a6\u03c5\u03c4\u03cc\u03ba\u03bf-\u039a\u03ac\u03c4\u03c9 \u039a\u03b5\u03c1\u03b1\u03c3\u03b9\u03ac","description_GR":"\u039c\u03ad\u03c3\u03c9 \u039b\u03bf\u03c5\u03c4\u03b6\u03af\u03ba\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Fytoko_Kerasia","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":11015,"name_EN":"Pelion Mt: Fytoko-Kato Kerasia","description_EN":"Via Loutziko","ascent_time":290,"descent_time":290,"marker":"Red_dots","level":9,"ascent":432,"descent":489,"maxelev":363,"minelev":116,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.92066 39.40702,22.93853 39.4635)","views":19,"millestones":"0,22.9385182,39.4076567#1,22.9337643,39.4113635#2,22.9267837,39.4153224#3,22.9224679,39.4174007#4,22.9300252,39.4221240#5,22.9273814,39.4281079#6,22.9214512,39.4339836#7,22.9238808,39.4420007#8,22.9266111,39.4492608#9,22.9307813,39.4526616#10,22.9301386,39.4596033#11,22.9233500,39.4635299","x":22.9253665,"y":39.4316521,"coor":[[22.9385182,39.4076567],[22.9381608,39.4074822],[22.9373267,39.4073394],[22.9365769,39.4069992],[22.9363554,39.4070512],[22.9360729,39.407301],[22.9356537,39.4073692],[22.9351967,39.4076353],[22.9349884,39.4075794],[22.9349555,39.4074529],[22.9350269,39.4073454],[22.9349382,39.4073041],[22.934832,39.4074112],[22.9349399,39.4079528],[22.9350254,39.408278],[22.9350208,39.4085753],[22.9348569,39.4086639],[22.934653,39.4085629],[22.9344337,39.4084708],[22.9342476,39.4084871],[22.933406,39.4088398],[22.9332052,39.4090542],[22.9331432,39.409315],[22.9332425,39.4096583],[22.9339727,39.410521],[22.9340391,39.4107378],[22.9338832,39.4110608],[22.9338325,39.4113396],[22.9334238,39.41148],[22.9328725,39.4118354],[22.9329143,39.4123494],[22.9328277,39.4127],[22.9324846,39.4131113],[22.9325358,39.4135623],[22.9323818,39.4137591],[22.9320455,39.41372],[22.9318779,39.4140428],[22.9317018,39.4141673],[22.9312632,39.4143615],[22.9310304,39.4143954],[22.9302997,39.4143256],[22.9293935,39.4143353],[22.9289538,39.4142232],[22.928779,39.4142576],[22.9285417,39.4145798],[22.9285968,39.4155354],[22.9278373,39.4158257],[22.926959,39.4155293],[22.9265938,39.4151024],[22.9263405,39.4149559],[22.9259826,39.4148175],[22.9254609,39.4147496],[22.9249305,39.4144924],[22.9246949,39.4144902],[22.9245732,39.4143089],[22.9242248,39.4143057],[22.9240865,39.4142323],[22.9239751,39.4139249],[22.9237807,39.4137249],[22.9234461,39.4135776],[22.9233056,39.4136484],[22.9230498,39.4136641],[22.9229356,39.4135369],[22.9224043,39.4134328],[22.9218651,39.4137522],[22.9218159,39.413932],[22.9219406,39.4141313],[22.9216012,39.4142904],[22.9214155,39.4142842],[22.9218389,39.4151441],[22.9219492,39.4155235],[22.9218851,39.4164375],[22.9218478,39.4164507],[22.9219734,39.416596],[22.9220379,39.41693],[22.9225085,39.4174434],[22.9226459,39.4175708],[22.9229395,39.417533],[22.9232753,39.4175992],[22.923863,39.417911],[22.9240647,39.4183904],[22.9241266,39.4188955],[22.9242054,39.4190584],[22.9245835,39.4194043],[22.9253448,39.4197538],[22.9260733,39.4199767],[22.9264795,39.4199985],[22.9267893,39.4202537],[22.9270708,39.420076],[22.9272453,39.4200596],[22.9279046,39.4202459],[22.9293311,39.4204032],[22.9297823,39.4205245],[22.9300332,39.4208332],[22.9298384,39.4214171],[22.929998,39.4219952],[22.9301236,39.422591],[22.9298582,39.4232283],[22.9298428,39.4234805],[22.9303417,39.424278],[22.9303736,39.4244765],[22.9301592,39.4248169],[22.9297159,39.424939],[22.9291879,39.4252765],[22.9290787,39.4255818],[22.9290975,39.4258704],[22.9290123,39.4261219],[22.9287984,39.4264352],[22.9282545,39.4267456],[22.9276252,39.426875],[22.9273679,39.4269807],[22.927054,39.4269958],[22.9261958,39.4268978],[22.9260207,39.4269503],[22.9261413,39.4270415],[22.9262463,39.4270154],[22.9262453,39.4270785],[22.9266029,39.4273881],[22.9268916,39.4274989],[22.926994,39.427644],[22.9269653,39.4277834],[22.9272306,39.4279841],[22.9273687,39.4280665],[22.9274019,39.4281749],[22.9271277,39.4286319],[22.9269725,39.4290449],[22.926988,39.4295497],[22.9268516,39.430107],[22.9266978,39.4302858],[22.9262553,39.430516],[22.9256839,39.4306549],[22.9255186,39.4308246],[22.9254788,39.4311486],[22.925614,39.4314201],[22.9255875,39.4316361],[22.9253665,39.4316521],[22.9252724,39.4317233],[22.9249595,39.4316754],[22.9247954,39.431764],[22.9243446,39.4316156],[22.9239145,39.4316297],[22.9225381,39.4319773],[22.9221741,39.4322263],[22.9218136,39.4329978],[22.9216786,39.4334651],[22.9214789,39.4336074],[22.9215463,39.4337522],[22.9214378,39.4340125],[22.9214394,39.4346612],[22.9215741,39.4349688],[22.9214324,39.4351117],[22.9215804,39.4353113],[22.9212829,39.4357681],[22.9213822,39.4367917],[22.9215264,39.4372345],[22.9221509,39.4380197],[22.9224256,39.4381439],[22.9225483,39.4384784],[22.9228827,39.4386437],[22.922961,39.4388426],[22.9229541,39.4392931],[22.9230569,39.4394112],[22.9230549,39.4395373],[22.9232163,39.4396199],[22.923582,39.4400197],[22.9238133,39.4400939],[22.9241198,39.4405653],[22.9237936,39.4413732],[22.9239003,39.4419869],[22.9236184,39.4421825],[22.9235213,39.4424519],[22.9239023,39.4426176],[22.9241536,39.4428993],[22.9242626,39.4433688],[22.924067,39.4439977],[22.9242605,39.4442608],[22.9246054,39.4444983],[22.9245609,39.4451286],[22.92472,39.4453643],[22.9246951,39.4454722],[22.9247758,39.445509],[22.9249335,39.4458348],[22.9253095,39.4463249],[22.9254661,39.4467228],[22.9254283,39.4469116],[22.9252861,39.4470905],[22.9252608,39.4479823],[22.9251643,39.4482067],[22.925332,39.4486407],[22.925293,39.4489107],[22.9253836,39.4490647],[22.925558,39.4490573],[22.9257985,39.4492938],[22.9260062,39.4493858],[22.9262262,39.4494419],[22.9263546,39.449407],[22.9266711,39.4492298],[22.9264896,39.4489397],[22.9265547,39.4484808],[22.9266597,39.4484548],[22.9278368,39.4489972],[22.9281502,39.4490271],[22.9280605,39.4488101],[22.9281425,39.4487658],[22.9293432,39.4492904],[22.9296806,39.4492665],[22.9302062,39.4490911],[22.9308097,39.4491507],[22.9312867,39.4498759],[22.9313528,39.4501108],[22.9310694,39.4511624],[22.9310996,39.4514691],[22.9312258,39.4515783],[22.9308203,39.4518719],[22.9304933,39.4519771],[22.9302349,39.4521549],[22.9302797,39.4522634],[22.9308079,39.4526828],[22.9309189,39.4530262],[22.9311587,39.4533077],[22.9310844,39.4536044],[22.9308306,39.4538588],[22.9310311,39.4544283],[22.930902,39.4545082],[22.9306973,39.4549749],[22.9303802,39.4551882],[22.9305394,39.4554239],[22.9309425,39.4556619],[22.930953,39.4557341],[22.9308219,39.4559491],[22.930331,39.4561248],[22.9303748,39.4563054],[22.9304789,39.4563334],[22.9305238,39.4564419],[22.930337,39.4564943],[22.9299431,39.4564096],[22.9298485,39.4565168],[22.9298814,39.4566433],[22.9302342,39.4569709],[22.9306213,39.457497],[22.9308969,39.4577158],[22.9309849,39.458041],[22.9312022,39.4582773],[22.9311535,39.458421],[22.9308942,39.4586529],[22.9309146,39.4590045],[22.9303959,39.4593151],[22.9299939,39.4597619],[22.9296574,39.4597227],[22.9291917,39.4597725],[22.9284376,39.4596755],[22.9273014,39.4598677],[22.926935,39.4601166],[22.9267917,39.4603676],[22.9268825,39.4605126],[22.9268755,39.460963],[22.9262753,39.4614441],[22.9258969,39.461864],[22.9258828,39.4620261],[22.9257982,39.4620929],[22.9247461,39.4624796],[22.9248148,39.4625523],[22.9246392,39.4626318],[22.9243713,39.4626654],[22.9237129,39.4625331],[22.9231794,39.4626949],[22.9232001,39.4628573],[22.9234077,39.4629673],[22.923486,39.4631663],[22.9236576,39.4633435],[22.92335,39.4635299]]},{"id":17194,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039e\u03bf\u03c5\u03c1\u03af\u03c7\u03c4\u03b9-\u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c1\u03ac\u03b4\u03b1","description_GR":"\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b1 \u03b4\u03cd\u03bf \u03c7\u03c9\u03c1\u03b9\u03ac","path":"THESSALIA\/Thessaly_Pelion_Xouricthi_Tsagarada","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":4123,"name_EN":"Pelion Mt: Xouricthi-Tsagarada","description_EN":"The old connection between the two villages","ascent_time":75,"descent_time":75,"marker":"Red_dots","level":9,"ascent":205,"descent":217,"maxelev":553,"minelev":439,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.17464 39.36438,23.18707 39.3835)","views":24,"millestones":"0,23.1870707,39.3647821#1,23.1799051,39.3685445#2,23.1762046,39.3718188#3,23.1807476,39.3778433#4.1,23.1764401,39.3828365","x":23.1753927,"y":39.3701874,"coor":[[23.1870707,39.3647821],[23.1868337,39.3645732],[23.1863693,39.364588],[23.1857682,39.3643675],[23.1854929,39.3643656],[23.1852819,39.3645443],[23.1852756,39.3650849],[23.1851427,39.3648137],[23.1848275,39.3649646],[23.184546,39.365215],[23.184231,39.3653569],[23.1834649,39.3653515],[23.1827655,39.3655989],[23.1827597,39.365662],[23.182555,39.3657326],[23.1824137,39.3659028],[23.1819241,39.3660796],[23.181787,39.3668896],[23.1819157,39.3672374],[23.1818754,39.3673362],[23.1815509,39.3673835],[23.181329,39.3674991],[23.1812148,39.3675523],[23.1808083,39.3675675],[23.1804375,39.3675108],[23.1804117,39.3677359],[23.1801754,39.3680856],[23.1801376,39.3683377],[23.1800198,39.36849],[23.1793778,39.3687919],[23.1790988,39.3688259],[23.1789109,39.3690048],[23.1784342,39.3690735],[23.1779245,39.3689798],[23.1771795,39.3691548],[23.1767984,39.3689809],[23.1767509,39.3690706],[23.1768181,39.3692874],[23.1764514,39.3688793],[23.1754258,39.3682323],[23.1753916,39.3683041],[23.175287,39.3683124],[23.1754132,39.3684395],[23.1753552,39.368439],[23.1753649,39.3686013],[23.1752025,39.3685911],[23.1750872,39.3685182],[23.1750864,39.3685903],[23.1748422,39.3686246],[23.1748182,39.3686965],[23.174827,39.3689309],[23.1750072,39.3694007],[23.1752587,39.3697359],[23.1752215,39.3699338],[23.1753927,39.3701874],[23.1753906,39.3703585],[23.1754818,39.3705034],[23.1755115,39.3709361],[23.1758442,39.3712808],[23.1764947,39.3722315],[23.1764466,39.3723754],[23.1754582,39.3734947],[23.1754968,39.3741617],[23.1757348,39.3744067],[23.1761386,39.3746258],[23.176683,39.3747288],[23.1767165,39.3748462],[23.1765736,39.3751515],[23.1766293,39.3753501],[23.1771105,39.3758942],[23.1776745,39.3763126],[23.1779287,39.3764136],[23.1786939,39.3765091],[23.1791538,39.3763051],[23.1792693,39.3763194],[23.1794103,39.3766087],[23.1796628,39.3768628],[23.1801187,39.3775869],[23.1805702,39.3776982],[23.1808117,39.3778981],[23.1809573,39.3783497],[23.181417,39.3787584],[23.181508,39.3789212],[23.1814704,39.3791552],[23.181198,39.3795543],[23.1811958,39.3797435],[23.181321,39.3799516],[23.1814298,39.3805831],[23.1816918,39.3808597],[23.1815858,39.3809851],[23.181099,39.3809096],[23.1808084,39.3809436],[23.1802599,39.3811831],[23.1800845,39.3812899],[23.1799416,39.3815953],[23.1791588,39.3820673],[23.1793064,39.3823567],[23.1793153,39.3825911],[23.1794982,39.3828356],[23.1794375,39.3829343],[23.1791193,39.3829681],[23.1787254,39.3828932],[23.1785046,39.3829097],[23.1781176,39.3832314],[23.1775104,39.3835244],[23.177267,39.3834867],[23.1767133,39.3831764],[23.1764409,39.3829852],[23.1764401,39.3828365]]},{"id":17195,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03b9\u03ad\u03c2-\u039b\u03b1\u03bc\u03c0\u03b9\u03bd\u03bf\u03cd","description_GR":"\u0388\u03bd\u03b1\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc\u03c2 \u03b4\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2","path":"THESSALIA\/Thessaly_Pelion_Milies_Labinou","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6831,"name_EN":"Pelion Mt: Milies-Labinou","description_EN":"A long mountain crossing","ascent_time":155,"descent_time":160,"marker":"Red_dots","level":9,"ascent":288,"descent":379,"maxelev":652,"minelev":298,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.14949 39.32859,23.20659 39.35176)","views":28,"millestones":"0,23.1497742,39.3285184#1,23.1583706,39.3310432#2,23.1671877,39.3325681#3,23.1773650,39.3329996#4,23.1839292,39.3392915#5,23.1943137,39.3426319#6,23.2004448,39.3492027#6.8,23.2062115,39.3521643","x":23.178181,"y":39.3340567,"coor":[[23.1497742,39.3285184],[23.1498665,39.3285911],[23.15059,39.3284838],[23.1514868,39.328202],[23.1516137,39.328257],[23.1525766,39.328264],[23.1528345,39.3282839],[23.1528695,39.3282661],[23.1531377,39.3282185],[23.1536661,39.3286548],[23.1539791,39.3286751],[23.1541514,39.3288206],[23.1544292,39.3288766],[23.1547571,39.3288295],[23.1553814,39.3290142],[23.1555759,39.3292409],[23.1558535,39.329315],[23.1565788,39.3297798],[23.1569067,39.3295299],[23.1572431,39.3295323],[23.1577395,39.3298287],[23.1583651,39.3299053],[23.1586763,39.3300788],[23.1587312,39.3303405],[23.1584147,39.3306085],[23.1582713,39.3309589],[23.1586066,39.3312407],[23.1589594,39.3318109],[23.1589343,39.3319729],[23.158758,39.3321608],[23.1587994,39.3325756],[23.1590454,39.3323792],[23.1593479,39.3323093],[23.1605075,39.3323627],[23.1612629,39.33226],[23.1616668,39.3324431],[23.1618994,39.3323998],[23.1620376,39.3324909],[23.1626509,39.3326214],[23.1628255,39.3325776],[23.1631849,39.3325982],[23.1636865,39.3323766],[23.1644277,39.33249],[23.1648492,39.3321687],[23.1657698,39.3318329],[23.1662329,39.3319173],[23.1664401,39.3320539],[23.1667033,39.3323622],[23.1670272,39.3324456],[23.1673147,39.3326639],[23.1675083,39.3326337],[23.1676954,39.3325089],[23.1678508,39.3331047],[23.1681184,39.3330436],[23.1691155,39.3331048],[23.1695568,39.3330719],[23.1705744,39.3331152],[23.1713154,39.3332556],[23.1722121,39.3328475],[23.1726306,39.3327784],[23.174054,39.3327569],[23.1749959,39.3325834],[23.1754829,39.3326049],[23.1757822,39.3328143],[23.1758866,39.332815],[23.1764117,39.3325574],[23.1765861,39.3325316],[23.1769192,39.3328133],[23.1772666,39.3328698],[23.1776095,39.3333138],[23.1780141,39.3334428],[23.178181,39.3340567],[23.1780468,39.3350198],[23.1781845,39.335147],[23.1785884,39.335339],[23.1789539,39.3358372],[23.1795142,39.3359538],[23.1797641,39.3360051],[23.1799472,39.3362226],[23.1804449,39.3363343],[23.18086,39.3365535],[23.1815463,39.3374053],[23.181656,39.3379467],[23.1824372,39.338619],[23.1824129,39.3387179],[23.1825508,39.338827],[23.1834981,39.3391941],[23.1838573,39.3392326],[23.1842597,39.3395598],[23.1853122,39.3398555],[23.1855652,39.3400465],[23.1858775,39.3401388],[23.1863302,39.340124],[23.1866083,39.340162],[23.1867583,39.3402351],[23.1872344,39.3402024],[23.1877436,39.3403231],[23.1883326,39.3405615],[23.1888075,39.3406369],[23.1893991,39.340659],[23.1914219,39.3413398],[23.1918628,39.3413429],[23.192806,39.3420703],[23.1936025,39.3424362],[23.1944586,39.3426674],[23.1949521,39.3431394],[23.1963353,39.3439599],[23.196966,39.344613],[23.1978511,39.345358],[23.1981029,39.3456661],[23.1988275,39.3462297],[23.1988611,39.3463381],[23.1987663,39.3465087],[23.1982178,39.3467752],[23.1983435,39.3469473],[23.1982488,39.3471088],[23.1983638,39.3475196],[23.1990753,39.3482273],[23.1998226,39.3488452],[23.2007796,39.3493924],[23.2010898,39.3496648],[23.2011808,39.3498276],[23.2020329,39.3500317],[23.2027861,39.350136],[23.2029371,39.3502542],[23.2030545,39.3501378],[23.203287,39.3501034],[23.203831,39.3502332],[23.2039976,39.3502479],[23.205316,39.3506624],[23.2058146,39.3507018],[23.205998,39.3509013],[23.2061039,39.3507759],[23.2061438,39.3510645],[23.2063415,39.3510298],[23.206164,39.3513259],[23.2059884,39.3514599],[23.2059754,39.351586],[23.2057893,39.3516207],[23.205926,39.3517794],[23.2062119,39.3521282],[23.2062115,39.3521643]]},{"id":17197,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039e\u03bf\u03c5\u03c1\u03af\u03c7\u03c4\u03b9-\u039c\u03c5\u03bb\u03bf\u03c0\u03cc\u03c4\u03b1\u03bc\u03bf\u03c2","description_GR":"\u039a\u03b1\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039c\u03c5\u03bb\u03bf\u03c0\u03bf\u03c4\u03ac\u03bc\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Xourichti_Mylopotamos","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":3163,"name_EN":"Pelion Mt: Xourichti-Mylopotamos","description_EN":"Descent to Mylopotamos beach","ascent_time":70,"descent_time":85,"marker":"Red_dots","level":13,"ascent":21,"descent":501,"maxelev":504,"minelev":7,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.18696 39.3649,23.20443 39.37456)","views":21,"millestones":"0,23.1870707,39.3647821#1,23.1953634,39.3673994#2,23.1992196,39.3698588#3.2,23.2034185,39.3746716","x":23.1976635,"y":39.3688653,"coor":[[23.1870707,39.3647821],[23.1878609,39.3648687],[23.18815,39.3649608],[23.188371,39.3649534],[23.1885444,39.3650176],[23.1887844,39.365186],[23.1890704,39.3655484],[23.1893587,39.3657126],[23.1897833,39.3661391],[23.1901659,39.3661778],[23.1903483,39.3661836],[23.1907316,39.3661682],[23.1909386,39.3663318],[23.1909742,39.3663591],[23.1912406,39.366415],[23.1916707,39.3663639],[23.1919059,39.3665683],[23.1922547,39.3665257],[23.1923909,39.3666348],[23.1926553,39.3666681],[23.192993,39.3665804],[23.1930329,39.3666392],[23.1934024,39.3665291],[23.1933887,39.3667093],[23.1934465,39.3667277],[23.1936445,39.366675],[23.193937,39.3664698],[23.1942701,39.3667784],[23.194184,39.3672013],[23.1942644,39.367274],[23.194461,39.3673384],[23.1945209,39.3671766],[23.1947423,39.3671061],[23.194717,39.3672861],[23.195051,39.3675227],[23.1951239,39.3672349],[23.1954464,39.3674534],[23.195543,39.3675757],[23.1954654,39.3668723],[23.1955742,39.3669451],[23.1961069,39.3680661],[23.1961506,39.3683007],[23.1960761,39.3687237],[23.1961564,39.3688144],[23.1965685,39.3683036],[23.1965513,39.3677809],[23.1966523,39.3677996],[23.1967195,39.3680163],[23.1969827,39.3683425],[23.1970316,39.3691448],[23.1971687,39.3693349],[23.1973186,39.3694261],[23.1974941,39.3694588],[23.1974765,39.3689721],[23.1975472,39.3688825],[23.1976635,39.3688653],[23.197707,39.3691179],[23.1978674,39.3692992],[23.1981211,39.3694541],[23.1987113,39.3696114],[23.1988355,39.3699186],[23.1991,39.3701367],[23.1991312,39.3698486],[23.1993052,39.3698678],[23.1994318,39.3699587],[23.1995848,39.3697796],[23.1996544,39.3697801],[23.1999169,39.3701783],[23.2000088,39.3702601],[23.2000903,39.3702426],[23.2001474,39.3703241],[23.2002175,39.3702885],[23.2002975,39.3703972],[23.2005745,39.3705343],[23.2006307,39.3706968],[23.2008409,39.3705902],[23.2009451,39.3706179],[23.2011281,39.3708534],[23.2013763,39.3714859],[23.2015385,39.371514],[23.2016173,39.3717308],[23.2017672,39.371822],[23.2019295,39.3718411],[23.2023553,39.3721729],[23.2024937,39.3722459],[23.2026223,39.3721747],[23.2027245,39.3723737],[23.2028286,39.3724014],[23.202908,39.3721542],[23.2032099,39.37285],[23.2032996,39.37313],[23.2032941,39.3736165],[23.2037814,39.3736379],[23.2041476,39.373789],[23.2043337,39.3737543],[23.2042807,39.3738846],[23.2040359,39.373973],[23.2039082,39.3739721],[23.2037584,39.373881],[23.2031423,39.3739489],[23.2031413,39.374039],[23.2034419,39.3741491],[23.2036276,39.3741504],[23.2037004,39.374259],[23.2036063,39.3743665],[23.20371,39.3744303],[23.2036056,39.3744296],[23.2036861,39.3744932],[23.2034767,39.3745278],[23.2034093,39.3745589],[23.2034185,39.3746716]]},{"id":17198,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03c1\u03b3\u03b1\u03bb\u03b1\u03c3\u03c4\u03ae-\u039b\u03b5\u03c6\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Argalasti_Lefokastro","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4984,"name_EN":"Pelion Mt: Argalasti-Lefokastro","description_EN":"","ascent_time":115,"descent_time":120,"marker":"Red_dots","level":9,"ascent":71,"descent":311,"maxelev":251,"minelev":6,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.18158 39.2265,23.21816 39.25014)","views":15,"millestones":"0,23.2181627,39.2265010#1,23.2105121,39.2303469#2,23.2023681,39.2349683#3,23.1968209,39.2409596#4,23.1897074,39.2478067#5.0,23.1815809,39.2500832","x":23.2010082,"y":39.2376571,"coor":[[23.2181627,39.226501],[23.2179304,39.2267518],[23.2170749,39.2270163],[23.2166077,39.2271619],[23.2156562,39.2272996],[23.2156959,39.2279937],[23.2153896,39.2284512],[23.2152817,39.2287749],[23.2153138,39.2290094],[23.2151029,39.2292242],[23.2150198,39.2294039],[23.2146245,39.2295274],[23.214532,39.2295087],[23.2144497,39.2296163],[23.2142764,39.2295791],[23.2141117,39.2298032],[23.213996,39.2297844],[23.2135082,39.2298893],[23.2136414,39.2304128],[23.2134666,39.2305017],[23.2133977,39.2304472],[23.2132354,39.2304551],[23.2120681,39.2302039],[23.2118823,39.2302387],[23.211323,39.2305233],[23.2107344,39.2303211],[23.2098632,39.2304278],[23.2093516,39.2305865],[23.2080635,39.230776],[23.2072944,39.2311672],[23.2062867,39.2311424],[23.2052831,39.2317843],[23.2048615,39.2321779],[23.2043478,39.2325258],[23.2039185,39.2325769],[23.2036276,39.2326921],[23.2035335,39.2328176],[23.2031019,39.2330759],[23.2028008,39.2330649],[23.2025674,39.2332074],[23.2024038,39.2333325],[23.2021306,39.2339253],[23.2022352,39.2346919],[23.2025182,39.2352886],[23.2017213,39.2360761],[23.2016231,39.236562],[23.2014101,39.236957],[23.2013469,39.2374251],[23.2010905,39.2375495],[23.2010082,39.2376571],[23.2007301,39.2376552],[23.2009013,39.2378906],[23.2000311,39.2379928],[23.2001906,39.2382282],[23.2004567,39.238266],[23.2000843,39.2384077],[23.1998237,39.2389105],[23.1989477,39.2395172],[23.19884,39.2398228],[23.1984773,39.2401267],[23.1983706,39.2403422],[23.1982774,39.2403866],[23.1981858,39.2402869],[23.1980351,39.2402948],[23.1976039,39.2405081],[23.1970343,39.2406664],[23.1962219,39.2417961],[23.1956484,39.2422968],[23.1953664,39.2426372],[23.1949156,39.2429495],[23.1945973,39.2430104],[23.1944224,39.2431083],[23.1937435,39.2436983],[23.1933427,39.2442902],[23.193117,39.2447752],[23.1920977,39.2457504],[23.1909686,39.2471932],[23.1902702,39.2474587],[23.1896399,39.2478508],[23.1890019,39.2479094],[23.1882377,39.24785],[23.1875999,39.2478907],[23.1868184,39.2483267],[23.1863328,39.2483188],[23.185663,39.2481159],[23.1855141,39.2479707],[23.1853177,39.2479153],[23.1852393,39.2476804],[23.184972,39.2477416],[23.1848805,39.2476419],[23.1845154,39.2476483],[23.1837371,39.2478051],[23.1834868,39.2478123],[23.1831584,39.247747],[23.1831219,39.2478008],[23.1824921,39.2491389],[23.1824016,39.2499493],[23.1818083,39.2501433],[23.1815809,39.2500832]]},{"id":17200,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03bb\u03ac\u03c3\u03b9\u03bf\u03c2-\u03a3\u03c4\u03c1\u03cc\u03c6\u03b9\u03bb\u03bf\u03c2-\u0386\u03bd\u03c9 \u039b\u03b5\u03c7\u03ce\u03bd\u03b9\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0392\u03bb\u03ac\u03c3\u03b9\u03bf \u03c3\u03c4\u03b1 \u0386\u03bd\u03c9 \u039b\u03b5\u03c7\u03ce\u03bd\u03b9\u03b1 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03c1\u03cc\u03c6\u03b9\u03bb\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_AgVlasios_ALechonia","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":3165,"name_EN":"Pelion Mt: Agios Vlasios-Strofilos-Ano Lechonia","description_EN":"From Agios Vlasios to Ano Lechonia via Strofilos","ascent_time":55,"descent_time":60,"marker":"Red_dots","level":13,"ascent":8,"descent":262,"maxelev":315,"minelev":53,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.05276 39.32587,23.06894 39.34169)","views":9,"millestones":"0,23.0670878,39.3418108#1,23.0653300,39.3354832#2,23.0583756,39.3322061#3.2,23.0529783,39.3257437","x":23.0614451,"y":39.3355392,"coor":[[23.0670878,39.3418108],[23.0670443,39.3415942],[23.0671723,39.3414871],[23.0673598,39.3413445],[23.067658,39.3407341],[23.0676498,39.3404818],[23.0672554,39.3398704],[23.0673494,39.339781],[23.0677812,39.339762],[23.0678138,39.3396586],[23.0682572,39.339473],[23.0687605,39.3391436],[23.0685905,39.3388359],[23.0685731,39.3384032],[23.0682297,39.3380491],[23.0681203,39.3378995],[23.0680839,39.3378587],[23.0681286,39.337796],[23.0682979,39.3371125],[23.0681703,39.3371115],[23.0679307,39.3369654],[23.0677499,39.3366035],[23.0674138,39.3362494],[23.0671133,39.3361569],[23.0665383,39.335855],[23.0664022,39.3357818],[23.0663229,39.335637],[23.0661905,39.3354782],[23.065844,39.3353583],[23.0655887,39.3353563],[23.0653963,39.3355079],[23.0649645,39.3353467],[23.0647314,39.3353404],[23.0640774,39.3356595],[23.0632741,39.3358603],[23.062845,39.3358388],[23.0621423,39.3354637],[23.0621363,39.3359142],[23.0614451,39.3355392],[23.060604,39.3344196],[23.0604577,39.334076],[23.0604831,39.333914],[23.0605977,39.3334014],[23.0605528,39.3332839],[23.060381,39.3331203],[23.0596897,39.3327543],[23.0595417,39.3325458],[23.0595059,39.3326176],[23.0593546,39.3326524],[23.0594027,39.3325267],[23.0592333,39.3321829],[23.0591264,39.3323623],[23.0588474,39.3324051],[23.0585576,39.3323847],[23.058361,39.332257],[23.0584218,39.3320502],[23.0584043,39.3316266],[23.0588668,39.3308734],[23.0589572,39.3301894],[23.0586216,39.3302903],[23.058448,39.330014],[23.0580336,39.3296908],[23.057363,39.3292439],[23.0573102,39.3292074],[23.057042,39.3290385],[23.0566979,39.3287474],[23.0565156,39.3284936],[23.0559278,39.3282095],[23.0555569,39.327747],[23.0552887,39.3278529],[23.0545723,39.3284959],[23.0543176,39.3284578],[23.0542801,39.3277907],[23.0541034,39.3271315],[23.0540679,39.3266717],[23.0539775,39.3264907],[23.0529783,39.3257437]]},{"id":17201,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2-\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03bb\u03ac\u03c3\u03b9\u03bf\u03c2","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1\u03c2 \u03c4\u03bf\u03c5 \u03c1\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2 \u039a\u03bf\u03c5\u03c6\u03ac\u03bb\u03b1","path":"THESSALIA\/Thessaly_Pelion_AgLavrentios_AgVlasios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4831,"name_EN":"Pelion Mt: Agios Lavrentios-Agios Vlasios","description_EN":"A traverse of the Koufala valley","ascent_time":105,"descent_time":110,"marker":"Red_dots","level":13,"ascent":174,"descent":415,"maxelev":623,"minelev":311,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.0595 39.3419,23.07847 39.3613)","views":34,"millestones":"0,23.0595151,39.3602079#1,23.0659948,39.3569093#2,23.0747521,39.3564746#3,23.0734878,39.3525704#4,23.0689547,39.3461765#4.8,23.0670878,39.3418108","x":23.0769735,"y":39.354153,"coor":[[23.0595151,39.3602079],[23.0596157,39.3605196],[23.059575,39.3609608],[23.0597677,39.3613047],[23.0597574,39.3612055],[23.0598841,39.3612787],[23.0598863,39.3611165],[23.059968,39.3610811],[23.0600138,39.3611265],[23.0601154,39.3608841],[23.0601741,39.3608305],[23.0604978,39.3609322],[23.0606284,39.3608702],[23.0607788,39.3607453],[23.0618866,39.3603667],[23.0619675,39.3603944],[23.0625464,39.3604216],[23.0625829,39.3602958],[23.0628291,39.3601085],[23.0633725,39.3598921],[23.0634569,39.3596811],[23.0635248,39.3592942],[23.064042,39.3588118],[23.0641614,39.3585604],[23.064319,39.3580571],[23.0642561,39.357552],[23.0643632,39.3573546],[23.0647723,39.3571417],[23.0658765,39.3570244],[23.0660058,39.3568993],[23.0665691,39.3569804],[23.0675929,39.3569886],[23.0677975,39.3573146],[23.0680519,39.3573887],[23.0684589,39.3573289],[23.0687237,39.3574932],[23.0689373,39.3571345],[23.0695686,39.3567972],[23.0697635,39.3569789],[23.0699636,39.3567643],[23.0709179,39.3565737],[23.0711871,39.3564046],[23.0717809,39.3562652],[23.0719308,39.3563385],[23.0718247,39.3564638],[23.0719248,39.356789],[23.0722258,39.3568454],[23.0721811,39.3567189],[23.0722294,39.3565751],[23.0723212,39.356657],[23.0726106,39.3567133],[23.0731444,39.3567176],[23.0733408,39.3567912],[23.0734433,39.3569362],[23.073629,39.3569377],[23.0738822,39.3571019],[23.0742108,39.3568252],[23.0744794,39.3567012],[23.0745277,39.3565574],[23.0755308,39.3561869],[23.0758662,39.3562797],[23.0761186,39.3564979],[23.0764774,39.3565729],[23.0770345,39.3565773],[23.0774191,39.3564542],[23.0779677,39.3562243],[23.0780051,39.3560263],[23.0782523,39.355758],[23.07829,39.355542],[23.0780841,39.3553151],[23.0778766,39.3552054],[23.0776139,39.3548789],[23.0775583,39.3546982],[23.0776991,39.3545822],[23.0776889,39.354474],[23.0773765,39.3543995],[23.0772052,39.3541909],[23.0769735,39.354153],[23.0769053,39.3540443],[23.0767213,39.3539167],[23.0765593,39.3538794],[23.076423,39.3537927],[23.0762857,39.353724],[23.0758928,39.3535948],[23.0756555,39.3531063],[23.0754613,39.3528705],[23.0752179,39.3528505],[23.0749301,39.352668],[23.0747101,39.3526302],[23.0744657,39.3526824],[23.0742924,39.3526269],[23.0741178,39.3526616],[23.0739562,39.3525972],[23.0735729,39.3526212],[23.0734146,39.3525253],[23.0734547,39.3521202],[23.0734571,39.3520211],[23.0731696,39.3518206],[23.0728406,39.3512503],[23.0723551,39.3511022],[23.0722149,39.3511732],[23.072181,39.3511009],[23.0722342,39.3510022],[23.0724921,39.350806],[23.0724836,39.3505716],[23.0726013,39.3504464],[23.0723142,39.3502189],[23.0717598,39.3500162],[23.0714728,39.3497797],[23.0713128,39.349454],[23.0709124,39.3490183],[23.0708105,39.3488283],[23.0708477,39.3486484],[23.0707097,39.3485481],[23.07063,39.34857],[23.0705971,39.3484256],[23.0706694,39.3482279],[23.0704104,39.3476312],[23.0699417,39.3472805],[23.0695925,39.3464848],[23.0692971,39.3460139],[23.0692168,39.3459412],[23.0691257,39.345945],[23.0692513,39.3461307],[23.069099,39.3462376],[23.068949,39.3461733],[23.0684011,39.3454841],[23.0684033,39.345322],[23.0686268,39.3450895],[23.0689105,39.3447854],[23.0687668,39.3442436],[23.0688059,39.3441088],[23.0687138,39.344054],[23.0688339,39.3437486],[23.0686376,39.3436749],[23.0685562,39.3436923],[23.0685919,39.3436205],[23.0685107,39.3436198],[23.0683282,39.3433841],[23.0679828,39.3433678],[23.0679538,39.343309],[23.0677426,39.3434875],[23.0670219,39.3435809],[23.066881,39.3436518],[23.066916,39.3434404],[23.067035,39.3433332],[23.067135,39.3427934],[23.0673573,39.342651],[23.0673247,39.3424885],[23.0674564,39.3421832],[23.0673087,39.3421099],[23.0673104,39.3419838],[23.0672407,39.3419833],[23.0670878,39.3418108]]},{"id":17202,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2-\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc \u03b4\u03ac\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_AgLavrentios_AgGeorgios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5674,"name_EN":"Pelion Mt: Agios Lavrentios-Agios Georgios","description_EN":"A long route along Pelion montaine forest","ascent_time":130,"descent_time":120,"marker":"Red_dots","level":9,"ascent":284,"descent":239,"maxelev":643,"minelev":476,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.0595 39.3429,23.08509 39.36168)","views":30,"millestones":"0,23.0595151,39.3602079#1,23.0643827,39.3573446#2,23.0734320,39.3569231#3,23.0751257,39.3527913#4,23.0730731,39.3474767#5,23.0798635,39.3442850#5.7,23.0850955,39.3429044","x":23.0776984,"y":39.3545822,"coor":[[23.0595151,39.3602079],[23.0596153,39.3605196],[23.0595746,39.3609608],[23.0597673,39.3613047],[23.059757,39.3612055],[23.0598837,39.3612787],[23.0598859,39.3611165],[23.0599676,39.3610811],[23.0600135,39.3611265],[23.0601154,39.3608841],[23.0601741,39.3608305],[23.0604978,39.3609322],[23.0606284,39.3608702],[23.0608526,39.3613045],[23.0611895,39.3612802],[23.0616284,39.3612837],[23.0620912,39.3613956],[23.062252,39.361523],[23.0623192,39.3617038],[23.0626737,39.3612381],[23.0629698,39.3605196],[23.0629389,39.360231],[23.0633728,39.3598921],[23.0634569,39.3596811],[23.0635248,39.3592942],[23.064042,39.3588118],[23.0641614,39.3585604],[23.064319,39.3580571],[23.0642561,39.357552],[23.0643632,39.3573546],[23.0647723,39.3571417],[23.0658765,39.3570244],[23.0660058,39.3568993],[23.0665687,39.3569804],[23.0675922,39.3569886],[23.0677968,39.3573146],[23.0680511,39.3573887],[23.0684582,39.3573289],[23.0687229,39.3574932],[23.0689366,39.3571345],[23.0695678,39.3567972],[23.0697627,39.3569789],[23.0699629,39.3567643],[23.0709172,39.3565737],[23.0711864,39.3564046],[23.0717801,39.3562652],[23.07193,39.3563385],[23.0718239,39.3564638],[23.0719241,39.3567889],[23.0722251,39.3568454],[23.0721804,39.3567189],[23.0722287,39.3565751],[23.0723205,39.3566569],[23.0726099,39.3567133],[23.0731437,39.3567176],[23.0733401,39.3567912],[23.0734426,39.3569362],[23.0736283,39.3569377],[23.0738815,39.3571019],[23.0742101,39.3568252],[23.0744787,39.3567012],[23.074527,39.3565574],[23.0755301,39.3561869],[23.0758654,39.3562797],[23.0761179,39.3564979],[23.0764767,39.3565729],[23.0770338,39.3565773],[23.0774184,39.3564542],[23.0779669,39.3562243],[23.0780044,39.3560263],[23.0782516,39.355758],[23.0782893,39.355542],[23.0780833,39.3553151],[23.0778759,39.3552054],[23.0776132,39.3548789],[23.0775576,39.3546982],[23.0776984,39.3545822],[23.0776882,39.354474],[23.0773758,39.3543995],[23.0772044,39.3541909],[23.0769728,39.354153],[23.0769046,39.3540443],[23.0767206,39.3539167],[23.0765586,39.3538794],[23.076423,39.3537927],[23.0762857,39.353724],[23.0758928,39.3535948],[23.0756555,39.3531063],[23.0754613,39.3528705],[23.0752179,39.3528505],[23.0749301,39.352668],[23.0747101,39.3526302],[23.0744657,39.3526824],[23.0742924,39.3526269],[23.0741178,39.3526616],[23.0739562,39.3525972],[23.0735729,39.3526212],[23.0734138,39.3525253],[23.0738442,39.3525603],[23.0742285,39.3524642],[23.0746662,39.3524407],[23.0744055,39.3522404],[23.0744095,39.3519431],[23.0747515,39.3515313],[23.0751013,39.3514079],[23.075512,39.3510598],[23.0754708,39.350663],[23.0759728,39.3504417],[23.0753901,39.3490269],[23.0748948,39.3487437],[23.0747239,39.348508],[23.0736083,39.3477423],[23.0726168,39.3472478],[23.0723411,39.3470294],[23.0724629,39.3465978],[23.0737232,39.3460672],[23.0740407,39.3457544],[23.0741939,39.3454943],[23.0749367,39.3452975],[23.0751041,39.3449204],[23.0750174,39.3444511],[23.0751467,39.344326],[23.0753017,39.3443723],[23.0754734,39.3443872],[23.0763229,39.3442047],[23.0766826,39.3442076],[23.0770409,39.3443185],[23.0773541,39.34433],[23.0784364,39.3445368],[23.0789905,39.3447575],[23.0792201,39.3440655],[23.0793248,39.3440483],[23.0796474,39.344222],[23.0801571,39.3443702],[23.0808,39.3446276],[23.0810636,39.344882],[23.0813805,39.3450467],[23.0815423,39.345102],[23.0815671,39.3449761],[23.0816488,39.3449407],[23.0821924,39.344999],[23.082577,39.3448759],[23.0829949,39.3448612],[23.083595,39.3451182],[23.0843175,39.3448896],[23.0847861,39.3445509],[23.0848348,39.3443711],[23.0848912,39.3438849],[23.0849986,39.3434668],[23.0849993,39.3434127],[23.084989,39.3430612],[23.0850955,39.3429044]]},{"id":17203,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1-\u03a3\u03c4\u03b1\u03b3\u03b9\u03ac\u03c4\u03b5\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Makrynitsa_Stagiates","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2880,"name_EN":"Pelion Mt: Makrinitsa-Stagiates","description_EN":"","ascent_time":50,"descent_time":50,"marker":"Red_dots","level":13,"ascent":31,"descent":284,"maxelev":640,"minelev":384,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.98277 39.38888,22.99334 39.40248)","views":33,"millestones":"0,22.9883345,39.4023699#1,22.9915017,39.3991445#2,22.9880874,39.3939959#2.9,22.9835096,39.3887942","x":22.9928344,"y":39.3990256,"coor":[[22.9883345,39.4023699],[22.9884251,39.4025329],[22.9885877,39.4025343],[22.9885327,39.4023176],[22.9889838,39.4024477],[22.9891273,39.4021606],[22.9892314,39.4021885],[22.9895926,39.4021106],[22.9897167,39.4018864],[22.9900436,39.4015919],[22.9903309,39.4011754],[22.9907272,39.4010707],[22.9910243,39.4006047],[22.9914706,39.4002572],[22.9917159,39.4001602],[22.9920292,39.4001809],[22.9922482,39.4001198],[22.9917148,39.4000611],[22.9917733,39.3999535],[22.9915308,39.3998613],[22.991425,39.3999504],[22.9910518,39.4000553],[22.991289,39.399715],[22.9908924,39.3998377],[22.9903719,39.399689],[22.9902338,39.3995977],[22.9901767,39.3995341],[22.9908381,39.3995759],[22.9911199,39.3993621],[22.9914077,39.399306],[22.9912583,39.3991966],[22.991113,39.3992089],[22.9910318,39.3991992],[22.9913009,39.3990663],[22.9923517,39.3994809],[22.9921453,39.3992989],[22.9926668,39.3993755],[22.9928344,39.3990256],[22.9930445,39.3989553],[22.9931978,39.3987944],[22.9931058,39.3987306],[22.9931413,39.3986858],[22.9930027,39.3986306],[22.9926066,39.3987172],[22.9923052,39.3986786],[22.9918357,39.398215],[22.9911451,39.3977855],[22.9909627,39.3975497],[22.9909885,39.3973697],[22.9908828,39.3972742],[22.9901579,39.3960064],[22.9900818,39.3956453],[22.9891303,39.3947901],[22.9889599,39.3945273],[22.9886141,39.3943441],[22.988572,39.3940464],[22.9880154,39.3939875],[22.9872082,39.393593],[22.9867376,39.3932105],[22.9864539,39.3927575],[22.9865957,39.3917856],[22.9859808,39.3912711],[22.9856371,39.3909438],[22.9851475,39.3902727],[22.9850826,39.3899478],[22.9849691,39.3897666],[22.983442,39.3893748],[22.9832118,39.3892332],[22.9829809,39.389141],[22.9829615,39.3890282],[22.9831366,39.3889667],[22.9832552,39.3887965],[22.983359,39.3888425],[22.9835096,39.3887942]]},{"id":17204,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a3\u03c4\u03b1\u03b3\u03b9\u03ac\u03c4\u03b5\u03c2-\u03a0\u03bf\u03c1\u03c4\u03b1\u03c1\u03b9\u03ac","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Stagiates_Portaria","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2100,"name_EN":"Pelion Mt: Stagiates-Portaria","description_EN":"","ascent_time":35,"descent_time":40,"marker":"Red_dots","level":9,"ascent":6,"descent":255,"maxelev":650,"minelev":384,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.98345 39.38873,22.99935 39.39346)","views":61,"millestones":"0,22.9993250,39.3903370#1,22.9929744,39.3927801#2.1,22.9835183,39.3887898","x":22.9925026,"y":39.3924496,"coor":[[22.999325,39.390337],[22.9988023,39.3904226],[22.9985925,39.3904748],[22.9983575,39.390671],[22.997805,39.3907339],[22.997794,39.390923],[22.9979294,39.3911945],[22.9984421,39.3918837],[22.9984599,39.3922623],[22.9986209,39.3923718],[22.9988988,39.3924282],[22.9989668,39.3925955],[22.9983669,39.393131],[22.9973804,39.3930954],[22.9967872,39.3931624],[22.9963029,39.393352],[22.9959169,39.3935468],[22.9956844,39.3935629],[22.995212,39.3933065],[22.9949943,39.3932506],[22.9948519,39.3932628],[22.9947233,39.3932482],[22.9943831,39.3933309],[22.9939074,39.3933313],[22.9936734,39.3934554],[22.9932928,39.3932719],[22.9930663,39.3928735],[22.9928717,39.3926735],[22.9927489,39.3926364],[22.992668,39.3926808],[22.9925026,39.3924496],[22.9922939,39.3924298],[22.9922273,39.3922129],[22.9919959,39.3921569],[22.9919288,39.3919761],[22.9917371,39.392006],[22.9915278,39.3918735],[22.9911693,39.3916722],[22.9908326,39.3916963],[22.9903332,39.3914937],[22.990272,39.3912859],[22.9896458,39.3912264],[22.9889235,39.391112],[22.9881139,39.3908888],[22.9878331,39.3908818],[22.9873454,39.3908325],[22.9872014,39.3903988],[22.9869672,39.390185],[22.9864904,39.389433],[22.9863075,39.3892331],[22.9861844,39.3892095],[22.9861298,39.3889748],[22.9860274,39.3888297],[22.9856941,39.3886872],[22.9856952,39.3886151],[22.9855148,39.3886405],[22.9852238,39.3886921],[22.9844572,39.3887034],[22.9841892,39.3887731],[22.9836691,39.3888272],[22.9835183,39.3887898]]},{"id":17205,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0392\u03cc\u03bb\u03bf\u03c2-\u03a0\u03bf\u03c1\u03c4\u03b1\u03c1\u03b9\u03ac","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Volos_Portaria","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4645,"name_EN":"Pelion Mt: Volos-Portaria","description_EN":"","ascent_time":115,"descent_time":95,"marker":"Red_dots","level":12,"ascent":560,"descent":48,"maxelev":660,"minelev":100,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96901 39.37974,23.00016 39.39048)","views":37,"millestones":"0,22.9691429,39.3811937#1,22.9783982,39.3803343#2,22.9836770,39.3818757#3,22.9886648,39.3850904#4,22.9975828,39.3880288#4.6,22.9978043,39.3907338","x":22.9843102,"y":39.3814758,"coor":[[22.9691429,39.3811937],[22.9702164,39.3817664],[22.9717291,39.3815455],[22.9720793,39.3815846],[22.9720206,39.3817057],[22.9724542,39.3819033],[22.9727229,39.3817885],[22.9730707,39.3818276],[22.9740349,39.3819668],[22.9738411,39.3817218],[22.974149,39.3817065],[22.9746139,39.3816745],[22.9746117,39.3814222],[22.9748202,39.381361],[22.9750657,39.381246],[22.9750371,39.3812187],[22.9752624,39.3811441],[22.9754244,39.3811816],[22.9757686,39.3810675],[22.9763094,39.3806037],[22.9764759,39.3803349],[22.9766983,39.3802107],[22.9768846,39.3801763],[22.9769992,39.3802764],[22.9771398,39.3801875],[22.9775927,39.3801825],[22.9784958,39.3803526],[22.9789548,39.3799332],[22.9793131,39.3797921],[22.9801397,39.3795651],[22.9799261,39.3798786],[22.9796211,39.3800922],[22.9797709,39.3801746],[22.9797467,39.3802374],[22.9798858,39.3802567],[22.9799889,39.3803477],[22.9801974,39.3802369],[22.9804271,39.3802299],[22.9806465,39.3803129],[22.9807487,39.380476],[22.9809907,39.3805952],[22.9809845,39.3806222],[22.980644,39.3807364],[22.980735,39.3808633],[22.9810146,39.3808027],[22.981073,39.3807762],[22.9813264,39.3808415],[22.9813705,39.381004],[22.9815322,39.3810595],[22.981718,39.3810611],[22.9825712,39.3806722],[22.9826663,39.3805198],[22.9826934,39.3802497],[22.9828239,39.3800617],[22.9829234,39.3799274],[22.9829283,39.3800626],[22.9829756,39.3800089],[22.9830666,39.3801359],[22.983131,39.3804968],[22.9832406,39.3806239],[22.9832266,39.380786],[22.9834494,39.3811844],[22.9834319,39.3814411],[22.9833474,39.3816656],[22.9833801,39.38181],[22.9836683,39.3818801],[22.9842213,39.3816011],[22.9843102,39.3814758],[22.9844536,39.3813689],[22.9847425,39.3814615],[22.9854444,39.3819001],[22.9858964,39.3819581],[22.9860919,39.382086],[22.9860555,39.3821938],[22.9857862,39.3823536],[22.9850751,39.3825457],[22.9850952,39.3827621],[22.9854161,39.3830532],[22.9853482,39.3826787],[22.9856728,39.3827176],[22.9856935,39.3828889],[22.9857979,39.3828989],[22.9859249,39.3828729],[22.9859456,39.3830443],[22.9863304,39.3837325],[22.9863998,39.3837511],[22.9864945,39.3836258],[22.9864764,39.3832742],[22.9866395,39.3832396],[22.9868126,39.3833132],[22.9869152,39.3834402],[22.9868899,39.3835842],[22.9875903,39.3841309],[22.9881134,39.3848923],[22.9885368,39.3850717],[22.9888728,39.3851197],[22.9890225,39.3852111],[22.9888545,39.3852817],[22.9887912,39.385547],[22.9900629,39.3859274],[22.9900224,39.3863235],[22.9904465,39.3864038],[22.9914442,39.3864665],[22.9914619,39.3865973],[22.9918789,39.3865919],[22.9922609,39.3866763],[22.9926971,39.3866215],[22.992814,39.3865685],[22.9935175,39.386498],[22.9941217,39.3864672],[22.9942368,39.3865402],[22.9944395,39.3866501],[22.9952617,39.3868014],[22.9958852,39.3870501],[22.9963678,39.3870002],[22.9968648,39.3873153],[22.9969321,39.3874781],[22.9968587,39.3875856],[22.996868,39.3877478],[22.9969715,39.3878208],[22.9972941,39.3879948],[22.9977462,39.3880482],[22.9980478,39.3880689],[22.9980217,39.3883435],[22.9983523,39.3890311],[22.9985824,39.3891772],[22.999035,39.3891992],[22.9994625,39.389347],[23.0000089,39.390041],[22.9998538,39.390328],[22.9997368,39.3903901],[22.9993777,39.3903329],[22.9986792,39.390453],[22.9983859,39.3906668],[22.9978043,39.3907338]]},{"id":17206,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c1\u03ac\u03b4\u03b1-\u039c\u03ad\u03b3\u03b1 \u038a\u03c3\u03c9\u03bc\u03b1-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u03be\u03b1\u03b3\u03ba\u03b1\u03b8\u03b9\u03ac\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039c\u03ad\u03b3\u03b1 \u038a\u03c3\u03c9\u03bc\u03b1","path":"THESSALIA\/Thessaly_Pelion_Tsagarada_MegaIsoma","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":9112,"name_EN":"Pelion Mt: Tsagarada-Mega Isoma-Exagathia refuge","description_EN":"Via Mega Isoma","ascent_time":345,"descent_time":300,"marker":"Red_dots","level":9,"ascent":945,"descent":330,"maxelev":1446,"minelev":502,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.10909 39.35598,23.17943 39.37793)","views":46,"millestones":"0,23.1786939,39.3765091#1,23.1720942,39.3762409#2,23.1674458,39.3768444#3,23.1634069,39.3742508#4,23.1554493,39.3701679#5,23.1451942,39.3674033#6,23.1352482,39.3651602#7,23.1254138,39.3616784#8,23.1165196,39.3598259#9.1,23.1093700,39.3555768","x":23.153575,"y":39.3693684,"coor":[[23.1786939,39.3765091],[23.1790221,39.3766465],[23.1791585,39.3768908],[23.1791823,39.3771252],[23.1790284,39.3772188],[23.1788032,39.3776136],[23.1786641,39.3775946],[23.1785147,39.3774674],[23.1780047,39.3773917],[23.1776459,39.3774478],[23.1773998,39.377829],[23.177376,39.3778829],[23.1773293,39.3779006],[23.1768036,39.378023],[23.1757935,39.3780249],[23.1751518,39.3782906],[23.1743858,39.3782672],[23.1741052,39.3784093],[23.173827,39.3782407],[23.1731968,39.3775334],[23.1728611,39.3774499],[23.1724003,39.3771493],[23.1723465,39.3767885],[23.17263,39.376376],[23.1725749,39.3761233],[23.1724135,39.3760321],[23.1721226,39.3760841],[23.1720751,39.3761738],[23.1721248,39.3763544],[23.1721348,39.3764986],[23.1715148,39.3768907],[23.1712326,39.377195],[23.1712074,39.377357],[23.1715277,39.3777648],[23.1714572,39.3778364],[23.1710165,39.3777972],[23.1708896,39.3777242],[23.1707324,39.3772726],[23.1704219,39.3770181],[23.1704725,39.376667],[23.1701521,39.3762773],[23.1697803,39.3760268],[23.1695399,39.3757368],[23.1695426,39.3756332],[23.1694665,39.375529],[23.1690686,39.3757965],[23.1686562,39.3763747],[23.1687289,39.3770285],[23.1685009,39.377599],[23.1681972,39.37775],[23.1677443,39.3777558],[23.1678542,39.3773061],[23.1673502,39.3767258],[23.167022,39.3760116],[23.1668922,39.3761909],[23.1669522,39.3770023],[23.1668903,39.3773262],[23.166436,39.3774491],[23.1660999,39.3774016],[23.1656115,39.3774702],[23.1653586,39.3774414],[23.1661664,39.3772129],[23.1664938,39.377017],[23.1662132,39.3769024],[23.1661566,39.3767848],[23.1659603,39.3766933],[23.1657509,39.3767279],[23.1655774,39.3766725],[23.1656135,39.3765647],[23.1653347,39.3765807],[23.1647603,39.376072],[23.1644486,39.3759256],[23.1644616,39.3758085],[23.1643224,39.3757985],[23.1642078,39.3756716],[23.1642795,39.3755009],[23.1642227,39.3753923],[23.1640271,39.3752468],[23.1641103,39.3750852],[23.164032,39.3748323],[23.163881,39.3745384],[23.163612,39.3747077],[23.163395,39.3743997],[23.1634086,39.3742376],[23.1631278,39.3742041],[23.1632789,39.3740655],[23.1631863,39.3740468],[23.1632004,39.3738397],[23.1630149,39.3738203],[23.1629949,39.3735499],[23.1627882,39.3733592],[23.1624066,39.3732303],[23.1625133,39.3730418],[23.1623054,39.3729592],[23.1620618,39.3729395],[23.1617501,39.372793],[23.161728,39.3727028],[23.1617983,39.3726492],[23.1617297,39.3725586],[23.161408,39.372277],[23.1608893,39.3719669],[23.1605832,39.371352],[23.159982,39.3711494],[23.159821,39.3710221],[23.1594388,39.3709472],[23.1593937,39.3708298],[23.158838,39.3707086],[23.1581526,39.3707487],[23.1579997,39.3709098],[23.1578727,39.3708548],[23.1574891,39.3708971],[23.1572705,39.3707333],[23.1570495,39.3707678],[23.1566791,39.370675],[23.1564145,39.3704748],[23.1562406,39.3704555],[23.1560774,39.3705084],[23.1558927,39.370426],[23.1556954,39.3704245],[23.1554877,39.3703149],[23.1554322,39.3701073],[23.1552814,39.3700972],[23.1551903,39.3699523],[23.1550168,39.369897],[23.1549714,39.3698066],[23.1546704,39.3697413],[23.153575,39.3693684],[23.152903,39.3692554],[23.151978,39.3689558],[23.1515285,39.3686822],[23.151006,39.3686965],[23.1504987,39.3684044],[23.1501512,39.3683478],[23.1499535,39.3683734],[23.1497581,39.3682098],[23.1495041,39.3680998],[23.149413,39.367955],[23.1490891,39.3678625],[23.1489839,39.3679158],[23.1486011,39.367895],[23.1483477,39.3677309],[23.1479892,39.3676202],[23.1478282,39.3674928],[23.1473293,39.3674712],[23.1470059,39.3673427],[23.146692,39.3673764],[23.1462415,39.3671929],[23.145963,39.3671908],[23.1454034,39.367385],[23.1449967,39.367418],[23.1446695,39.3675958],[23.144575,39.3677303],[23.1442604,39.3678271],[23.1439253,39.3676985],[23.1437043,39.3677329],[23.1435637,39.36784],[23.143355,39.3678204],[23.1428011,39.367546],[23.1414718,39.3670857],[23.1412075,39.3668675],[23.1408378,39.3667206],[23.1401083,39.366571],[23.139853,39.3665692],[23.1392249,39.3666726],[23.1388264,39.366039],[23.1386424,39.3658934],[23.1384228,39.3658197],[23.1381696,39.3656376],[23.1379024,39.3656537],[23.1376027,39.3654893],[23.1369283,39.3655744],[23.1366387,39.3655272],[23.1362903,39.3655426],[23.1359093,39.3653776],[23.1355267,39.3653387],[23.1352387,39.3651563],[23.1349959,39.3650825],[23.1344738,39.3650606],[23.1333921,39.3652327],[23.1330672,39.3652213],[23.1317179,39.3645084],[23.1315779,39.3645614],[23.1313459,39.3645507],[23.1312198,39.3644236],[23.1306538,39.3642031],[23.1304592,39.3639764],[23.1302059,39.3638123],[23.1293289,39.3633913],[23.1288453,39.3630813],[23.1284178,39.3629159],[23.1274889,39.362945],[23.1274558,39.3628006],[23.1271326,39.362654],[23.1264902,39.3620455],[23.1262474,39.3619715],[23.1258208,39.3617341],[23.1254501,39.3616772],[23.1249392,39.3616914],[23.1247763,39.3617262],[23.1247173,39.3617979],[23.1243508,39.3616644],[23.1240493,39.3616442],[23.1237862,39.3613358],[23.1234839,39.3613786],[23.1231848,39.3611601],[23.1227789,39.36113],[23.1226445,39.3607415],[23.122293,39.3604235],[23.1221551,39.3603143],[23.1220142,39.3604394],[23.1218773,39.3603348],[23.1217721,39.3603971],[23.1217329,39.3607482],[23.1216056,39.3607112],[23.1213535,39.360457],[23.1211798,39.3604196],[23.1212117,39.3603343],[23.1201825,39.3600291],[23.1191834,39.3601027],[23.1190104,39.3600113],[23.1191986,39.3598144],[23.1191303,39.3597058],[23.1186993,39.3598287],[23.1178622,39.3599395],[23.116737,39.3598859],[23.1159967,39.359682],[23.1153686,39.3597854],[23.1149525,39.3596471],[23.1146646,39.3594647],[23.1140053,39.3592885],[23.1138336,39.3590979],[23.1133383,39.3587968],[23.1132367,39.3585708],[23.1133166,39.3584993],[23.1132492,39.3583276],[23.112733,39.3578461],[23.1126517,39.3578455],[23.1124988,39.3580065],[23.1123361,39.3580233],[23.1120015,39.3578675],[23.1113494,39.3571147],[23.1111872,39.3570954],[23.1108484,39.357264],[23.1106741,39.3572807],[23.1105239,39.3572255],[23.1102035,39.3568627],[23.1098925,39.3562205],[23.1096262,39.3561734],[23.1095573,39.3561098],[23.1098081,39.3555531],[23.1096036,39.3554614],[23.10937,39.3555768]]},{"id":17209,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03bf\u03c1\u03c4\u03b1\u03c1\u03b9\u03ac-\u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u0392\u03cc\u03bb\u03bf\u03c5 \u03bc\u03b5 \u03c4\u03b1 \u03a7\u03ac\u03bd\u03b9\u03b1","path":"THESSALIA\/Thessaly_Pelion_Portaria_Alikopetra","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4144,"name_EN":"PelionMt: Alikopetra-Portaria","description_EN":"Part of the old way from Volos to Chania","ascent_time":100,"descent_time":85,"marker":"Red_dots","level":12,"ascent":373,"descent":34,"maxelev":965,"minelev":617,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.9978 39.37671,23.02985 39.39074)","views":43,"millestones":"0,22.9978050,39.3907339#1,23.0048307,39.3874243#2,23.0148972,39.3857408#3,23.0209899,39.3799882#4.1,23.0298498,39.3769807","x":23.0164215,"y":39.3846305,"coor":[[22.997805,39.3907339],[22.9983866,39.3906668],[22.9986799,39.3904531],[22.9993784,39.3903329],[22.9997375,39.3903901],[22.9998545,39.390328],[23.0000096,39.390041],[22.9994632,39.389347],[22.9995532,39.3890685],[22.9996938,39.3889796],[23.0003742,39.3891566],[23.000385,39.3892153],[23.0008722,39.3891474],[23.0014276,39.3892873],[23.0016729,39.388956],[23.0023552,39.3888988],[23.0029993,39.3889989],[23.0031502,39.3890002],[23.003245,39.3888659],[23.0029751,39.3882508],[23.003025,39.388008],[23.0032257,39.3877754],[23.003648,39.3874727],[23.0039496,39.3874933],[23.0042386,39.3875859],[23.0046238,39.387445],[23.0052982,39.3873787],[23.0065116,39.3869746],[23.0070003,39.3868977],[23.0072111,39.3869535],[23.0075033,39.3868209],[23.0079178,39.3865811],[23.0088445,39.3867332],[23.0095182,39.3867209],[23.0101959,39.3869069],[23.0110464,39.3871934],[23.0116479,39.3873607],[23.0118582,39.3872634],[23.0119895,39.3870122],[23.0122347,39.3869152],[23.0125007,39.3868364],[23.0125017,39.3867643],[23.0126773,39.3866667],[23.0126438,39.3865718],[23.0127973,39.3863929],[23.0135447,39.3860838],[23.0138935,39.3860507],[23.0140108,39.3859706],[23.0142899,39.385937],[23.0145128,39.3857767],[23.0147899,39.3858871],[23.0152162,39.3852961],[23.0155325,39.3851005],[23.0160683,39.3849789],[23.0163699,39.3849995],[23.0164774,39.3847841],[23.0164215,39.3846305],[23.01654,39.3844603],[23.0164295,39.3840629],[23.01648,39.383775],[23.0164366,39.3835584],[23.0166865,39.383128],[23.0168975,39.3821566],[23.0170158,39.3819954],[23.0177874,39.3816235],[23.0181869,39.3812845],[23.0180158,39.3810668],[23.0181746,39.3807392],[23.0182793,39.3807221],[23.0183049,39.3808079],[23.0187469,39.3807576],[23.0193182,39.3805822],[23.0196464,39.3803597],[23.0198915,39.3802717],[23.0200447,39.3801108],[23.0203117,39.380113],[23.0205888,39.3802235],[23.0206249,39.3801337],[23.0208581,39.3800635],[23.0214081,39.3797528],[23.0218495,39.3797385],[23.0220458,39.3798122],[23.0221506,39.3797951],[23.0221432,39.3794887],[23.0220397,39.3794157],[23.0221361,39.3791642],[23.0227115,39.3787005],[23.023016,39.3785139],[23.0237387,39.3783037],[23.0239385,39.3781342],[23.02508,39.3778644],[23.0250704,39.3777202],[23.0256935,39.3773199],[23.025726,39.3774824],[23.0262351,39.3776128],[23.0264153,39.3771728],[23.0267932,39.3775544],[23.0269854,39.3770874],[23.0271585,39.377161],[23.0274386,39.3770552],[23.0276809,39.3771653],[23.0278793,39.3770949],[23.0279153,39.3770051],[23.0280776,39.3770245],[23.0281946,39.3769624],[23.0284609,39.3770097],[23.0287982,39.3769674],[23.029145,39.3770784],[23.0292161,39.3769709],[23.0294609,39.3769009],[23.0298003,39.3767055],[23.0298498,39.3769807]]},{"id":17210,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1-\u03a7\u03ac\u03bd\u03b9\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u0392\u03cc\u03bb\u03bf\u03c5 \u03bc\u03b5 \u03c4\u03b1 \u03a7\u03ac\u03bd\u03b9\u03b1","path":"THESSALIA\/Thessaly_Pelion_Alikopetra_Chania","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4851,"name_EN":"PelionMt: Alikopetra-Chania","description_EN":"Part of the old way from Volos to Chania","ascent_time":115,"descent_time":105,"marker":"Red_dots","level":12,"ascent":294,"descent":82,"maxelev":1213,"minelev":965,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.0292 39.37725,23.063 39.39709)","views":36,"millestones":"0,23.0298495,39.3769807#1,23.0307766,39.3851947#2,23.0380657,39.3908921#3,23.0453341,39.3950319#4,23.0552124,39.3949382#4.9,23.0627526,39.3959471","x":23.0385883,"y":39.3925422,"coor":[[23.0298495,39.3769807],[23.0297354,39.3770969],[23.0297672,39.3773134],[23.0295569,39.3774108],[23.0295077,39.3776086],[23.0295133,39.3780411],[23.0297525,39.3792145],[23.0297164,39.3793043],[23.0295144,39.3793747],[23.0295483,39.379447],[23.0294428,39.3795183],[23.0294639,39.3796716],[23.0297375,39.3800343],[23.0298325,39.3807199],[23.0298061,39.3809539],[23.0296151,39.3813308],[23.0295976,39.3817541],[23.029687,39.3820072],[23.0294947,39.3824741],[23.0296578,39.3830116],[23.0295019,39.3833707],[23.029795,39.3840039],[23.0301227,39.3840787],[23.0303857,39.3843782],[23.0308034,39.3852377],[23.0312141,39.3857637],[23.031278,39.3861788],[23.0314707,39.3865228],[23.0314221,39.3875135],[23.0315118,39.3877485],[23.0317892,39.3878409],[23.032327,39.3884131],[23.033196,39.3885554],[23.0337626,39.3887223],[23.034061,39.3889771],[23.034511,39.3891881],[23.0346134,39.3893421],[23.0350666,39.3893188],[23.0353329,39.3893751],[23.0357835,39.389541],[23.0361745,39.3898146],[23.0365676,39.389935],[23.0369247,39.3901452],[23.037838,39.3904411],[23.0381093,39.3909839],[23.0381258,39.3914706],[23.03825,39.3918096],[23.0382597,39.3919448],[23.038546,39.3922355],[23.0385883,39.3925422],[23.0389065,39.3930494],[23.0388926,39.3932115],[23.0386211,39.3935336],[23.0391429,39.393592],[23.0392896,39.3938996],[23.039439,39.3940179],[23.0406008,39.3939825],[23.0409119,39.3941562],[23.0413482,39.3945202],[23.0418339,39.3946684],[23.0420177,39.3948141],[23.0420963,39.395013],[23.0427471,39.3949823],[23.0431414,39.3950216],[23.0433265,39.3950681],[23.0434987,39.3952137],[23.044171,39.3953093],[23.0444135,39.3954105],[23.044812,39.3951434],[23.0455225,39.3949871],[23.0460212,39.3950362],[23.0469118,39.3952958],[23.0478168,39.3953573],[23.0483904,39.3950196],[23.0487044,39.3949861],[23.049823,39.3947069],[23.0501755,39.3944034],[23.0504151,39.3942972],[23.0511214,39.3937759],[23.0514064,39.3934764],[23.0514276,39.3933549],[23.0516139,39.3933204],[23.0525165,39.393553],[23.0530363,39.3937555],[23.0540961,39.3943948],[23.0543457,39.3944013],[23.0553533,39.3950312],[23.0558932,39.3954681],[23.056703,39.396565],[23.0568994,39.3966386],[23.0584288,39.3969033],[23.0591429,39.3973416],[23.0593519,39.3973433],[23.0604241,39.3970636],[23.0610049,39.3970503],[23.0615704,39.3964511],[23.0620504,39.3961667],[23.0625194,39.3960173],[23.0627526,39.3959471]]},{"id":17212,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1-\u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1","description_GR":"\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1\u03c2 \u03bc\u03b5 \u03c4\u03b7 \u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1 ","path":"THESSALIA\/Thessaly_Pelion_Alikopetra_Drakia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3536,"name_EN":"PelionMt: Alikopetra-Drakia","description_EN":"Connection from Alikopetra to Drakia","ascent_time":70,"descent_time":80,"marker":"Red_dots","level":12,"ascent":30,"descent":509,"maxelev":965,"minelev":464,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.02943 39.37108,23.04778 39.378)","views":11,"millestones":"0,23.0298495,39.3769807#1,23.0337738,39.3711098#2,23.0375374,39.3750264#3,23.0450285,39.3779033#3.5,23.0477243,39.3754344","x":23.0367165,"y":39.3752311,"coor":[[23.0298495,39.3769807],[23.0297999,39.3767055],[23.0296352,39.3763662],[23.0294628,39.3762386],[23.0294535,39.3760763],[23.0295635,39.3756718],[23.029694,39.3754746],[23.029672,39.3753844],[23.0298481,39.3752417],[23.0298061,39.3749259],[23.0301131,39.3745501],[23.0302941,39.374056],[23.0306913,39.3738791],[23.0311196,39.3739638],[23.0314303,39.3741646],[23.0316771,39.3739504],[23.0317606,39.3737889],[23.0317518,39.3735816],[23.032125,39.3734585],[23.0322408,39.3734775],[23.0323154,39.3736223],[23.0324786,39.3734975],[23.0325858,39.3733002],[23.0326465,39.3732646],[23.0326023,39.3731021],[23.0326843,39.3730487],[23.0328464,39.3730771],[23.0328488,39.3729059],[23.0335957,39.3726238],[23.0337024,39.3724625],[23.0336812,39.3723181],[23.0338458,39.3721663],[23.0337789,39.3719675],[23.0333766,39.3716758],[23.0333289,39.3714232],[23.0333065,39.3713599],[23.0334665,39.371208],[23.0342047,39.3709709],[23.0347831,39.3711199],[23.0348913,39.3711928],[23.0349566,39.3710853],[23.0350881,39.3710503],[23.0353135,39.3715387],[23.0355598,39.3715408],[23.0356639,39.3713885],[23.0357091,39.3714789],[23.0353998,39.372017],[23.0353726,39.3723051],[23.0354362,39.3727472],[23.0355748,39.3727168],[23.0357148,39.3727495],[23.0356664,39.3728932],[23.0357778,39.3732366],[23.035668,39.3736231],[23.0357256,39.3736506],[23.035524,39.3738021],[23.0356114,39.3741993],[23.0353622,39.3745937],[23.0356246,39.3749293],[23.0357985,39.3749487],[23.0359608,39.3751213],[23.0362955,39.3752682],[23.0364091,39.3754494],[23.0366079,39.3753429],[23.0367698,39.3753893],[23.0367165,39.3752311],[23.0369597,39.3752692],[23.0368605,39.3748899],[23.0369226,39.3745931],[23.0369922,39.3745937],[23.0370831,39.3747386],[23.0372373,39.3749246],[23.0375839,39.3750446],[23.0376057,39.3751529],[23.0375106,39.3753143],[23.0377652,39.3753705],[23.0379023,39.3755338],[23.0380752,39.3756253],[23.0386337,39.3755308],[23.0390271,39.3756332],[23.0391328,39.375544],[23.0391706,39.375328],[23.0393793,39.3753478],[23.0394522,39.3751051],[23.0397397,39.3753057],[23.0399497,39.3752353],[23.0401697,39.3752732],[23.0404145,39.3752031],[23.0408303,39.3753597],[23.0411904,39.3753447],[23.041414,39.3755493],[23.0414218,39.3758286],[23.0418093,39.3763544],[23.0419595,39.3764097],[23.0420269,39.3765725],[23.0422804,39.3767187],[23.0425585,39.3767571],[23.0428121,39.3768853],[23.0429361,39.3771566],[23.0430401,39.3771935],[23.0431303,39.3773925],[23.0434662,39.3774493],[23.0440074,39.3777782],[23.0442533,39.377627],[23.0442619,39.3778433],[23.0441786,39.3779958],[23.0442233,39.3781223],[23.0443979,39.3780877],[23.0445288,39.3778545],[23.0446804,39.3778017],[23.0451662,39.3779409],[23.0452412,39.377545],[23.0455907,39.3774578],[23.0458464,39.3774418],[23.0460807,39.3772816],[23.0462904,39.3772292],[23.0464505,39.3774108],[23.0467535,39.3773231],[23.0467338,39.3770707],[23.0468404,39.3769094],[23.0467836,39.3768188],[23.0468893,39.3767296],[23.0468484,39.3763237],[23.0472147,39.3759303],[23.0471111,39.3758664],[23.0471249,39.3757043],[23.0473601,39.3755666],[23.0475463,39.3754554],[23.0476569,39.3754293],[23.0477243,39.3754344]]},{"id":17213,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2-\u03a7\u03ac\u03bd\u03b9\u03b1","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc \u03b4\u03ac\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_AgLavrentios_Chania","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":10361,"name_EN":"Pelion Mt: Agios Lavrentios-Chania","description_EN":"A long route along Pelion montaine forest","ascent_time":340,"descent_time":305,"marker":"Red_dots","level":12,"ascent":975,"descent":352,"maxelev":1411,"minelev":552,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.05904 39.36047,23.0923 39.39592)","views":39,"millestones":"0,23.0595151,39.3602079#1,23.0639728,39.3609018#2,23.0704718,39.3633616#3,23.0741386,39.3672987#4,23.0816651,39.3698233#5,23.0910343,39.3688227#6,23.0892580,39.3753451#7,23.0897055,39.3829763#8,23.0828123,39.3867361#9,23.0749562,39.3923235#10.4,23.0627537,39.3959471","x":23.079895,"y":39.3688362,"coor":[[23.0595151,39.3602079],[23.0596157,39.3605196],[23.059575,39.3609608],[23.0597677,39.3613047],[23.0597574,39.3612055],[23.0598841,39.3612787],[23.0598863,39.3611165],[23.059968,39.3610811],[23.0600138,39.3611265],[23.0601154,39.3608841],[23.0601741,39.3608305],[23.0604978,39.3609322],[23.0606284,39.3608702],[23.0608522,39.3613045],[23.0611892,39.3612802],[23.061628,39.3612837],[23.0620908,39.3613956],[23.0622516,39.361523],[23.0623189,39.3617038],[23.0626733,39.3612381],[23.0629695,39.3605196],[23.0629818,39.3607089],[23.0627501,39.3617883],[23.0629733,39.3615919],[23.063071,39.3612233],[23.0631182,39.3610885],[23.0633997,39.3608655],[23.0636594,39.3605432],[23.0637055,39.3605976],[23.0635744,39.3608489],[23.0636657,39.3608902],[23.0638412,39.3607834],[23.0639684,39.3608205],[23.0639773,39.3610188],[23.0641611,39.3611645],[23.0646585,39.3612946],[23.0646305,39.3616548],[23.0647664,39.3619082],[23.0648711,39.361891],[23.0649281,39.3619635],[23.0651721,39.3619475],[23.0652057,39.3620379],[23.0653104,39.3620207],[23.0654021,39.3621115],[23.0656257,39.361879],[23.0658813,39.3618045],[23.0663213,39.3618891],[23.0665793,39.361693],[23.0667184,39.3617031],[23.06679,39.3615595],[23.0669409,39.3615607],[23.0670819,39.3614267],[23.0673496,39.3613748],[23.0674998,39.36143],[23.0677333,39.3613238],[23.0679995,39.36138],[23.0684187,39.3616897],[23.0687229,39.3615119],[23.0690486,39.3614605],[23.0694311,39.3614996],[23.0695921,39.361609],[23.0695216,39.3616805],[23.0690805,39.361677],[23.0689395,39.361811],[23.06933,39.3620078],[23.0693388,39.3622242],[23.069492,39.3624011],[23.0695932,39.3624605],[23.0697358,39.3625112],[23.0697789,39.3627638],[23.0701241,39.3629918],[23.0701801,39.3631455],[23.0700134,39.3631576],[23.0700071,39.3632522],[23.0701103,39.3633431],[23.0703896,39.3632913],[23.0704119,39.3633636],[23.0706441,39.3633564],[23.0706775,39.3634648],[23.0708751,39.3634484],[23.0713583,39.3636054],[23.0710182,39.363873],[23.0708863,39.3641873],[23.0709411,39.364431],[23.0712721,39.3648572],[23.0712561,39.3651904],[23.0714302,39.3651918],[23.0717382,39.3647257],[23.0720195,39.3645207],[23.0722749,39.3645138],[23.0724592,39.3646233],[23.0724365,39.3647493],[23.0724759,39.3648442],[23.0726035,39.3648453],[23.0725795,39.3649081],[23.072683,39.364981],[23.0727503,39.3651618],[23.0729118,39.3652352],[23.0732339,39.3652377],[23.0729254,39.3657399],[23.0729588,39.3658483],[23.0731445,39.3658497],[23.0734722,39.3656541],[23.0732832,39.3661211],[23.0735996,39.3659209],[23.0739139,39.3658513],[23.074187,39.366268],[23.0742195,39.3664485],[23.0737967,39.3668145],[23.0738424,39.366869],[23.0740047,39.3668883],[23.0739684,39.3669961],[23.0740953,39.3670602],[23.0741398,39.3672047],[23.074137,39.367421],[23.0740061,39.3676632],[23.0740729,39.36788],[23.07393,39.3681492],[23.0739639,39.3682215],[23.0743601,39.3681075],[23.0749613,39.3682925],[23.075194,39.3682493],[23.0756115,39.3682797],[23.0761012,39.3681214],[23.0766825,39.3680539],[23.0778061,39.368234],[23.0771486,39.3687964],[23.0771822,39.3688958],[23.0774675,39.3689882],[23.0776054,39.3690434],[23.0779302,39.3690639],[23.0780242,39.3689746],[23.0782561,39.3689944],[23.0783731,39.3689233],[23.0784766,39.3689962],[23.0787915,39.3688906],[23.079895,39.3688362],[23.0801149,39.368883],[23.0812117,39.3693422],[23.0813722,39.3694966],[23.0813708,39.3696048],[23.0815205,39.369696],[23.0815537,39.3698225],[23.0821457,39.3698271],[23.0825996,39.3697406],[23.0830381,39.3699423],[23.0835662,39.370388],[23.0838675,39.3704354],[23.0841204,39.3706266],[23.0846067,39.3707205],[23.0851764,39.3706529],[23.0854795,39.3705562],[23.0857576,39.3705944],[23.0861529,39.3705525],[23.0865864,39.3702495],[23.0866247,39.3699795],[23.0867307,39.3698632],[23.0869388,39.3699279],[23.0875092,39.3698062],[23.0880079,39.3698462],[23.088346,39.3697317],[23.0885784,39.3697155],[23.089758,39.3691661],[23.0898769,39.3689508],[23.089833,39.3687522],[23.0898921,39.3686715],[23.09002,39.3686545],[23.0900653,39.368745],[23.0902529,39.3686023],[23.0904623,39.3685679],[23.0904953,39.3687123],[23.0909363,39.3687158],[23.0910508,39.3688428],[23.0910262,39.3689507],[23.0911898,39.3688619],[23.0916079,39.3688471],[23.0917479,39.3687942],[23.0918164,39.3688848],[23.0920604,39.3688687],[23.0921864,39.3689688],[23.0917755,39.369326],[23.0915653,39.3694235],[23.0912914,39.369953],[23.0912888,39.3701512],[23.0911326,39.3705644],[23.091003,39.3707076],[23.090883,39.371013],[23.0905317,39.3712445],[23.0903508,39.3717657],[23.0902113,39.3717827],[23.0899701,39.3715826],[23.0899538,39.3719428],[23.0896778,39.3726345],[23.0891634,39.3729098],[23.0887643,39.3732491],[23.0888996,39.3735565],[23.0889077,39.3738269],[23.0891233,39.374207],[23.0891794,39.3752526],[23.0892709,39.3753615],[23.0897001,39.3753829],[23.0897923,39.3754377],[23.0899376,39.3758713],[23.0899345,39.3761146],[23.0900482,39.3762957],[23.0899521,39.3765472],[23.09017,39.3767471],[23.090317,39.3770546],[23.090379,39.3776408],[23.0902128,39.3779278],[23.0895148,39.3780305],[23.089291,39.378281],[23.0888546,39.3797013],[23.0888472,39.3802689],[23.0889686,39.3810583],[23.0893928,39.3814761],[23.0897696,39.3819656],[23.0899067,39.3823],[23.0900068,39.3826432],[23.089702,39.3828661],[23.0897513,39.3844343],[23.0895952,39.3848295],[23.0897313,39.3850829],[23.0897375,39.3854974],[23.0898385,39.3857685],[23.0896766,39.3857132],[23.0892229,39.3857817],[23.0887937,39.3857514],[23.0880759,39.3855835],[23.0879124,39.3856588],[23.0877785,39.3861354],[23.0873453,39.3864113],[23.0860768,39.3866266],[23.0853657,39.3868373],[23.0849944,39.3868163],[23.083822,39.3864827],[23.0836942,39.3864907],[23.0835493,39.3865526],[23.0829087,39.3867098],[23.0827491,39.3867536],[23.0827278,39.3868615],[23.0828767,39.3870159],[23.0825242,39.3868329],[23.0822525,39.38702],[23.0819023,39.3872154],[23.0814321,39.3876532],[23.0812547,39.3879041],[23.080714,39.3884045],[23.0805936,39.3887279],[23.0800697,39.3888319],[23.0792503,39.38933],[23.0783658,39.3894852],[23.078084,39.3897217],[23.0771563,39.3905073],[23.0760908,39.3911746],[23.0758167,39.391704],[23.0749958,39.3923102],[23.0744815,39.3924863],[23.0735458,39.3929925],[23.0727536,39.3931844],[23.0719773,39.3934035],[23.0714272,39.3937325],[23.0706627,39.3935822],[23.0701751,39.3935783],[23.0696157,39.393727],[23.0687277,39.3941344],[23.0671906,39.3941221],[23.0669061,39.3940117],[23.0661514,39.3940056],[23.0656628,39.3940648],[23.0648906,39.3945001],[23.0644995,39.3950916],[23.0627537,39.3959471]]},{"id":17214,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1-\u03a7\u03ac\u03bd\u03b9\u03b1","description_GR":"\u03a4\u03b1 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7 \u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1 \u03c3\u03c4\u03b1 \u03a7\u03ac\u03bd\u03b9\u03b1","path":"THESSALIA\/Thessaly_Pelion_Drakia_Chania","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":3,"length":5293,"name_EN":"PelionMt: Drakia-Chania","description_EN":"The remnants of the old connection from Drakiato Chania","ascent_time":165,"descent_time":130,"marker":"No_marks","level":12,"ascent":707,"descent":23,"maxelev":1174,"minelev":484,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.04745 39.37559,23.06651 39.39589)","views":22,"millestones":"0,23.0477229,39.3754344#1,23.0526014,39.3798555#2,23.0599341,39.3810859#3,23.0626917,39.3853184#4,23.0653372,39.3889154#5.3,23.0625238,39.3960173","x":23.0629243,"y":39.3831942,"coor":[[23.0477229,39.3754344],[23.0478709,39.3754851],[23.0478733,39.3756564],[23.0478472,39.3758679],[23.0477288,39.3760381],[23.0479445,39.3761345],[23.0482819,39.3760832],[23.0486492,39.3761222],[23.0490692,39.3762428],[23.0491642,39.3763472],[23.0491636,39.3763922],[23.0489427,39.3764175],[23.0489648,39.3764987],[23.0488625,39.376579],[23.0486063,39.3767166],[23.0486126,39.377032],[23.0488339,39.3769797],[23.0492618,39.3771004],[23.0495288,39.3771026],[23.0496316,39.3772295],[23.0494836,39.3776248],[23.0496654,39.3779146],[23.0498506,39.3779612],[23.0500841,39.377864],[23.0504355,39.3780606],[23.0507482,39.3781172],[23.0508894,39.3779832],[23.0509706,39.3779838],[23.0510932,39.3783633],[23.0512083,39.3784363],[23.0513488,39.3783473],[23.0514688,39.37806],[23.0515737,39.3780338],[23.0516527,39.3781966],[23.051542,39.3785516],[23.0515168,39.3786956],[23.0518839,39.379023],[23.0521187,39.3796917],[23.052302,39.3798734],[23.0532691,39.3798092],[23.0536882,39.3797225],[23.0540238,39.3798063],[23.0543037,39.3798716],[23.0548215,39.3802182],[23.0551059,39.380653],[23.0552331,39.3806901],[23.055633,39.3803149],[23.0557883,39.3799918],[23.0557808,39.3796854],[23.0559435,39.3796687],[23.0564058,39.3798256],[23.0566729,39.3798278],[23.0575934,39.379583],[23.0579183,39.3795946],[23.0579695,39.380023],[23.0577472,39.3801474],[23.0574529,39.3804513],[23.0574379,39.3807035],[23.0575419,39.3807404],[23.0578096,39.3806885],[23.0578923,39.380581],[23.0579731,39.3806177],[23.0583568,39.3805758],[23.0586451,39.3807223],[23.0589022,39.3805982],[23.0590144,39.3808875],[23.0595482,39.3809098],[23.0598605,39.3810024],[23.0599862,39.3811476],[23.0602003,39.3816359],[23.0600344,39.3818869],[23.060255,39.3818886],[23.0603682,39.3821058],[23.0605765,39.3821525],[23.0607512,39.3822801],[23.0610277,39.3824355],[23.0612608,39.3824824],[23.0615875,39.3823589],[23.0622385,39.3823011],[23.0625301,39.3822043],[23.0626354,39.3822232],[23.0627894,39.3821569],[23.0629365,39.3824464],[23.0626794,39.3825705],[23.0623417,39.3826398],[23.0625354,39.3827585],[23.0626157,39.3828313],[23.0625327,39.3829567],[23.062718,39.3829943],[23.0629243,39.3831942],[23.0632479,39.3833049],[23.0631984,39.3835388],[23.0633713,39.3836303],[23.0638472,39.3836431],[23.0640542,39.3837889],[23.0640978,39.3840055],[23.0644189,39.3843055],[23.06446,39.3845175],[23.0642905,39.3843585],[23.0640587,39.3843206],[23.0638372,39.3843909],[23.0634854,39.3846494],[23.0631432,39.3847097],[23.0630708,39.3849073],[23.0621992,39.3858374],[23.0615307,39.3863276],[23.0615291,39.3864537],[23.0615978,39.3865263],[23.0617833,39.3865459],[23.0624122,39.3864068],[23.0631257,39.3860161],[23.0633347,39.3860177],[23.0634263,39.3861086],[23.0630572,39.3867994],[23.062779,39.3876261],[23.0626495,39.3877602],[23.0622649,39.3878653],[23.0622405,39.3879552],[23.062321,39.3880099],[23.0627148,39.3880852],[23.0630169,39.3880696],[23.0640573,39.3875553],[23.0643364,39.3875215],[23.0644513,39.3876126],[23.0645914,39.3876362],[23.0648096,39.3878182],[23.064907,39.3879181],[23.0648939,39.3880261],[23.0650655,39.3882167],[23.0652089,39.3882674],[23.0652505,39.3882813],[23.0654453,39.388472],[23.0654821,39.3886841],[23.0654204,39.3888728],[23.065093,39.3890414],[23.065065,39.3894016],[23.0656884,39.3896769],[23.0661767,39.3896267],[23.0662332,39.3897443],[23.0663259,39.3897631],[23.0662173,39.3900686],[23.0658649,39.3905298],[23.064973,39.3906353],[23.0650373,39.3906853],[23.065258,39.3906781],[23.0654303,39.3908236],[23.0656845,39.3909158],[23.0658213,39.3911061],[23.0660188,39.3910987],[23.0660759,39.3911712],[23.0658885,39.3912959],[23.0658868,39.391422],[23.0657821,39.3914392],[23.0658713,39.3917102],[23.0657678,39.391804],[23.0657312,39.3919298],[23.065392,39.3921163],[23.0655759,39.392262],[23.0652255,39.3924124],[23.0649538,39.3927526],[23.0650794,39.3929158],[23.0649839,39.3931132],[23.0650863,39.3932672],[23.0649471,39.3934463],[23.0649783,39.3937169],[23.0648963,39.3937703],[23.0649185,39.3938516],[23.0648072,39.3939273],[23.0645997,39.3939751],[23.0643886,39.3941266],[23.0643165,39.3943063],[23.0639394,39.3947177],[23.0631905,39.3951442],[23.0632403,39.3952482],[23.063181,39.3953378],[23.0627695,39.3957129],[23.0624543,39.3958366],[23.0625238,39.3960173]]},{"id":17215,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039a\u03b9\u03c3\u03c3\u03cc\u03c2-\u039c\u03bf\u03cd\u03c1\u03b5\u03c3\u03b9","description_GR":"\u03a9\u03c1\u03b1\u03af\u03b1 \u03ba\u03b1\u03bb\u03bd\u03c4\u03b5\u03c1\u03af\u03bc\u03b9\u03b1","path":"THESSALIA\/Thessaly_Pelion_Kissos_Mouresi","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":852,"name_EN":"Pelion Mt: Kissos-Mouresi","description_EN":"A well preserved Pilion landscape","ascent_time":85,"descent_time":85,"marker":"Red_dots","level":13,"ascent":268,"descent":352,"maxelev":508,"minelev":209,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.13182 39.39771,23.16146 39.40634)","views":48,"millestones":"0,23.1318173,39.4062999#1,23.1349008,39.4002403#2,23.1378683,39.3977257#3,23.1460238,39.4000652#4,23.1541598,39.4011015#0.9,23.1611385,39.3989732","x":23.1398867,"y":39.3982053,"coor":[[23.1318173,39.4062999],[23.1320143,39.4063374],[23.1321908,39.4061495],[23.1326789,39.4061261],[23.1327362,39.4061896],[23.1328886,39.4060736],[23.1329344,39.406128],[23.1329965,39.4058942],[23.1330348,39.4056151],[23.1333095,39.4050045],[23.1332536,39.4048238],[23.13337,39.4048067],[23.1332433,39.4047246],[23.1333846,39.4045635],[23.1334114,39.4042754],[23.133484,39.4042444],[23.1337594,39.4044041],[23.1335555,39.4039791],[23.1335352,39.4037447],[23.1336502,39.4035788],[23.133942,39.4034549],[23.1340612,39.4032125],[23.1341429,39.403177],[23.1342932,39.4032322],[23.1342366,39.4031147],[23.1339488,39.4029053],[23.1337603,39.402183],[23.1338112,39.4019987],[23.1336631,39.4017723],[23.1336418,39.40161],[23.1335609,39.4015824],[23.1338636,39.4013458],[23.1339194,39.401148],[23.1338973,39.4010577],[23.1340621,39.4008788],[23.1343286,39.4009258],[23.1342601,39.4008307],[23.1342047,39.400614],[23.1343812,39.4004351],[23.1347999,39.4003842],[23.1350127,39.4000794],[23.1352451,39.4000721],[23.1353665,39.400028],[23.135067,39.3999176],[23.1345915,39.39986],[23.1342889,39.3999118],[23.1338912,39.4001431],[23.1337402,39.400142],[23.1336022,39.4000329],[23.1340942,39.3996941],[23.1345369,39.3995803],[23.1358506,39.3994729],[23.1361401,39.3995381],[23.1360337,39.3993076],[23.1356626,39.3992688],[23.1356284,39.3992145],[23.1359779,39.3991269],[23.1362441,39.399201],[23.1362358,39.3991379],[23.1359019,39.3989011],[23.1358913,39.39882],[23.1360427,39.398785],[23.1363786,39.3988596],[23.1366106,39.3990596],[23.1367045,39.3989792],[23.1366723,39.3987627],[23.1368901,39.3989896],[23.136835,39.3987549],[23.1368597,39.3986289],[23.1369532,39.3985845],[23.1366653,39.3983842],[23.1366553,39.398258],[23.1371342,39.3980363],[23.1371467,39.3979643],[23.1374487,39.3979575],[23.1379047,39.3977086],[23.1383886,39.3975455],[23.1392,39.3976776],[23.139503,39.3975898],[23.1397632,39.3977674],[23.1396329,39.3979737],[23.1397573,39.3982449],[23.1398867,39.3982053],[23.1398418,39.3980788],[23.1402644,39.3977035],[23.1403225,39.3977039],[23.1402975,39.3978479],[23.1404157,39.3976776],[23.1405438,39.3976515],[23.1404489,39.397813],[23.1404585,39.3979753],[23.1407334,39.3982927],[23.1421255,39.3993662],[23.1422987,39.3994485],[23.1424266,39.3994315],[23.1427297,39.3992535],[23.1436893,39.3996029],[23.1441183,39.3996602],[23.1445578,39.3998076],[23.1449058,39.3998462],[23.145361,39.3996603],[23.1459716,39.4000612],[23.1462153,39.400081],[23.1465855,39.4000162],[23.1467737,39.3999995],[23.1468896,39.4000184],[23.1469583,39.4001],[23.1469528,39.4005505],[23.1474585,39.4009867],[23.1480711,39.4012345],[23.1487777,39.4013838],[23.1491361,39.4015216],[23.1495557,39.4013985],[23.149681,39.4015977],[23.1503631,39.4018549],[23.1505231,39.4020724],[23.1509493,39.4023638],[23.1514432,39.402426],[23.1514443,39.4023359],[23.1511315,39.4022705],[23.1510522,39.4021078],[23.1513651,39.4021641],[23.1515976,39.4021478],[23.1519026,39.4018977],[23.1520873,39.4018946],[23.1525093,39.4021454],[23.152742,39.4021111],[23.1528367,39.4019676],[23.1535516,39.4014322],[23.1539495,39.4011828],[23.1549295,39.4008114],[23.1551646,39.4005789],[23.1554668,39.4005631],[23.1562754,39.4009203],[23.1563809,39.40084],[23.1564889,39.4005524],[23.156606,39.4004722],[23.1568387,39.4004378],[23.1575043,39.4005328],[23.1577232,39.4006785],[23.1578623,39.4006976],[23.1583525,39.4005029],[23.1586344,39.4002346],[23.159002,39.4003949],[23.1593554,39.4003705],[23.1598708,39.4005814],[23.1599621,39.4006181],[23.1599168,39.4005277],[23.160291,39.4003141],[23.1602239,39.4001875],[23.1599118,39.4000681],[23.1597222,39.3998054],[23.1605217,39.3999554],[23.1610857,39.399991],[23.1612549,39.4000102],[23.1612609,39.3999021],[23.1614012,39.3998311],[23.1613096,39.3997223],[23.1614388,39.3995971],[23.1612917,39.3992716],[23.1611302,39.3991804],[23.1611086,39.3990451],[23.1610273,39.3990445],[23.1611385,39.3989732]]},{"id":17217,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a4\u03b9\u03c3\u03c3\u03b1\u03af\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5\u03c2","description_GR":"\u0397 \u03ac\u03b3\u03c1\u03b9\u03b1 \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c4\u03bf\u03c5 \u03a4\u03b9\u03c3\u03c3\u03b1\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Tiseo_ridge","activity_type":33,"assistance":1,"difficulty":4,"scenic_value":4,"length":20085,"name_EN":"Pelion Mt: Mt. Tisseon crossing","description_EN":"The wild crest of Mt. Tisseon","ascent_time":900,"descent_time":825,"marker":"No_marks","level":9,"ascent":1369,"descent":1092,"maxelev":635,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.0758 39.09133,23.22061 39.1501)","views":44,"millestones":"0,23.2165791,39.1511282#1,23.2167543,39.1427284#2,23.2173619,39.1359318#3,23.2149887,39.1325226#4,23.2048308,39.1285250#5,23.1942827,39.1271607#6,23.1890877,39.1302947#7,23.1847755,39.1231678#8,23.1836840,39.1154225#9,23.1751073,39.1111394#10,23.1643777,39.1095069#11,23.1545154,39.1060580#12,23.1450315,39.1047587#13,23.1346987,39.1045117#14,23.1262523,39.0992440#15,23.1175078,39.0961576#16,23.1098889,39.0923013#17,23.0995652,39.0919710#18,23.0892210,39.0912429#19,23.0811888,39.0964252#20.1,23.0764398,39.1010693","x":23.1494474,"y":39.1064366,"coor":[[23.2165791,39.1511282],[23.2168599,39.1508508],[23.2168887,39.1505716],[23.2169163,39.1503646],[23.2170719,39.149897],[23.2170275,39.1497255],[23.2171739,39.1494697],[23.2176412,39.1490764],[23.2177617,39.1486447],[23.2175584,39.1481927],[23.2174279,39.147435],[23.2171023,39.1465317],[23.217071,39.1462251],[23.2169459,39.146026],[23.2167033,39.1459883],[23.2166035,39.1458885],[23.2167697,39.1455112],[23.2166679,39.1453033],[23.2166258,39.1449245],[23.2168171,39.1443671],[23.2168576,39.1438448],[23.2167493,39.1431772],[23.2167557,39.1426006],[23.2168907,39.1418986],[23.2169816,39.1418587],[23.2169614,39.1415882],[23.2167099,39.1413162],[23.2161294,39.1404473],[23.2161203,39.1402219],[23.2159053,39.139788],[23.2158644,39.1393011],[23.2156284,39.1386688],[23.2157156,39.1381107],[23.2155453,39.1380104],[23.2154786,39.1375774],[23.2152541,39.1369542],[23.2153371,39.1368646],[23.2153294,39.1365221],[23.2156555,39.1363261],[23.2155692,39.1357668],[23.2161486,39.1356806],[23.2162434,39.1358074],[23.216797,39.1359643],[23.2172722,39.1358954],[23.2174424,39.1359642],[23.2175647,39.1364155],[23.2182972,39.136096],[23.2188756,39.1361089],[23.2192264,39.1357689],[23.2190913,39.1354346],[23.2191505,39.1353088],[23.219139,39.1352096],[23.2192086,39.1351921],[23.2199,39.13544],[23.220062,39.1354411],[23.2201207,39.1353694],[23.2200556,39.1349724],[23.220121,39.1348152],[23.2193089,39.1339627],[23.2189293,39.1337619],[23.2184101,39.1336323],[23.217428,39.1335086],[23.2157192,39.1331907],[23.2152363,39.1329171],[23.2152158,39.1326827],[23.2150323,39.1325373],[23.213799,39.1321145],[23.2135777,39.1320544],[23.2131412,39.1317722],[23.2123687,39.1315327],[23.2118956,39.1314213],[23.211271,39.1314081],[23.2104049,39.131258],[23.2095304,39.1308286],[23.2086309,39.1305702],[23.2081472,39.1303687],[23.2064346,39.1292757],[23.2058942,39.1289747],[23.2046885,39.1284618],[23.2040337,39.1280429],[23.2032314,39.1273796],[23.203127,39.1274059],[23.2028462,39.1276833],[23.2027072,39.1277004],[23.2007536,39.1271419],[23.2003177,39.1271344],[23.1996251,39.1269043],[23.1973574,39.1269248],[23.1966875,39.1268301],[23.1950434,39.1269449],[23.1946143,39.127032],[23.1938474,39.1273331],[23.1933923,39.1276724],[23.1927326,39.1287131],[23.1923244,39.1289986],[23.1921017,39.1292493],[23.1919819,39.129609],[23.1920441,39.1303348],[23.1919287,39.1313252],[23.1919827,39.1316589],[23.1917825,39.1319639],[23.1917216,39.1322338],[23.1914993,39.1324486],[23.1910219,39.1317063],[23.1907808,39.1315425],[23.1905303,39.1311893],[23.189405,39.1304426],[23.1891057,39.1303144],[23.1885802,39.129734],[23.188029,39.1293697],[23.1869406,39.1274338],[23.1869813,39.1269205],[23.1867198,39.1265222],[23.1862732,39.1261226],[23.1856867,39.1258121],[23.1855841,39.1256852],[23.1852484,39.1257009],[23.1850851,39.1256322],[23.1852153,39.1253718],[23.1852769,39.1247369],[23.1851972,39.1246192],[23.1846452,39.124336],[23.1843933,39.124109],[23.1848523,39.123932],[23.1849257,39.1235901],[23.1846343,39.1227771],[23.184638,39.1224527],[23.1844676,39.1221812],[23.1845173,39.1218842],[23.1841894,39.1212331],[23.1836175,39.1206704],[23.1833648,39.1205155],[23.1836457,39.1202291],[23.1838549,39.1201404],[23.1844975,39.1195862],[23.1846503,39.1193801],[23.1844862,39.1189689],[23.1846721,39.1188981],[23.1846876,39.1185558],[23.1849521,39.1181882],[23.1849276,39.1179042],[23.1850487,39.1177429],[23.1850395,39.1175355],[23.1848806,39.1172731],[23.1849279,39.1171833],[23.1844287,39.1163418],[23.1842798,39.1162146],[23.1842127,39.1160159],[23.1840978,39.115943],[23.1840541,39.1157265],[23.1835613,39.1153265],[23.1833679,39.1150458],[23.1830279,39.114629],[23.1829011,39.114592],[23.1828234,39.1143031],[23.1826182,39.1140494],[23.1826545,39.1139055],[23.1822772,39.1135244],[23.180438,39.1125383],[23.1800918,39.1124637],[23.1795859,39.1122079],[23.1794599,39.1120989],[23.17945,39.1119546],[23.1789893,39.1117892],[23.1789907,39.111672],[23.1787445,39.1113594],[23.178716,39.1115124],[23.1784728,39.1115377],[23.1781387,39.1114272],[23.1774106,39.1113771],[23.1766267,39.1111553],[23.1761947,39.1110936],[23.1760897,39.111174],[23.175593,39.1111164],[23.1749912,39.1111482],[23.1741856,39.1108001],[23.1721164,39.1107043],[23.1720244,39.1106586],[23.1715498,39.1106913],[23.1711468,39.1105352],[23.1700229,39.1103335],[23.1697685,39.1103317],[23.1696308,39.1102406],[23.1693996,39.1102299],[23.1689399,39.1099743],[23.1687656,39.1100452],[23.1683955,39.1100426],[23.1682792,39.1100958],[23.1674815,39.1100721],[23.1668473,39.1099053],[23.1666162,39.1098857],[23.1665232,39.1099301],[23.1662469,39.10982],[23.1661307,39.1098642],[23.1657148,39.1098252],[23.1654009,39.1099581],[23.1653566,39.1097956],[23.1649289,39.1097745],[23.1645155,39.1095192],[23.1642393,39.1094947],[23.163491,39.109201],[23.1632139,39.109163],[23.1630761,39.1090719],[23.1629029,39.1090526],[23.1629155,39.1089626],[23.162478,39.1087972],[23.1619353,39.1087212],[23.1610362,39.1084625],[23.1607244,39.1084242],[23.1596932,39.1080924],[23.1595094,39.1079829],[23.1587819,39.1078875],[23.1578685,39.1078629],[23.1574555,39.1075806],[23.1572616,39.1073539],[23.1568483,39.1070986],[23.1558815,39.1067042],[23.1552693,39.1066367],[23.1548885,39.1065618],[23.1546935,39.1064342],[23.1546583,39.10647],[23.1545245,39.1060546],[23.1545654,39.1060188],[23.1545245,39.1060546],[23.1540413,39.1062358],[23.1534973,39.1062679],[23.152407,39.1065303],[23.151944,39.106563],[23.151874,39.1066165],[23.1510184,39.1065923],[23.1502308,39.1066947],[23.1494474,39.1064366],[23.149071,39.1060014],[23.1488699,39.1054142],[23.148733,39.105251],[23.1486289,39.1052592],[23.1485721,39.1051687],[23.1483732,39.1053565],[23.1482583,39.1053016],[23.1481767,39.1053551],[23.1480521,39.1051379],[23.1478775,39.1052267],[23.1477741,39.1051719],[23.1475658,39.1051794],[23.1474033,39.1052323],[23.1473208,39.1053578],[23.1472301,39.105204],[23.1470804,39.1051488],[23.1466174,39.1051815],[23.1459726,39.1049515],[23.1456372,39.104949],[23.1452458,39.104802],[23.145107,39.1048009],[23.1450729,39.1047466],[23.1449801,39.104773],[23.1448885,39.1047002],[23.1446921,39.1046808],[23.144624,39.1045721],[23.1444622,39.1045619],[23.1443946,39.1044173],[23.1440487,39.1043246],[23.1437596,39.1043225],[23.1433813,39.1040494],[23.1428731,39.1039916],[23.1427338,39.1040356],[23.1426304,39.1039808],[23.1423205,39.103965],[23.1422171,39.1039102],[23.1413507,39.1038317],[23.1412109,39.1039118],[23.1405062,39.1038525],[23.1398689,39.1039469],[23.1395225,39.1039083],[23.139108,39.1037521],[23.1384702,39.1038916],[23.1382974,39.1038362],[23.1381005,39.1038618],[23.1377675,39.1036701],[23.1374319,39.1036856],[23.1373865,39.1036132],[23.137143,39.1036655],[23.1368404,39.1038254],[23.1367585,39.1038969],[23.1367331,39.104086],[23.1366171,39.1041166],[23.1360354,39.1044007],[23.1355732,39.1043612],[23.134426,39.1045509],[23.1336158,39.104599],[23.1331424,39.1045414],[23.1329274,39.1046209],[23.1319776,39.1042714],[23.1318411,39.1040812],[23.1305942,39.1029725],[23.1298526,39.102147],[23.129164,39.1017184],[23.1285228,39.1011999],[23.1281665,39.1010171],[23.1275721,39.1004539],[23.1270444,39.1001076],[23.1264379,39.0995894],[23.12628,39.0992638],[23.1260736,39.0991181],[23.1256989,39.0985566],[23.1247381,39.0977024],[23.1247516,39.0975493],[23.1244879,39.0973671],[23.1241686,39.0970043],[23.12364,39.09673],[23.1233318,39.0964033],[23.1231246,39.0963296],[23.1226741,39.0962902],[23.1223767,39.0960266],[23.1215437,39.0960564],[23.121381,39.0961273],[23.1213297,39.0960638],[23.1211565,39.0960445],[23.1211003,39.0959179],[23.1207193,39.09587],[23.1203284,39.0956868],[23.1199933,39.0956662],[23.1197631,39.0955744],[23.1192289,39.0957596],[23.1188711,39.0957028],[23.1187548,39.095756],[23.1186602,39.0959265],[23.1185449,39.0958986],[23.1184162,39.0960238],[23.1182078,39.0960402],[23.1181715,39.0961661],[23.1179623,39.0962546],[23.1177541,39.0962621],[23.1174895,39.0961519],[23.1173614,39.096223],[23.1172582,39.0961502],[23.1171079,39.096149],[23.1169669,39.0963282],[23.1167112,39.0964344],[23.1166073,39.0964156],[23.1165711,39.0965415],[23.116362,39.096612],[23.1158868,39.0957793],[23.1156413,39.0950656],[23.1153787,39.0947933],[23.1152282,39.0948102],[23.1152758,39.0947024],[23.1151964,39.0945757],[23.1146469,39.0941299],[23.1141919,39.0935318],[23.1136512,39.093023],[23.1135038,39.0927876],[23.1129073,39.0924046],[23.1125384,39.0923117],[23.1123324,39.092148],[23.111986,39.0921093],[23.11173,39.0922335],[23.1113609,39.0921586],[23.1111868,39.0922113],[23.1110374,39.0921381],[23.1107717,39.0921181],[23.1105994,39.0920266],[23.110449,39.0920345],[23.1098208,39.0923361],[23.109301,39.0922961],[23.108987,39.0924378],[23.108825,39.0924456],[23.1085804,39.0925879],[23.1081412,39.0925665],[23.1079433,39.0926731],[23.1078284,39.0926182],[23.1075097,39.0925887],[23.1073789,39.0928761],[23.1071823,39.0928746],[23.1070071,39.0930174],[23.1068231,39.0929349],[23.1064991,39.0929504],[23.1059804,39.0928203],[23.1057145,39.0928183],[23.1056676,39.092872],[23.1051493,39.0927058],[23.1050465,39.0926059],[23.1047015,39.0924591],[23.1045054,39.0924215],[23.1043192,39.0925102],[23.1040074,39.0924808],[23.1031206,39.0922036],[23.102669,39.0922542],[23.1024962,39.0921988],[23.1022754,39.0922872],[23.1020809,39.0921235],[23.1016978,39.0922467],[23.100717,39.092077],[23.1003008,39.0920738],[23.1002565,39.0919202],[23.0997354,39.0919793],[23.0993425,39.0919582],[23.0989407,39.0917299],[23.0987218,39.0916741],[23.0985712,39.091691],[23.0983731,39.0918156],[23.0976463,39.0916838],[23.097451,39.0915832],[23.0971772,39.0914909],[23.0962987,39.0914661],[23.0961492,39.0914019],[23.0960699,39.0912751],[23.0957346,39.0912725],[23.0956313,39.0912086],[23.0952618,39.0911697],[23.0949745,39.0910323],[23.094328,39.0909552],[23.0942603,39.0908195],[23.0936846,39.0906348],[23.0935686,39.090661],[23.0933614,39.0905873],[23.0928859,39.0907007],[23.0926211,39.0906086],[23.0922043,39.0906504],[23.0920433,39.090586],[23.0916379,39.0906369],[23.091363,39.0904366],[23.0908316,39.0903919],[23.0905183,39.0904795],[23.0900505,39.0908904],[23.0896474,39.0911035],[23.0892755,39.0912493],[23.0889653,39.0912108],[23.0880859,39.091258],[23.0878068,39.091382],[23.0862832,39.092965],[23.0858234,39.0936462],[23.0843501,39.0940131],[23.0832926,39.0944193],[23.0826196,39.0945942],[23.0823686,39.0946733],[23.0822039,39.0948883],[23.0822823,39.0950872],[23.0822292,39.095276],[23.0820753,39.0955541],[23.0812381,39.0959079],[23.081118,39.0962494],[23.0813646,39.0968551],[23.0812129,39.096962],[23.0810923,39.0973395],[23.0809043,39.0975723],[23.0806603,39.0976605],[23.0805081,39.0978035],[23.0803531,39.0981627],[23.0800152,39.0983583],[23.0799536,39.0984569],[23.0794755,39.0987595],[23.0789774,39.0988277],[23.0788877,39.09889],[23.0786441,39.0989422],[23.078632,39.0990682],[23.0779224,39.099752],[23.0773815,39.1001622],[23.0771075,39.1002501],[23.0767271,39.100157],[23.0767105,39.1002605],[23.0766124,39.1006922],[23.0764398,39.1010693]]},{"id":17218,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03c1\u03b3\u03b1\u03bb\u03b1\u03c3\u03c4\u03ae-\u039e\u03b9\u03bd\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Argalasti_Xynovrysi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":5958,"name_EN":"Pelion Mt: Argalasti-Xinovrysi","description_EN":"","ascent_time":140,"descent_time":140,"marker":"Red_dots","level":9,"ascent":203,"descent":229,"maxelev":351,"minelev":219,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.21791 39.22397,23.26106 39.24924)","views":15,"millestones":"0,23.2181631,39.2265010#1,23.2265900,39.2257494#2,23.2339526,39.2316122#3,23.2369200,39.2371929#4,23.2449982,39.2413294#5,23.2541578,39.2447962#6.0,23.2605934,39.2495213","x":23.2353492,"y":39.2363558,"coor":[[23.2181631,39.226501],[23.2184495,39.226566],[23.2186738,39.2264504],[23.2195294,39.2258479],[23.2202601,39.225641],[23.2203294,39.2255604],[23.2204235,39.2254349],[23.2210747,39.225214],[23.2211154,39.2252007],[23.2219176,39.2249448],[23.222911,39.224654],[23.2239016,39.2247102],[23.2240978,39.22468],[23.2242605,39.2245324],[23.2245872,39.2239263],[23.2247719,39.2238239],[23.2249281,39.2237349],[23.2250861,39.2237539],[23.2254871,39.2241621],[23.2255445,39.2244779],[23.2257472,39.2247135],[23.22573,39.225218],[23.2259407,39.2254221],[23.2262296,39.2254871],[23.22639,39.2256504],[23.2270813,39.2259974],[23.2273117,39.2263143],[23.2274383,39.2263872],[23.2278773,39.2264982],[23.2283177,39.2264831],[23.2285255,39.2265566],[23.2286674,39.2273505],[23.2290683,39.2277676],[23.229287,39.2278952],[23.2293891,39.2280941],[23.2296881,39.2282944],[23.2296618,39.2284564],[23.229744,39.2286822],[23.2302598,39.2291902],[23.2304901,39.2293179],[23.2307068,39.2296347],[23.2313508,39.2300715],[23.2329108,39.2315145],[23.2330844,39.2315336],[23.2334569,39.2313739],[23.2337461,39.2314118],[23.2339196,39.2315391],[23.2339536,39.2316114],[23.2338483,39.2317008],[23.2338118,39.2318628],[23.2338448,39.2320252],[23.2339936,39.2321884],[23.234339,39.2323889],[23.2347897,39.2325],[23.2350778,39.232646],[23.2353446,39.2326118],[23.2356222,39.2326586],[23.2357585,39.2329118],[23.2361031,39.2331168],[23.235928,39.2332418],[23.2354328,39.2341261],[23.2349999,39.2345108],[23.234624,39.2349859],[23.2342868,39.2350918],[23.2338758,39.2353008],[23.2342797,39.2354477],[23.2344476,39.2359894],[23.2346425,39.2361799],[23.2348283,39.2361451],[23.2353492,39.2363558],[23.2355141,39.2363478],[23.235791,39.2364578],[23.2360345,39.2364414],[23.2360096,39.2365944],[23.236218,39.2366138],[23.2365274,39.2369312],[23.2368047,39.2370051],[23.2369523,39.2372448],[23.2370969,39.2378044],[23.2372341,39.2379765],[23.237033,39.2381599],[23.2369842,39.2383849],[23.2370295,39.2384753],[23.2375258,39.2386588],[23.2382557,39.2386635],[23.2388096,39.2388834],[23.2391107,39.2388944],[23.2393536,39.2388329],[23.2391966,39.2392239],[23.2392188,39.2393141],[23.240236,39.239546],[23.2404518,39.2399439],[23.2410748,39.2402003],[23.2419972,39.240391],[23.2431495,39.2409932],[23.2433119,39.2409762],[23.2436467,39.2410865],[23.2448974,39.2411577],[23.24515,39.2415829],[23.2457498,39.2418391],[23.2464571,39.2417986],[23.2472906,39.2418761],[23.2475742,39.2413553],[23.2476441,39.2415314],[23.2477709,39.2415863],[23.2478273,39.2417308],[23.2480687,39.241818],[23.2484271,39.2418924],[23.248904,39.2419586],[23.2490682,39.2420137],[23.2491835,39.2420685],[23.249319,39.2420603],[23.2497099,39.2423512],[23.2501695,39.2424758],[23.2502367,39.2426925],[23.2509984,39.2429858],[23.2516085,39.2433681],[23.2517704,39.2434052],[23.253473,39.2445425],[23.2547774,39.2450194],[23.2552629,39.2451306],[23.2553999,39.245091],[23.2555203,39.2451368],[23.2557494,39.2453905],[23.2569818,39.2472006],[23.2577303,39.2476559],[23.2581344,39.2478026],[23.2585724,39.2481974],[23.258803,39.247897],[23.2588643,39.2479514],[23.2591096,39.2479125],[23.2595257,39.2480142],[23.2598465,39.2483587],[23.2605188,39.2483449],[23.2608078,39.2484188],[23.2606179,39.2488411],[23.2605915,39.2490843],[23.2605908,39.2491834],[23.2605934,39.2495213]]},{"id":17219,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03c1\u03b3\u03b1\u03bb\u03b1\u03c3\u03c4\u03ae-\u039b\u03b1\u03cd\u03ba\u03bf\u03c2","description_GR":"\u039f \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b1 \u03b4\u03cd\u03bf \u03c0\u03b1\u03bb\u03b9\u03ac \u03ba\u03ad\u03bd\u03c4\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039d\u03bf\u03c4\u03af\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Argalasti_Lafkos","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":7067,"name_EN":"Pelion Mt: Argalasti-Lafkos","description_EN":"The old way between the 2 most important villages of South Pelion district","ascent_time":130,"descent_time":125,"marker":"Red_dots","level":11,"ascent":256,"descent":197,"maxelev":319,"minelev":179,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.21816 39.17763,23.2461 39.22656)","views":15,"millestones":"0,23.2181631,39.2265010#1,23.2231728,39.2199997#2,23.2271179,39.2122390#3,23.2348575,39.2066642#4,23.2348861,39.1984459#5,23.2366547,39.1911597#6,23.2432051,39.1849874#7.1,23.2460962,39.1776302","x":23.2346181,"y":39.1963205,"coor":[[23.2181631,39.226501],[23.2184495,39.226566],[23.2186738,39.2264504],[23.2195294,39.2258479],[23.2202601,39.225641],[23.2203294,39.2255604],[23.2201999,39.2252306],[23.2200551,39.224707],[23.2199992,39.2244904],[23.2198622,39.2240074],[23.2198214,39.2238675],[23.2195778,39.2228566],[23.2198019,39.2225878],[23.2202482,39.2220411],[23.2202659,39.2219151],[23.220453,39.2217542],[23.2213383,39.2213096],[23.2219113,39.2209259],[23.221973,39.2205839],[23.2221603,39.220405],[23.2226735,39.220093],[23.2231726,39.2199972],[23.2235027,39.2197381],[23.2236922,39.2193609],[23.2236758,39.2187481],[23.22377,39.2186135],[23.2236501,39.2179279],[23.2240416,39.2173223],[23.2247359,39.2164303],[23.2248662,39.2162375],[23.2250185,39.2160087],[23.2253654,39.2160651],[23.2254046,39.2157635],[23.2255703,39.2154402],[23.2255539,39.2148274],[23.2256726,39.2145578],[23.2255492,39.2141966],[23.2255756,39.2138994],[23.2261652,39.2129482],[23.2266781,39.2126542],[23.2271345,39.2122247],[23.2285654,39.2116575],[23.2294946,39.2114294],[23.2304439,39.2114717],[23.2308039,39.211384],[23.2311543,39.211116],[23.2314996,39.2105505],[23.231816,39.2098498],[23.2321428,39.2096177],[23.2320068,39.2093464],[23.2320663,39.2092027],[23.2331301,39.2082996],[23.2335547,39.2075995],[23.2339616,39.207458],[23.2343232,39.2072171],[23.2347325,39.2068594],[23.2349328,39.2065453],[23.2350311,39.2060233],[23.2348519,39.2054635],[23.234833,39.2050669],[23.2349179,39.204716],[23.234923,39.2042475],[23.2350763,39.2039962],[23.2349348,39.2031573],[23.2350741,39.2020588],[23.2348786,39.2013998],[23.2350129,39.2007609],[23.235319,39.2003033],[23.2360187,39.1998574],[23.2358098,39.1996262],[23.2353945,39.1994793],[23.2350624,39.1991348],[23.2350097,39.1986568],[23.2347367,39.1981955],[23.2346254,39.1977803],[23.2347504,39.1969341],[23.2349274,39.1966289],[23.2346515,39.1964468],[23.2346181,39.1963205],[23.2348262,39.1952856],[23.2351949,39.1943869],[23.2351636,39.194238],[23.2353633,39.1942754],[23.2353309,39.1940589],[23.2355634,39.1939793],[23.2356843,39.1935116],[23.2362198,39.1932448],[23.2364053,39.1932279],[23.2365597,39.1928685],[23.2367234,39.1927254],[23.2369834,39.1922405],[23.23717,39.1921156],[23.2373582,39.1918465],[23.2373601,39.1916663],[23.2368501,39.191717],[23.2366422,39.1916616],[23.2367009,39.1915899],[23.236599,39.191373],[23.2366957,39.1910042],[23.2366179,39.1906973],[23.2369003,39.1902846],[23.2368239,39.1900859],[23.2369446,39.1896362],[23.2370499,39.1895287],[23.2373873,39.1893867],[23.2375606,39.1894239],[23.2380826,39.1893372],[23.2385022,39.1890787],[23.238728,39.1885395],[23.2387302,39.1883413],[23.238786,39.1882966],[23.2388102,39.1880624],[23.2392184,39.1877948],[23.2394189,39.1874537],[23.239398,39.1872463],[23.2400016,39.1871061],[23.2405482,39.1868844],[23.2407349,39.1867504],[23.240905,39.1866389],[23.2415908,39.186391],[23.2418399,39.1862485],[23.2419113,39.1861003],[23.2422556,39.1860169],[23.2422692,39.1858278],[23.2424336,39.1856126],[23.2426441,39.1854157],[23.2431099,39.1851664],[23.2433816,39.1846636],[23.2430748,39.1841209],[23.2430655,39.1839136],[23.2433692,39.1836633],[23.2439738,39.1834239],[23.2439055,39.1833154],[23.243964,39.1832617],[23.2436056,39.1832143],[23.2435508,39.1829256],[23.2438119,39.1823236],[23.2440941,39.1819199],[23.2440735,39.1816855],[23.2444673,39.18167],[23.2442954,39.1815067],[23.2442851,39.1813805],[23.2443112,39.1811103],[23.244535,39.1807514],[23.2446524,39.1804683],[23.2449169,39.1804655],[23.2450633,39.1797636],[23.2450434,39.1794571],[23.2451363,39.1790252],[23.2449554,39.1788573],[23.2448543,39.178771],[23.2448545,39.1786854],[23.2452295,39.1784671],[23.2453017,39.1782153],[23.2458044,39.1780293],[23.2458626,39.1779936],[23.2460962,39.1776302]]},{"id":17220,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0396\u03b1\u03b3\u03bf\u03c1\u03ac-\u03a7\u03bf\u03c1\u03b5\u03c5\u03c4\u03cc","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Zagora_Chorefto","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3119,"name_EN":"Pelion Mt: Zagora-Chorefto","description_EN":"","ascent_time":65,"descent_time":80,"marker":"Red_dots","level":12,"ascent":14,"descent":460,"maxelev":457,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.10455 39.44173,23.12302 39.45421)","views":41,"millestones":"0,23.1047001,39.4425190#1,23.1129297,39.4441771#2,23.1204157,39.4467387#3.1,23.1209433,39.4542933","x":23.117025,"y":39.445028,"coor":[[23.1047001,39.442519],[23.10498,39.4424401],[23.1052006,39.4424598],[23.1058957,39.4426228],[23.1060122,39.4426057],[23.1061541,39.4425797],[23.1062333,39.4424947],[23.1063177,39.4422521],[23.106693,39.4419847],[23.1066434,39.4416915],[23.1066183,39.4416372],[23.1069553,39.4416398],[23.1072564,39.4417142],[23.1074062,39.4418145],[23.1075598,39.4416174],[23.1081287,39.4416578],[23.108292,39.441614],[23.1086595,39.4420403],[23.1087498,39.4422482],[23.1088597,39.4422896],[23.1089628,39.442777],[23.1092401,39.4428962],[23.1094724,39.442907],[23.1097032,39.4430349],[23.1100344,39.4434069],[23.1103579,39.4435535],[23.1104821,39.4439284],[23.1106116,39.4437943],[23.1109032,39.4437064],[23.1112981,39.4437274],[23.1115082,39.4436569],[23.1115673,39.443779],[23.1121309,39.4438644],[23.1127155,39.4440446],[23.1131306,39.4443001],[23.113457,39.4442215],[23.1137356,39.4442416],[23.1141765,39.444299],[23.1145351,39.4444279],[23.1147454,39.4443394],[23.114685,39.4445191],[23.1148109,39.4446733],[23.1144264,39.4453822],[23.1147607,39.445601],[23.1160441,39.445399],[23.1161401,39.4451654],[23.1162925,39.4450585],[23.1164558,39.4450057],[23.1167579,39.445017],[23.1169101,39.444928],[23.117025,39.445028],[23.1178014,39.4452051],[23.1179654,39.4450982],[23.1181401,39.4450725],[23.1187204,39.445131],[23.1193213,39.4454058],[23.1198778,39.4455091],[23.1199198,39.4456626],[23.1197081,39.4458593],[23.1197883,39.44595],[23.1199311,39.4462349],[23.1198776,39.446248],[23.1203147,39.4466883],[23.1202945,39.4467332],[23.1204108,39.4467341],[23.1205256,39.4468431],[23.1205242,39.4469512],[23.1206287,39.446961],[23.1207985,39.4473227],[23.1207142,39.4475563],[23.1207783,39.4480073],[23.1208587,39.44808],[23.1207556,39.4481333],[23.1206715,39.4483489],[23.1207764,39.4483317],[23.1207986,39.448413],[23.1205964,39.4485196],[23.1205992,39.4486728],[23.1204414,39.4489148],[23.1203241,39.4490041],[23.1204602,39.4490997],[23.12075,39.4491559],[23.1212092,39.4496099],[23.1214637,39.449702],[23.1215423,39.4499188],[23.121832,39.4499886],[23.1217494,39.4500871],[23.1217665,39.4502899],[23.1219504,39.4504535],[23.1218777,39.4508584],[23.122142,39.4511037],[23.1221753,39.4512301],[23.122629,39.4517696],[23.1228804,39.4521139],[23.1228859,39.452141],[23.122228,39.4526947],[23.1218505,39.4531424],[23.1216008,39.453591],[23.121461,39.4537026],[23.121031,39.4543345],[23.1209433,39.4542933]]},{"id":17222,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039a\u03b9\u03c3\u03c3\u03cc\u03c2-\u0391\u03bd\u03ae\u03bb\u03b9\u03bf","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03ba\u03b9\u03bd\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03be\u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03bf\u03c5 \u03c3\u03b5 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c5\u03c2","path":"THESSALIA\/Thessaly_Pelion_Anilio_Kissos","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":1,"length":1992,"name_EN":"Pelion Mt: Kissos-Anilio","description_EN":"the route follows just roads","ascent_time":30,"descent_time":35,"marker":"Red_dots","level":13,"ascent":24,"descent":160,"maxelev":513,"minelev":367,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.13129 39.40633,23.13592 39.41867)","views":20,"millestones":"0,23.1318169,39.4062998#1,23.1342143,39.4123024#2.0,23.1345083,39.4186913","x":23.1340094,"y":39.4125379,"coor":[[23.1318169,39.4062998],[23.1317696,39.4063671],[23.1314355,39.4070854],[23.1318701,39.4076293],[23.1319114,39.4080441],[23.1325122,39.4083009],[23.133568,39.4083988],[23.1342847,39.4086745],[23.1352128,39.4087715],[23.1355012,39.4089268],[23.1358783,39.4094342],[23.1358022,39.4099472],[23.1358481,39.410763],[23.1355924,39.4111531],[23.1355308,39.4114409],[23.1352125,39.411817],[23.1347811,39.4118363],[23.1347948,39.4119581],[23.1343628,39.4121351],[23.1340094,39.4125379],[23.1332737,39.4128478],[23.1333486,39.413371],[23.1332121,39.4136943],[23.1332404,39.4142217],[23.1335248,39.4147013],[23.1333944,39.4149166],[23.1335549,39.4154719],[23.1330745,39.4153332],[23.1330124,39.4156571],[23.1331028,39.415865],[23.1338779,39.4161231],[23.1348561,39.4168692],[23.1351681,39.4173806],[23.134977,39.4173342],[23.1347894,39.4174769],[23.1349785,39.4181541],[23.1348143,39.4182791],[23.1344891,39.4182766],[23.1345083,39.4186913]]},{"id":17229,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a7\u03bf\u03c1\u03b5\u03c5\u03c4\u03cc-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Chorefto_AgIoanis","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":7924,"name_EN":"Pelion Mt: Chorefto-Agios Ioanis","description_EN":"","ascent_time":210,"descent_time":210,"marker":"Red_dots","level":12,"ascent":395,"descent":395,"maxelev":191,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.12094 39.41793,23.16027 39.45433)","views":33,"millestones":"0,23.1209422,39.4542933#1,23.1299235,39.4492070#2,23.1336173,39.4438134#3,23.1365851,39.4384414#4,23.1435339,39.4359150#5,23.1452599,39.4316999#6,23.1512910,39.4291643#7,23.1555273,39.4235483#7.9,23.1602687,39.4179340","x":23.1436173,"y":39.4354821,"coor":[[23.1209422,39.4542933],[23.1210299,39.4543345],[23.1214599,39.4537026],[23.1215997,39.453591],[23.1218494,39.4531423],[23.122227,39.4526947],[23.1228848,39.452141],[23.1244425,39.4510985],[23.1254603,39.4505655],[23.1267673,39.4501429],[23.1288184,39.4496897],[23.1293205,39.4495043],[23.1308946,39.4487141],[23.1310784,39.4485893],[23.1312796,39.4483025],[23.1314635,39.447529],[23.1313616,39.447312],[23.1319841,39.4469922],[23.1322467,39.4467825],[23.1323064,39.4466568],[23.131839,39.4468605],[23.1317234,39.4468056],[23.132146,39.4464663],[23.1322298,39.4462687],[23.1316459,39.4464986],[23.1315305,39.4464347],[23.1320375,39.4458438],[23.1320353,39.4457582],[23.1322715,39.4454536],[23.132156,39.4453987],[23.1322284,39.445183],[23.1321929,39.4451467],[23.1327112,39.4444657],[23.1327907,39.4445294],[23.133355,39.4444795],[23.1334047,39.4444213],[23.1333138,39.4442585],[23.133385,39.4441329],[23.1337589,39.4439735],[23.1335755,39.4437649],[23.1336332,39.4435986],[23.1339106,39.4433349],[23.1343291,39.44332],[23.1342848,39.4431484],[23.1345319,39.442898],[23.1348197,39.4421793],[23.1355032,39.4414095],[23.1356517,39.4412709],[23.1357338,39.4412985],[23.1359333,39.4411378],[23.1362937,39.4411225],[23.136575,39.4409264],[23.1370849,39.4401012],[23.137587,39.4399067],[23.137883,39.4394584],[23.1378383,39.4393139],[23.1376886,39.4392091],[23.1376235,39.4390104],[23.1377072,39.4388128],[23.1376733,39.4387405],[23.1372183,39.4388813],[23.1369719,39.4390777],[23.136952,39.4388072],[23.1366478,39.4389761],[23.136473,39.4390109],[23.136183,39.4389727],[23.1361493,39.4388823],[23.1364777,39.4386325],[23.136656,39.4383094],[23.1368906,39.438131],[23.1369869,39.4378614],[23.1375252,39.437559],[23.1380701,39.4376531],[23.1386116,39.4380356],[23.1389139,39.4380198],[23.1388804,39.4379114],[23.1383501,39.4375651],[23.1379481,39.4371837],[23.1381357,39.4367841],[23.1384527,39.4365162],[23.1387564,39.4363923],[23.139085,39.4361244],[23.1393282,39.4361893],[23.1395854,39.436065],[23.1397586,39.4361564],[23.1405588,39.4362795],[23.140894,39.4363045],[23.1415853,39.435841],[23.1422579,39.4359541],[23.1425829,39.4358934],[23.1426853,39.4360654],[23.1428131,39.4360663],[23.1429894,39.4359054],[23.1432015,39.4360512],[23.14354,39.4359275],[23.1434153,39.4356743],[23.1432186,39.4356008],[23.1432193,39.4355467],[23.1433606,39.4355703],[23.1436173,39.4354821],[23.1439657,39.4355026],[23.1444455,39.4352269],[23.1442843,39.4350995],[23.1442491,39.4349551],[23.144123,39.43481],[23.1437177,39.4346989],[23.1440293,39.4346922],[23.14463,39.4349849],[23.1454996,39.4351355],[23.1453989,39.4348194],[23.1451923,39.4346106],[23.1453084,39.4346205],[23.145539,39.4347663],[23.1456555,39.4347402],[23.1458674,39.4345165],[23.1459062,39.4341924],[23.145696,39.4342809],[23.1455801,39.4342531],[23.1454468,39.4340223],[23.1457293,39.433718],[23.1456866,39.4334114],[23.1457458,39.4333217],[23.145979,39.4332513],[23.1461794,39.4330185],[23.145682,39.4328347],[23.1454645,39.4325718],[23.1454481,39.4323058],[23.1452072,39.4320518],[23.1453848,39.4317828],[23.145016,39.4315368],[23.1448347,39.431157],[23.1447644,39.4306429],[23.1447453,39.4304806],[23.1449346,39.4302026],[23.1450984,39.4301137],[23.1451833,39.429817],[23.1459286,39.4296828],[23.1463449,39.4300193],[23.1467498,39.4301664],[23.1470399,39.4301956],[23.1470982,39.4308628],[23.1471704,39.4309264],[23.1475437,39.430803],[23.1477559,39.4305522],[23.1479183,39.4305714],[23.1479743,39.430743],[23.1480441,39.4307435],[23.1484204,39.4303679],[23.148572,39.4303239],[23.1485973,39.4301529],[23.1488209,39.4299203],[23.1489141,39.4299029],[23.1490211,39.4300884],[23.1491181,39.4300576],[23.1494079,39.4301138],[23.1497566,39.4300983],[23.1502814,39.42994],[23.1504495,39.4297565],[23.151263,39.4293885],[23.1513409,39.4287133],[23.1518823,39.4281405],[23.1520015,39.4278891],[23.1521328,39.4273855],[23.1521632,39.4268],[23.1524041,39.42609],[23.1524381,39.4259866],[23.1523022,39.4256973],[23.1524818,39.4255229],[23.1527214,39.4246596],[23.152492,39.4244147],[23.1524253,39.4241619],[23.1530124,39.4238283],[23.1531845,39.4240097],[23.1538204,39.4242666],[23.154048,39.4246558],[23.154176,39.4246387],[23.1543522,39.4244778],[23.1546549,39.4244259],[23.1549006,39.4242835],[23.1550282,39.4243025],[23.1551106,39.424213],[23.155133,39.4242852],[23.1551802,39.4242225],[23.1552041,39.4239884],[23.1554289,39.4236476],[23.1558758,39.4232003],[23.1564028,39.4228527],[23.1566379,39.4226202],[23.1572752,39.4217958],[23.1577195,39.4215648],[23.158258,39.4213975],[23.1589562,39.4213034],[23.1592486,39.4211433],[23.1594486,39.4209285],[23.1595938,39.4207539],[23.1596787,39.4198805],[23.1595474,39.4192037],[23.1595812,39.4190823],[23.1602687,39.417934]]},{"id":17236,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0392\u03c5\u03b6\u03af\u03c4\u03c3\u03b1-\u039c\u03b7\u03bb\u03b9\u03ad\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u03c3\u03c4\u03b1\u03b8\u03bc\u03cc \u039c\u03b7\u03bb\u03b5\u03ce\u03bd","path":"THESSALIA\/Thessaly_Pelion_Vyzitsa_Milies","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2383,"name_EN":"Pelion Mt: Vyzitsa-Milies","description_EN":"Via the old railway station","ascent_time":40,"descent_time":45,"marker":"Red_dots","level":9,"ascent":111,"descent":209,"maxelev":488,"minelev":285,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.13172 39.32712,23.14979 39.3332)","views":59,"millestones":"0,23.1319007,39.3332026#1,23.1395115,39.3296620#2,23.1463704,39.3276058#2.4,23.1497742,39.3285184","x":23.1414181,"y":39.3282903,"coor":[[23.1319007,39.3332026],[23.1317198,39.3328228],[23.1318267,39.332711],[23.1320598,39.3326226],[23.1323862,39.3325034],[23.1326968,39.332366],[23.133021,39.3324225],[23.1330575,39.3322876],[23.1333605,39.3321727],[23.1331651,39.3320271],[23.133272,39.3318297],[23.1334474,39.3317454],[23.1337747,39.3315496],[23.134182,39.3314535],[23.1351435,39.3315688],[23.1352024,39.3314971],[23.1351368,39.3311723],[23.1351841,39.3311005],[23.1360734,39.3307828],[23.136272,39.3306761],[23.136469,39.3306956],[23.1365348,39.330651],[23.1367107,39.3304991],[23.1369552,39.3304289],[23.1376151,39.3305419],[23.1378288,39.3305345],[23.1381313,39.3304646],[23.1379239,39.3303459],[23.138017,39.3303286],[23.1383529,39.3303671],[23.1389076,39.3305515],[23.1391292,39.330454],[23.1395697,39.3295382],[23.1398982,39.3292432],[23.1400758,39.3289562],[23.1406477,39.3286721],[23.1412441,39.328289],[23.1414181,39.3282903],[23.1416026,39.3283818],[23.141797,39.3286175],[23.1419353,39.3286906],[23.1418686,39.3284558],[23.1422039,39.3285484],[23.1418428,39.3279285],[23.1418566,39.3277484],[23.1420672,39.3276644],[23.1420517,39.327831],[23.1421538,39.3280209],[23.1423036,39.3281031],[23.1425122,39.3281227],[23.142827,39.3279989],[23.1431435,39.3277309],[23.1436677,39.3275545],[23.1440517,39.3274672],[23.1443174,39.3275593],[23.1444512,39.3275242],[23.144462,39.3276234],[23.1447426,39.3274453],[23.145044,39.3274655],[23.1449761,39.3270866],[23.1452965,39.3274493],[23.14546,39.3273604],[23.1456919,39.3273712],[23.1461651,39.3275819],[23.1464778,39.3276202],[23.1473792,39.3279151],[23.1476213,39.3280431],[23.1479711,39.3279015],[23.1482963,39.3278678],[23.1486672,39.3278975],[23.1488404,39.3279709],[23.1493235,39.3284655],[23.1494893,39.3284532],[23.1495697,39.3285169],[23.1497742,39.3285184]]},{"id":17238,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0396\u03b1\u03b3\u03bf\u03c1\u03ac-\u03a7\u03ac\u03bd\u03b9\u03b1","description_GR":"\u039f \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03bf\u03cd \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Zagora_Chania","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8974,"name_EN":"Pelion Mt: Zagora-Chania","description_EN":"The old road from eastern Pelion to Volos","ascent_time":190,"descent_time":210,"marker":"Red_dots","level":12,"ascent":81,"descent":804,"maxelev":1210,"minelev":453,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06215 39.39613,23.10535 39.44138)","views":26,"millestones":"0,23.0627537,39.3959471#1,23.0719569,39.3984025#2,23.0790370,39.4036585#3,23.0816486,39.4107330#4,23.0874164,39.4159515#5,23.0853448,39.4200389#6,23.0892494,39.4244849#7,23.0975246,39.4296236#8,23.0988041,39.4367537#9.0,23.1047710,39.4417176","x":23.0848219,"y":39.4135445,"coor":[[23.0627537,39.3959471],[23.0628577,39.3960651],[23.0630433,39.3960846],[23.0638552,39.3958028],[23.0638959,39.3962356],[23.0639,39.3964699],[23.0640886,39.3967778],[23.0646692,39.3970257],[23.0648415,39.3973605],[23.0651968,39.3972823],[23.0654876,39.3974062],[23.0664406,39.3977067],[23.0669133,39.3978006],[23.0670949,39.3979327],[23.0681613,39.3980855],[23.0688774,39.3983795],[23.0690638,39.398336],[23.069249,39.3983825],[23.0695189,39.3981684],[23.0696352,39.3981603],[23.0697622,39.3982154],[23.0698989,39.3984147],[23.0703432,39.398193],[23.0710294,39.3981174],[23.0714217,39.3983098],[23.0722211,39.3984513],[23.072556,39.3985981],[23.0727507,39.3987979],[23.0729593,39.3988356],[23.0730621,39.3989626],[23.0732126,39.3989998],[23.0732323,39.3991036],[23.0733735,39.3990462],[23.0735455,39.3992097],[23.0737006,39.3997786],[23.0740436,39.4001868],[23.0742391,39.4003325],[23.0742527,39.4001885],[23.0743337,39.4002071],[23.0744366,39.4003341],[23.0744574,39.4005145],[23.0746762,39.4006514],[23.0750908,39.4007538],[23.0754594,39.400982],[23.0759273,39.4011704],[23.0763519,39.4013675],[23.0768349,39.4017318],[23.0769742,39.4017329],[23.0771911,39.4020229],[23.0773616,39.4020558],[23.0774417,39.4021465],[23.0776111,39.4021569],[23.0778649,39.4022851],[23.0780365,39.4024846],[23.0781604,39.402774],[23.0782995,39.4027931],[23.0784531,39.4025961],[23.0787137,39.4027333],[23.0788161,39.4028963],[23.0789005,39.4037079],[23.0790285,39.4036909],[23.0790652,39.403547],[23.079147,39.4035116],[23.079371,39.4041441],[23.079544,39.4042356],[23.0797182,39.4045974],[23.0799532,39.4051038],[23.0798933,39.4052475],[23.0797408,39.4053635],[23.0796487,39.4056601],[23.0794005,39.4059825],[23.0793684,39.406658],[23.0795848,39.4069841],[23.0800236,39.4071768],[23.0801707,39.4071194],[23.0803214,39.4071386],[23.0805608,39.4074829],[23.080602,39.4078797],[23.0809155,39.4087742],[23.0808435,39.4089538],[23.0806451,39.4090243],[23.080492,39.4091853],[23.0806304,39.4091729],[23.080757,39.409264],[23.0807177,39.4096061],[23.0807862,39.4096967],[23.0809713,39.4097523],[23.0810534,39.4100187],[23.0811799,39.4099566],[23.0813636,39.4101203],[23.0813506,39.4102193],[23.0815475,39.4104326],[23.0815683,39.410613],[23.0817506,39.4108847],[23.0818477,39.410926],[23.0819542,39.4107782],[23.0820097,39.4109769],[23.0819693,39.4114],[23.0820954,39.4115272],[23.0822469,39.4114067],[23.0825953,39.4114095],[23.0829545,39.4114754],[23.0832037,39.411599],[23.0834538,39.4120154],[23.0834846,39.4123311],[23.083446,39.4124479],[23.0835881,39.4124941],[23.0835753,39.4125841],[23.0831894,39.4127792],[23.0836405,39.412927],[23.0838096,39.4129824],[23.0839692,39.4132179],[23.084292,39.4134006],[23.084546,39.4135198],[23.0848219,39.4135445],[23.0848686,39.4135268],[23.0853645,39.4137199],[23.0853406,39.4137738],[23.0855013,39.4139192],[23.0853609,39.4139992],[23.0855461,39.4140457],[23.0856262,39.4141365],[23.085905,39.4141387],[23.0861586,39.4142848],[23.0862843,39.4143624],[23.0871866,39.4147344],[23.0873893,39.4152226],[23.0875419,39.4158275],[23.0874022,39.4158534],[23.0874235,39.4159977],[23.0873519,39.4161413],[23.0875796,39.4165035],[23.087915,39.4166143],[23.0881243,39.4165979],[23.0882279,39.4166708],[23.0885082,39.4165559],[23.088787,39.4165581],[23.0889139,39.4166221],[23.0887961,39.4167473],[23.0882662,39.4170225],[23.0875657,39.4172873],[23.08754,39.4173908],[23.0879703,39.4175248],[23.0879094,39.4177406],[23.0877682,39.4178746],[23.0878958,39.4178936],[23.0878018,39.4180551],[23.0873593,39.4181417],[23.0864407,39.4182066],[23.0858457,39.4184001],[23.0858206,39.4185441],[23.0866882,39.4186545],[23.0870339,39.4188735],[23.0872885,39.4189476],[23.0873108,39.4190198],[23.087158,39.4191538],[23.0860834,39.4196049],[23.0854049,39.41996],[23.0851449,39.4203003],[23.0851079,39.4204622],[23.0848259,39.4207123],[23.0849316,39.4212357],[23.0853836,39.4213114],[23.0856826,39.4213813],[23.0848574,39.4214109],[23.0841621,39.4212792],[23.083975,39.4213679],[23.0840763,39.421621],[23.084443,39.4220879],[23.0850203,39.4223627],[23.0858482,39.423018],[23.0869717,39.4232791],[23.0875139,39.4235717],[23.0879191,39.423683],[23.0879639,39.4238095],[23.0879134,39.4241155],[23.0881988,39.4245051],[23.0898722,39.4244732],[23.0903002,39.4246117],[23.090517,39.4249198],[23.090994,39.4248694],[23.0912021,39.4249431],[23.0914978,39.425432],[23.0920057,39.4256883],[23.0926233,39.4264409],[23.0928059,39.4266947],[23.092984,39.4272997],[23.0932365,39.427536],[23.0938754,39.428442],[23.0941411,39.4285612],[23.0950458,39.4286764],[23.0957617,39.4290243],[23.0972319,39.4294412],[23.0974972,39.4295875],[23.0978285,39.4300225],[23.0984302,39.431203],[23.0987943,39.4318006],[23.0985668,39.4323214],[23.098588,39.4324837],[23.0987144,39.4325929],[23.0991189,39.4327582],[23.0992998,39.433147],[23.0999437,39.4336746],[23.1000345,39.4338465],[23.0999515,39.433972],[23.0997176,39.4340873],[23.0995397,39.4343743],[23.0996484,39.4358528],[23.099075,39.4361728],[23.0983423,39.4362212],[23.0982705,39.4363828],[23.0983716,39.4366539],[23.0991246,39.4368309],[23.099743,39.4366285],[23.100381,39.4367145],[23.100711,39.4372577],[23.1013131,39.4374245],[23.1014972,39.4375701],[23.1015292,39.4377866],[23.1012807,39.4381361],[23.1012793,39.4382442],[23.1020961,39.4386335],[23.1023813,39.4390501],[23.1030935,39.4396864],[23.1031433,39.4403355],[23.1033306,39.4407694],[23.1041291,39.4410279],[23.104771,39.4417176]]},{"id":17242,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03bf\u03c1\u03c4\u03b1\u03c1\u03b9\u03ac-\u0386\u03bb\u03bb\u03b7 \u039c\u03b5\u03c1\u03b9\u03ac","description_GR":"\u03a0\u03bf\u03c1\u03c4\u03b1\u03c1\u03b9\u03ac-\u039a\u03b1\u03c4\u03b7\u03c7\u03ce\u03c1\u03b9-\u0386\u03bb\u03bb\u03b7 \u039c\u03b5\u03c1\u03b9\u03ac","path":"THESSALIA\/Thessaly_Pelion_Portaria_AlliMeria","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":738,"name_EN":"Pelion Mt: Portaria-Alli Meria","description_EN":" Portaria-Katichori-Alli Meria","ascent_time":80,"descent_time":90,"marker":"Red_dots","level":12,"ascent":60,"descent":515,"maxelev":664,"minelev":167,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.98378 39.37093,23.00277 39.39061)","views":32,"millestones":"0,22.9978050,39.3907339#1,23.0002972,39.3866427#2,22.9969036,39.3803580#3,22.9906528,39.3753453#0.7,22.9847218,39.3707704","x":22.9971466,"y":39.3816457,"coor":[[22.997805,39.3907339],[22.9983866,39.3906668],[22.9986799,39.3904531],[22.9993784,39.3903329],[22.9993329,39.3899361],[22.9997672,39.3896875],[22.9994632,39.389347],[22.9995532,39.3890685],[22.9996938,39.3889796],[22.9997431,39.3887818],[22.9998292,39.3885167],[23.0002586,39.3885384],[23.0008373,39.3886695],[23.0021256,39.3883787],[23.0021398,39.3881986],[23.0017606,39.3879161],[23.0017046,39.3877714],[23.0019051,39.3875569],[23.0022812,39.387497],[23.0025296,39.3875037],[23.0024609,39.3874355],[23.0021906,39.3874062],[23.0019251,39.3873723],[23.0015466,39.3874547],[23.0013187,39.3874843],[23.0011697,39.3874199],[23.0009063,39.3873411],[23.0007256,39.3872134],[23.0005393,39.3870991],[23.000493,39.3869366],[23.0003494,39.3867281],[23.0002884,39.3866284],[23.0002481,39.3864974],[23.0003084,39.3864439],[23.0002637,39.3863219],[23.0002262,39.386254],[23.0001422,39.3861136],[23.000112,39.3859647],[23.0001322,39.3858522],[23.0001793,39.3858031],[23.0000358,39.3856892],[23.0000024,39.3856664],[22.9999039,39.385652],[22.9998108,39.3856647],[22.9997403,39.3856506],[22.9996174,39.3856405],[22.9995879,39.3855727],[22.9995517,39.3855138],[22.9994267,39.3854001],[22.9992764,39.3852051],[22.9991665,39.3851726],[22.9992039,39.3850693],[22.9992034,39.3846999],[22.9991489,39.3844471],[22.9992139,39.3843666],[22.999176,39.3841771],[22.9988767,39.3839988],[22.9985431,39.3837797],[22.998323,39.3837417],[22.9981839,39.3836504],[22.9979749,39.3836486],[22.9975295,39.3833609],[22.9974717,39.3833424],[22.9972999,39.3832779],[22.9971881,39.3832048],[22.9972483,39.3830522],[22.9968685,39.3827425],[22.9963338,39.3825307],[22.9968735,39.3821389],[22.9968714,39.3819812],[22.9969886,39.3819101],[22.9970158,39.3817076],[22.997273,39.3817369],[22.9971466,39.3816457],[22.9973589,39.3816655],[22.9974658,39.3815763],[22.9972952,39.3813226],[22.9969168,39.3809949],[22.996978,39.3807702],[22.9968745,39.3803728],[22.9969798,39.3803197],[22.9969833,39.3802476],[22.9964649,39.3797881],[22.9961208,39.3794968],[22.9959851,39.3792434],[22.9950632,39.3787579],[22.9947562,39.3783047],[22.9943409,39.3781209],[22.9940314,39.3778479],[22.9937778,39.3777196],[22.9937677,39.3776114],[22.9938505,39.3775039],[22.99373,39.3774083],[22.9938688,39.3774455],[22.9935475,39.3771815],[22.9932586,39.3770889],[22.9932831,39.376999],[22.993459,39.3768743],[22.9931116,39.3768173],[22.9928699,39.376671],[22.9926181,39.3764165],[22.9926913,39.3761739],[22.9922995,39.3759633],[22.9924403,39.3757888],[22.9919585,39.3756359],[22.991534,39.3757629],[22.9913555,39.3760632],[22.9911917,39.3760753],[22.9907184,39.375891],[22.9905479,39.3756372],[22.9906565,39.3753498],[22.9905036,39.3751638],[22.9903074,39.375081],[22.9903433,39.3750092],[22.9905068,39.3749385],[22.9904398,39.3747578],[22.9900802,39.3747366],[22.9897339,39.3745985],[22.9893214,39.3742164],[22.9890816,39.3740927],[22.9891175,39.3740209],[22.989257,39.3740086],[22.9890308,39.3735877],[22.988893,39.3734874],[22.9885022,39.3728893],[22.9882953,39.3727433],[22.9880758,39.3726693],[22.9879732,39.372718],[22.9876994,39.3727111],[22.9875736,39.3725749],[22.9876105,39.372431],[22.9877279,39.3723419],[22.9877055,39.3722877],[22.9872744,39.372392],[22.987103,39.372359],[22.986332,39.3718838],[22.9862158,39.3718918],[22.9860593,39.3720255],[22.9856342,39.3717245],[22.9852871,39.3716404],[22.9847341,39.3713472],[22.984503,39.3712731],[22.9841853,39.3712658],[22.9840632,39.3711837],[22.9840589,39.3710755],[22.9847218,39.3707704]]},{"id":17243,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03bb\u03bb\u03b7 \u039c\u03b5\u03c1\u03b9\u03ac-\u0386\u03bd\u03b1\u03b2\u03c1\u03bf\u03c2","description_GR":"\u0386\u03bb\u03bb\u03b7 \u039c\u03b5\u03c1\u03b9\u03ac-\u0393\u03bf\u03c1\u03af\u03c4\u03c3\u03b1-\u0386\u03bd\u03b1\u03b2\u03c1\u03bf\u03c2","path":"THESSALIA\/Thessaly_Pelion_AlliMeria_Anavros","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4093,"name_EN":"Pelion Mt: Alli Meria-Anavros","description_EN":"Alli Meria-Ghoritsa-Anavros","ascent_time":95,"descent_time":95,"marker":"Red_dots","level":9,"ascent":91,"descent":226,"maxelev":181,"minelev":34,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96612 39.35073,22.98622 39.3706)","views":30,"millestones":"0,22.9847343,39.3707615#1,22.9846156,39.3638708#2,22.9817270,39.3573306#3,22.9739853,39.3519967#4.1,22.9663619,39.3540206","x":22.9829682,"y":39.3588884,"coor":[[22.9847343,39.3707615],[22.9849212,39.3706505],[22.9852946,39.3705186],[22.9856212,39.3702872],[22.9856452,39.3702559],[22.9854025,39.3701817],[22.9846443,39.3696344],[22.9844837,39.3695474],[22.9846741,39.3694049],[22.9846929,39.369333],[22.9846462,39.3693506],[22.9843504,39.3689336],[22.9843454,39.3688029],[22.9845002,39.3685339],[22.9844478,39.368173],[22.9845786,39.3679579],[22.9843734,39.3676498],[22.9840989,39.3673681],[22.9843231,39.3671177],[22.9843738,39.3669199],[22.9842095,39.3668689],[22.9839628,39.366646],[22.9838287,39.3662845],[22.9838891,39.3661228],[22.9838582,39.3658522],[22.9832997,39.3651445],[22.9832012,39.3647292],[22.9833204,39.364514],[22.9842309,39.3641615],[22.9844503,39.3639652],[22.9847898,39.3637699],[22.9848401,39.3635],[22.9848967,39.3633744],[22.9854568,39.3633207],[22.9856214,39.363178],[22.9860512,39.3623528],[22.9859445,39.3617031],[22.9855723,39.3617809],[22.9852363,39.3617419],[22.9850981,39.3616687],[22.9849285,39.3613518],[22.9850648,39.3607583],[22.9850383,39.3606815],[22.984963,39.3605997],[22.9841674,39.3602324],[22.983773,39.3602199],[22.983704,39.3601743],[22.9835372,39.3596682],[22.9831489,39.3592323],[22.9829682,39.3588884],[22.9829489,39.3586179],[22.982848,39.3583737],[22.9825478,39.358263],[22.9822154,39.3579717],[22.9820512,39.3578171],[22.9814491,39.3569198],[22.9809094,39.3565186],[22.9805362,39.3564433],[22.979872,39.3558247],[22.9797008,39.3556746],[22.9794595,39.3555103],[22.9789138,39.3555235],[22.9782768,39.3554278],[22.9782082,39.3553551],[22.9780438,39.3554888],[22.9778151,39.3552525],[22.9776503,39.3554133],[22.9775258,39.3551959],[22.9771194,39.3552599],[22.9770286,39.355115],[22.9767174,39.3549681],[22.9765392,39.3548539],[22.9757363,39.3541981],[22.9756085,39.3539086],[22.9754168,39.3535285],[22.9749833,39.3530111],[22.9746912,39.3527247],[22.9745532,39.3526333],[22.9742538,39.3522027],[22.9731866,39.3513733],[22.9721243,39.3510035],[22.9714803,39.3506014],[22.9702822,39.350789],[22.9695439,39.3511519],[22.9692154,39.3511941],[22.9687586,39.3514783],[22.9686402,39.3516395],[22.9686534,39.3523154],[22.9684764,39.353305],[22.968496,39.3535484],[22.9684111,39.3538],[22.9682346,39.3539606],[22.9683267,39.3540155],[22.9685474,39.3539994],[22.9685928,39.3540719],[22.9679041,39.3543361],[22.9672646,39.3544205],[22.9668711,39.354345],[22.9663619,39.3540206]]},{"id":17244,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9-\u0391\u03b3\u03af\u03b1 \u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae \u03bc\u03ad\u03c3\u03c9 \u03c1\u03ac\u03c7\u03b7\u03c2","description_GR":"\u03a3\u03c4\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9","path":"THESSALIA\/Thessaly_Pelion_Trikeri_AgKyriaki2","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":3453,"name_EN":"Pelion Mt: Trikeri-Agia Kyriaki via the ridge","description_EN":"Around Trikeri scenic area","ascent_time":95,"descent_time":100,"marker":"Red_dots","level":9,"ascent":48,"descent":317,"maxelev":281,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06837 39.08879,23.08299 39.10101)","views":4,"millestones":"0,23.0764398,39.1010693#1,23.0824231,39.0946553#2,23.0766977,39.0906277#3,23.0712206,39.0908003#3.5,23.0684835,39.0927656","x":23.0782561,"y":39.0912438,"coor":[[23.0764398,39.1010693],[23.0766124,39.1006922],[23.0767105,39.1002605],[23.0767271,39.100157],[23.0771075,39.1002501],[23.0773811,39.1001622],[23.077922,39.0997519],[23.0786309,39.0990682],[23.0786391,39.0989917],[23.0786441,39.0989422],[23.0788877,39.09889],[23.0789759,39.0988277],[23.0794741,39.0987595],[23.0799521,39.0984569],[23.080013,39.0983583],[23.0803509,39.0981627],[23.0805059,39.0978035],[23.0806581,39.0976605],[23.0809021,39.0975723],[23.0810902,39.0973395],[23.0812107,39.096962],[23.0813624,39.0968551],[23.0811159,39.0962494],[23.0812359,39.0959079],[23.0820731,39.0955541],[23.082227,39.095276],[23.0822808,39.0950871],[23.0822024,39.0948883],[23.0823671,39.0946733],[23.0826182,39.0945942],[23.0827401,39.094086],[23.0827569,39.0936807],[23.082936,39.0932451],[23.0823775,39.092646],[23.0818711,39.0924617],[23.0820469,39.0922829],[23.0819098,39.0921557],[23.0817138,39.0921091],[23.0815777,39.0919008],[23.0815682,39.0917475],[23.0812811,39.091592],[23.0811337,39.0913656],[23.0808803,39.0912915],[23.0805038,39.0909011],[23.0801366,39.0906819],[23.0798224,39.0908417],[23.0795366,39.0905871],[23.0794308,39.0907214],[23.0794287,39.0908836],[23.0795655,39.0910289],[23.0792286,39.0911523],[23.0785574,39.0911921],[23.078406,39.091281],[23.0782561,39.0912438],[23.0779428,39.0913314],[23.0773217,39.0910742],[23.0772311,39.0909293],[23.0770938,39.0908201],[23.0769895,39.0908373],[23.0768303,39.0906288],[23.0765413,39.0906265],[23.0763573,39.0905529],[23.0762294,39.090606],[23.0758481,39.0905849],[23.0755831,39.0905108],[23.0753382,39.090671],[23.0748173,39.0907119],[23.0745072,39.0905563],[23.0741495,39.0904994],[23.0739326,39.0902814],[23.0735641,39.0901703],[23.0729971,39.0902019],[23.0728487,39.0900565],[23.0728849,39.0899397],[23.0728041,39.08993],[23.0727935,39.0898578],[23.0724704,39.0898012],[23.0720771,39.0898161],[23.0719852,39.0897703],[23.0720808,39.0895909],[23.0718729,39.0895712],[23.0720268,39.0893021],[23.0719701,39.0892115],[23.0720865,39.0891584],[23.0720315,39.0889417],[23.0722528,39.0888173],[23.0721845,39.0887356],[23.0719237,39.088702],[23.0712525,39.0890481],[23.0705539,39.089421],[23.0703843,39.0894557],[23.0703021,39.0895542],[23.0702147,39.0900401],[23.0702704,39.0902027],[23.0704864,39.0903756],[23.0714044,39.0909146],[23.0714789,39.0910458],[23.0715379,39.0911499],[23.0714055,39.0915454],[23.0711936,39.091832],[23.0709344,39.0920868],[23.0706203,39.0922284],[23.0702031,39.0923062],[23.0695746,39.0926166],[23.0692236,39.0927625],[23.0686202,39.0929198],[23.0684835,39.0927656]]},{"id":17245,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c1\u03ac\u03b4\u03b1-\u039c\u03bf\u03cd\u03c1\u03b5\u03c3\u03b9","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Tsagarada_Mouresi","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":4393,"name_EN":"Pelion Mt: Tsagarada-Mouresi","description_EN":"","ascent_time":110,"descent_time":110,"marker":"Red_dots","level":13,"ascent":250,"descent":295,"maxelev":477,"minelev":204,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.16101 39.38804,23.17514 39.40015)","views":18,"millestones":"0,23.1724674,39.3880209#1,23.1710990,39.3911770#2,23.1709745,39.3957362#3,23.1676758,39.3969897#4,23.1632517,39.3996345#4.4,23.1611356,39.3989732","x":23.1673683,"y":39.3961526,"coor":[[23.1724674,39.3880209],[23.1731023,39.3883453],[23.1737746,39.3886294],[23.1738426,39.3887741],[23.1748086,39.3893846],[23.175015,39.3896024],[23.1751154,39.3898644],[23.174997,39.3900528],[23.1747511,39.3902312],[23.1744479,39.3903372],[23.1742248,39.3905519],[23.1734809,39.3907944],[23.1729466,39.390714],[23.1723334,39.3905204],[23.1718171,39.3899941],[23.1712224,39.3902061],[23.1709556,39.3901772],[23.1705862,39.3899944],[23.1702957,39.3900103],[23.1700389,39.3901256],[23.1699786,39.3903144],[23.1706042,39.390837],[23.1717043,39.3915837],[23.1721729,39.3922178],[23.1727009,39.3927441],[23.1731219,39.393477],[23.1735132,39.3937771],[23.1742755,39.3941249],[23.1748607,39.3943228],[23.1749285,39.3944854],[23.1746299,39.3951861],[23.1743825,39.3954908],[23.1740142,39.3956999],[23.1737211,39.3959321],[23.1737514,39.396135],[23.1734402,39.3961193],[23.1731955,39.3961896],[23.1725796,39.3962213],[23.1721544,39.3958398],[23.1714818,39.395763],[23.171144,39.3958507],[23.1710281,39.3958318],[23.1708688,39.3955514],[23.1706728,39.3954328],[23.1704871,39.3954225],[23.1702783,39.3955877],[23.1700116,39.3955498],[23.1699206,39.3953869],[23.1696548,39.3952769],[23.1696886,39.3953672],[23.1694222,39.3953113],[23.1690615,39.3953718],[23.169407,39.3956085],[23.1694174,39.3957167],[23.1695804,39.3956818],[23.1695329,39.3957716],[23.169786,39.3959716],[23.1697488,39.3961696],[23.1693312,39.3961306],[23.169112,39.3960029],[23.1685648,39.3961251],[23.1679874,39.3958507],[23.167626,39.3959652],[23.1673683,39.3961526],[23.1670438,39.3960962],[23.1665757,39.3963992],[23.1662742,39.396361],[23.1661251,39.3961978],[23.1658101,39.3963216],[23.1658323,39.3964119],[23.1659944,39.3964491],[23.165912,39.3965386],[23.1663056,39.3966496],[23.1667421,39.3970492],[23.1672447,39.3967824],[23.1676397,39.3967673],[23.1677551,39.3968312],[23.1676151,39.3968842],[23.1676953,39.3969749],[23.167625,39.3970285],[23.1678433,39.3972282],[23.167842,39.3973364],[23.1682578,39.3975286],[23.1684416,39.3976921],[23.1683025,39.397673],[23.1683811,39.3978989],[23.1682962,39.3982046],[23.1682028,39.398249],[23.1680949,39.3984375],[23.1681399,39.3985639],[23.1683693,39.3987998],[23.1689358,39.3992364],[23.1690662,39.399377],[23.1687837,39.3993254],[23.1683413,39.3994214],[23.168122,39.3994874],[23.1680032,39.3996217],[23.1678159,39.3997465],[23.167649,39.4001057],[23.167403,39.4001941],[23.1673891,39.4001714],[23.1674602,39.4000548],[23.1673953,39.3998651],[23.1669572,39.3995917],[23.1668903,39.3993569],[23.1665792,39.3991474],[23.1664281,39.3991644],[23.1662667,39.3993344],[23.1652558,39.3993812],[23.1649984,39.3993569],[23.1644857,39.3994974],[23.1642182,39.3995315],[23.1638124,39.3994745],[23.1634465,39.3994809],[23.162954,39.3998738],[23.1619268,39.399916],[23.1616586,39.4000041],[23.161252,39.4000102],[23.161258,39.3999021],[23.1613983,39.3998311],[23.1613067,39.3997223],[23.1614359,39.3995971],[23.1612888,39.3992716],[23.1611273,39.3991803],[23.1611057,39.399045],[23.1610244,39.3990444],[23.1611356,39.3989732]]},{"id":17246,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c1\u03ac\u03b4\u03b1\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03c3\u03c5\u03bd\u03bf\u03b9\u03ba\u03af\u03b1 \u0391\u03b3. \u03a3\u03c4\u03b5\u03c6\u03ac\u03bd\u03bf\u03c5 \u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03bf\u03b9\u03ba\u03af\u03b1 \u03a4\u03b1\u03be\u03b9\u03b1\u03c1\u03c7\u03ce\u03bd","path":"THESSALIA\/Thessaly_Pelion_Tsagarada_crossing","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2103,"name_EN":"Pelion Mt: Tsagarada crossing","description_EN":"From Agios Stefanos to Taxiarches","ascent_time":40,"descent_time":35,"marker":"Red_dots","level":9,"ascent":130,"descent":94,"maxelev":513,"minelev":432,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.17249 39.37632,23.18175 39.38834)","views":20,"millestones":"0,23.1724934,39.3880076#1,23.1791618,39.3833069#2.1,23.1786939,39.3765091","x":23.1793197,"y":39.3830822,"coor":[[23.1724934,39.3880076],[23.1730983,39.3883453],[23.1730698,39.3881469],[23.1729089,39.3880016],[23.1729216,39.3879115],[23.1734327,39.3878972],[23.1739538,39.3877747],[23.1741218,39.3876768],[23.1742456,39.3874884],[23.1742267,39.3871189],[23.1745185,39.3869948],[23.1746141,39.3868243],[23.1746055,39.3865719],[23.1751937,39.3859273],[23.1753691,39.3855997],[23.1755475,39.3852405],[23.1758453,39.38513],[23.1760418,39.3852035],[23.1768558,39.3851011],[23.1771109,39.38513],[23.1774975,39.3849975],[23.177501,39.3848534],[23.1773666,39.384429],[23.1778456,39.38418],[23.1781233,39.3842631],[23.1784633,39.3841123],[23.1787444,39.3838981],[23.1788409,39.3835924],[23.1790868,39.3834139],[23.1793197,39.3830822],[23.1794013,39.3830557],[23.1794375,39.3829343],[23.1794982,39.3828356],[23.1793153,39.3825911],[23.1793064,39.3823567],[23.1791588,39.3820673],[23.1799416,39.3815953],[23.1800845,39.3812899],[23.1802599,39.3811831],[23.1808084,39.3809436],[23.181099,39.3809096],[23.1815858,39.3809851],[23.1816918,39.3808597],[23.1814298,39.3805831],[23.181321,39.3799516],[23.1811958,39.3797435],[23.181198,39.3795543],[23.1814704,39.3791552],[23.181508,39.3789212],[23.181417,39.3787584],[23.1809573,39.3783497],[23.1808117,39.3778981],[23.1805702,39.3776982],[23.1801187,39.3775869],[23.1796628,39.3768628],[23.1794103,39.3766087],[23.1792693,39.3763194],[23.1791538,39.3763051],[23.1786939,39.3765091]]},{"id":17247,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c1\u03ac\u03b4\u03b1-\u039d\u03c4\u03b1\u03bc\u03bf\u03cd\u03c7\u03b1\u03c1\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Tsagarada_Damouchari","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3186,"name_EN":"Pelion Mt: Tsagarada-Damouchari","description_EN":"","ascent_time":65,"descent_time":75,"marker":"Red_dots","level":13,"ascent":26,"descent":471,"maxelev":477,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.17229 39.38808,23.18356 39.40503)","views":38,"millestones":"0,23.1724934,39.3880076#1,23.1804280,39.3930319#2,23.1820227,39.4002734#3.2,23.1780681,39.4049283","x":23.1810507,"y":39.397804,"coor":[[23.1724934,39.3880076],[23.1730979,39.3883453],[23.1737797,39.3886295],[23.1738418,39.3887741],[23.17481,39.3893847],[23.175055,39.3894765],[23.1756416,39.3899492],[23.1762912,39.3900079],[23.1765456,39.3900998],[23.176749,39.3900832],[23.1768196,39.3901017],[23.177188,39.3903746],[23.178181,39.3908502],[23.1786472,39.3907093],[23.1790422,39.3908157],[23.1798022,39.3913617],[23.1798359,39.3914611],[23.1798006,39.3914969],[23.1796968,39.3914421],[23.1796374,39.3915498],[23.1797844,39.3918932],[23.1798992,39.3921869],[23.1801018,39.3922424],[23.1800407,39.392314],[23.1802348,39.3926037],[23.1802695,39.3928878],[23.1806832,39.3932601],[23.1808192,39.3935494],[23.1814879,39.3939641],[23.181718,39.3941459],[23.1816331,39.3941769],[23.1816169,39.3945732],[23.1814052,39.394797],[23.1811848,39.3947774],[23.1810276,39.3949115],[23.1814547,39.3951307],[23.1812856,39.3956882],[23.1805734,39.3960076],[23.1806281,39.3962963],[23.1808338,39.3965861],[23.180679,39.3969094],[23.1805386,39.3969985],[23.1805659,39.3972375],[23.1807942,39.3975815],[23.1810507,39.397804],[23.1811739,39.3980662],[23.1812044,39.3984448],[23.1815365,39.3988436],[23.1818707,39.3990622],[23.1818903,39.3993778],[23.1820619,39.3995952],[23.1820234,39.3997256],[23.1819788,39.3998785],[23.1820573,39.4001133],[23.181959,39.4005811],[23.1822634,39.400367],[23.1823752,39.4007372],[23.1825236,39.4009635],[23.1826173,39.4008921],[23.1827993,39.4012178],[23.1827964,39.4014701],[23.1829598,39.4013991],[23.18316,39.4011662],[23.1833066,39.4015367],[23.1832471,39.4016624],[23.1833986,39.4016184],[23.1833376,39.4018703],[23.1829991,39.4021067],[23.1818061,39.4028192],[23.1817941,39.4028551],[23.1819337,39.4028381],[23.1818865,39.4029008],[23.181956,39.4029193],[23.1816534,39.4029713],[23.1813888,39.4027532],[23.1812146,39.4027519],[23.1811557,39.4028236],[23.1813832,39.4032307],[23.1812864,39.4035634],[23.180895,39.4042635],[23.1806615,39.4043609],[23.1804814,39.4043732],[23.1804601,39.4044541],[23.1797734,39.4045754],[23.1790884,39.4050797],[23.1786541,39.404946],[23.1785046,39.4048188],[23.1780681,39.4049283]]},{"id":17249,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03b3\u03c1\u03b9\u03ac-\u0386\u03b3\u03b9\u03bf\u03c2 \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Agria_AgLavrentios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6890,"name_EN":"PelionMt: Agria-Agios Lavrentios","description_EN":"","ascent_time":170,"descent_time":145,"marker":"Red_dots","level":12,"ascent":554,"descent":12,"maxelev":545,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.01167 39.33781,23.06088 39.35983)","views":16,"millestones":"0,23.0119617,39.3389907#1,23.0212048,39.3377265#2,23.0310535,39.3396196#3,23.0395415,39.3407823#4,23.0465954,39.3432611#5,23.0505429,39.3485076#6,23.0573415,39.3547618#6.9,23.0595143,39.3602079","x":23.0447784,"y":39.3427066,"coor":[[23.0119617,39.3389907],[23.0123236,39.3388315],[23.0134057,39.3386245],[23.0134752,39.3387061],[23.0136513,39.3389014],[23.0135458,39.3389726],[23.0136371,39.3390815],[23.0136919,39.3393162],[23.0137084,39.3393794],[23.0141092,39.3395225],[23.0151027,39.3399183],[23.0151195,39.3398824],[23.0157238,39.3400497],[23.0163008,39.3402754],[23.0172888,39.3393286],[23.0175705,39.3390967],[23.0177923,39.3390085],[23.0182681,39.3389269],[23.0202036,39.3382584],[23.0216394,39.3374866],[23.0218946,39.3376464],[23.0220924,39.337612],[23.0226232,39.3378237],[23.0233995,39.3379023],[23.0238064,39.3378426],[23.0244277,39.3382263],[23.0251821,39.3382146],[23.0258195,39.338274],[23.0269703,39.3381214],[23.0272801,39.3383763],[23.0275579,39.338266],[23.0277223,39.3381232],[23.0281302,39.3380005],[23.0284316,39.338021],[23.0286509,39.3381039],[23.0290244,39.3386792],[23.0302172,39.3388514],[23.0307118,39.3391618],[23.0308701,39.3393839],[23.0310292,39.339633],[23.0316605,39.3392869],[23.0323019,39.3390579],[23.0328046,39.3389675],[23.0334804,39.3387659],[23.0339675,39.3387879],[23.0344687,39.3386209],[23.0348515,39.3386331],[23.0351047,39.3387793],[23.0352438,39.3387895],[23.0358252,39.3387042],[23.0360532,39.3385755],[23.0361917,39.3386307],[23.0368787,39.3384561],[23.0381211,39.3383943],[23.038781,39.3385079],[23.0393576,39.338765],[23.0395628,39.339037],[23.0397184,39.3395338],[23.0394755,39.3403248],[23.0395604,39.3409111],[23.039842,39.3415262],[23.0399456,39.3415901],[23.0402009,39.3415922],[23.0403563,39.3412601],[23.0404438,39.3413014],[23.040598,39.3410594],[23.04103,39.3408647],[23.0420143,39.3406656],[23.042789,39.3403611],[23.042973,39.3404887],[23.042994,39.3406511],[23.0432122,39.3408151],[23.0431996,39.3408871],[23.043493,39.3409886],[23.0438014,39.3413515],[23.0439985,39.3413667],[23.0446221,39.341588],[23.0445709,39.3417498],[23.0447784,39.3427066],[23.0448471,39.3427703],[23.0450241,39.3425555],[23.0449976,39.3427985],[23.0450975,39.3431327],[23.0455024,39.3432262],[23.0464326,39.3430896],[23.046626,39.3432939],[23.0468341,39.3433497],[23.0468415,39.3436561],[23.047082,39.3438924],[23.047659,39.3441314],[23.0480886,39.3441169],[23.0482955,39.3441005],[23.0485489,39.3442378],[23.0485619,39.3441388],[23.048667,39.3440856],[23.0487473,39.3441583],[23.0489563,39.344151],[23.0492007,39.3442566],[23.0492453,39.3442299],[23.0498912,39.344091],[23.0500788,39.3439484],[23.0501569,39.3441833],[23.0507162,39.3448727],[23.0506516,39.3453587],[23.0508889,39.3458292],[23.0504334,39.3460417],[23.0503735,39.3461854],[23.0501703,39.3465127],[23.050208,39.3471617],[23.0498678,39.3474293],[23.0498419,39.3476273],[23.0499449,39.3477362],[23.050373,39.3478298],[23.0504056,39.3479923],[23.0502837,39.3484238],[23.0505726,39.3485163],[23.0506387,39.3487781],[23.0509737,39.3490782],[23.0511106,39.3492505],[23.0510417,39.3500609],[23.0511881,39.3503865],[23.0514889,39.350461],[23.0518838,39.3504372],[23.0521985,39.3504983],[23.0523943,39.350608],[23.0522653,39.3508908],[23.0525765,39.3512132],[23.0527724,39.3513139],[23.0530159,39.3513339],[23.0532376,39.3518358],[23.053513,39.3520723],[23.0549837,39.3532782],[23.0562054,39.354072],[23.0570477,39.3544393],[23.0572876,39.3547295],[23.0578747,39.3550857],[23.0582787,39.3552512],[23.0589906,39.3558246],[23.0591189,39.3557806],[23.0593369,39.3559625],[23.0596293,39.3560685],[23.0599291,39.3562151],[23.0601791,39.3566136],[23.0605602,39.3567608],[23.0606283,39.3568695],[23.060428,39.3570932],[23.0602839,39.3574524],[23.0603845,39.3577416],[23.059543,39.3581763],[23.0594721,39.3582748],[23.0592878,39.3590302],[23.0593783,39.3592112],[23.0593952,39.3596798],[23.0592508,39.3599535],[23.0592936,39.3602242],[23.0595143,39.3602079]]},{"id":17250,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03b9\u03ad\u03c2-\u039d\u03b5\u03bf\u03c7\u03ce\u03c1\u03b9","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Milies_Neochori","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":11034,"name_EN":"Pelion Mt: Milies-Neochori","description_EN":"","ascent_time":260,"descent_time":245,"marker":"Red_dots","level":9,"ascent":564,"descent":499,"maxelev":453,"minelev":217,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.14977 39.30463,23.21991 39.32852)","views":24,"millestones":"0,23.1497742,39.3285184#1,23.1585613,39.3246607#2,23.1627100,39.3213645#3,23.1697886,39.3208818#4,23.1752700,39.3166760#5,23.1847252,39.3152906#6,23.1862922,39.3110342#7,23.1926450,39.3097186#8,23.1972342,39.3137936#9,23.2032518,39.3097701#10,23.2133638,39.3078731#11,23.2199074,39.3046357","x":23.1866178,"y":39.314234,"coor":[[23.1497742,39.3285184],[23.1498674,39.328483],[23.1499631,39.3282494],[23.1504411,39.3281493],[23.1509542,39.3279278],[23.1511549,39.3276409],[23.1514585,39.3274809],[23.1517802,39.3271724],[23.1521871,39.3271033],[23.152603,39.3272505],[23.1527559,39.3270804],[23.1528429,39.3269008],[23.1530178,39.326821],[23.1531826,39.3266239],[23.1539526,39.3262691],[23.1543153,39.3260195],[23.1544898,39.3259757],[23.1547678,39.3260137],[23.1550493,39.3257635],[23.1552901,39.3259995],[23.1554651,39.3259107],[23.1558245,39.3259313],[23.1562328,39.325745],[23.1564744,39.3255215],[23.1565471,39.3252697],[23.1567936,39.3250282],[23.1574704,39.324916],[23.1577492,39.324882],[23.1579133,39.324739],[23.1582624,39.3246514],[23.1584577,39.324815],[23.1586822,39.3244742],[23.1591027,39.3252071],[23.1594033,39.3252904],[23.1597173,39.3252296],[23.1604109,39.3254328],[23.1604939,39.3252893],[23.1607931,39.3254897],[23.1609516,39.3258152],[23.1612649,39.3258174],[23.161467,39.3254044],[23.1614039,39.3248633],[23.1616491,39.3247299],[23.1620321,39.3247147],[23.1621029,39.3246161],[23.1614707,39.3241249],[23.1610647,39.3231489],[23.1613715,39.3227186],[23.1614624,39.3219083],[23.1618818,39.3217581],[23.1623262,39.3214549],[23.1623544,39.3213425],[23.162644,39.3213806],[23.163249,39.3212318],[23.163599,39.3210631],[23.1643126,39.3205636],[23.1645106,39.320493],[23.1647075,39.3205214],[23.164972,39.3207216],[23.1650728,39.3210196],[23.1652932,39.3210212],[23.1654919,39.3208965],[23.1656805,39.3206455],[23.1662497,39.3205775],[23.1668451,39.3202664],[23.1668741,39.3197711],[23.1670003,39.3196503],[23.1670851,39.3193446],[23.1672285,39.3191158],[23.1674615,39.3190274],[23.1677054,39.3190021],[23.1680991,39.319068],[23.1682969,39.3190153],[23.1686243,39.3188014],[23.1687634,39.3188024],[23.1689481,39.3188848],[23.1691974,39.3193822],[23.1696333,39.3197998],[23.1696755,39.3201515],[23.1695901,39.3205113],[23.1697364,39.3208908],[23.169841,39.3208735],[23.1699428,39.3210905],[23.1701845,39.3212544],[23.1700473,39.3210822],[23.1700722,39.3209382],[23.1701893,39.320849],[23.1705036,39.3207611],[23.1708857,39.3208179],[23.17181,39.3211398],[23.1720778,39.3210516],[23.1722862,39.3210892],[23.1725304,39.3210368],[23.172727,39.3210923],[23.1731586,39.3208881],[23.1729833,39.3205084],[23.1731248,39.3203112],[23.173117,39.3199868],[23.1726937,39.318506],[23.1727769,39.3183354],[23.1734109,39.3176911],[23.1734716,39.3174573],[23.1737292,39.3172519],[23.173832,39.3168652],[23.1743786,39.3167519],[23.1752377,39.3166859],[23.1756103,39.3165714],[23.1759046,39.3164473],[23.1768935,39.316202],[23.1771391,39.3160326],[23.1773629,39.3157458],[23.1775274,39.3155307],[23.1778419,39.3154158],[23.1781309,39.315508],[23.1793511,39.3153183],[23.1795009,39.3154005],[23.1797442,39.3154292],[23.1798125,39.3155378],[23.1799979,39.3155572],[23.1801609,39.3155042],[23.1803544,39.315821],[23.1805965,39.3159488],[23.1806556,39.3158501],[23.1809815,39.3157623],[23.1814203,39.3159276],[23.1815267,39.3157571],[23.1817836,39.3156148],[23.1819253,39.3153995],[23.1822639,39.3152037],[23.1828776,39.3152981],[23.1834778,39.3155546],[23.1838945,39.3156386],[23.1843485,39.3154976],[23.1842454,39.3153888],[23.1845587,39.3153729],[23.1848854,39.315213],[23.18514,39.3146381],[23.1848064,39.3144015],[23.1848653,39.3143208],[23.1851099,39.3142324],[23.1857355,39.3142999],[23.1858996,39.3141569],[23.1860392,39.3141218],[23.1866178,39.314234],[23.1871864,39.3142199],[23.187292,39.3141125],[23.1872047,39.3136434],[23.1878214,39.3134765],[23.1877644,39.313386],[23.187026,39.3130474],[23.1867625,39.3127573],[23.1865546,39.3126837],[23.1865213,39.3125573],[23.1866629,39.3123421],[23.1864101,39.3121421],[23.1862285,39.3117984],[23.1858149,39.3114531],[23.1854454,39.3113063],[23.1849275,39.3109603],[23.1849981,39.3108707],[23.185149,39.3108627],[23.1862719,39.3110508],[23.1866232,39.3107649],[23.1868133,39.3103788],[23.1867813,39.3102885],[23.1871883,39.3102012],[23.1872362,39.3100754],[23.1871813,39.3098047],[23.1872517,39.3097331],[23.1874371,39.3097524],[23.1878399,39.3100255],[23.188002,39.3100447],[23.1882249,39.30983],[23.1883564,39.3094885],[23.1886153,39.3091659],[23.1888019,39.3090771],[23.1891271,39.3090433],[23.1893346,39.3091529],[23.1894949,39.3093342],[23.1900153,39.3104732],[23.1901076,39.3105189],[23.1904572,39.3103772],[23.1906657,39.3103966],[23.1909294,39.3106688],[23.1911104,39.3110665],[23.1911911,39.3111121],[23.1912728,39.3110676],[23.1913686,39.310807],[23.1914342,39.3101407],[23.1916225,39.3099077],[23.1919262,39.3097206],[23.1921237,39.3096949],[23.1925174,39.3097517],[23.192966,39.3096377],[23.1935804,39.309669],[23.1939966,39.30978],[23.1942147,39.3099797],[23.1943391,39.3102599],[23.1947885,39.3105153],[23.1951317,39.3109322],[23.1951514,39.3112387],[23.1942857,39.3118815],[23.194062,39.3121683],[23.1940956,39.3122766],[23.1942234,39.3122595],[23.1944226,39.3120806],[23.1947718,39.3119749],[23.1963276,39.3118415],[23.1966864,39.3119161],[23.1971464,39.3122617],[23.1974855,39.3130389],[23.1969342,39.3135757],[23.1969089,39.3137558],[23.197088,39.3139462],[23.1971649,39.3138116],[23.1978281,39.313636],[23.1984774,39.3136585],[23.1985596,39.3135689],[23.1985741,39.3133167],[23.1985231,39.3131136],[23.1990349,39.3129009],[23.199767,39.3127798],[23.1999073,39.3126816],[23.2000502,39.3123582],[23.2000286,39.3122139],[23.1993598,39.3118669],[23.2001478,39.3119669],[23.2007694,39.3123857],[23.2014295,39.3124803],[23.2014543,39.3123363],[23.2012833,39.3120739],[23.2012398,39.3118213],[23.2017089,39.3113649],[23.2017698,39.3111131],[23.2022826,39.3109003],[23.2024825,39.3106584],[23.2027977,39.3104803],[23.203047,39.3099775],[23.2036922,39.3093331],[23.2043811,39.3089323],[23.2047653,39.3088088],[23.205186,39.3085233],[23.2057217,39.3085],[23.2059764,39.3085377],[23.2060477,39.308385],[23.2065145,39.3081359],[23.2074112,39.3078177],[23.2082702,39.3077514],[23.2086783,39.307565],[23.2090025,39.3076122],[23.2096786,39.307761],[23.2101638,39.3079355],[23.2103609,39.3079368],[23.2107817,39.307809],[23.2113284,39.3076686],[23.2113984,39.307633],[23.2113737,39.3075788],[23.2120945,39.3074214],[23.2124891,39.3074061],[23.2133998,39.3078988],[23.2137354,39.3079732],[23.2142814,39.3079859],[23.2147519,39.3081783],[23.2150994,39.3082572],[23.2153843,39.3087097],[23.2156026,39.3088913],[23.2157878,39.3089286],[23.215997,39.308894],[23.2162423,39.3087335],[23.2162467,39.3086344],[23.2163324,39.3085854],[23.2164752,39.308262],[23.2168595,39.3081204],[23.2174628,39.3081064],[23.2177677,39.3078111],[23.2179537,39.3077673],[23.2180528,39.3074346],[23.2179534,39.3069834],[23.2180943,39.3068311],[23.2186224,39.3065013],[23.2188433,39.3064577],[23.2189836,39.3063505],[23.2188365,39.3060252],[23.2193194,39.3053616],[23.2196939,39.3050578],[23.2199074,39.3046357]]},{"id":17251,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0392\u03c5\u03b6\u03af\u03c4\u03c3\u03b1-\u03a0\u03b9\u03bd\u03b1\u03ba\u03ac\u03c4\u03b5\u03c2","description_GR":"\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u0392\u03c5\u03b6\u03af\u03c4\u03c3\u03b1 \u03c3\u03c4\u03b9\u03c2 \u03a0\u03b9\u03bd\u03b1\u03ba\u03ac\u03c4\u03b5\u03c2","path":"THESSALIA\/Thessaly_Pelion_Pinakates_Vyzitsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2213,"name_EN":"Pelion Mt: Vyzitsa-Pinakates","description_EN":"The old path from Vyzitsa to Pinakates","ascent_time":55,"descent_time":50,"marker":"Red_dots","level":11,"ascent":183,"descent":90,"maxelev":596,"minelev":488,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.11689 39.3332,23.13192 39.33665)","views":21,"millestones":"0,23.1318989,39.3332026#1,23.1246800,39.3344098#2.2,23.1176400,39.3366275","x":23.1230341,"y":39.3349698,"coor":[[23.1318989,39.3332026],[23.1319119,39.3337388],[23.1318587,39.3339051],[23.1316023,39.3339933],[23.1312815,39.3341396],[23.1311871,39.334265],[23.1305239,39.3344988],[23.1305906,39.3347336],[23.1304028,39.3349124],[23.1302513,39.3349654],[23.1299498,39.3349451],[23.1293782,39.3351931],[23.1291796,39.3352998],[23.1290367,39.335596],[23.1288452,39.3357162],[23.1283564,39.3358387],[23.1278939,39.3357091],[23.1277189,39.3357799],[23.1276357,39.3359415],[23.1274252,39.336075],[23.1269359,39.3362336],[23.1264488,39.3362119],[23.1260728,39.3360063],[23.1258515,39.3360767],[23.1257235,39.3361073],[23.1256664,39.3360348],[23.1255961,39.3360883],[23.1255269,39.3360518],[23.1255314,39.3356914],[23.1256747,39.3353681],[23.1256294,39.3352776],[23.1253297,39.3351132],[23.1251738,39.3345894],[23.1248396,39.3344067],[23.1244799,39.334413],[23.1243185,39.3343217],[23.1237445,39.3347589],[23.1234058,39.3349365],[23.1230341,39.3349698],[23.1225822,39.3349213],[23.1223061,39.3351085],[23.1222237,39.335207],[23.1219677,39.3352591],[23.1218885,39.3353891],[23.1217346,39.3353474],[23.1216179,39.3354006],[23.1215955,39.3353374],[23.1214211,39.3353631],[23.1211167,39.335577],[23.1211795,39.3351991],[23.1210987,39.3351624],[23.120982,39.3352156],[23.1211032,39.334802],[23.1207754,39.3349482],[23.1206616,39.3350645],[23.1207087,39.3348937],[23.120816,39.3346602],[23.1207141,39.3344612],[23.1205524,39.3344059],[23.1202619,39.3344398],[23.1193456,39.3353339],[23.1188463,39.3353662],[23.1185112,39.3352555],[23.1175139,39.3352119],[23.1173031,39.3353635],[23.1171908,39.3355248],[23.1171651,39.3357228],[23.1169351,39.3358472],[23.1168983,39.3360092],[23.1170205,39.3364426],[23.1173233,39.3363548],[23.1173219,39.3364629],[23.1172817,39.3366068],[23.1173391,39.3366523],[23.1175217,39.3366356],[23.11764,39.3366275]]},{"id":17253,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039a\u03bf\u03c1\u03cc\u03c0\u03b7-\u0391\u03c6\u03ad\u03c4\u03b5\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b1 \u03b3\u03bd\u03c9\u03c3\u03c4\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03bb\u03b1\u03b9\u03ce\u03bd\u03b5\u03c2","path":"THESSALIA\/Thessaly_Pelion_Koropi_Afetes","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":6318,"name_EN":"Pelion Mt: Koropi-Afetes","description_EN":"An unknown route in the olive groves","ascent_time":125,"descent_time":115,"marker":"Red_dots","level":11,"ascent":374,"descent":170,"maxelev":344,"minelev":8,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.14301 39.28274,23.18198 39.2946)","views":14,"millestones":"0,23.1430301,39.2933095#1,23.1528065,39.2943192#2,23.1618510,39.2928615#3,23.1680230,39.2907713#4,23.1745242,39.2898567#5,23.1802547,39.2892836#6,23.1816690,39.2840529#6.3,23.1808061,39.2831380","x":23.16804,"y":39.2909679,"coor":[[23.1430301,39.2933095],[23.1431885,39.2932836],[23.1455007,39.2929041],[23.1483654,39.2919069],[23.148998,39.2922134],[23.1492417,39.2921971],[23.1498353,39.2920213],[23.1506666,39.2923157],[23.1513103,39.2927889],[23.1514818,39.2929884],[23.1516057,39.2932957],[23.1522825,39.2939043],[23.1529244,39.2944046],[23.1539912,39.2944123],[23.1542573,39.2944593],[23.1548734,39.2943376],[23.1553794,39.2946927],[23.1555428,39.2946038],[23.1564423,39.2944481],[23.1567189,39.2944051],[23.1570917,39.2942636],[23.1575868,39.2939518],[23.1577514,39.2937638],[23.1580201,39.2936035],[23.1581026,39.2937033],[23.1582656,39.2936504],[23.1582789,39.2935063],[23.1584307,39.2934173],[23.1584452,39.2931741],[23.1585715,39.2932831],[23.1586786,39.2930496],[23.1590363,39.2932054],[23.1590468,39.2932956],[23.1592087,39.2933328],[23.1593141,39.2932435],[23.1597442,39.2931565],[23.1599474,39.2928876],[23.1601463,39.2927449],[23.1604525,39.2923506],[23.160569,39.2923064],[23.161249,39.2926537],[23.1618032,39.2928559],[23.1621158,39.2928942],[23.1629193,39.2935848],[23.1630233,39.2936216],[23.1631865,39.2935507],[23.1635057,39.2937062],[23.1635759,39.2936526],[23.1637475,39.2938521],[23.1639549,39.2939617],[23.1641056,39.2939628],[23.1641735,39.2941074],[23.1644848,39.2942538],[23.1646126,39.2942367],[23.1645335,39.294065],[23.1645927,39.2939573],[23.1650346,39.2938523],[23.1650705,39.2937624],[23.165209,39.2938175],[23.1652109,39.2936553],[23.165326,39.2937282],[23.1654079,39.2936657],[23.1656801,39.2938164],[23.1658579,39.2934933],[23.1657898,39.2933666],[23.1660459,39.2931026],[23.166313,39.2930685],[23.1664186,39.2929611],[23.1668253,39.292892],[23.1669232,39.2929197],[23.1675589,39.2926359],[23.1678871,39.2923409],[23.1680423,39.2920537],[23.1680792,39.2918737],[23.1679215,39.2917014],[23.168084,39.2916845],[23.1682455,39.2917578],[23.1682477,39.2915686],[23.1683523,39.2915513],[23.1682733,39.2913705],[23.168313,39.2912311],[23.16804,39.2909679],[23.1679758,39.2907872],[23.1680806,39.2907519],[23.1680584,39.2906616],[23.1682455,39.2905278],[23.1682485,39.2902755],[23.1681799,39.290194],[23.1682172,39.289987],[23.1682635,39.2900233],[23.1686069,39.2899717],[23.1690121,39.2900287],[23.1694132,39.2898784],[23.1696733,39.2894207],[23.1698421,39.2889668],[23.1699621,39.2888055],[23.1704386,39.2887188],[23.1701171,39.2884462],[23.1698898,39.2880571],[23.1698576,39.2878406],[23.1699855,39.2878055],[23.1702632,39.2878525],[23.1706204,39.2877064],[23.1707463,39.2878515],[23.1712431,39.2879992],[23.1716329,39.2883804],[23.172521,39.2887832],[23.1734362,39.2888528],[23.1740322,39.2894427],[23.1740772,39.2895601],[23.174212,39.2896872],[23.1744659,39.2897882],[23.1752295,39.2906766],[23.1755643,39.2908051],[23.1758544,39.2907802],[23.1761829,39.2904581],[23.1763607,39.290126],[23.1765933,39.2900735],[23.1769738,39.2902564],[23.1770783,39.2902392],[23.1774532,39.2899174],[23.1778141,39.2897938],[23.1788057,39.2902694],[23.1794435,39.2912651],[23.1798699,39.2914933],[23.1803643,39.2913526],[23.1809594,39.2910324],[23.1810653,39.290907],[23.1811179,39.2903668],[23.1810224,39.2902039],[23.180586,39.2898404],[23.1803008,39.2894329],[23.1799989,39.2884757],[23.1799643,39.2874662],[23.1801175,39.287251],[23.1802286,39.2866751],[23.1802547,39.2855895],[23.1809684,39.2860361],[23.181056,39.2864782],[23.1811248,39.2865418],[23.181164,39.2861636],[23.1810634,39.2858385],[23.1812845,39.2859933],[23.1814425,39.2863638],[23.1815806,39.2864549],[23.1817086,39.2864107],[23.1817003,39.2861313],[23.1818114,39.2858618],[23.1816537,39.2854642],[23.1816697,39.2850859],[23.181581,39.2847338],[23.1816305,39.2844639],[23.1815627,39.2841931],[23.1818806,39.2837718],[23.181953,39.2834344],[23.1819787,39.2832183],[23.1814776,39.2829715],[23.1813293,39.2829795],[23.1812639,39.2828754],[23.181154,39.2827305],[23.1809335,39.2827469],[23.1808812,39.2827511],[23.1808061,39.283138]]},{"id":17254,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03bb\u03bb\u03b7 \u039c\u03b5\u03c1\u03b9\u03ac-\u0391\u03b3\u03c1\u03b9\u03ac","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_AlliMeria_Agria","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":9709,"name_EN":"PelionMt: Alli Meria-Agria","description_EN":"","ascent_time":220,"descent_time":220,"marker":"Red_dots","level":13,"ascent":342,"descent":524,"maxelev":398,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.98568 39.33906,23.0205 39.37047)","views":17,"millestones":"0,22.9856796,39.3702607#1,22.9913800,39.3670069#2,22.9979883,39.3615170#3,23.0060728,39.3616155#4,23.0139500,39.3604376#5,23.0202466,39.3569145#6,23.0126028,39.3569542#7,23.0082240,39.3545190#8,23.0083189,39.3487316#9,23.0057266,39.3403957#9.7,23.0119624,39.3389907","x":23.0202531,"y":39.3569421,"coor":[[22.9856796,39.3702607],[22.9862174,39.3704771],[22.9863219,39.370478],[22.9863929,39.3703795],[22.9862174,39.3704771],[22.9863219,39.370478],[22.9863929,39.3703795],[22.9863414,39.3699286],[22.9868171,39.3699507],[22.9867671,39.3701936],[22.9870135,39.3700155],[22.9871768,39.3699629],[22.9876388,39.3701201],[22.988049,39.3702543],[22.9883593,39.3704732],[22.9887104,39.3702781],[22.9889374,39.3699061],[22.9888709,39.3696893],[22.9889083,39.3695094],[22.989354,39.3691889],[22.9894608,39.3690276],[22.9893982,39.3685405],[22.9894477,39.3683247],[22.9894806,39.368307],[22.9890135,39.3683254],[22.9893221,39.3679587],[22.9894898,39.3675997],[22.9898651,39.3673327],[22.990529,39.3671762],[22.990717,39.3670157],[22.9911937,39.3669657],[22.99139,39.3670395],[22.9913125,39.3667776],[22.9910709,39.3666223],[22.9912162,39.3662091],[22.9915181,39.3659504],[22.9916481,39.365938],[22.9916842,39.3658482],[22.9917787,39.3657409],[22.9921515,39.365645],[22.9924183,39.3655797],[22.9927578,39.3653844],[22.9931354,39.3650273],[22.9935814,39.3646888],[22.9940013,39.3645482],[22.9941322,39.3643241],[22.9942966,39.3641904],[22.9949368,39.3640697],[22.9956947,39.363833],[22.9957537,39.3637614],[22.9956862,39.3636167],[22.9957363,39.3633558],[22.9958365,39.3628431],[22.9956377,39.3621385],[22.9958833,39.3620055],[22.9962198,39.3620174],[22.9967798,39.361815],[22.9975687,39.3616146],[22.9979297,39.3615321],[22.9985939,39.3613576],[22.9990353,39.3613343],[22.9992667,39.3613814],[22.999597,39.3618257],[22.9999088,39.3619365],[23.0007607,39.3624304],[23.0010816,39.3627215],[23.0016757,39.3625734],[23.0022916,39.3625247],[23.0026863,39.362519],[23.0029057,39.362602],[23.0031265,39.3625859],[23.0030509,39.3621888],[23.0023276,39.3616239],[23.002324,39.3613941],[23.002905,39.3613495],[23.0036292,39.3614368],[23.0038959,39.3614571],[23.0047769,39.3615368],[23.0053171,39.3615053],[23.0060954,39.3616156],[23.0072132,39.3613729],[23.0075265,39.3613755],[23.0078265,39.3615042],[23.0089398,39.3623967],[23.009372,39.3622022],[23.0096665,39.3618983],[23.0098532,39.3618279],[23.0101057,39.3620282],[23.0102977,39.3624083],[23.0106908,39.3625198],[23.0110478,39.362721],[23.0115811,39.3627616],[23.0118318,39.3630971],[23.0119716,39.3630623],[23.0120544,39.3628693],[23.0121019,39.3627976],[23.0124522,39.3626474],[23.0125819,39.3625043],[23.0127651,39.3618571],[23.013129,39.3615719],[23.0134949,39.3611424],[23.0143493,39.3598071],[23.0143494,39.3596224],[23.0144362,39.3595601],[23.0146361,39.3593816],[23.0149217,39.3588794],[23.0150499,39.3588444],[23.015339,39.358919],[23.015641,39.3589035],[23.0162475,39.3586924],[23.0165143,39.3587036],[23.016641,39.3587768],[23.0170145,39.3594557],[23.0172657,39.3597462],[23.0173823,39.3597111],[23.0174578,39.3592973],[23.017563,39.3592441],[23.0184246,39.35931],[23.0188731,39.3593453],[23.0188865,39.3592192],[23.0185999,39.3589645],[23.0184992,39.3586934],[23.018479,39.3584769],[23.0185517,39.3582613],[23.0189861,39.3579045],[23.0199696,39.3573001],[23.0202531,39.3569421],[23.0201543,39.3565358],[23.0200519,39.3564673],[23.019445,39.3567055],[23.0193255,39.3569568],[23.0188821,39.3571243],[23.0183822,39.3571831],[23.0182827,39.3572409],[23.0181837,39.3575238],[23.0180177,39.3577747],[23.0177363,39.3579796],[23.017481,39.3579774],[23.0171199,39.3579113],[23.0167045,39.3577366],[23.016342,39.3571028],[23.0161795,39.3571014],[23.0160619,39.3572086],[23.015876,39.357225],[23.0158286,39.3572967],[23.0156795,39.3571693],[23.0155507,39.3572493],[23.0154665,39.3574558],[23.0154082,39.3574734],[23.0155673,39.357718],[23.0154396,39.3577169],[23.0148877,39.3573518],[23.0147058,39.35708],[23.0147328,39.3568099],[23.0145836,39.356687],[23.0145614,39.3566147],[23.0135369,39.3568403],[23.0131454,39.3567739],[23.0127732,39.3568248],[23.0124271,39.3570877],[23.0117333,39.3577306],[23.0116529,39.3576668],[23.0117037,39.3573609],[23.0112932,39.3576637],[23.0111653,39.3576807],[23.0112053,39.3573116],[23.0112724,39.357159],[23.0114028,39.3569619],[23.0110649,39.3569049],[23.0107036,39.35701],[23.0106767,39.3572711],[23.0107852,39.3574702],[23.0108171,39.3576777],[23.0106022,39.3580994],[23.0105098,39.3580671],[23.0104667,39.3578324],[23.0103516,39.3577684],[23.0099678,39.3578192],[23.0096714,39.3574382],[23.0094523,39.3573372],[23.0092706,39.3570564],[23.0090869,39.3569106],[23.0090436,39.356694],[23.0091604,39.3566409],[23.0091972,39.3564971],[23.0089955,39.3559908],[23.0090441,39.355838],[23.0087023,39.3553846],[23.0086625,39.3552446],[23.0087302,39.355128],[23.0085132,39.3548829],[23.0083522,39.3547734],[23.0081942,39.3544567],[23.0080093,39.354401],[23.0080808,39.3542665],[23.0078723,39.3539043],[23.0079204,39.3537876],[23.0076734,39.3534521],[23.0076791,39.3530557],[23.0078193,39.3529848],[23.0075715,39.352451],[23.0075847,39.352343],[23.0077363,39.3522903],[23.0076937,39.3520196],[23.0078567,39.3519849],[23.007948,39.3520938],[23.0082848,39.3520787],[23.0083012,39.3518175],[23.0082351,39.3515647],[23.0080865,39.3514012],[23.008168,39.3513839],[23.0082598,39.3514567],[23.0083532,39.3514215],[23.0082287,39.3511952],[23.0083215,39.351196],[23.0085272,39.351423],[23.0086216,39.3513157],[23.0086716,39.3510638],[23.0091862,39.3509645],[23.0093671,39.3507859],[23.0096931,39.3507166],[23.0100762,39.350472],[23.0099639,39.3502098],[23.009445,39.3499711],[23.0091235,39.3497251],[23.0090402,39.3496928],[23.0088724,39.3495067],[23.0088532,39.3492182],[23.0086106,39.3488106],[23.0085293,39.3488099],[23.0080906,39.3486485],[23.0074609,39.3479674],[23.0073178,39.3477499],[23.0071404,39.3475772],[23.0071179,39.3475229],[23.0070548,39.3474773],[23.0068089,39.3468085],[23.0063855,39.3463904],[23.0061653,39.345956],[23.0060874,39.345721],[23.005608,39.3451583],[23.0056535,39.3444018],[23.0057336,39.3442268],[23.0056999,39.3437399],[23.0056933,39.3434606],[23.005701,39.3417937],[23.0057213,39.3407666],[23.0057297,39.3399197],[23.0079065,39.3399969],[23.0093447,39.3400452],[23.0108754,39.3398059],[23.0113083,39.3395573],[23.0119624,39.3389907]]},{"id":17255,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1-\u0386\u03b3\u03b9\u03bf\u03c2 \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2","description_GR":"\u03a4\u03b1 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7 \u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf","path":"THESSALIA\/Thessaly_Pelion_Drakia_AgLavrentios","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":3732,"name_EN":"PelionMt: Drakia-Agios Lavrentios","description_EN":"The remnants of the old connection from Drakia to Agios Lavrentios","ascent_time":65,"descent_time":65,"marker":"Red_dots","level":13,"ascent":204,"descent":144,"maxelev":566,"minelev":493,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.04758 39.36021,23.0601 39.37757)","views":19,"millestones":"0,23.0475974,39.3760686#1,23.0551834,39.3768398#2,23.0597512,39.3723058#3,23.0568135,39.3651454#3.7,23.0595140,39.3602034","x":23.0592853,"y":39.37433,"coor":[[23.0475974,39.3760686],[23.0477244,39.3760471],[23.0479438,39.3761345],[23.0482811,39.3760877],[23.0486485,39.3761222],[23.0488687,39.3761511],[23.0493509,39.375691],[23.0496427,39.3756843],[23.0498145,39.3757533],[23.0500589,39.3757103],[23.0501958,39.3758015],[23.0503331,39.3757125],[23.0504981,39.3755291],[23.0510444,39.375484],[23.0512293,39.3755441],[23.0515039,39.3755779],[23.0520114,39.3757442],[23.0520967,39.37579],[23.052479,39.3762796],[23.0525915,39.3765464],[23.0525324,39.3767081],[23.0527239,39.3771376],[23.0530222,39.3774059],[23.0532323,39.377322],[23.0533483,39.3773274],[23.0537043,39.3776186],[23.0539261,39.3775258],[23.0539418,39.3772286],[23.0540833,39.3770676],[23.0539239,39.376832],[23.0544945,39.3766204],[23.0542596,39.3768257],[23.0542713,39.3768979],[23.0544691,39.3768635],[23.0548169,39.3769023],[23.0557712,39.3767344],[23.0560555,39.3764709],[23.056266,39.37636],[23.0564752,39.3763481],[23.0569267,39.3764419],[23.0571245,39.3764075],[23.0574679,39.3759057],[23.0576796,39.3757091],[23.0583804,39.3753949],[23.0588017,39.3751416],[23.0592319,39.3750099],[23.0592578,39.3748975],[23.0591772,39.3748472],[23.0590029,39.3748549],[23.0581471,39.3752309],[23.0581836,39.375105],[23.0587585,39.3746591],[23.0587857,39.3744431],[23.0592853,39.37433],[23.0596328,39.3743914],[23.0597377,39.3743562],[23.0595334,39.3740122],[23.0595017,39.3737776],[23.0592502,39.3734873],[23.0592294,39.3733069],[23.059279,39.373073],[23.0597273,39.372536],[23.0597553,39.3722614],[23.0599473,39.3717989],[23.059868,39.3716496],[23.0594883,39.3713942],[23.0593317,39.370956],[23.0593458,39.3707714],[23.0595571,39.3705974],[23.059582,39.3704714],[23.0591888,39.3703556],[23.059074,39.3702601],[23.0591112,39.3700892],[23.0594387,39.3699026],[23.0594402,39.36979],[23.0591307,39.3694992],[23.0583462,39.3691369],[23.0578793,39.3684618],[23.0579204,39.3679891],[23.0580885,39.367576],[23.0583471,39.3673393],[23.0583836,39.3672135],[23.0583289,39.3669607],[23.05802,39.3667104],[23.0581883,39.3661937],[23.0578907,39.3658849],[23.0575704,39.3655354],[23.0571659,39.365397],[23.0566517,39.3650324],[23.0565555,39.3647748],[23.0566813,39.3640505],[23.0567755,39.3639476],[23.0573626,39.3634478],[23.0579795,39.3633267],[23.0585235,39.3630067],[23.058676,39.3628908],[23.0588932,39.3626267],[23.0590255,39.3622809],[23.0591645,39.3622189],[23.05935,39.3622385],[23.0595744,39.3621141],[23.0594854,39.3618251],[23.0597734,39.3613093],[23.0595808,39.3609563],[23.0596214,39.3605242],[23.059514,39.3602034]]},{"id":17256,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a4\u03b9\u03c3\u03c3\u03b1\u03af\u03bf\u03bd \u03cc\u03c1\u03bf\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03c4\u03c3\u03b1 \u03c3\u03c4\u03bf\u03bd \u0395\u03cb\u03b6\u03c9\u03bd\u03b1 (644\u03bc.)","path":"THESSALIA\/Thessaly_Pelion_Tiseo_ascent","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":5,"length":3274,"name_EN":"Pelion Mt: Ascent to Mt. Tisseon","description_EN":"Ascent from Panagitsa chapel to Evzonas peak","ascent_time":105,"descent_time":80,"marker":"Red_dots","level":9,"ascent":630,"descent":43,"maxelev":635,"minelev":36,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.13164 39.10374,23.15459 39.11062)","views":25,"millestones":"0,23.1316418,39.1103423#1,23.1330535,39.1045737#2,23.1436772,39.1042617#3.3,23.1545643,39.1060188","x":23.1412098,"y":39.1039118,"coor":[[23.1316418,39.1103423],[23.1318036,39.1103525],[23.1319635,39.1105159],[23.1319738,39.1106241],[23.1320899,39.1105889],[23.1324401,39.1103212],[23.1327771,39.1101975],[23.132906,39.1100543],[23.1333946,39.1098237],[23.1337569,39.10952],[23.134041,39.1089905],[23.1342398,39.1088117],[23.1344719,39.1087414],[23.134685,39.1083465],[23.1346989,39.1081483],[23.1348162,39.108014],[23.1346937,39.1076347],[23.1347422,39.1074458],[23.1349508,39.1074113],[23.1350004,39.1071413],[23.1352788,39.1070713],[23.135386,39.1068198],[23.1350965,39.1058985],[23.1337566,39.1057624],[23.133679,39.1054915],[23.1335295,39.1054183],[23.1332575,39.1049658],[23.1329263,39.1046209],[23.1331413,39.1045414],[23.1336147,39.104599],[23.1344249,39.1045509],[23.1355722,39.1043612],[23.1360343,39.1044007],[23.136616,39.1041166],[23.136732,39.1040859],[23.1367575,39.1038969],[23.1368393,39.1038254],[23.1371419,39.1036655],[23.1373854,39.1036132],[23.1374308,39.1036856],[23.1377664,39.1036701],[23.1380994,39.1038618],[23.1382964,39.1038362],[23.1384692,39.1038915],[23.1391069,39.1037521],[23.1395214,39.1039083],[23.1398679,39.1039469],[23.1405051,39.1038525],[23.1412098,39.1039118],[23.1413496,39.1038317],[23.142216,39.1039102],[23.1423194,39.103965],[23.1426293,39.1039808],[23.1427327,39.1040356],[23.1428721,39.1039916],[23.1433802,39.1040494],[23.1437586,39.1043225],[23.1440477,39.1043246],[23.1443935,39.1044173],[23.1444611,39.1045619],[23.1446229,39.1045721],[23.144691,39.1046808],[23.1448874,39.1047002],[23.144979,39.104773],[23.1450719,39.1047466],[23.1451059,39.1048009],[23.1452447,39.104802],[23.1456361,39.104949],[23.1459715,39.1049515],[23.1466164,39.1051815],[23.1470794,39.1051488],[23.147229,39.105204],[23.1473197,39.1053578],[23.1474022,39.1052323],[23.1475647,39.1051794],[23.147773,39.1051719],[23.1478764,39.1052267],[23.148051,39.1051379],[23.1481756,39.1053551],[23.1482572,39.1053016],[23.1483722,39.1053565],[23.148571,39.1051687],[23.1486278,39.1052592],[23.148732,39.105251],[23.1488688,39.1054142],[23.1490699,39.1060014],[23.1494463,39.1064366],[23.1502297,39.1066947],[23.1510174,39.1065923],[23.1518729,39.1066165],[23.1519429,39.106563],[23.152406,39.1065303],[23.1534963,39.1062679],[23.1540402,39.1062358],[23.1545234,39.1060546],[23.1545643,39.1060188]]},{"id":17258,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039d\u03b5\u03bf\u03c7\u03ce\u03c1\u03b9-\u03a3\u03c5\u03ba\u03ae","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Neochori_Syki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":6746,"name_EN":"Pelion Mt: Neochori-Syki","description_EN":"","ascent_time":150,"descent_time":155,"marker":"Red_dots","level":9,"ascent":236,"descent":399,"maxelev":546,"minelev":201,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.2199 39.28584,23.26144 39.30554)","views":8,"millestones":"0,23.2199074,39.3046357#1,23.2267293,39.3032041#2,23.2352980,39.3011332#3,23.2443651,39.3007727#4,23.2523721,39.2980109#5,23.2547983,39.2929839#6,23.2580069,39.2902840#6.7,23.2608211,39.2858405","x":23.2469159,"y":39.2999793,"coor":[[23.2199074,39.3046357],[23.2199339,39.3044331],[23.2200703,39.3041592],[23.220292,39.3042688],[23.2204202,39.3042156],[23.2206944,39.3042625],[23.2208942,39.3040206],[23.2209873,39.3039942],[23.2214379,39.3041504],[23.2216041,39.3043272],[23.2218584,39.304401],[23.2221004,39.3046414],[23.2219104,39.3049465],[23.2219078,39.3051807],[23.2219997,39.3052624],[23.2222898,39.3052463],[23.2223344,39.3054088],[23.2225647,39.3055545],[23.2232056,39.3052885],[23.2236855,39.3049853],[23.2243738,39.3046295],[23.224622,39.3042076],[23.2249996,39.304476],[23.2252655,39.3045498],[23.2254381,39.3046771],[23.225531,39.3046687],[23.225578,39.304606],[23.2255349,39.3043083],[23.2253181,39.3039915],[23.2253776,39.3038477],[23.2259009,39.3037251],[23.2262407,39.303412],[23.2264614,39.3033774],[23.2266835,39.3032167],[23.2271954,39.3030759],[23.2271498,39.3030035],[23.2265945,39.3028737],[23.2266633,39.3028471],[23.2268025,39.302848],[23.2268157,39.3027039],[23.2270266,39.3025071],[23.2274326,39.3025008],[23.2290286,39.3021509],[23.2290976,39.3022055],[23.2295888,39.3023574],[23.2308299,39.3023476],[23.2314985,39.3027124],[23.2317798,39.302444],[23.2321067,39.3022479],[23.2322949,39.3020058],[23.2328773,39.3017754],[23.2330506,39.3020649],[23.2333294,39.3020307],[23.2335505,39.30196],[23.2337623,39.3016821],[23.2341694,39.3015676],[23.2345199,39.3013357],[23.235334,39.3011248],[23.2357635,39.3010915],[23.2359949,39.3011381],[23.2363666,39.3010865],[23.2367247,39.301215],[23.2371082,39.3011454],[23.2376156,39.3011758],[23.2382395,39.3013961],[23.2384019,39.3013972],[23.2388219,39.3011656],[23.2390565,39.3009149],[23.2391844,39.3008887],[23.2395085,39.3009449],[23.2397161,39.3010543],[23.239819,39.3011902],[23.239813,39.3017488],[23.2398696,39.3018753],[23.2402493,39.3021481],[23.240497,39.3022083],[23.2410283,39.301973],[23.2413445,39.3016867],[23.2420096,39.3013126],[23.2422184,39.3013049],[23.24324,39.3015549],[23.2433213,39.301641],[23.2434395,39.3015336],[23.2443231,39.300796],[23.2447664,39.3005466],[23.245022,39.3005122],[23.2453556,39.300226],[23.245257,39.3000226],[23.2454767,39.3000781],[23.2455124,39.2999972],[23.2459326,39.2997477],[23.2463263,39.2998043],[23.246684,39.2999688],[23.2469159,39.2999793],[23.2470774,39.3000524],[23.2472676,39.2996211],[23.2475021,39.2993884],[23.248178,39.2990774],[23.2487818,39.2990092],[23.2492955,39.2992288],[23.2495016,39.2994824],[23.2496057,39.2995011],[23.2496214,39.2991227],[23.2497536,39.2986911],[23.2502673,39.29837],[23.250385,39.2982086],[23.2506988,39.2981385],[23.2512784,39.2981602],[23.2514169,39.2982242],[23.2515103,39.2981707],[23.2517304,39.2981902],[23.252204,39.2983644],[23.2523785,39.2983115],[23.2524845,39.298159],[23.2523359,39.2979598],[23.252235,39.2976348],[23.2520858,39.2974896],[23.2518376,39.2968393],[23.2516429,39.2966037],[23.2516599,39.2960993],[23.2524561,39.2953835],[23.2522726,39.2951841],[23.2522849,39.2951211],[23.2525634,39.2951049],[23.2526687,39.2950154],[23.2529237,39.2950261],[23.2530153,39.2951348],[23.2532015,39.2950729],[23.2534652,39.295363],[23.2535118,39.2953452],[23.2536304,39.2950937],[23.2542288,39.2944397],[23.254047,39.2940872],[23.2536668,39.2938505],[23.2538417,39.2937615],[23.2539033,39.2934195],[23.2540088,39.293312],[23.2541717,39.293259],[23.254389,39.2935487],[23.2546089,39.2935862],[23.2546328,39.2935232],[23.2547605,39.293506],[23.2552983,39.2936446],[23.2548518,39.2931011],[23.2547271,39.29283],[23.2544499,39.2927201],[23.2544045,39.2926297],[23.2544636,39.292522],[23.2548608,39.2922452],[23.2549358,39.2917321],[23.2551984,39.2910309],[23.2552803,39.2909593],[23.2553375,39.2910318],[23.2554095,39.2918973],[23.2555787,39.2923489],[23.2556939,39.2924217],[23.2557018,39.2921199],[23.2558944,39.2914543],[23.2563054,39.2909614],[23.2569339,39.2907491],[23.2570378,39.2907858],[23.257014,39.2908488],[23.2567229,39.290964],[23.2565824,39.2910893],[23.2564965,39.2915303],[23.2565657,39.2915668],[23.2568476,39.2912262],[23.257254,39.2911747],[23.2574639,39.2910679],[23.2575819,39.2908704],[23.2575738,39.290546],[23.2577029,39.2903936],[23.2579708,39.2902872],[23.2585163,39.2902366],[23.259096,39.2900015],[23.2598031,39.2900285],[23.2600273,39.2896515],[23.2604837,39.2892579],[23.2606257,39.2889885],[23.2606875,39.2886285],[23.2611231,39.2880005],[23.2612556,39.2875328],[23.2614192,39.2874077],[23.2611684,39.2870006],[23.2611172,39.2863515],[23.2608211,39.2858405]]},{"id":17260,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039a\u03b9\u03c3\u03c3\u03cc\u03c2-\u0386\u03b3. \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2-\u0386\u03b3. \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_AgDimitrios_AgIoanis","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4051,"name_EN":"Pelion Mt: Kissos-Agios Dimitrios-Agios Ioanis","description_EN":"","ascent_time":85,"descent_time":100,"marker":"Red_dots","level":9,"ascent":12,"descent":471,"maxelev":473,"minelev":4,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.13576 39.41096,23.16398 39.41777)","views":10,"millestones":"0,23.1358503,39.4107585#1,23.1420292,39.4150287#2,23.1506772,39.4129124#3,23.1597095,39.4134247#4.1,23.1603204,39.4179524","x":23.1528623,"y":39.4131633,"coor":[[23.1358503,39.4107585],[23.1359221,39.4113492],[23.1367161,39.4119588],[23.1369212,39.4122847],[23.1369149,39.4127893],[23.1371324,39.4129351],[23.1374085,39.4131534],[23.1374508,39.4134871],[23.1375897,39.4135331],[23.137683,39.4134978],[23.1376973,39.4132816],[23.1374577,39.4129285],[23.1373909,39.4126937],[23.1378541,39.413017],[23.1382086,39.4134701],[23.1387383,39.4138525],[23.139871,39.4143114],[23.1405054,39.4146765],[23.1409554,39.4148375],[23.1414651,39.4149494],[23.1413321,39.4147817],[23.1425134,39.4151959],[23.1428089,39.415518],[23.1429551,39.4159155],[23.1440835,39.4157796],[23.1443985,39.4156738],[23.1445839,39.4157112],[23.1454859,39.4159567],[23.1462135,39.4158268],[23.1471309,39.415374],[23.1479706,39.4151009],[23.1480356,39.4150112],[23.1485596,39.4149069],[23.1487371,39.4146379],[23.148448,39.4145277],[23.1484259,39.4144374],[23.1485782,39.4143304],[23.1490208,39.4142345],[23.1493663,39.4140884],[23.1495905,39.4138017],[23.1501643,39.4134184],[23.150143,39.4132651],[23.1502736,39.4131174],[23.1506361,39.4129218],[23.1510394,39.4128301],[23.1514056,39.4125985],[23.1519021,39.4128454],[23.1521657,39.4131357],[23.1521401,39.4133337],[23.152221,39.4133704],[23.1525586,39.4133052],[23.1527694,39.4131626],[23.1528623,39.4131633],[23.1533438,39.4127343],[23.1535069,39.4126904],[23.1537618,39.4127463],[23.1544479,39.4127739],[23.1545722,39.4130631],[23.1546763,39.4130999],[23.1555608,39.4129622],[23.1558058,39.4128738],[23.1559034,39.4128745],[23.1565425,39.4132486],[23.1564009,39.4134278],[23.156214,39.4135165],[23.1562484,39.4135528],[23.1564598,39.4135453],[23.1566557,39.4134927],[23.1576415,39.413626],[23.1584069,39.4135459],[23.1590449,39.4136226],[23.1591602,39.4136955],[23.1595769,39.4134237],[23.1597395,39.4134249],[23.1598662,39.4135159],[23.1600892,39.4133193],[23.1600899,39.4132653],[23.1604059,39.413245],[23.1607647,39.4133557],[23.1609858,39.4133213],[23.1613101,39.4134047],[23.1614729,39.4133879],[23.1614579,39.4132796],[23.1616095,39.4134384],[23.1617264,39.4133762],[23.1618416,39.4134581],[23.1618773,39.4133863],[23.1621569,39.4133162],[23.1625483,39.4134001],[23.1630028,39.4132772],[23.1632806,39.4133603],[23.1634649,39.4134923],[23.1634911,39.4134565],[23.1635777,39.413412],[23.1638911,39.4134323],[23.1639465,39.413649],[23.1636763,39.4139984],[23.1630189,39.4145704],[23.1628391,39.4150376],[23.1622842,39.4157815],[23.1617792,39.4162464],[23.1619643,39.4164009],[23.1620103,39.4164373],[23.1607317,39.4174733],[23.1603204,39.4179524]]},{"id":17261,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","description_GR":"\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03b5\u03cd\u03bf\u03c5\u03c3\u03b1 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae","path":"THESSALIA\/Thessaly_Pelion_AgDimitrios_AgIoanis2","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3520,"name_EN":"Pelion Mt: Agios Dimitrios-Agios Ioanis","description_EN":"","ascent_time":55,"descent_time":65,"marker":"Red_dots","level":12,"ascent":25,"descent":414,"maxelev":412,"minelev":8,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.14304 39.41267,23.16038 39.41898)","views":5,"millestones":"0,23.1438226,39.4165706#1,23.1463325,39.4159685#2,23.1539312,39.4131528#3,23.1583846,39.4163648#3.5,23.1603179,39.4179523","x":23.1541902,"y":39.4136145,"coor":[[23.1438226,39.4165706],[23.1440429,39.4166083],[23.1442149,39.4167898],[23.1441669,39.4169156],[23.1438859,39.4170937],[23.1438607,39.4172557],[23.1440498,39.4179419],[23.1444501,39.4184585],[23.144483,39.4186209],[23.1444355,39.4187016],[23.1442139,39.4187721],[23.1431448,39.4188003],[23.1430394,39.4188716],[23.1431194,39.4189803],[23.1444092,39.4189537],[23.1446426,39.4188653],[23.1449525,39.4182189],[23.1454127,39.4176366],[23.1456358,39.41744],[23.146162,39.4171555],[23.1465054,39.4166264],[23.1470798,39.4161981],[23.147023,39.4160896],[23.1465702,39.4160772],[23.1462467,39.4159307],[23.1461969,39.4158177],[23.1471316,39.415374],[23.1479665,39.4151053],[23.1480363,39.4150112],[23.1485603,39.4149069],[23.1487378,39.4146379],[23.1484487,39.4145277],[23.1484266,39.4144374],[23.1485789,39.4143304],[23.1490284,39.4142301],[23.149367,39.4140884],[23.1495912,39.4138017],[23.1501651,39.4134184],[23.1501437,39.4132651],[23.1502732,39.4131219],[23.1506007,39.4129351],[23.1510401,39.4128301],[23.1514062,39.4126075],[23.1519028,39.4128454],[23.1521664,39.4131357],[23.1521408,39.4133337],[23.1522216,39.4133749],[23.1525593,39.4133053],[23.1527702,39.4131626],[23.152861,39.4131543],[23.1533445,39.4127343],[23.1535077,39.4126904],[23.1537523,39.4127508],[23.1539174,39.4129052],[23.1539367,39.4132297],[23.1540701,39.4136361],[23.1541902,39.4136145],[23.1541568,39.4134971],[23.1542614,39.4134888],[23.154318,39.4136154],[23.154781,39.4137449],[23.1547798,39.413844],[23.1549322,39.4139127],[23.1549539,39.414039],[23.1547782,39.4141639],[23.1542309,39.414268],[23.1548118,39.4146507],[23.1550962,39.4147609],[23.1551986,39.4149418],[23.1551506,39.4150676],[23.1548333,39.4153717],[23.1547852,39.4155065],[23.1548287,39.41566],[23.1550777,39.4157249],[23.15528,39.4156227],[23.1553308,39.4158393],[23.1553877,39.4159298],[23.1555278,39.4158768],[23.1555968,39.4159314],[23.1559922,39.4158982],[23.1561649,39.4160256],[23.1562815,39.4159904],[23.1565245,39.4160642],[23.1565587,39.4161186],[23.156395,39.4162075],[23.1565923,39.416317],[23.1568065,39.416287],[23.1566025,39.4168262],[23.1566126,39.4169524],[23.1567173,39.4170253],[23.1569159,39.4170267],[23.1570805,39.4168657],[23.1574526,39.4168324],[23.1579857,39.4169353],[23.1581264,39.4168282],[23.1582199,39.4166036],[23.1581863,39.4164953],[23.1582571,39.4164057],[23.1587002,39.4162647],[23.1588058,39.4161754],[23.1591714,39.4163853],[23.1595632,39.4166494],[23.1599338,39.4167422],[23.159662,39.4171277],[23.1593129,39.4171792],[23.1591959,39.4172504],[23.1592352,39.4178454],[23.1592184,39.4180931],[23.1594493,39.4182119],[23.1596941,39.4181416],[23.1599185,39.4178368],[23.1602716,39.417934],[23.1603179,39.4179523]]},{"id":17262,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03bf\u03cd\u03c1\u03b5\u03c3\u03b9-\u039d\u03c4\u03b1\u03bc\u03bf\u03cd\u03c7\u03b1\u03c1\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Mouresi_Damouchari","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":2890,"name_EN":"Pelion Mt: Mouresi-Damouchari","description_EN":"","ascent_time":40,"descent_time":50,"marker":"Red_dots","level":13,"ascent":27,"descent":387,"maxelev":372,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.1599 39.40076,23.1805 39.40552)","views":11,"millestones":"0,23.1599607,39.4006181#1,23.1658718,39.4048742#2,23.1747914,39.4046586#2.9,23.1804608,39.4044541","x":23.1683429,"y":39.40558,"coor":[[23.1599607,39.4006181],[23.1601462,39.4007366],[23.1601896,39.4009892],[23.1606059,39.4009562],[23.1609874,39.4011031],[23.1610235,39.40127],[23.1609039,39.4015575],[23.1611598,39.4017441],[23.161678,39.4018965],[23.1622948,39.4017928],[23.1626712,39.4018811],[23.1626932,39.4019894],[23.1629018,39.4020224],[23.1641088,39.4020041],[23.1641431,39.402144],[23.1637695,39.4023035],[23.1637888,39.4023577],[23.1637757,39.4024837],[23.1640048,39.4027557],[23.16406,39.4029904],[23.1639426,39.4030976],[23.164251,39.4035324],[23.1642256,39.4037124],[23.1643532,39.4037313],[23.16442,39.403876],[23.1646622,39.4040219],[23.1648334,39.4042754],[23.1647047,39.4043556],[23.164946,39.4045736],[23.1645262,39.4047147],[23.164716,39.4048693],[23.1649474,39.404943],[23.1654599,39.4048205],[23.1659122,39.4048778],[23.1659926,39.4049505],[23.1661786,39.4049338],[23.1663853,39.4051335],[23.1667094,39.405226],[23.1669307,39.4051735],[23.1671974,39.4052114],[23.1674069,39.4051769],[23.1680426,39.4054337],[23.1683442,39.4054719],[23.1684016,39.4055264],[23.1683429,39.40558],[23.1687499,39.4055379],[23.1689026,39.4053948],[23.1690535,39.4054049],[23.1694613,39.4052907],[23.1704486,39.4048923],[23.1706361,39.4047494],[23.1706697,39.4048578],[23.1709255,39.4048281],[23.1712877,39.4046504],[23.17216,39.4045485],[23.1725925,39.4043173],[23.1726145,39.4044166],[23.1722842,39.4048468],[23.1723522,39.4049914],[23.1724453,39.4049741],[23.1726934,39.4046244],[23.1732067,39.4044298],[23.1740313,39.4044357],[23.1747725,39.4046121],[23.1748403,39.4047748],[23.174676,39.4049178],[23.1743042,39.4049332],[23.1739661,39.4050389],[23.1735712,39.4050361],[23.173581,39.4051894],[23.1736843,39.4052982],[23.1738114,39.4053532],[23.1740321,39.4053548],[23.1750542,39.4053485],[23.1753571,39.4052695],[23.1755565,39.4051088],[23.1755951,39.4047847],[23.1757356,39.4046956],[23.1762817,39.4046724],[23.1766888,39.4047203],[23.1773596,39.4049593],[23.1777194,39.4049799],[23.1780684,39.4049283],[23.1785053,39.4048188],[23.1786548,39.404946],[23.1790888,39.4050797],[23.1797741,39.4045754],[23.1804608,39.4044541]]},{"id":17263,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03bf\u03cd\u03c1\u03b5\u03c3\u03b9-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Mouresi_AgIoanis","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":3201,"name_EN":"Pelion Mt: Mouresi-Agios Ioanis","description_EN":"","ascent_time":55,"descent_time":65,"marker":"Red_dots","level":13,"ascent":27,"descent":443,"maxelev":423,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.1595 39.39901,23.16593 39.41795)","views":13,"millestones":"0,23.1611363,39.3989732#1,23.1640130,39.4027932#2,23.1652193,39.4097796#3,23.1625561,39.4154211#3.2,23.1602713,39.4179340","x":23.1641534,"y":39.4073611,"coor":[[23.1611363,39.3989732],[23.1610252,39.3990445],[23.1611064,39.399045],[23.161128,39.3991804],[23.1612895,39.3992716],[23.1614366,39.3995971],[23.1613074,39.3997223],[23.161399,39.3998311],[23.1612588,39.3999021],[23.1612528,39.4000102],[23.1610835,39.399991],[23.1605196,39.3999554],[23.15972,39.3998054],[23.1599096,39.4000681],[23.1602217,39.4001875],[23.1602888,39.4003141],[23.1599146,39.4005277],[23.15996,39.4006181],[23.1601455,39.4007366],[23.1601889,39.4009892],[23.1606052,39.4009562],[23.1609867,39.4011031],[23.1610228,39.40127],[23.1609032,39.4015575],[23.161159,39.4017441],[23.1616773,39.4018965],[23.1622941,39.4017928],[23.1626705,39.4018811],[23.1626924,39.4019894],[23.1629011,39.4020224],[23.1641081,39.4020041],[23.1641424,39.402144],[23.1637688,39.4023035],[23.1637881,39.4023577],[23.163775,39.4024837],[23.164004,39.4027557],[23.1640593,39.4029904],[23.1639419,39.4030976],[23.1642503,39.4035324],[23.1642249,39.4037124],[23.1643524,39.4037313],[23.1644189,39.403876],[23.1646611,39.4040219],[23.1648323,39.4042754],[23.1647036,39.4043556],[23.1649449,39.4045736],[23.1645251,39.4047147],[23.1643796,39.4050471],[23.1640632,39.4052791],[23.1638709,39.4058183],[23.1640537,39.4060719],[23.1640867,39.4062253],[23.1636779,39.4064206],[23.1639345,39.4065081],[23.1640546,39.4067882],[23.1640026,39.4072564],[23.1641534,39.4073611],[23.1642328,39.4075239],[23.1642872,39.4088038],[23.1645631,39.40904],[23.1646539,39.4092209],[23.1647086,39.4091942],[23.1646559,39.4090542],[23.1647028,39.4090185],[23.1650385,39.409111],[23.1651871,39.4093103],[23.1651964,39.4095086],[23.1651021,39.4096251],[23.1652279,39.4097882],[23.164912,39.4099751],[23.1649104,39.4101103],[23.1649649,39.4101061],[23.1646942,39.4104015],[23.1646683,39.4106266],[23.1645631,39.4106799],[23.1647137,39.410717],[23.1646549,39.4107797],[23.1647938,39.4108167],[23.1646391,39.4108517],[23.1646729,39.410942],[23.1648919,39.4110878],[23.1652278,39.4111622],[23.1651689,39.4112339],[23.1648086,39.4112493],[23.1648193,39.4113305],[23.1649825,39.4113722],[23.1649809,39.4114173],[23.165136,39.4114364],[23.1656092,39.4116921],[23.1657791,39.4116933],[23.1653135,39.4119513],[23.1652641,39.4122032],[23.1648835,39.4125519],[23.164685,39.4128523],[23.1648152,39.4128307],[23.1652646,39.4129466],[23.1649366,39.4131785],[23.1649578,39.4132327],[23.1645368,39.4134685],[23.1644442,39.4134408],[23.1643056,39.4133677],[23.1639436,39.4136489],[23.1636734,39.4139984],[23.163016,39.4145703],[23.1628362,39.4150376],[23.1622835,39.415786],[23.1617763,39.4162464],[23.1619614,39.4164009],[23.1620075,39.4164327],[23.1610812,39.4171469],[23.1603175,39.4179523],[23.1602713,39.417934]]},{"id":17264,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03bd\u03ae\u03bb\u03b9\u03bf-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Anilio_AgIoanis","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3827,"name_EN":"Pelion Mt: Anilio-Agios Ioanis","description_EN":"","ascent_time":80,"descent_time":90,"marker":"Red_dots","level":12,"ascent":34,"descent":395,"maxelev":380,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.13443 39.41795,23.16032 39.42614)","views":7,"millestones":"0,23.1345192,39.4186913#1,23.1410300,39.4253349#2,23.1486718,39.4232486#3,23.1558502,39.4232242#3.8,23.1603183,39.4179523","x":23.1480722,"y":39.4240805,"coor":[[23.1345192,39.4186913],[23.1346807,39.4188367],[23.1352584,39.4190933],[23.1356613,39.4193936],[23.1358422,39.4197914],[23.1359736,39.4204412],[23.1360887,39.4205321],[23.1363894,39.4205839],[23.1371538,39.4207698],[23.1374163,39.4211502],[23.1379368,39.4213343],[23.1380619,39.4215514],[23.1381544,39.4219756],[23.1385891,39.4225195],[23.1395561,39.4232475],[23.139895,39.4240249],[23.1397989,39.4242854],[23.1398588,39.4244616],[23.1402922,39.4249694],[23.1409266,39.4252264],[23.141546,39.4258797],[23.141604,39.4257945],[23.1417655,39.4258858],[23.1421257,39.4258299],[23.1425973,39.4258559],[23.1428536,39.4258037],[23.1431925,39.4258783],[23.1432158,39.4258695],[23.1437096,39.4261659],[23.1438955,39.4261673],[23.1440096,39.4262132],[23.1445632,39.4261047],[23.1449748,39.4260221],[23.1450704,39.4260408],[23.1455268,39.4257738],[23.1456695,39.4256262],[23.1457681,39.4251584],[23.1458919,39.4250737],[23.1460315,39.4250567],[23.1462852,39.4252118],[23.146344,39.4251581],[23.1462997,39.4249776],[23.1464173,39.4248613],[23.1468058,39.4250354],[23.1471079,39.4250376],[23.1472823,39.4250208],[23.1475982,39.4248429],[23.14779,39.4243578],[23.1480351,39.4242605],[23.1482672,39.4242802],[23.1480722,39.4240805],[23.1480731,39.4240084],[23.148248,39.4239557],[23.1488571,39.4235456],[23.1488584,39.4234375],[23.1486059,39.4231834],[23.1485963,39.4230211],[23.1488875,39.4229512],[23.1492128,39.4229536],[23.1495949,39.4227942],[23.1498424,39.4224986],[23.1499706,39.4224635],[23.1500726,39.4226805],[23.1502343,39.4227538],[23.1504912,39.4226475],[23.1512007,39.4225806],[23.1516877,39.4226563],[23.1523275,39.4225888],[23.152443,39.4226437],[23.1520358,39.422839],[23.1519764,39.4229467],[23.1524868,39.4230135],[23.1528204,39.4232862],[23.153023,39.4238283],[23.1531863,39.4240097],[23.1538222,39.4242667],[23.1540498,39.4246558],[23.1541778,39.4246387],[23.1543541,39.4244778],[23.1546567,39.4244259],[23.1549024,39.4242835],[23.15503,39.4243025],[23.1551124,39.424213],[23.1551348,39.4242852],[23.155182,39.4242225],[23.1552059,39.4239884],[23.1554307,39.4236476],[23.1558776,39.4232003],[23.1564046,39.4228528],[23.1566398,39.4226202],[23.157277,39.4217958],[23.1577213,39.4215648],[23.1582602,39.4213975],[23.1589584,39.4213034],[23.1592508,39.4211434],[23.1594544,39.4209331],[23.159601,39.4207539],[23.1596812,39.4198805],[23.1595514,39.4192038],[23.1595878,39.4190779],[23.1603183,39.4179523]]},{"id":17265,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03bd\u03ae\u03bb\u03b9\u03bf-\u03a7\u03bf\u03c1\u03b5\u03c5\u03c4\u03cc","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Anilio_Chorefto","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1242,"name_EN":"Pelion Mt: Anilio-Chorefto","description_EN":"","ascent_time":160,"descent_time":165,"marker":"Red_dots","level":12,"ascent":204,"descent":565,"maxelev":380,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.12103 39.41878,23.14635 39.45433)","views":16,"millestones":"0,23.1345126,39.4186913#1,23.1410418,39.4253477#2,23.1427126,39.4301405#3,23.1453749,39.4351141#4,23.1380345,39.4370034#5,23.1362120,39.4411263#6,23.1319415,39.4468155#7,23.1238936,39.4514608#1.2,23.1210296,39.4543345","x":23.142685,"y":39.4360654,"coor":[[23.1345126,39.4186913],[23.1346804,39.4188367],[23.135258,39.4190933],[23.1356609,39.4193936],[23.1358419,39.4197914],[23.1359733,39.4204412],[23.1360883,39.4205321],[23.1363886,39.4205839],[23.1371531,39.4207698],[23.1374156,39.4211502],[23.1379361,39.4213343],[23.1380612,39.4215514],[23.1381536,39.4219756],[23.1385884,39.4225195],[23.1395553,39.4232474],[23.1398602,39.4239615],[23.1398553,39.4244526],[23.1402939,39.4249784],[23.1409262,39.4252264],[23.1415456,39.4258797],[23.1416036,39.4257945],[23.1417652,39.4258858],[23.1421249,39.4258299],[23.1425962,39.4258559],[23.1428525,39.4258037],[23.1431907,39.4258783],[23.143214,39.4258695],[23.1437031,39.4261659],[23.1438924,39.4261763],[23.1440082,39.4262132],[23.1445557,39.4260911],[23.144207,39.4265796],[23.1433372,39.4274021],[23.1432043,39.4278156],[23.1428837,39.4283809],[23.1430733,39.4290311],[23.142858,39.4295296],[23.1431224,39.4297658],[23.1434812,39.4298766],[23.1438433,39.4301045],[23.1437268,39.4301307],[23.1434611,39.4300026],[23.1431359,39.4299912],[23.1423775,39.4302559],[23.1423299,39.4303456],[23.1427942,39.4303851],[23.1430925,39.4306937],[23.1439136,39.4310061],[23.1447637,39.4306429],[23.144834,39.431157],[23.1450153,39.4315368],[23.1453841,39.4317828],[23.1452065,39.4320518],[23.1454474,39.4323058],[23.1454641,39.4325718],[23.1456817,39.4328347],[23.146179,39.4330185],[23.1459787,39.4332513],[23.1457454,39.4333217],[23.1456862,39.4334114],[23.145729,39.433718],[23.1454464,39.4340223],[23.1455794,39.4342531],[23.1456952,39.4342809],[23.1459055,39.4341924],[23.1458666,39.4345165],[23.1456548,39.4347402],[23.1455382,39.4347663],[23.1453076,39.4346205],[23.1451916,39.4346106],[23.1453982,39.4348194],[23.1454989,39.4351355],[23.1446292,39.4349849],[23.1440286,39.4346922],[23.1437173,39.4346989],[23.1441227,39.43481],[23.1442487,39.4349551],[23.144284,39.4350995],[23.1444451,39.4352269],[23.1439653,39.4355026],[23.143617,39.4354821],[23.1433603,39.4355703],[23.1432189,39.4355467],[23.1432183,39.4356008],[23.1434149,39.4356743],[23.1435396,39.4359275],[23.1432011,39.4360512],[23.142989,39.4359054],[23.1428128,39.4360663],[23.142685,39.4360654],[23.1425825,39.4358934],[23.1422575,39.4359541],[23.1415849,39.435841],[23.1408937,39.4363045],[23.1405581,39.4362794],[23.1397578,39.4361564],[23.1395847,39.436065],[23.1393275,39.4361893],[23.1390843,39.4361244],[23.1387556,39.4363923],[23.138452,39.4365162],[23.138135,39.4367841],[23.1379477,39.4371837],[23.1383497,39.4375651],[23.13888,39.4379114],[23.1389135,39.4380198],[23.1386112,39.4380356],[23.1380698,39.4376531],[23.1375248,39.437559],[23.1369865,39.4378614],[23.1368903,39.438131],[23.1366556,39.4383094],[23.1364774,39.4386325],[23.1361489,39.4388823],[23.1361827,39.4389727],[23.1364727,39.4390109],[23.1366474,39.4389761],[23.1369516,39.4388072],[23.1369715,39.4390777],[23.137218,39.4388813],[23.1376729,39.4387405],[23.1377069,39.4388128],[23.1376231,39.4390104],[23.1376878,39.4392091],[23.1378376,39.4393138],[23.1378823,39.4394583],[23.1375863,39.4399067],[23.1370842,39.4401012],[23.1365743,39.4409264],[23.136293,39.4411225],[23.1359326,39.4411378],[23.135733,39.4412985],[23.1356509,39.4412709],[23.1355029,39.4414095],[23.1348194,39.4421793],[23.1345316,39.442898],[23.1342844,39.4431484],[23.1343288,39.4433199],[23.1339102,39.4433349],[23.1336328,39.4435986],[23.1335748,39.4437649],[23.1337582,39.4439735],[23.1333843,39.4441329],[23.133313,39.4442585],[23.133404,39.4444213],[23.1333546,39.4444795],[23.1327903,39.4445294],[23.1327109,39.4444657],[23.1321922,39.4451467],[23.1322277,39.445183],[23.1321553,39.4453987],[23.1322708,39.4454536],[23.1320346,39.4457582],[23.1320372,39.4458438],[23.1315301,39.4464347],[23.1316455,39.4464986],[23.1322295,39.4462687],[23.1321457,39.4464663],[23.1317231,39.4468056],[23.1318386,39.4468605],[23.132306,39.4466567],[23.1322463,39.4467824],[23.1319833,39.4469922],[23.1313612,39.447312],[23.1314631,39.447529],[23.1312792,39.4483025],[23.1310781,39.4485893],[23.1308938,39.4487141],[23.1293198,39.4495042],[23.1288177,39.4496897],[23.1267666,39.4501429],[23.1254596,39.4505655],[23.1244418,39.4510985],[23.122884,39.452141],[23.1222262,39.4526947],[23.1218487,39.4531423],[23.121599,39.453591],[23.1214596,39.4537025],[23.1210296,39.4543345]]},{"id":17266,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2-\u039d\u03c4\u03b1\u03bc\u03bf\u03cd\u03c7\u03b1\u03c1\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_AgIoanis_Damouchari","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":2701,"name_EN":"Pelion Mt: Agios Ioanis-Damouchari","description_EN":"","ascent_time":50,"descent_time":50,"marker":"Red_dots","level":13,"ascent":74,"descent":71,"maxelev":71,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.16032 39.40437,23.18048 39.41795)","views":26,"millestones":"0,23.1603183,39.4179523#1,23.1672155,39.4112397#2,23.1739316,39.4056706#2.7,23.1804835,39.4043732","x":23.1726678,"y":39.4071562,"coor":[[23.1603183,39.4179523],[23.1607295,39.4174733],[23.1620081,39.4164373],[23.1625847,39.4160044],[23.1656802,39.4144723],[23.165589,39.4143275],[23.1659667,39.4138256],[23.1665973,39.4125687],[23.1667681,39.4118851],[23.1668737,39.4116111],[23.1672974,39.4111455],[23.1674927,39.410354],[23.1684442,39.4091534],[23.1693498,39.4080201],[23.1695265,39.4078141],[23.1700888,39.4074126],[23.1702759,39.407486],[23.1711197,39.4074335],[23.1717487,39.4072848],[23.1718309,39.4072133],[23.1721093,39.4072423],[23.1722618,39.4071172],[23.1726883,39.4073906],[23.1727354,39.4073369],[23.1726678,39.4071562],[23.1727498,39.4071027],[23.1727295,39.4068503],[23.1730228,39.4066],[23.1729395,39.4062841],[23.1730797,39.406213],[23.1733622,39.4058906],[23.1739924,39.4056428],[23.1740215,39.4053592],[23.1750553,39.4053485],[23.1753582,39.4052696],[23.1755576,39.4051088],[23.1755962,39.4047847],[23.1757366,39.4046956],[23.1762828,39.4046724],[23.1766898,39.4047203],[23.1773607,39.4049594],[23.1777205,39.4049799],[23.1780695,39.4049283],[23.1785064,39.4048188],[23.1786559,39.404946],[23.1790899,39.4050797],[23.1797752,39.4045754],[23.1804619,39.4044541],[23.1804835,39.4043732]]},{"id":17267,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039b\u03b1\u03cd\u03ba\u03bf\u03c2-\u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03b9\u03ac\u03c2","description_GR":"\u039c\u03ad\u03c3\u03c9 \u03bc\u03bf\u03bd\u03ae\u03c2 \u0391\u03b3\u03af\u03bf\u03c5 \u03a3\u03c0\u03c5\u03c1\u03af\u03b4\u03c9\u03bd\u03b1","path":"THESSALIA\/Thessaly_Pelion_Lafkos_Mousges","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":7253,"name_EN":"Pelion Mt: Lafkos-Platanias","description_EN":"Via the Agios Spyridon monastery","ascent_time":160,"descent_time":170,"marker":"Red_dots","level":9,"ascent":137,"descent":435,"maxelev":377,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.2461 39.14084,23.2786 39.17763)","views":14,"millestones":"0,23.2460962,39.1776302#1,23.2524421,39.1711132#2,23.2582826,39.1669656#3,23.2672276,39.1642259#4,23.2764025,39.1629402#5,23.2768625,39.1576804#6,23.2741571,39.1510463#7.3,23.2743268,39.1408106","x":23.2706867,"y":39.1637117,"coor":[[23.2460962,39.1776302],[23.2461244,39.1776033],[23.2461663,39.1776081],[23.2463199,39.1773208],[23.2464181,39.1771997],[23.2466679,39.176913],[23.2467336,39.1764494],[23.2468193,39.1759859],[23.246948,39.1756173],[23.2472488,39.1754705],[23.2473417,39.1752053],[23.2473879,39.1750749],[23.2475724,39.1746391],[23.2477917,39.1741224],[23.2479325,39.1739431],[23.2487255,39.173367],[23.2493969,39.1733713],[23.2507658,39.1731008],[23.2512567,39.1726534],[23.2516088,39.1722051],[23.251787,39.1717738],[23.2521708,39.171605],[23.2524289,39.1712823],[23.2524684,39.170832],[23.2529008,39.1704473],[23.253137,39.1699983],[23.2532728,39.1691972],[23.2533773,39.1690356],[23.2533556,39.1689003],[23.253489,39.1688742],[23.2534895,39.1688201],[23.2538908,39.1684037],[23.2539737,39.168224],[23.2540118,39.1678998],[23.2538793,39.1672952],[23.2539324,39.1669937],[23.2540489,39.1669224],[23.2543207,39.1664015],[23.2547391,39.166242],[23.2551868,39.1659745],[23.2555586,39.1659453],[23.2560578,39.1658043],[23.2562893,39.1658058],[23.2564844,39.1659693],[23.2571756,39.16628],[23.2577952,39.1668066],[23.2581069,39.1668807],[23.2581063,39.1670384],[23.2582796,39.1669719],[23.2584926,39.1665317],[23.2587021,39.1664159],[23.2590012,39.166598],[23.2593023,39.1665819],[23.2595349,39.1664753],[23.2596968,39.1664943],[23.2599304,39.1662976],[23.2599786,39.1661177],[23.2601988,39.1660154],[23.2606269,39.1660722],[23.2614625,39.1658613],[23.2616244,39.1658803],[23.2619115,39.1660984],[23.262432,39.1661377],[23.2626649,39.166004],[23.262943,39.1659697],[23.2632716,39.1655393],[23.2633528,39.1655218],[23.2636861,39.1657492],[23.2638826,39.1657774],[23.2640462,39.1656343],[23.2644059,39.1655465],[23.2645109,39.165466],[23.2648466,39.1654681],[23.2651059,39.1650192],[23.2653862,39.1647777],[23.265793,39.1646181],[23.2662803,39.164513],[23.2666735,39.1645425],[23.2669619,39.1646345],[23.2671042,39.164311],[23.2673607,39.1641323],[23.2676225,39.164134],[23.2680523,39.1639925],[23.2682065,39.1640205],[23.2686158,39.163924],[23.2687193,39.1639967],[23.2687295,39.1641229],[23.269124,39.1640353],[23.2694032,39.1638929],[23.2696956,39.1636063],[23.269682,39.1634891],[23.2698894,39.1635805],[23.2699461,39.163689],[23.2700639,39.1634915],[23.2702485,39.1635467],[23.2703187,39.1634751],[23.2705024,39.1636204],[23.2705702,39.163783],[23.2706867,39.1637117],[23.2707109,39.1636037],[23.2709533,39.1636773],[23.2712983,39.1638957],[23.2714729,39.1637977],[23.2715993,39.1638886],[23.2720622,39.1638915],[23.2725583,39.1640568],[23.2729049,39.164113],[23.2730326,39.1640778],[23.2731837,39.1641913],[23.2736102,39.1640859],[23.273845,39.1637629],[23.2740772,39.1636923],[23.2743545,39.1637481],[23.2746093,39.1637317],[23.2747721,39.1636606],[23.2750203,39.1634414],[23.2751937,39.1634605],[23.2758318,39.1633202],[23.2765892,39.1628203],[23.2770705,39.1628413],[23.2771535,39.1627157],[23.2774531,39.1628437],[23.2776942,39.1630435],[23.2778068,39.1633505],[23.2779345,39.1633063],[23.2781568,39.1630734],[23.2781829,39.1627852],[23.2783474,39.1628673],[23.2783022,39.1627589],[23.278376,39.1623358],[23.2782166,39.1620735],[23.2783368,39.1616417],[23.2782697,39.1615827],[23.2780278,39.1614731],[23.2777307,39.1610928],[23.2776633,39.1608942],[23.2776775,39.1606419],[23.2774137,39.160406],[23.2773933,39.1601356],[23.2772905,39.1599998],[23.2772838,39.1595222],[23.2772269,39.1594317],[23.2770825,39.1593993],[23.2768641,39.1592537],[23.2765642,39.1591527],[23.2764738,39.1590486],[23.276266,39.1589932],[23.2762781,39.1589482],[23.2760464,39.1589648],[23.2758504,39.1588915],[23.276374,39.1586244],[23.2765531,39.1580849],[23.2767047,39.1579777],[23.2769171,39.1575735],[23.2768851,39.157312],[23.2769789,39.1571954],[23.2770015,39.1568532],[23.2771543,39.1566288],[23.2772946,39.1565621],[23.2774728,39.1561127],[23.2771966,39.1559578],[23.2771788,39.1554351],[23.2769602,39.1553075],[23.2767896,39.1550181],[23.2765478,39.1548995],[23.276321,39.1544385],[23.2759055,39.1543278],[23.2755018,39.154055],[23.2752411,39.1538686],[23.2750525,39.1530745],[23.2745569,39.1528732],[23.2743852,39.1526919],[23.2743747,39.1525837],[23.2745621,39.1523686],[23.2744699,39.1521563],[23.2742784,39.1516505],[23.2742853,39.1512225],[23.2743211,39.1511146],[23.2744025,39.151079],[23.2747713,39.1512255],[23.2744025,39.151079],[23.2743211,39.1511146],[23.2742853,39.1512225],[23.2739429,39.1507608],[23.2739837,39.1501663],[23.2736652,39.1496237],[23.2735706,39.1485598],[23.2738636,39.1481922],[23.2739966,39.148139],[23.274077,39.1477385],[23.2747894,39.1459768],[23.2749469,39.1452839],[23.2750151,39.1442481],[23.2752214,39.1421768],[23.2752052,39.1417487],[23.2751348,39.1417032],[23.2743268,39.1408106]]},{"id":17269,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a3\u03c5\u03ba\u03ae-\u039e\u03b9\u03bd\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Syki_Xynovrysi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":5978,"name_EN":"Pelion Mt: Syki-Xinovrysi","description_EN":"","ascent_time":135,"descent_time":135,"marker":"Red_dots","level":9,"ascent":288,"descent":218,"maxelev":294,"minelev":56,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.25989 39.24892,23.27375 39.28584)","views":10,"millestones":"0,23.2605934,39.2495213#1,23.2655670,39.2554645#2,23.2676579,39.2624934#3,23.2721768,39.2675463#4,23.2694573,39.2727772#5,23.2627232,39.2795488#6.0,23.2608197,39.2858405","x":23.272299,"y":39.2672876,"coor":[[23.2605934,39.2495213],[23.2605908,39.2491834],[23.2608702,39.249059],[23.2614204,39.2489859],[23.2615939,39.2488473],[23.2616489,39.2490234],[23.2617151,39.2491995],[23.2619554,39.2494894],[23.2620504,39.2496567],[23.2619486,39.2505211],[23.2626383,39.2512013],[23.2637425,39.2520012],[23.2648856,39.2529275],[23.2654805,39.2536701],[23.2656237,39.2540044],[23.2655591,39.2542608],[23.2654815,39.2543775],[23.2654674,39.2546117],[23.2655702,39.2554233],[23.2655343,39.2558421],[23.2655902,39.2560407],[23.2653901,39.2563277],[23.2654005,39.2564449],[23.2652827,39.2566244],[23.2653276,39.2567689],[23.2652334,39.2569034],[23.2650803,39.2571413],[23.2650778,39.2573755],[23.2651562,39.2576463],[23.2653621,39.2578999],[23.2648604,39.2582527],[23.2648045,39.2585407],[23.2646514,39.258774],[23.2646484,39.2590623],[23.2650499,39.2594613],[23.2651522,39.2596602],[23.2662829,39.2597349],[23.2667102,39.2598818],[23.2669058,39.2600272],[23.2671149,39.2610918],[23.2672415,39.2611827],[23.267635,39.2612392],[23.267887,39.2615201],[23.2678966,39.2617184],[23.267525,39.2628965],[23.2684943,39.2644344],[23.2688294,39.2645266],[23.2691975,39.2647993],[23.2696142,39.264865],[23.2698912,39.2649748],[23.2706446,39.2649796],[23.2711641,39.265181],[23.2719303,39.2650777],[23.2723081,39.2655306],[23.2725041,39.2656309],[23.2729894,39.2657872],[23.2735774,39.2658134],[23.2733941,39.2659519],[23.2732206,39.2662256],[23.2732057,39.2663427],[23.2733652,39.266614],[23.2733366,39.2667174],[23.2728949,39.2668318],[23.2727094,39.2668307],[23.272545,39.2670369],[23.2725673,39.2671271],[23.272299,39.2672876],[23.2721921,39.2675393],[23.2720756,39.2675926],[23.2707892,39.2675575],[23.270452,39.2676635],[23.2704399,39.2677085],[23.2706596,39.267764],[23.2708897,39.2679276],[23.2707483,39.268152],[23.2710362,39.268334],[23.2709199,39.2683693],[23.270882,39.2688466],[23.2708329,39.2691077],[23.2706082,39.2695388],[23.2703964,39.2698438],[23.2701393,39.2700404],[23.2702745,39.2704197],[23.2700647,39.2705265],[23.2696465,39.2706095],[23.2693579,39.2704996],[23.2691827,39.2706246],[23.2692853,39.2707875],[23.2693267,39.2712653],[23.2694964,39.2716718],[23.2690091,39.2716418],[23.2685399,39.2717514],[23.2685424,39.2719947],[23.2687378,39.2721582],[23.2689467,39.2721415],[23.2690734,39.2722143],[23.2695102,39.2725775],[23.2695315,39.2727579],[23.2691341,39.272859],[23.2685265,39.2733237],[23.2680889,39.2737715],[23.2679576,39.2741311],[23.2675583,39.2746242],[23.2671903,39.2753157],[23.266863,39.2766833],[23.266363,39.2768243],[23.2659767,39.2771823],[23.2655567,39.2774319],[23.2649572,39.2782211],[23.264561,39.2784168],[23.2640224,39.278918],[23.2638137,39.2790879],[23.2626491,39.2795852],[23.2615569,39.2798125],[23.2613345,39.2799823],[23.2606829,39.2802034],[23.2600535,39.2805238],[23.2599477,39.2806583],[23.260821,39.2814027],[23.2611601,39.2822339],[23.2611373,39.2826167],[23.261066,39.2827469],[23.2608193,39.2830517],[23.2608505,39.2833943],[23.2609762,39.2835663],[23.2610963,39.2841663],[23.2609293,39.2846158],[23.2606092,39.2848029],[23.2603729,39.2849817],[23.2605963,39.2854066],[23.2608867,39.2856337],[23.2608197,39.2858405]]},{"id":17271,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03bf\u03cd\u03c3\u03b3\u03b5\u03c2-\u039a\u03b1\u03c4\u03b7\u03b3\u03b9\u03ce\u03c1\u03b3\u03b7\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c0\u03bb\u03ac\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03cc \u03c4\u03bf\u03c0\u03af\u03bf \u03c4\u03bf\u03c5 \u039a\u03b1\u03c4\u03b7\u03b3\u03b9\u03ce\u03c1\u03b3\u03b7","path":"THESSALIA\/Thessaly_Pelion_Mousges_Katigiorgis","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":9298,"name_EN":"Pelion Mt: Mousges-Katigiorgis","description_EN":"A trip alongthe agricaltural area of Katigiorgis","ascent_time":165,"descent_time":170,"marker":"Red_dots","level":12,"ascent":293,"descent":382,"maxelev":287,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.27976 39.14922,23.34312 39.17249)","views":9,"millestones":"0,23.2799236,39.1564613#1,23.2869394,39.1503067#2,23.2911492,39.1527398#3,23.2978230,39.1591339#4,23.3058416,39.1645891#5,23.3128033,39.1648001#6,23.3211537,39.1636775#7,23.3271448,39.1609995#8,23.3346055,39.1657900#9,23.3423710,39.1710028#9.3,23.3428167,39.1728633","x":23.3124279,"y":39.1646097,"coor":[[23.2799236,39.1564613],[23.2804651,39.156379],[23.2807679,39.1562007],[23.2809444,39.1559134],[23.2811475,39.1552929],[23.2817678,39.1546119],[23.2822051,39.1537135],[23.2823686,39.1535703],[23.2826569,39.1535316],[23.2828699,39.1530643],[23.2835341,39.1526178],[23.2840506,39.1519001],[23.2851896,39.1514205],[23.2854585,39.1511519],[23.2858001,39.1505592],[23.2862249,39.1502149],[23.2864689,39.1501218],[23.2868152,39.150205],[23.2874465,39.1507225],[23.2875467,39.1511196],[23.2877291,39.151391],[23.2879248,39.1514913],[23.2881564,39.1514747],[23.2883438,39.1512596],[23.2883603,39.1507731],[23.2885736,39.1502698],[23.2887259,39.1500905],[23.2891217,39.1498587],[23.2893088,39.1496616],[23.2890232,39.1492994],[23.289004,39.1489028],[23.2891747,39.1489714],[23.2898174,39.149507],[23.2901807,39.1499597],[23.290333,39.1504923],[23.2902113,39.1510863],[23.2902751,39.1516453],[23.2908916,39.1524871],[23.2910899,39.152655],[23.2913388,39.1530125],[23.2918128,39.1533803],[23.2918325,39.1537228],[23.2923933,39.154357],[23.2926394,39.1552055],[23.2927744,39.155738],[23.2930498,39.1559739],[23.2935447,39.1562473],[23.2938888,39.1565647],[23.294024,39.156935],[23.2939629,39.157259],[23.2940999,39.1574401],[23.2944801,39.1576226],[23.2949656,39.1576796],[23.2951244,39.158005],[23.2953311,39.1581684],[23.2955729,39.158296],[23.2960349,39.1583889],[23.2964492,39.1586257],[23.2969303,39.1586601],[23.2977245,39.1590975],[23.2983126,39.1593173],[23.2986572,39.1595897],[23.2994062,39.1599186],[23.2994728,39.1602073],[23.3001385,39.16077],[23.3005307,39.1609075],[23.3013113,39.161561],[23.3019913,39.1618534],[23.3022654,39.1622335],[23.3027019,39.1625695],[23.3032553,39.1627891],[23.3035189,39.163052],[23.3039924,39.1631629],[23.3048759,39.1639522],[23.3052932,39.1638916],[23.3057443,39.1639213],[23.3058213,39.1642236],[23.3056455,39.1644388],[23.3056564,39.164511],[23.3058754,39.1646024],[23.3061039,39.1649101],[23.3063681,39.165119],[23.306413,39.1652634],[23.3066432,39.1653909],[23.3065783,39.1661114],[23.306816,39.1667706],[23.307081,39.1662991],[23.3072633,39.1658992],[23.30765,39.1654149],[23.3079061,39.1652723],[23.3084441,39.1647078],[23.308922,39.1643682],[23.310229,39.164466],[23.3107931,39.1647848],[23.3114985,39.1649646],[23.3117282,39.1651462],[23.3121095,39.1652116],[23.3125284,39.1649888],[23.3129107,39.164955],[23.3129117,39.1648558],[23.3124279,39.1646097],[23.312348,39.1645011],[23.3125051,39.1638172],[23.313132,39.1636317],[23.3136528,39.1636347],[23.314621,39.1628655],[23.3155722,39.1626548],[23.3158897,39.1624675],[23.3159526,39.1624363],[23.3161846,39.1623836],[23.3164292,39.1622228],[23.3176099,39.1623289],[23.3190062,39.1627695],[23.3193163,39.1630237],[23.3199327,39.1636896],[23.3208692,39.1638032],[23.3213342,39.1635986],[23.321959,39.1636203],[23.3226773,39.1635524],[23.3229573,39.1633197],[23.3229496,39.1629232],[23.3230195,39.1628785],[23.3236198,39.1630442],[23.3241028,39.1633714],[23.3244767,39.1630041],[23.3245482,39.1627883],[23.3244701,39.1624815],[23.324149,39.1621732],[23.3241267,39.162083],[23.3244041,39.1621206],[23.3252509,39.1619273],[23.3254123,39.1619913],[23.3254797,39.162208],[23.3255723,39.1622085],[23.3256328,39.1619295],[23.3255667,39.1615867],[23.3257054,39.1616055],[23.3259699,39.1617873],[23.3260759,39.1615897],[23.3260554,39.1613102],[23.3261484,39.1612747],[23.3267364,39.1615124],[23.3267263,39.1613591],[23.3265091,39.1610695],[23.3265449,39.1609616],[23.3267536,39.1609268],[23.3271464,39.1610011],[23.3273665,39.1609754],[23.3279146,39.160546],[23.3280648,39.1605739],[23.3286518,39.1609197],[23.3288574,39.1612092],[23.3289583,39.1615612],[23.3295017,39.1616184],[23.3299628,39.1618193],[23.3301435,39.1622979],[23.3303731,39.1624975],[23.3307996,39.1626802],[23.3314232,39.1628279],[23.3318496,39.1630286],[23.3325799,39.1634158],[23.3332123,39.1634734],[23.3335587,39.1635655],[23.3336386,39.1636831],[23.3335238,39.1638537],[23.3334752,39.1640967],[23.3336126,39.1642597],[23.3338614,39.1648739],[23.3342054,39.1652182],[23.3348337,39.1661049],[23.3355355,39.1665594],[23.3356699,39.1665422],[23.3362463,39.1667888],[23.3366482,39.1671335],[23.3366355,39.1672596],[23.3363096,39.1674424],[23.3364214,39.1674881],[23.3362934,39.1675595],[23.3368524,39.1676933],[23.3375434,39.1680757],[23.3382143,39.1681246],[23.3390565,39.1684267],[23.3407481,39.1694996],[23.3411361,39.1700965],[23.3415361,39.1704231],[23.3417642,39.1707849],[23.342086,39.1707687],[23.3422708,39.1708058],[23.3425333,39.1713344],[23.3425311,39.1715686],[23.3426225,39.1716953],[23.3426924,39.1716507],[23.3427032,39.1717318],[23.3426082,39.1719836],[23.3424688,39.1720369],[23.3424878,39.1722532],[23.3425854,39.172452],[23.3426898,39.1724346],[23.3428994,39.1728052],[23.3428167,39.1728633]]},{"id":17272,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039b\u03b5\u03c6\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf-\u039a\u03ac\u03bb\u03b1\u03bc\u03bf\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Lefokastro_Kalamos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3950,"name_EN":"Pelion Mt: Lefokastro-Kalamos","description_EN":"","ascent_time":95,"descent_time":90,"marker":"Red_dots","level":9,"ascent":106,"descent":113,"maxelev":41,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.17781 39.22287,23.18668 39.25011)","views":6,"millestones":"0,23.1815809,39.2500832#1,23.1810339,39.2435864#2,23.1781754,39.2368484#3,23.1810757,39.2290499#4.0,23.1866789,39.2228704","x":23.1781363,"y":39.2374889,"coor":[[23.1815809,39.2500832],[23.1818083,39.2501433],[23.1824016,39.2499493],[23.1824921,39.2491389],[23.1831219,39.2478008],[23.1823735,39.2476919],[23.1824473,39.247323],[23.1826817,39.2470993],[23.1824642,39.2468635],[23.1824227,39.2461379],[23.1828723,39.246123],[23.1830707,39.2459983],[23.1828956,39.2458934],[23.1825084,39.2459628],[23.1823234,39.2459254],[23.1818978,39.2456521],[23.1817172,39.2452364],[23.1817452,39.2451014],[23.1815653,39.2446316],[23.1812697,39.2441429],[23.1812157,39.2438001],[23.180827,39.2433469],[23.1805116,39.2425697],[23.18056,39.2423898],[23.1810635,39.2419428],[23.1805799,39.2416781],[23.1797581,39.2416003],[23.1793538,39.2414893],[23.1792045,39.2413711],[23.1789551,39.2409008],[23.1789346,39.2406664],[23.1790446,39.2401805],[23.1788624,39.2399089],[23.1788156,39.2393499],[23.1784801,39.2393115],[23.1781803,39.2391833],[23.1784785,39.2391358],[23.1783748,39.2388963],[23.178366,39.238662],[23.1779635,39.2383978],[23.1781152,39.2383088],[23.1781449,39.2377503],[23.1782498,39.237697],[23.1781363,39.2374889],[23.1781159,39.2372545],[23.1779678,39.2370372],[23.1786235,39.2364471],[23.1788799,39.2363228],[23.1795212,39.2361651],[23.1795476,39.235111],[23.1798372,39.2351131],[23.1799288,39.2349921],[23.1796955,39.2348418],[23.1796774,39.2344091],[23.1800651,39.2339523],[23.180081,39.233583],[23.180343,39.2329721],[23.1803685,39.232774],[23.1802102,39.2324305],[23.1801793,39.2321059],[23.180229,39.2318179],[23.1804425,39.2313869],[23.1804859,39.2306483],[23.1807013,39.2300551],[23.1807973,39.2299567],[23.180801,39.2296413],[23.1810276,39.2290842],[23.1814716,39.228763],[23.1816154,39.2283495],[23.1815707,39.228205],[23.1818038,39.2278057],[23.1820252,39.2276991],[23.1819352,39.2274642],[23.182157,39.2273216],[23.182365,39.2271473],[23.1824916,39.2270311],[23.1829932,39.2262416],[23.1831747,39.2255761],[23.1832945,39.2256355],[23.183466,39.225835],[23.1841651,39.2254884],[23.184713,39.2251949],[23.1852946,39.224771],[23.1857383,39.2244677],[23.1861368,39.224074],[23.1866789,39.2228704]]},{"id":17274,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03c6\u03c5\u03c3\u03bf\u03c2-\u039b\u03b5\u03c6\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf","description_GR":"\u039c\u03b9\u03b1 \u03c3\u03c5\u03bd\u03b4\u03b5\u03c4\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03bc\u03b9\u03ba\u03c1\u03cc \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd","path":"THESSALIA\/Thessaly_Pelion_Afysos_Lefokastro","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":3213,"name_EN":"Pelion Mt: Afysos-Lefokastro","description_EN":"A connection route","ascent_time":60,"descent_time":60,"marker":"No_marks","level":12,"ascent":64,"descent":63,"maxelev":43,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.16433 39.25008,23.18158 39.27261)","views":12,"millestones":"0,23.1643247,39.2726045#1,23.1675082,39.2650385#2,23.1741406,39.2586141#3.2,23.1815805,39.2500832","x":23.1736949,"y":39.259705,"coor":[[23.1643247,39.2726045],[23.1645131,39.2723581],[23.1649428,39.2713159],[23.1654733,39.2695897],[23.1659534,39.2691877],[23.1663647,39.268713],[23.1666326,39.2681157],[23.1664575,39.2680379],[23.1668428,39.2657564],[23.1674587,39.2657203],[23.1669827,39.2650726],[23.1672723,39.2650927],[23.1675861,39.2650229],[23.1681769,39.264072],[23.1694581,39.2635495],[23.1697395,39.2632812],[23.1698875,39.2627416],[23.1702065,39.2622302],[23.1710007,39.2617133],[23.1725325,39.2616521],[23.1728857,39.261186],[23.1731762,39.2604492],[23.1736949,39.259705],[23.1739578,39.2591257],[23.1742811,39.2582449],[23.1750736,39.2578721],[23.1755087,39.2573345],[23.1759295,39.2570311],[23.1760281,39.2565363],[23.1759872,39.2560674],[23.1769447,39.2554614],[23.1771613,39.2547782],[23.1773142,39.254581],[23.1780125,39.2543336],[23.1781876,39.2542267],[23.1782617,39.2538398],[23.1789661,39.2530608],[23.1792735,39.2525404],[23.1793231,39.2522614],[23.1797213,39.2519038],[23.17983,39.2515261],[23.1799698,39.251464],[23.181204,39.2505671],[23.1815805,39.2500832]]},{"id":17275,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03c6\u03ad\u03c4\u03b5\u03c2-\u0386\u03c6\u03c5\u03c3\u03bf\u03c2","description_GR":"\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03a7\u03b1\u03bb\u03bf\u03c1\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2","path":"THESSALIA\/Thessaly_Pelion_Afetes_Afysos","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":3249,"name_EN":"Pelion Mt: Afetes-Afysos","description_EN":"Chalorema gorge","ascent_time":80,"descent_time":90,"marker":"Red_dots","level":11,"ascent":10,"descent":224,"maxelev":220,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.1642 39.26876,23.18196 39.28303)","views":17,"millestones":"0,23.1808071,39.2831470#1,23.1773854,39.2771285#2,23.1722838,39.2720817#3.2,23.1643243,39.2726045","x":23.1766561,"y":39.2768103,"coor":[[23.1808071,39.283147],[23.180848,39.2829311],[23.1808812,39.2827511],[23.1809335,39.2827469],[23.181154,39.2827305],[23.1811445,39.2825502],[23.181388,39.2823582],[23.1816664,39.2823511],[23.1818069,39.282226],[23.1815745,39.2821477],[23.181482,39.2820344],[23.1811833,39.2820188],[23.1810664,39.2818828],[23.1811583,39.281861],[23.1810452,39.2816169],[23.1812549,39.2815283],[23.1812126,39.2811765],[23.1812971,39.2808888],[23.1812276,39.2808883],[23.1811721,39.2806717],[23.1810334,39.2806346],[23.1809535,39.2805259],[23.1807451,39.2805065],[23.1807937,39.2803176],[23.1806191,39.2803704],[23.1804546,39.280153],[23.180168,39.2798807],[23.1802164,39.2797008],[23.1799869,39.2795009],[23.1799215,39.27914],[23.1797841,39.2789949],[23.1797662,39.2785442],[23.1796516,39.2784263],[23.1795508,39.2781192],[23.1793797,39.2778837],[23.1792753,39.277883],[23.1790929,39.2776204],[23.1788857,39.2774928],[23.1780981,39.2774332],[23.1779376,39.2772699],[23.1776838,39.2771689],[23.1774174,39.277149],[23.1772447,39.2770397],[23.1768632,39.2769469],[23.1766561,39.2768103],[23.1764129,39.2767905],[23.1761478,39.2766625],[23.1758812,39.2766516],[23.1754542,39.2764864],[23.1750235,39.2766365],[23.1747198,39.2768326],[23.1745223,39.2768672],[23.1744652,39.2767948],[23.1742683,39.2767753],[23.174082,39.2768461],[23.1737939,39.2766999],[23.1736221,39.2765185],[23.1734013,39.2765619],[23.1720825,39.2763183],[23.1718902,39.2759114],[23.1719033,39.2757854],[23.1718005,39.2756585],[23.1718385,39.2753794],[23.1717265,39.2750453],[23.1718678,39.274866],[23.1719675,39.2742721],[23.17217,39.2738139],[23.1721802,39.2733455],[23.1723667,39.2722745],[23.1722086,39.271913],[23.1721423,39.2713313],[23.1720394,39.2711188],[23.1714048,39.2704655],[23.1711833,39.2698017],[23.1710713,39.2694675],[23.1709568,39.2693495],[23.1703568,39.269111],[23.169698,39.2689441],[23.1692601,39.2687247],[23.1687391,39.2686669],[23.1681825,39.268681],[23.1675075,39.2689104],[23.1663644,39.268713],[23.165953,39.2691876],[23.165473,39.2695897],[23.1649424,39.2713159],[23.1645127,39.2723581],[23.1643243,39.2726045]]},{"id":17278,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a7\u03ac\u03bd\u03b9\u03b1-\u039a\u03b9\u03c3\u03c3\u03cc\u03c2 \u03b1\u03c0\u03cc \u03a1\u03b9\u03b6\u03b1\u03af\u03b9\u03ba\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b1\u03bb\u03b9\u03cc \u03c0\u03b5\u03c4\u03c1\u03cc\u03c3\u03c4\u03c1\u03c9\u03c4\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf \u039a\u03b9\u03c3\u03c3\u03cc\u03c2-\u03a7\u03ac\u03bd\u03b9","path":"THESSALIA\/Thessaly_Pelion_Chania_Kissos","activity_type":31,"assistance":1,"difficulty":2,"scenic_value":3,"length":309,"name_EN":"Pelion Mt: Chania-Kissos via Rizeika","description_EN":"Via the old cobbled path ftom Kissos to Chania","ascent_time":205,"descent_time":180,"marker":"Red_dots","level":13,"ascent":751,"descent":83,"maxelev":1222,"minelev":513,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06263 39.39005,23.13216 39.40576)","views":0,"millestones":"0,23.1318173,39.4062999#1,23.1240346,39.4041314#2,23.1188141,39.4004508#3,23.1125201,39.3989542#4,23.1066324,39.3968452#5,23.0974979,39.3955658#6,23.0875084,39.3931942#7,23.0785937,39.3905599#0.3,23.0627559,39.3959471","x":23.1087935,"y":39.3975118,"coor":[[23.1318173,39.4062999],[23.1319115,39.4061924],[23.1319588,39.4061252],[23.131394,39.4057786],[23.1313268,39.4055799],[23.1306519,39.4055883],[23.1304779,39.405569],[23.1302604,39.4053151],[23.1298901,39.4052042],[23.129394,39.4049392],[23.1288637,39.4046198],[23.1285949,39.4045458],[23.1286273,39.4046586],[23.1286572,39.4047895],[23.128457,39.4048105],[23.1283477,39.4048142],[23.1283353,39.4048772],[23.1279878,39.4048025],[23.1278268,39.4046752],[23.127722,39.4046924],[23.1276865,39.4047462],[23.1278569,39.4050538],[23.1275212,39.4049612],[23.1276682,39.4052867],[23.1276073,39.4055115],[23.1274472,39.405312],[23.1272971,39.4052388],[23.1262896,39.404997],[23.1254198,39.4048914],[23.1248769,39.404653],[23.1245327,39.404317],[23.1240356,39.4041331],[23.1236941,39.4035809],[23.1229031,39.4027459],[23.1210957,39.4014708],[23.1201809,39.4003286],[23.1192239,39.3997807],[23.1186727,39.399281],[23.1185454,39.399244],[23.1184255,39.3992836],[23.1184121,39.3994277],[23.1189151,39.4000622],[23.1194657,39.400607],[23.1194876,39.4007153],[23.1193359,39.4007682],[23.1190135,39.4005495],[23.1185392,39.4003117],[23.1179365,39.400217],[23.1174369,39.4002312],[23.1166798,39.4004057],[23.1162042,39.400366],[23.1159503,39.400238],[23.1156745,39.4000016],[23.1150834,39.399907],[23.1146815,39.3995435],[23.1145565,39.3993263],[23.1145524,39.3987316],[23.114169,39.3978276],[23.1138471,39.3975729],[23.1131058,39.3972113],[23.1130431,39.3974091],[23.1132379,39.3976178],[23.1132366,39.3977169],[23.1130233,39.3980577],[23.1131815,39.3984013],[23.1131569,39.3985092],[23.1130184,39.3985262],[23.1125904,39.3983968],[23.1123808,39.3984402],[23.1123787,39.3986024],[23.1123773,39.3987105],[23.1125353,39.3989865],[23.1125668,39.3992571],[23.1124189,39.3991794],[23.1123603,39.399224],[23.1123919,39.3994765],[23.1119274,39.399473],[23.1118341,39.3995083],[23.1117394,39.3996517],[23.1116701,39.3996152],[23.1116099,39.3997859],[23.1117333,39.4001293],[23.1113981,39.4000005],[23.1112816,39.4000357],[23.1111775,39.3999989],[23.1108779,39.3998164],[23.1106342,39.3997965],[23.1104528,39.3994527],[23.1102686,39.3993251],[23.1100887,39.3988552],[23.1094567,39.3983278],[23.1093403,39.3983449],[23.1091095,39.398235],[23.1091013,39.3979646],[23.1087935,39.3975118],[23.1085703,39.3977083],[23.1084196,39.3976891],[23.1083707,39.3978779],[23.1082651,39.3979672],[23.1079775,39.3977488],[23.10764,39.3978093],[23.1074444,39.3976636],[23.107551,39.3975022],[23.1074371,39.3973211],[23.1073207,39.3973473],[23.1071806,39.3974048],[23.1070418,39.3973587],[23.1071254,39.3971791],[23.1071161,39.3969988],[23.1069905,39.3968267],[23.1068974,39.396844],[23.1067792,39.3970052],[23.1066303,39.3968419],[23.1065132,39.3969221],[23.1063757,39.3967769],[23.1061772,39.3968564],[23.106064,39.3966303],[23.1060148,39.3968462],[23.1058053,39.3968806],[23.1056026,39.3972935],[23.1050623,39.3977669],[23.105096,39.3978573],[23.1049908,39.3979106],[23.104178,39.3979043],[23.1036812,39.3977023],[23.1032568,39.3972845],[23.1028858,39.3972366],[23.1026433,39.3971266],[23.102515,39.3971707],[23.1021444,39.3970957],[23.10176,39.3971828],[23.1015161,39.397181],[23.101215,39.3970345],[23.1002296,39.3969007],[23.0991095,39.3964055],[23.0982707,39.3957052],[23.097587,39.3955917],[23.097019,39.3954297],[23.0961184,39.3950262],[23.0951511,39.3943879],[23.0943479,39.3936428],[23.0939888,39.393568],[23.0926315,39.3934673],[23.0914079,39.3928991],[23.0906072,39.3928568],[23.0903046,39.3929085],[23.0884601,39.3936509],[23.0880888,39.39363],[23.0876944,39.3933971],[23.086618,39.3922354],[23.08525,39.3920624],[23.0850203,39.3918624],[23.0847367,39.3913556],[23.0843201,39.3912442],[23.0837671,39.3909064],[23.082649,39.3906318],[23.0825239,39.3904326],[23.0825518,39.3900724],[23.0824845,39.3898916],[23.0820901,39.3898615],[23.0817091,39.3896963],[23.0813032,39.3896571],[23.0807191,39.3899228],[23.080062,39.3904402],[23.0794232,39.3904531],[23.0784694,39.3905717],[23.0782479,39.3906421],[23.077872,39.3909635],[23.0768236,39.3912165],[23.0762155,39.391536],[23.0758745,39.3918577],[23.0749976,39.3923102],[23.0744833,39.3924864],[23.0735476,39.3929925],[23.0727554,39.3931844],[23.0719792,39.3934035],[23.071429,39.3937325],[23.0706646,39.3935822],[23.0701769,39.3935783],[23.0696175,39.393727],[23.0687295,39.3941344],[23.0671921,39.3941221],[23.0669079,39.3940117],[23.0661532,39.3940056],[23.0656647,39.3940648],[23.0648924,39.3945001],[23.0645013,39.3950916],[23.0627559,39.3959471]]},{"id":17281,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039d\u03c4\u03b1\u03bc\u03bf\u03cd\u03c7\u03b1\u03c1\u03b7-\u039c\u03c5\u03bb\u03bf\u03c0\u03cc\u03c4\u03b1\u03bc\u03bf\u03c2","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"THESSALIA\/Thessaly_Pelion_Damouchari_Mylopotamos","activity_type":31,"assistance":1,"difficulty":2,"scenic_value":4,"length":6460,"name_EN":"Pelion Mt: Damouchari-Mylopotamos","description_EN":"A long coastal trail","ascent_time":140,"descent_time":140,"marker":"Red_dots","level":13,"ascent":348,"descent":343,"maxelev":313,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.17909 39.37375,23.20433 39.40508)","views":18,"millestones":"0,23.1790884,39.4050797#1,23.1820036,39.4003779#2,23.1824336,39.3934331#3,23.1864624,39.3894484#4,23.1893946,39.3842309#5,23.1969522,39.3806451#6,23.2023949,39.3750815#6.5,23.2043337,39.3737543","x":23.1848514,"y":39.3887166,"coor":[[23.1790884,39.4050797],[23.1797734,39.4045754],[23.1804601,39.4044541],[23.1804817,39.4043732],[23.1806622,39.4043609],[23.1808957,39.4042635],[23.1812871,39.4035634],[23.1813839,39.4032307],[23.1811564,39.4028236],[23.1812153,39.4027519],[23.1813895,39.4027532],[23.1816541,39.4029713],[23.1819567,39.4029193],[23.1818872,39.4029008],[23.1819344,39.4028381],[23.1817948,39.4028551],[23.1818069,39.4028192],[23.1829998,39.4021067],[23.1833383,39.4018703],[23.1833993,39.4016185],[23.1832478,39.4016624],[23.1833074,39.4015367],[23.1831607,39.4011663],[23.1829606,39.4013991],[23.1827971,39.4014701],[23.1828001,39.4012178],[23.182618,39.4008921],[23.1825243,39.4009636],[23.182376,39.4007372],[23.1822641,39.400367],[23.1819597,39.4005811],[23.1820581,39.4001133],[23.1819795,39.3998785],[23.1820238,39.3997256],[23.182063,39.3995952],[23.1818914,39.3993778],[23.1818718,39.3990623],[23.1815376,39.3988437],[23.1812054,39.3984449],[23.181175,39.3980662],[23.1810518,39.397804],[23.1807949,39.3975815],[23.1805667,39.3972375],[23.1805397,39.3969985],[23.1806801,39.3969094],[23.1808349,39.3965861],[23.1806292,39.3962963],[23.1805745,39.3960076],[23.1812867,39.3956882],[23.1814558,39.3951308],[23.1810286,39.3949115],[23.1811855,39.3947774],[23.1814059,39.394797],[23.1816176,39.3945732],[23.1816338,39.3941769],[23.1817188,39.3941459],[23.1821755,39.3943789],[23.1824111,39.3940922],[23.1824433,39.3933176],[23.1827733,39.3929054],[23.183148,39.3926377],[23.1840688,39.3923468],[23.1844672,39.3920433],[23.1845277,39.3918274],[23.18429,39.3913032],[23.1843438,39.3909521],[23.1846513,39.3909408],[23.184931,39.3908526],[23.1852783,39.3909452],[23.1854874,39.3909376],[23.185639,39.3908846],[23.1857215,39.3907771],[23.1853915,39.3901981],[23.1852696,39.3896926],[23.1845695,39.3889849],[23.1845482,39.3888226],[23.1846189,39.388733],[23.1848514,39.3887166],[23.1857651,39.3890293],[23.1861221,39.3892841],[23.1863839,39.3897365],[23.1864797,39.3897372],[23.1864351,39.3895746],[23.1864965,39.3892867],[23.1857799,39.3880022],[23.1854589,39.3876486],[23.1848566,39.3875182],[23.1848585,39.387356],[23.1852547,39.3872327],[23.1857005,39.3868393],[23.1865025,39.3867728],[23.1873781,39.3863645],[23.1878544,39.3863498],[23.1887219,39.3866352],[23.1895721,39.3864158],[23.1897718,39.386219],[23.1898696,39.3859494],[23.1895319,39.3850279],[23.1895243,39.3846855],[23.1893904,39.384216],[23.1894147,39.384117],[23.189708,39.3838578],[23.1898099,39.3836152],[23.1898744,39.383057],[23.1901383,39.38232],[23.1901326,39.3818153],[23.1904769,39.381151],[23.1906629,39.3811342],[23.1910331,39.3812539],[23.1920373,39.3817655],[23.192259,39.3818932],[23.1924099,39.3818942],[23.1928447,39.3814467],[23.1941133,39.3811762],[23.194512,39.3808366],[23.194859,39.3809561],[23.1954289,39.3808699],[23.1959187,39.3806751],[23.1966614,39.3807163],[23.197325,39.3805587],[23.1976268,39.3805607],[23.1980431,39.3807078],[23.1986079,39.3810721],[23.1988976,39.3811191],[23.1996601,39.3804396],[23.1997314,39.3802959],[23.1995883,39.3796101],[23.199186,39.3792469],[23.1991524,39.3791386],[23.1996885,39.378962],[23.1999224,39.3788195],[23.200428,39.3783274],[23.2010664,39.3773226],[23.2011854,39.3770621],[23.2012621,39.3764499],[23.2016656,39.3756778],[23.2026147,39.3749094],[23.2034185,39.3746716],[23.2034093,39.3745589],[23.2034767,39.3745278],[23.2036861,39.3744932],[23.2036056,39.3744296],[23.20371,39.3744303],[23.2036063,39.3743665],[23.2037004,39.374259],[23.2036276,39.3741504],[23.2034419,39.3741491],[23.2031413,39.374039],[23.2031423,39.3739489],[23.2037584,39.373881],[23.2039082,39.3739721],[23.2040359,39.373973],[23.2042807,39.3738846],[23.2043337,39.3737543]]},{"id":17283,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03bd\u03ae\u03bb\u03b9\u03bf-\u039c\u03b1\u03ba\u03c1\u03c5\u03c1\u03ac\u03c7\u03b7","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03bc\u03b5 \u03c4\u03b7 \u03b2\u03bb\u03ac\u03c3\u03c4\u03b7\u03c3\u03b7","path":"THESSALIA\/Thessaly_Pelion_Makryrachi_Anilio","activity_type":31,"assistance":1,"difficulty":2,"scenic_value":4,"length":2235,"name_EN":"Pelion Mt: Anilio-Makryrachi","description_EN":"The route is not walkable due to the vegetation","ascent_time":45,"descent_time":50,"marker":"Red_dots","level":13,"ascent":136,"descent":213,"maxelev":373,"minelev":160,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.12386 39.4183,23.13452 39.42476)","views":13,"millestones":"0,23.1345192,39.4186913#1,23.1316884,39.4230363#2.2,23.1238602,39.4247612","x":23.1296764,"y":39.4217548,"coor":[[23.1345192,39.4186913],[23.1344195,39.4182941],[23.1342591,39.4184056],[23.1341754,39.4186032],[23.1342069,39.4188737],[23.1341457,39.4190355],[23.1339108,39.419241],[23.133408,39.4195075],[23.1331935,39.4199384],[23.1330952,39.420172],[23.1331164,39.4203343],[23.133656,39.4208519],[23.1329862,39.4205316],[23.1326046,39.4203846],[23.1324883,39.4203927],[23.1324756,39.4204827],[23.1329003,39.4209004],[23.1328393,39.4211342],[23.1329172,39.4214051],[23.1327535,39.4217868],[23.1326928,39.421908],[23.1322961,39.4220492],[23.1322124,39.4222378],[23.1322674,39.4224905],[23.1326947,39.4226919],[23.1326928,39.4228496],[23.132688,39.4232325],[23.132046,39.42348],[23.1317252,39.4231172],[23.1316108,39.4228595],[23.1312654,39.4226047],[23.1311528,39.4223155],[23.131002,39.4222963],[23.1306932,39.4221949],[23.1305772,39.422185],[23.13052,39.4221125],[23.1302644,39.4221106],[23.1301382,39.4219835],[23.1296764,39.4217548],[23.1295515,39.4215196],[23.1294921,39.4216273],[23.1295597,39.421799],[23.1293847,39.4218517],[23.1293607,39.4219146],[23.129257,39.4218508],[23.1288969,39.4218481],[23.1287816,39.4217751],[23.1285953,39.4218098],[23.128478,39.421899],[23.1286008,39.4222153],[23.1285193,39.4222237],[23.1284237,39.4224392],[23.1281102,39.4225991],[23.1279691,39.4227332],[23.1276599,39.4233075],[23.1276559,39.4236319],[23.1276425,39.4235957],[23.1275405,39.4233967],[23.1274361,39.4233779],[23.1270154,39.4240415],[23.1268317,39.4244231],[23.1268337,39.4241753],[23.1266733,39.4239939],[23.1261766,39.4237649],[23.1255106,39.4240663],[23.1254192,39.4242053],[23.1252921,39.4241502],[23.1252452,39.4241859],[23.12505,39.4242926],[23.1249311,39.4245079],[23.1247806,39.4247591],[23.1247151,39.4245964],[23.1245176,39.4245949],[23.124354,39.4246658],[23.1240647,39.4245735],[23.1238602,39.4247612]]},{"id":17284,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b7\u03bb\u03af\u03bd\u03b1-\u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03b9\u03ac\u03c2","description_GR":"\u03a0\u03bf\u03c1\u03b5\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7 \u039c\u03b7\u03bb\u03af\u03bd\u03b1 \u03c3\u03c4\u03bf \u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03b9\u03ac","path":"THESSALIA\/Thessaly_Pelion_Milina_Platanias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":8225,"name_EN":"Pelio Mt: Milina-Lafkos","description_EN":"A trail from Milina toPlatanias","ascent_time":195,"descent_time":190,"marker":"No_marks","level":9,"ascent":423,"descent":413,"maxelev":309,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.22025 39.14082,23.27514 39.1738)","views":13,"millestones":"0,23.2215604,39.1738059#1,23.2275415,39.1686019#2,23.2370274,39.1652635#3,23.2455653,39.1613357#4,23.2508728,39.1552555#5,23.2546856,39.1520773#6,23.2613503,39.1482146#7,23.2669922,39.1449667#8.2,23.2743268,39.1408106","x":23.2535872,"y":39.1544438,"coor":[[23.2215604,39.1738059],[23.2214903,39.1736703],[23.2212596,39.1732317],[23.2209868,39.1727794],[23.2208668,39.1725758],[23.2206168,39.1721507],[23.2203807,39.1715183],[23.2202817,39.1712383],[23.2210593,39.1710633],[23.221861,39.1707623],[23.2231985,39.1701945],[23.2252902,39.1694605],[23.2267193,39.1689744],[23.2269017,39.1689035],[23.2272128,39.1687704],[23.2273991,39.1686726],[23.2279112,39.1684146],[23.2284202,39.168445],[23.2284786,39.1683643],[23.2288959,39.168313],[23.2293381,39.1680997],[23.2294549,39.1680104],[23.2296398,39.1677007],[23.2301495,39.167668],[23.23038,39.1677597],[23.2311143,39.1672959],[23.2311049,39.1670976],[23.2312217,39.1670353],[23.2319982,39.1669503],[23.2324147,39.1669711],[23.232728,39.1669011],[23.2332716,39.1669407],[23.2334692,39.1668609],[23.2340718,39.1668018],[23.2349457,39.1662669],[23.235333,39.1657828],[23.2356478,39.1655686],[23.235731,39.165371],[23.2360441,39.1653189],[23.2364949,39.165376],[23.2368797,39.165419],[23.2372192,39.1650608],[23.2373348,39.1650796],[23.2373215,39.1652327],[23.2373792,39.1652511],[23.2376362,39.1650365],[23.2381414,39.1654183],[23.2383373,39.1655007],[23.2384995,39.1654837],[23.2385937,39.1653356],[23.2391506,39.1652131],[23.2395856,39.1645942],[23.240041,39.1642187],[23.2408761,39.164062],[23.2414698,39.1637504],[23.2418542,39.1635187],[23.2422165,39.1631966],[23.2425532,39.1630997],[23.2428311,39.1630925],[23.2432159,39.1628247],[23.2436336,39.1627373],[23.2439947,39.1625233],[23.2443108,39.162183],[23.2445731,39.1621441],[23.2448631,39.1620829],[23.2454224,39.1617351],[23.2454247,39.1615189],[23.245463,39.1613885],[23.2458238,39.1612016],[23.2460459,39.1609958],[23.2460507,39.1605813],[23.2460639,39.1604282],[23.2464725,39.1601065],[23.2463371,39.1597812],[23.2466065,39.1594766],[23.2467697,39.1593695],[23.2471169,39.1593717],[23.2476876,39.159033],[23.248036,39.1589271],[23.2483754,39.1585779],[23.2489908,39.1583836],[23.2495699,39.1583513],[23.2499432,39.1580744],[23.250004,39.1577954],[23.2506834,39.157579],[23.2510792,39.1573653],[23.251419,39.156971],[23.2514648,39.155926],[23.2513166,39.1557088],[23.2508112,39.1553541],[23.2508005,39.155264],[23.2518203,39.1551444],[23.2521676,39.1551646],[23.2526542,39.1551227],[23.252668,39.1549065],[23.2530983,39.154711],[23.2534696,39.1546233],[23.2535872,39.1544438],[23.2534622,39.1542268],[23.2532099,39.1540089],[23.2527261,39.1537895],[23.2526002,39.1536626],[23.2526362,39.1535366],[23.2529504,39.1533765],[23.2533828,39.1529828],[23.2535572,39.1529028],[23.253176,39.1528373],[23.2530616,39.1527104],[23.2535711,39.1526776],[23.2538941,39.1527788],[23.2542081,39.1526366],[23.2538417,39.1522648],[23.2533587,39.1519734],[23.2532566,39.1517745],[23.2532836,39.151653],[23.2533875,39.1516807],[23.2535132,39.1518257],[23.2540914,39.1518744],[23.2546424,39.1523015],[23.2547237,39.152275],[23.2546688,39.1519863],[23.254946,39.1520421],[23.2548669,39.1518614],[23.2549849,39.1516459],[23.2552403,39.1515664],[23.2557377,39.1515966],[23.2558979,39.1513543],[23.2565466,39.1514351],[23.2574596,39.151549],[23.2580048,39.1514354],[23.2581697,39.1511571],[23.2588226,39.1506927],[23.2591749,39.1502083],[23.2592013,39.1499021],[23.2593441,39.1495246],[23.2593363,39.1491641],[23.2595755,39.1484267],[23.259889,39.1483206],[23.2599801,39.1484653],[23.2602569,39.1485572],[23.260417,39.1487384],[23.2609033,39.1487145],[23.2609674,39.1486338],[23.2606332,39.1483658],[23.2612004,39.1483514],[23.261399,39.1481724],[23.2619675,39.1480319],[23.2621194,39.1478887],[23.2628415,39.1474832],[23.2633975,39.1474327],[23.2636624,39.1472722],[23.2641484,39.1472752],[23.2649108,39.1474062],[23.2654911,39.1472476],[23.2656664,39.1470775],[23.2659773,39.1473724],[23.26625,39.1467433],[23.2662532,39.146437],[23.2661211,39.1462694],[23.2661566,39.1461976],[23.2663878,39.146217],[23.2666086,39.1461283],[23.26677,39.1461834],[23.2669228,39.1459591],[23.267062,39.1459239],[23.2670987,39.1457349],[23.2671913,39.1457355],[23.2671688,39.1456723],[23.2672847,39.145655],[23.2673905,39.1454935],[23.2669524,39.1453375],[23.2672992,39.1453667],[23.2675411,39.1454764],[23.2679243,39.1453526],[23.2676499,39.1453059],[23.2674658,39.1450659],[23.2669688,39.1450087],[23.2672045,39.1445957],[23.2669406,39.1443778],[23.2667227,39.144052],[23.267575,39.1442601],[23.268109,39.1441013],[23.2687803,39.1440875],[23.2695667,39.1442366],[23.2706295,39.1444144],[23.2716724,39.1442678],[23.2724045,39.143975],[23.2729266,39.1438341],[23.2730442,39.1436546],[23.2730819,39.1433665],[23.2733987,39.1432198],[23.2738856,39.1431327],[23.2747683,39.1428138],[23.2751348,39.1417032],[23.2743268,39.1408106]]},{"id":17285,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a7\u03ac\u03bd\u03b9\u03b1-\u039c\u03b1\u03ba\u03c1\u03c5\u03c1\u03ac\u03c7\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Chania_Makryrachi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9158,"name_EN":"Pelion Mt: Chania-Makryrachi","description_EN":"","ascent_time":195,"descent_time":215,"marker":"Red_dots","level":12,"ascent":148,"descent":1030,"maxelev":1201,"minelev":261,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06236 39.39359,23.1244 39.42495)","views":49,"millestones":"0,23.0627537,39.3959471#1,23.0729531,39.3932395#2,23.0806757,39.3984740#3,23.0863089,39.4024126#4,23.0934083,39.4070672#5,23.0968297,39.4129757#6,23.1034020,39.4149048#7,23.1113366,39.4188803#8,23.1181166,39.4202156#9.2,23.1238329,39.4254278","x":23.0958485,"y":39.4098823,"coor":[[23.0627537,39.3959471],[23.0644995,39.3950916],[23.0648906,39.3945001],[23.0656628,39.3940648],[23.0661514,39.3940056],[23.0669061,39.3940117],[23.0671906,39.3941221],[23.0687277,39.3941344],[23.0696157,39.393727],[23.0701751,39.3935783],[23.0706627,39.3935822],[23.0714272,39.3937325],[23.0719773,39.3934035],[23.0727536,39.3931844],[23.0732413,39.393319],[23.0733909,39.3934283],[23.0743382,39.3937962],[23.074617,39.3937894],[23.0747583,39.3936464],[23.0748278,39.393656],[23.0752157,39.3941816],[23.0753015,39.394723],[23.0755623,39.3951936],[23.0760119,39.3954494],[23.0764057,39.3955246],[23.0767282,39.3957254],[23.076983,39.3957815],[23.0771662,39.3959812],[23.0773162,39.3960545],[23.0775101,39.3963173],[23.0777073,39.3963369],[23.0777742,39.3965447],[23.0780057,39.3966096],[23.0784663,39.3969016],[23.0786127,39.3972541],[23.078797,39.3973637],[23.0789334,39.3975901],[23.0792805,39.3976919],[23.0791974,39.3978264],[23.0795448,39.3979013],[23.0795671,39.3979735],[23.0799027,39.3980663],[23.0800769,39.3980676],[23.0804681,39.3983411],[23.0806656,39.3983426],[23.0806754,39.3984779],[23.0807575,39.3984154],[23.0808694,39.3987407],[23.0810817,39.3984901],[23.0812102,39.398437],[23.0812663,39.3985816],[23.0814407,39.398565],[23.0815208,39.3986557],[23.0816955,39.3986211],[23.0817763,39.3986577],[23.0820164,39.398948],[23.0821797,39.3988952],[23.0821878,39.3991656],[23.0817415,39.3995405],[23.0816226,39.3997558],[23.0817127,39.3999638],[23.0820474,39.4001286],[23.0820796,39.4003271],[23.0823923,39.4003926],[23.0826222,39.4005746],[23.0827356,39.4007828],[23.0832686,39.4008771],[23.0834779,39.4008607],[23.0836419,39.4007539],[23.0840242,39.400829],[23.0841595,39.4009427],[23.0840189,39.4010632],[23.0841351,39.4010641],[23.0846455,39.4012483],[23.0851918,39.4012166],[23.0854292,39.400822],[23.0855106,39.4008136],[23.0859792,39.401394],[23.0861949,39.4017741],[23.0861767,39.4022786],[23.0863626,39.4024647],[23.0864186,39.4026274],[23.0869212,39.4030187],[23.0871646,39.4030567],[23.0873365,39.4032383],[23.0878683,39.4034226],[23.0879482,39.4035314],[23.0881914,39.4035874],[23.0884796,39.4037518],[23.0888993,39.4036289],[23.0890726,39.4037024],[23.0893515,39.4036865],[23.0894921,39.4035975],[23.0895371,39.403706],[23.0894779,39.4037957],[23.0897899,39.4039152],[23.089753,39.4040771],[23.0898544,39.4043122],[23.0897715,39.4044377],[23.0897931,39.404564],[23.0900247,39.4046199],[23.089964,39.4048176],[23.0899033,39.4050244],[23.0901075,39.4053954],[23.0902647,39.4054778],[23.0906322,39.4056608],[23.0908351,39.406131],[23.0910552,39.4061777],[23.0912238,39.4062466],[23.0915378,39.4062131],[23.0918276,39.4062604],[23.0918731,39.4063328],[23.0917098,39.4063856],[23.0917197,39.4065208],[23.0920239,39.4065457],[23.0920341,39.4066539],[23.0921958,39.4067273],[23.0926954,39.4067132],[23.0926828,39.4067851],[23.0933181,39.4070604],[23.093585,39.4070805],[23.0938778,39.4068936],[23.0940399,39.4069309],[23.0941546,39.4070399],[23.0941276,39.407337],[23.0944158,39.4075015],[23.0944827,39.4077182],[23.0948715,39.4081898],[23.095265,39.408301],[23.0950751,39.4086149],[23.0950614,39.408777],[23.0951763,39.408868],[23.0949782,39.4089205],[23.0953494,39.4089594],[23.0954299,39.4090231],[23.0954711,39.4094289],[23.0953048,39.4097159],[23.0954411,39.4099513],[23.095721,39.4098633],[23.0958485,39.4098823],[23.0960348,39.4097937],[23.0961348,39.4101459],[23.0960975,39.4103348],[23.0959565,39.4104599],[23.0959198,39.4106037],[23.0962542,39.4107956],[23.0964142,39.410995],[23.0963427,39.4111386],[23.0960748,39.4111906],[23.0963854,39.4114273],[23.0964416,39.4115719],[23.0962157,39.4122595],[23.0961901,39.4124395],[23.0963876,39.412441],[23.0967876,39.4129487],[23.0973176,39.4132862],[23.0978571,39.4137859],[23.0979275,39.4137324],[23.0978018,39.4135693],[23.0978385,39.4134254],[23.0978681,39.4132409],[23.0979381,39.4132144],[23.0981785,39.4134866],[23.0982884,39.4133027],[23.098582,39.4130527],[23.0985994,39.4126023],[23.0988439,39.4125592],[23.0989612,39.41247],[23.0990225,39.4122182],[23.0989781,39.4120556],[23.0990482,39.4120291],[23.0991635,39.4120931],[23.0993849,39.4120408],[23.0995699,39.4121593],[23.0994292,39.4122664],[23.0994195,39.4123699],[23.0997188,39.4125795],[23.0998322,39.4127966],[23.100268,39.4132325],[23.1007904,39.4132545],[23.1010353,39.4131843],[23.1011744,39.4132034],[23.1016237,39.4134952],[23.1017582,39.4138747],[23.1022212,39.4140044],[23.1026423,39.4143095],[23.1030436,39.4147271],[23.1032864,39.4148101],[23.1036888,39.4151375],[23.1043282,39.4150974],[23.1045584,39.4152614],[23.1047206,39.4152987],[23.1051639,39.4151489],[23.1054895,39.4151244],[23.1059209,39.4150015],[23.1058944,39.4152536],[23.1060203,39.4153988],[23.1060292,39.4156151],[23.1060977,39.4157057],[23.1070212,39.4161633],[23.1076121,39.416285],[23.1080124,39.4167746],[23.108509,39.4170037],[23.1093379,39.4175957],[23.1095898,39.417886],[23.1099155,39.4178524],[23.1099137,39.4179876],[23.1095169,39.4181377],[23.1095041,39.4182277],[23.1099581,39.4181501],[23.1102684,39.4184138],[23.1106042,39.4185065],[23.1108458,39.4186885],[23.1112621,39.4188359],[23.1116887,39.4190914],[23.1117106,39.4191997],[23.1116051,39.419271],[23.1111895,39.4190696],[23.1110151,39.4190773],[23.110933,39.4191397],[23.1111598,39.4195739],[23.1115978,39.4198476],[23.1115134,39.4199506],[23.1116165,39.4200595],[23.1116268,39.4201677],[23.1119947,39.4204678],[23.1123871,39.4206691],[23.1125386,39.4206342],[23.1127235,39.4207077],[23.1129914,39.4206557],[23.1130133,39.4207639],[23.113118,39.4207467],[23.113152,39.4208191],[23.1133952,39.420875],[23.113752,39.421139],[23.1138338,39.4211036],[23.1139372,39.4211945],[23.1141463,39.4211961],[23.114229,39.4210886],[23.1142741,39.421197],[23.1144246,39.4212342],[23.1145304,39.4211359],[23.1146001,39.4211365],[23.1146104,39.4212447],[23.1147156,39.4211914],[23.1148541,39.4212645],[23.1152612,39.4212226],[23.1155307,39.4210444],[23.1156689,39.4211356],[23.1158905,39.4210652],[23.1162299,39.4208695],[23.1163152,39.4205548],[23.1163965,39.4205554],[23.1166433,39.4202735],[23.1168637,39.4203022],[23.1173994,39.4201981],[23.1178388,39.4203546],[23.1180607,39.4202662],[23.1184014,39.4199624],[23.118541,39.4199455],[23.1186582,39.4200094],[23.1183311,39.4201511],[23.1179314,39.4205265],[23.1179714,39.4210404],[23.1181797,39.4211051],[23.1185534,39.4209547],[23.1187041,39.4209739],[23.119395,39.4214657],[23.1205986,39.4218352],[23.1210476,39.422154],[23.1218683,39.4224845],[23.1223438,39.4225512],[23.1231929,39.4243237],[23.1235854,39.4245248],[23.1238613,39.4247612],[23.123958,39.4248385],[23.1240022,39.4250191],[23.1238329,39.4254278]]},{"id":17289,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03bf\u03cd\u03c1\u03b5\u03c3\u03b9-\u039d\u03c4\u03b1\u03bc\u03bf\u03cd\u03c7\u03b1\u03c1\u03b7","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Mouresi_Damouchari2","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2609,"name_EN":"Pelion Mt: Mouresi-Damouchari","description_EN":"","ascent_time":65,"descent_time":50,"marker":"Red_dots","level":13,"ascent":416,"descent":1,"maxelev":423,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.16095 39.39911,23.18055 39.40495)","views":16,"millestones":"0,23.1804832,39.4043732#1,23.1733441,39.4027347#2,23.1656722,39.3993631#2.6,23.1611363,39.3989732","x":23.1706888,"y":39.4018935,"coor":[[23.1804832,39.4043732],[23.1804612,39.4044541],[23.1797745,39.4045754],[23.1790891,39.4050797],[23.1786551,39.404946],[23.1785056,39.4048188],[23.1780688,39.4049283],[23.1781294,39.4047125],[23.1779925,39.4045043],[23.1776845,39.4039344],[23.1779371,39.4036884],[23.1773791,39.4036349],[23.1765496,39.403557],[23.1763745,39.4036368],[23.1756882,39.4037221],[23.1756891,39.40365],[23.1759936,39.4034359],[23.1759249,39.4033453],[23.1756566,39.4033209],[23.1742056,39.4032565],[23.1745666,39.4028987],[23.1745919,39.4027277],[23.1743961,39.4025821],[23.1742333,39.402599],[23.1740458,39.4027418],[23.1737885,39.4028031],[23.1736502,39.402712],[23.1732201,39.402745],[23.1728384,39.4026071],[23.1724208,39.4025681],[23.172375,39.4025137],[23.1725169,39.4022984],[23.1722511,39.4021884],[23.171845,39.4021495],[23.1715676,39.4020394],[23.1711831,39.4021448],[23.1708143,39.4020836],[23.1709433,39.4019764],[23.170723,39.4019478],[23.1706888,39.4018935],[23.1709116,39.4017149],[23.1705649,39.4015682],[23.1696887,39.4015124],[23.1697099,39.401499],[23.1693314,39.4010999],[23.1687609,39.4007264],[23.1683722,39.4009714],[23.1685107,39.4007696],[23.1680928,39.4005414],[23.1677106,39.4004485],[23.1673925,39.4002525],[23.1674048,39.4001941],[23.1673934,39.400176],[23.1674609,39.4000548],[23.1673935,39.3998651],[23.1669579,39.3995917],[23.166891,39.3993569],[23.16658,39.3991474],[23.1664288,39.3991644],[23.1662791,39.3993345],[23.1652544,39.3993767],[23.1649991,39.3993569],[23.1644864,39.3994974],[23.1642189,39.3995315],[23.1638188,39.3994836],[23.1634472,39.3994809],[23.1629547,39.3998738],[23.1619324,39.3999025],[23.1616593,39.4000041],[23.1612528,39.4000102],[23.1612588,39.3999021],[23.161399,39.3998311],[23.1613074,39.3997223],[23.1614366,39.3995971],[23.1612895,39.3992716],[23.161128,39.3991804],[23.1611064,39.399045],[23.1610252,39.3990445],[23.1611363,39.3989732]]},{"id":17302,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9-\u0398\u03b5\u03c1\u03b9\u03ac\u03ba\u03bf\u03bd\u03c4\u03b1\u03c2-\u0391\u03bb\u03bf\u03b3\u03cc\u03c0\u03bf\u03c1\u03bf\u03c2","description_GR":"\u03a3\u03c4\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9","path":"THESSALIA\/Thessaly_Pelion_Trikeri_Theriakontas","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":6804,"name_EN":"Pelion Mt: Trikeri-Theriakontas-Alogoporos","description_EN":"Around Trikeri scenic area","ascent_time":130,"descent_time":135,"marker":"Red_dots","level":9,"ascent":65,"descent":333,"maxelev":298,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.07551 39.10119,23.09233 39.14675)","views":18,"millestones":"0,23.0764398,39.1010693#1,23.0775190,39.1086878#2,23.0791995,39.1167000#3,23.0824888,39.1245848#4,23.0867245,39.1326849#5,23.0916319,39.1400730#6,23.0885024,39.1465895#6.8,23.0815715,39.1442539","x":23.0830709,"y":39.1271496,"coor":[[23.0764398,39.1010693],[23.0761047,39.1014046],[23.076173,39.1016304],[23.0762511,39.1018473],[23.0762457,39.1022617],[23.0764508,39.1024976],[23.0769898,39.1028443],[23.0771609,39.1030259],[23.0769615,39.1041236],[23.0768055,39.1043702],[23.0764921,39.1044578],[23.0762706,39.1045912],[23.0762445,39.1048163],[23.0763119,39.1049971],[23.0768361,39.106479],[23.0772414,39.1069102],[23.0769193,39.1067815],[23.0769681,39.1070297],[23.0768695,39.1074975],[23.077345,39.1082852],[23.0773829,39.1084792],[23.077496,39.1086784],[23.077588,39.1087152],[23.0779153,39.1092539],[23.0780137,39.1096962],[23.0781159,39.1098412],[23.078124,39.1101026],[23.0780241,39.1101739],[23.0779754,39.1103537],[23.0781214,39.1106883],[23.0781014,39.1113369],[23.0777767,39.1122895],[23.0778195,39.1125601],[23.0779356,39.1126647],[23.0778726,39.1130607],[23.0781243,39.1136844],[23.0785443,39.1143005],[23.078846,39.1151138],[23.0792101,39.1155763],[23.0788477,39.1158708],[23.0786715,39.1160766],[23.0786696,39.1162208],[23.078541,39.1163279],[23.0788429,39.1163753],[23.0791533,39.1165219],[23.0792853,39.1170456],[23.0792431,39.1170994],[23.0793543,39.1174426],[23.07966,39.1179497],[23.0799477,39.1180601],[23.0807619,39.1182197],[23.0809924,39.1182846],[23.0813249,39.1185125],[23.0817088,39.1192364],[23.0817969,39.1195795],[23.0819909,39.1197792],[23.0820521,39.1204105],[23.0820125,39.1207886],[23.0821358,39.121096],[23.0822641,39.1216827],[23.0823626,39.1231162],[23.0824756,39.1233243],[23.0825609,39.1238837],[23.082481,39.124694],[23.0826969,39.1258852],[23.0828418,39.1262512],[23.0830709,39.1271496],[23.0836487,39.1280913],[23.0848705,39.1293354],[23.0850616,39.1297694],[23.0853697,39.1300962],[23.0854139,39.1302588],[23.0858884,39.1309158],[23.0860015,39.1311149],[23.0860283,39.1317278],[23.0861538,39.131864],[23.0861393,39.1320891],[23.0863198,39.132451],[23.0868824,39.1327798],[23.087425,39.1328742],[23.0882547,39.133133],[23.0884717,39.1333509],[23.0886142,39.1339648],[23.0884342,39.134468],[23.0886572,39.1351185],[23.0893579,39.1362143],[23.0895358,39.1367743],[23.0898896,39.1371556],[23.0902805,39.1373478],[23.090555,39.1375933],[23.0910887,39.1382372],[23.0912089,39.1387878],[23.0915029,39.1393217],[23.091521,39.1397184],[23.0916445,39.1400077],[23.0915949,39.1402686],[23.0916337,39.1405122],[23.0915733,39.14071],[23.0916958,39.1410804],[23.0916462,39.1413413],[23.0917297,39.1415987],[23.0918128,39.1419103],[23.0918086,39.1422346],[23.0917532,39.1426622],[23.0916432,39.14281],[23.0915143,39.1438363],[23.0917631,39.1451898],[23.0916825,39.1460542],[23.0915868,39.1462968],[23.0913276,39.1466552],[23.0907238,39.1468217],[23.0900759,39.1468076],[23.0895339,39.1466592],[23.0889431,39.1467087],[23.0885509,39.1466155],[23.0882061,39.1464326],[23.0874969,39.1466884],[23.0874497,39.1467601],[23.0872403,39.1468395],[23.0869286,39.146783],[23.086743,39.1468176],[23.0863751,39.1466345],[23.085894,39.1462523],[23.0857096,39.1461968],[23.0854001,39.1459691],[23.085321,39.1458243],[23.0848628,39.1454602],[23.0843186,39.1445909],[23.0840841,39.1442692],[23.0833927,39.1440475],[23.0828475,39.1441514],[23.082132,39.1440015],[23.0815715,39.1442539]]},{"id":17303,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b5\u03c4\u03cc\u03c7\u03b9-\u03a7\u03cc\u03c1\u03c4\u03bf","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Metochi_Chorto_1","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3216,"name_EN":"Pelion Mt: Metochi-Chorto","description_EN":"","ascent_time":55,"descent_time":60,"marker":"Red_dots","level":9,"ascent":55,"descent":240,"maxelev":240,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.2136 39.19026,23.22139 39.21095)","views":7,"millestones":"0,23.2211626,39.2077561#1,23.2156729,39.2075024#2,23.2137487,39.1989774#3.2,23.2166648,39.1902270","x":23.214091,"y":39.2012929,"coor":[[23.2211626,39.2077561],[23.2211956,39.2074905],[23.220865,39.2077001],[23.2205748,39.2077612],[23.2201788,39.2079568],[23.2196874,39.208404],[23.2195012,39.2084839],[23.2193137,39.2086809],[23.2191342,39.2091077],[23.2188982,39.2095026],[23.218718,39.2095284],[23.2186571,39.2096992],[23.2182026,39.2099485],[23.2179089,39.2103249],[23.217476,39.2107185],[23.2171385,39.2108604],[23.2171153,39.2109278],[23.2170044,39.2109767],[23.2170427,39.2106525],[23.2169213,39.2101111],[23.2162245,39.2092413],[23.2162224,39.2083853],[23.2161056,39.2083124],[23.2157079,39.2076159],[23.2156409,39.2073992],[23.2156599,39.2072191],[23.2153294,39.2069916],[23.215342,39.2069016],[23.2149873,39.2065117],[23.2149204,39.206277],[23.2150398,39.2059534],[23.2150399,39.2056561],[23.2150419,39.2054759],[23.2147606,39.2047351],[23.214711,39.2044104],[23.2147758,39.203789],[23.2148501,39.2036183],[23.2147284,39.2031129],[23.2144394,39.2024757],[23.2141598,39.2015818],[23.214091,39.2012929],[23.2140823,39.2010406],[23.2139118,39.2007511],[23.2138093,39.2003044],[23.2139962,39.2001614],[23.2140321,39.2000536],[23.2139659,39.1997558],[23.2137843,39.1994301],[23.2137334,39.198799],[23.2138297,39.1984753],[23.214291,39.1976044],[23.2142509,39.1970454],[23.2143266,39.1964873],[23.2143071,39.1960636],[23.2146472,39.1956784],[23.2149845,39.1955456],[23.2151435,39.1951141],[23.2152142,39.1948668],[23.2154082,39.1945077],[23.2154102,39.1943275],[23.2152731,39.1941643],[23.2154012,39.1940931],[23.2153909,39.1939849],[23.2151905,39.1934835],[23.2152155,39.1933214],[23.2153547,39.1933043],[23.2153946,39.1928361],[23.2156288,39.1926033],[23.2158033,39.1925324],[23.2158707,39.1927131],[23.2163765,39.1926895],[23.216357,39.192365],[23.2160396,39.1917501],[23.2160709,39.1915656],[23.2158045,39.1914106],[23.215785,39.1910861],[23.2163501,39.1906979],[23.2165162,39.1905684],[23.216767,39.1904079],[23.2166648,39.190227]]},{"id":17304,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b5\u03c4\u03cc\u03c7\u03b9-\u03a7\u03cc\u03c1\u03c4\u03bf \u03b1\u03c0\u03cc \u03a3\u03c4\u03b1\u03bc\u03b1\u03af\u03b9\u03ba\u03b1","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Metochi_Chorto_2","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3360,"name_EN":"Pelion Mt: Metochi-Chorto via Stameika","description_EN":"","ascent_time":60,"descent_time":65,"marker":"Red_dots","level":9,"ascent":24,"descent":204,"maxelev":191,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.2156 39.19029,23.22591 39.20772)","views":3,"millestones":"0,23.2211626,39.2077561#1,23.2232192,39.2043233#2,23.2216187,39.1971152#3,23.2165585,39.1926898#3.4,23.2166648,39.1902270","x":23.2216865,"y":39.1991228,"coor":[[23.2211626,39.2077561],[23.2211956,39.2074905],[23.2214782,39.2070689],[23.2216172,39.2070698],[23.2216533,39.2072458],[23.2220553,39.2075458],[23.2228421,39.2076232],[23.223084,39.2077419],[23.2233059,39.2075722],[23.223534,39.2075287],[23.223686,39.2074035],[23.2240446,39.207442],[23.2243698,39.207363],[23.2245796,39.2072383],[23.224501,39.2070125],[23.2245827,39.206959],[23.2247197,39.2065499],[23.224727,39.2058831],[23.2246557,39.2055538],[23.2246455,39.2054275],[23.2247857,39.2053203],[23.2253892,39.2051982],[23.2257508,39.2049663],[23.2257228,39.204849],[23.2249012,39.2047895],[23.2242165,39.2049111],[23.2239511,39.2048192],[23.223546,39.2047985],[23.2232348,39.2046612],[23.223144,39.2044984],[23.2232627,39.2042289],[23.2233144,39.2037427],[23.2228884,39.2035145],[23.2225921,39.2030801],[23.2225154,39.2027146],[23.2225209,39.202219],[23.2221588,39.2014417],[23.2221747,39.2010543],[23.2223859,39.2008034],[23.2218466,39.2003493],[23.2218139,39.2001689],[23.2218983,39.1998631],[23.2215783,39.1994825],[23.2216865,39.1991228],[23.2214357,39.1987607],[23.2205186,39.1979165],[23.2203836,39.1975552],[23.2205127,39.1973938],[23.2212235,39.1972905],[23.2215703,39.1973469],[23.2216634,39.1973114],[23.2216762,39.1971944],[23.2215394,39.1970042],[23.2211371,39.1967312],[23.2210804,39.1966227],[23.2212461,39.1962994],[23.2212493,39.1960111],[23.2213433,39.1958856],[23.2216347,39.1957163],[23.2216009,39.195626],[23.2207408,39.1954265],[23.220504,39.1948482],[23.2205191,39.1945239],[23.2202585,39.1943059],[23.2200055,39.194142],[23.2198432,39.194159],[23.2194345,39.1944626],[23.219428,39.194859],[23.219312,39.1948763],[23.2190592,39.1947034],[23.2186196,39.1946554],[23.2186953,39.1940972],[23.2182151,39.1935443],[23.2182085,39.1930938],[23.2179751,39.1925696],[23.2171872,39.1926769],[23.2163765,39.1926895],[23.216357,39.192365],[23.2160396,39.1917501],[23.2160709,39.1915656],[23.2158045,39.1914106],[23.215785,39.1910861],[23.2163501,39.1906979],[23.2165162,39.1905684],[23.216767,39.1904079],[23.2166648,39.190227]]},{"id":17305,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03c1\u03b3\u03b1\u03bb\u03b1\u03c3\u03c4\u03ae-\u039a\u03ac\u03bb\u03b1\u03bc\u03bf\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Argalasti_Kalamos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3679,"name_EN":"Pelion Mt: Argalasti-Kalamos","description_EN":"","ascent_time":80,"descent_time":90,"marker":"Red_dots","level":9,"ascent":33,"descent":274,"maxelev":257,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.18661 39.22239,23.21821 39.22861)","views":13,"millestones":"0,23.2181631,39.2265010#1,23.2093405,39.2269443#2,23.1991821,39.2282834#3,23.1913517,39.2245125#3.7,23.1866778,39.2228704","x":23.2001083,"y":39.228478,"coor":[[23.2181631,39.226501],[23.2180252,39.226401],[23.217583,39.2261187],[23.2174429,39.2262169],[23.2170945,39.2262956],[23.2164648,39.2266924],[23.2156507,39.2269752],[23.2156569,39.2272997],[23.215115,39.2270617],[23.2148488,39.2270419],[23.2144773,39.226688],[23.2140163,39.2264686],[23.2138334,39.2262511],[23.2135877,39.2264657],[23.213075,39.2267326],[23.212602,39.2266167],[23.2123111,39.2267319],[23.2120449,39.2267121],[23.2116953,39.2272504],[23.2115418,39.2272493],[23.2110459,39.2269486],[23.2107013,39.226685],[23.2100097,39.2264685],[23.209763,39.2267732],[23.2091462,39.2270214],[23.2086948,39.2269822],[23.2080847,39.2266357],[23.2077145,39.2265881],[23.2073889,39.226694],[23.2068097,39.2266901],[23.2063824,39.22657],[23.2057384,39.2271694],[23.2052511,39.2272381],[23.204947,39.2274884],[23.2043655,39.2276916],[23.2040643,39.2276896],[23.203482,39.2279559],[23.2028642,39.2281634],[23.2024409,39.2281335],[23.2021708,39.2284561],[23.2020075,39.2285541],[23.201299,39.2287114],[23.200685,39.2287072],[23.2001083,39.228478],[23.1995603,39.2284697],[23.1994868,39.2283746],[23.1992553,39.228355],[23.198923,39.2280283],[23.1976899,39.2274611],[23.1974375,39.2272431],[23.1969487,39.227438],[23.1965272,39.2273134],[23.1962453,39.2276539],[23.1955469,39.2279374],[23.1952592,39.2277733],[23.1946927,39.2276702],[23.1943371,39.2273524],[23.1937041,39.2269876],[23.1935211,39.2267791],[23.1931288,39.2266412],[23.192968,39.2265229],[23.1926788,39.2264849],[23.1926512,39.2264261],[23.1926113,39.2264078],[23.1922172,39.2264231],[23.1921145,39.2262512],[23.1924402,39.2261363],[23.19242,39.2258839],[23.1923293,39.2257391],[23.1916114,39.2248555],[23.1911207,39.2242034],[23.1903914,39.2241532],[23.1903233,39.223941],[23.1902083,39.2238681],[23.1902488,39.223553],[23.1902814,39.2235262],[23.190279,39.2227513],[23.1903969,39.2225719],[23.1904517,39.2225317],[23.190349,39.2223958],[23.1899111,39.2221946],[23.1892472,39.2223837],[23.1890619,39.2223734],[23.1884582,39.2224863],[23.1870394,39.222963],[23.1866778,39.2228704]]},{"id":17306,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039e\u03b9\u03bd\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7-\u03a0\u03bf\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Xynovrysi_Potistika","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4581,"name_EN":"Pelion Mt: Xinovrysi-Potistika","description_EN":"","ascent_time":100,"descent_time":105,"marker":"Red_dots","level":9,"ascent":81,"descent":284,"maxelev":224,"minelev":7,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.26042 39.24903,23.29175 39.26573)","views":10,"millestones":"0,23.2605934,39.2495213#1,23.2684097,39.2533089#2,23.2762865,39.2558976#3,23.2863162,39.2582847#4,23.2908320,39.2633792#4.6,23.2879063,39.2659019","x":23.2787495,"y":39.2569339,"coor":[[23.2605934,39.2495213],[23.2605908,39.2491834],[23.2608702,39.249059],[23.2614204,39.2489859],[23.2615939,39.2488473],[23.2616489,39.2490234],[23.2617151,39.2491995],[23.2619554,39.2494894],[23.2620612,39.2495216],[23.2622853,39.2495681],[23.2623748,39.249875],[23.2625704,39.2500114],[23.2627416,39.2502558],[23.2632495,39.2504482],[23.2642786,39.2504007],[23.2643838,39.2504509],[23.2649885,39.2502565],[23.2654475,39.2506919],[23.2658161,39.2509105],[23.2663528,39.2516707],[23.2664425,39.2519597],[23.2672377,39.2523882],[23.2675922,39.2528499],[23.2678105,39.2530315],[23.2683759,39.2532694],[23.2688797,39.2538672],[23.2695391,39.2539795],[23.2701043,39.2542444],[23.2703799,39.2544894],[23.2704807,39.2548324],[23.2706539,39.2548876],[23.2708605,39.2550871],[23.2710984,39.2544939],[23.2712028,39.2544855],[23.2716492,39.255029],[23.2719836,39.2551932],[23.2720968,39.2554553],[23.2725783,39.2559629],[23.2728436,39.2560907],[23.2730001,39.2560196],[23.2734055,39.2560401],[23.2739366,39.2562417],[23.2742075,39.2561668],[23.274385,39.2558165],[23.2748531,39.2553778],[23.2751085,39.2553344],[23.275525,39.2554091],[23.275708,39.2556445],[23.2759613,39.2558082],[23.2764236,39.2559373],[23.276644,39.2559206],[23.2771263,39.2563561],[23.2772878,39.2564292],[23.277445,39.2564302],[23.2776299,39.2564854],[23.2782056,39.2568494],[23.2787495,39.2569339],[23.2788676,39.2570022],[23.2789837,39.2569849],[23.2793921,39.2567171],[23.2796242,39.2566825],[23.2799358,39.2568196],[23.2804566,39.2568949],[23.2809434,39.2568889],[23.2815446,39.2570367],[23.2825209,39.2567724],[23.2826943,39.2568501],[23.283039,39.2571406],[23.2839982,39.2574168],[23.2843514,39.2572748],[23.2849066,39.2573863],[23.2854983,39.2576828],[23.2858211,39.257847],[23.2859922,39.2581184],[23.286661,39.2584649],[23.2871358,39.2591436],[23.2880816,39.2595999],[23.28851,39.2596476],[23.2890413,39.259831],[23.2891902,39.2600122],[23.2896409,39.2601411],[23.2898133,39.2602863],[23.2900411,39.2606841],[23.2900152,39.2609543],[23.2902679,39.2611811],[23.2903692,39.2614881],[23.290484,39.2615969],[23.2908306,39.2617072],[23.2908759,39.2618156],[23.2907591,39.261896],[23.2902251,39.2619828],[23.2895858,39.2619474],[23.2891797,39.2619809],[23.2891207,39.2620887],[23.2891827,39.2622603],[23.2894831,39.2623522],[23.289893,39.2630846],[23.2902259,39.263411],[23.290411,39.2634482],[23.290829,39.2633787],[23.2915927,39.2635095],[23.2915992,39.2640141],[23.2914344,39.2642654],[23.2910959,39.2644976],[23.2911509,39.2647863],[23.2909508,39.2650914],[23.2905319,39.2652511],[23.2900765,39.2655817],[23.2898208,39.2656522],[23.2891604,39.2656122],[23.2886037,39.2656448],[23.2879063,39.2659019]]},{"id":17307,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03c1\u03b3\u03b1\u03bb\u03b1\u03c3\u03c4\u03ae-\u03a0\u03ac\u03bf\u03c5","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Argalasti_Paou","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":3938,"name_EN":"Pelion Mt: Argalasti-Paou","description_EN":"","ascent_time":85,"descent_time":95,"marker":"Red_dots","level":9,"ascent":20,"descent":266,"maxelev":272,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.19605 39.20448,23.21841 39.22635)","views":26,"millestones":"0,23.2181631,39.2265010#1,23.2150788,39.2192925#2,23.2087808,39.2122980#3,23.2032594,39.2065228#3.9,23.1963047,39.2043479","x":23.206308,"y":39.2096383,"coor":[[23.2181631,39.226501],[23.2180252,39.226401],[23.217583,39.2261187],[23.2174805,39.2260234],[23.2171944,39.2257061],[23.2171038,39.2255207],[23.2170497,39.225178],[23.216584,39.225292],[23.2164346,39.2251828],[23.2162541,39.2251366],[23.2161464,39.2250187],[23.2156721,39.2248308],[23.2154372,39.2244327],[23.2156158,39.2239699],[23.2159754,39.2238912],[23.2157883,39.2230069],[23.2160779,39.2219636],[23.2160672,39.2216887],[23.2157685,39.2214704],[23.2155909,39.2207664],[23.2156756,39.2199875],[23.2153683,39.2194989],[23.2149661,39.2192078],[23.2137553,39.2183256],[23.2134893,39.2181211],[23.2126023,39.2176826],[23.2123508,39.2173835],[23.210972,39.216374],[23.210452,39.2158163],[23.2104563,39.2143926],[23.2099786,39.2136054],[23.2098784,39.2132443],[23.2095231,39.2129085],[23.2088444,39.2124894],[23.2086539,39.2119204],[23.208583,39.211528],[23.2086799,39.2111502],[23.2080036,39.2109428],[23.2078455,39.2105813],[23.2079077,39.2102033],[23.2076994,39.2101839],[23.2076421,39.2101294],[23.2073079,39.210046],[23.207064,39.2100984],[23.2069176,39.2100209],[23.2068493,39.2099123],[23.2065381,39.2097795],[23.206308,39.2096383],[23.2058956,39.2093291],[23.2059094,39.2091309],[23.2061203,39.2089161],[23.206252,39.2085386],[23.2062103,39.2081238],[23.2061766,39.2080334],[23.2060385,39.2079559],[23.205932,39.2080633],[23.2056675,39.2079894],[23.2047178,39.2079829],[23.2045104,39.2078914],[23.2041876,39.2075964],[23.2041079,39.2075102],[23.2037854,39.2073458],[23.2037885,39.2070755],[23.2033062,39.2067704],[23.2033201,39.2065632],[23.2030442,39.2063811],[23.2028596,39.206132],[23.2026905,39.2060047],[23.2025515,39.2060128],[23.2023125,39.2056327],[23.2016877,39.2058717],[23.201195,39.2057151],[23.2008125,39.2057486],[23.2006741,39.2056936],[23.2005492,39.2054764],[23.2005754,39.2050756],[23.2002427,39.204803],[23.20001,39.2048915],[23.1999413,39.204828],[23.1998356,39.2049534],[23.1996037,39.2049789],[23.1993582,39.2051754],[23.1991853,39.2051021],[23.1984865,39.2044305],[23.1982082,39.2044556],[23.1980088,39.2046525],[23.1981675,39.204951],[23.1980163,39.205004],[23.1976606,39.2047132],[23.1976517,39.2044788],[23.1975144,39.2043337],[23.1970237,39.2043574],[23.1968496,39.2043922],[23.1963047,39.2043479]]},{"id":17308,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039b\u03b1\u03cd\u03ba\u03bf\u03c2-\u03a7\u03bf\u03bd\u03b4\u03c1\u03ae \u0386\u03bc\u03bc\u03bf\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Lafkos_Chondri_Ammos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":7657,"name_EN":"Pelion Mt: Lafkos-Chondri Ammos","description_EN":"","ascent_time":170,"descent_time":180,"marker":"No_marks","level":9,"ascent":161,"descent":461,"maxelev":309,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.21958 39.13081,23.24762 39.17791)","views":4,"millestones":"0,23.2471166,39.1780918#1,23.2447705,39.1702659#2,23.2445294,39.1622324#3,23.2460038,39.1540766#4,23.2389751,39.1484753#5,23.2360333,39.1399791#6,23.2322394,39.1330204#7,23.2264549,39.1320772#7.7,23.2200829,39.1320396","x":23.2401651,"y":39.1486532,"coor":[[23.2471166,39.1780918],[23.2466196,39.1780165],[23.2464645,39.1777002],[23.2461667,39.1776081],[23.2463202,39.1773208],[23.2464188,39.1771998],[23.2466683,39.176913],[23.2467336,39.1764494],[23.2468196,39.1759859],[23.2469484,39.1756173],[23.2470821,39.1750234],[23.2469941,39.1745858],[23.2467944,39.1742151],[23.2466019,39.1737047],[23.2464434,39.1732712],[23.2464476,39.1724377],[23.2462804,39.1719365],[23.2460987,39.1716109],[23.2456756,39.1711216],[23.2455301,39.1707512],[23.245177,39.1706498],[23.2448555,39.1704044],[23.2445484,39.1698978],[23.2441822,39.169499],[23.2439446,39.1689928],[23.2432265,39.1679519],[23.2432527,39.1676637],[23.2440016,39.1669117],[23.2439451,39.1667852],[23.2436349,39.1665669],[23.2434416,39.1662413],[23.2433765,39.1658353],[23.243455,39.165525],[23.2437822,39.1652388],[23.2438553,39.1648968],[23.2441243,39.1646372],[23.2442013,39.1639349],[23.2441585,39.1636102],[23.2439991,39.1633569],[23.2440481,39.1631049],[23.2442121,39.1629257],[23.2441802,39.162894],[23.2444112,39.1623999],[23.2445036,39.1622834],[23.2445735,39.1621441],[23.2448635,39.1620829],[23.2454228,39.1617351],[23.2454251,39.1615189],[23.2454638,39.1613885],[23.2458246,39.1612016],[23.2460467,39.1609958],[23.2460511,39.1605813],[23.2459606,39.1603825],[23.2459994,39.1600043],[23.2457701,39.1597955],[23.2457141,39.159624],[23.2458092,39.1593903],[23.2458043,39.1587595],[23.2459705,39.1583731],[23.2459227,39.1581701],[23.2455745,39.1571856],[23.245771,39.1561236],[23.2460066,39.1557377],[23.2460341,39.1553323],[23.24582,39.1547813],[23.2460131,39.1540437],[23.2459226,39.1538448],[23.2454082,39.1532468],[23.244024,39.151742],[23.2435229,39.1509818],[23.2432081,39.150759],[23.2430348,39.1507309],[23.2421486,39.1502746],[23.2417937,39.1502542],[23.24157,39.1503744],[23.2414195,39.1503824],[23.2411312,39.1502814],[23.24072,39.1497832],[23.239894,39.149111],[23.2398961,39.1489128],[23.2401651,39.1486532],[23.2401892,39.1485632],[23.2401089,39.1484906],[23.2392396,39.1486201],[23.2390092,39.1485285],[23.2389409,39.1484199],[23.2386584,39.1477873],[23.2385713,39.1472821],[23.2385913,39.1464983],[23.2384946,39.1458039],[23.2385202,39.1445064],[23.2380832,39.143179],[23.2379922,39.1430342],[23.2378713,39.1429749],[23.2377084,39.1425187],[23.2373199,39.1420657],[23.2370487,39.1414601],[23.236557,39.1409163],[23.2358306,39.1396139],[23.2358486,39.1390193],[23.2355965,39.1387834],[23.2352893,39.1383038],[23.2348082,39.1379943],[23.2347419,39.1377055],[23.2341326,39.137341],[23.2339623,39.1370336],[23.2338627,39.1366184],[23.2336797,39.136419],[23.2332875,39.1363082],[23.2329407,39.1362789],[23.2328836,39.1362155],[23.2329816,39.1357115],[23.2327645,39.1354578],[23.2327215,39.1351601],[23.2323993,39.1349958],[23.2324466,39.134906],[23.2325976,39.1348439],[23.2329785,39.1349275],[23.2329236,39.1346569],[23.2326946,39.1344391],[23.2327632,39.1334483],[23.232627,39.1332041],[23.2324545,39.1331039],[23.2319613,39.1329159],[23.2318605,39.1326089],[23.2321064,39.1323312],[23.2322374,39.1319896],[23.2326816,39.131569],[23.2323593,39.1315173],[23.2318023,39.1316759],[23.2314672,39.1316376],[23.2312844,39.1314201],[23.2311867,39.1308338],[23.2310377,39.1306976],[23.2307917,39.1309844],[23.2300918,39.1315024],[23.2301124,39.1317368],[23.230444,39.1320994],[23.2304317,39.1321624],[23.2295638,39.1321837],[23.2292275,39.1322536],[23.2285249,39.1319606],[23.2274404,39.1316831],[23.227244,39.1316638],[23.2270692,39.1317707],[23.2268993,39.1318687],[23.2266161,39.1320471],[23.2262335,39.1321166],[23.2253005,39.1320744],[23.2246528,39.132052],[23.2242146,39.1321167],[23.2238472,39.1321863],[23.2236684,39.1322392],[23.2235173,39.1323013],[23.2227268,39.1325483],[23.2218928,39.1326329],[23.2212805,39.1325567],[23.2204198,39.1323392],[23.2202014,39.1322116],[23.2200829,39.1320396]]},{"id":17309,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03c1\u03bf\u03bc\u03cd\u03c1\u03b9-\u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03b9\u03ac\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Promyri_Platanias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5974,"name_EN":"Pelion Mt: Promyri-Platanias","description_EN":"","ascent_time":135,"descent_time":140,"marker":"Red_dots","level":9,"ascent":88,"descent":285,"maxelev":267,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.27317 39.14089,23.28665 39.18737)","views":9,"millestones":"0,23.2861806,39.1874477#1,23.2824441,39.1800322#2,23.2807610,39.1717253#3,23.2785778,39.1638758#4,23.2773060,39.1565338#5,23.2736049,39.1488651#6.0,23.2743268,39.1408106","x":23.278348,"y":39.1630971,"coor":[[23.2861806,39.1874477],[23.2859838,39.1870185],[23.2860196,39.1869105],[23.28585,39.186513],[23.2855291,39.1861867],[23.2844694,39.1856395],[23.2846785,39.1855687],[23.2850172,39.1852824],[23.2851583,39.185067],[23.2850596,39.1845258],[23.284317,39.183539],[23.2844753,39.1827741],[23.2829803,39.1817737],[23.2830068,39.1814495],[23.2829401,39.1811697],[23.282645,39.1805912],[23.2825786,39.1802844],[23.2823513,39.1798685],[23.2822965,39.1795708],[23.2819682,39.1788299],[23.2820068,39.1784517],[23.2817021,39.1776749],[23.2819987,39.1769739],[23.2819832,39.1762169],[23.2823237,39.1757504],[23.2822919,39.1754618],[23.2825152,39.1751388],[23.2824832,39.1748683],[23.282567,39.1745985],[23.2822923,39.1742814],[23.2822036,39.1739024],[23.2817902,39.1735755],[23.2813327,39.173023],[23.2812597,39.1722386],[23.280928,39.1718401],[23.2805831,39.1716037],[23.280528,39.171333],[23.2806481,39.1709102],[23.2806547,39.1704777],[23.2805405,39.1704996],[23.2805758,39.1704457],[23.280449,39.1703909],[23.2804636,39.1700891],[23.2803606,39.1699803],[23.2796922,39.1696788],[23.279438,39.1696322],[23.2791692,39.1694233],[23.2791707,39.1692791],[23.2792438,39.1692435],[23.279349,39.1691361],[23.2791769,39.1689908],[23.2792372,39.1687569],[23.2791841,39.168288],[23.2792906,39.1680544],[23.2791201,39.167747],[23.2792271,39.1674773],[23.2789856,39.1673226],[23.2790491,39.1670887],[23.2788362,39.1663936],[23.2787587,39.1656947],[23.2788433,39.1653529],[23.278727,39.1650142],[23.2785995,39.1645314],[23.2784886,39.1640621],[23.2787487,39.1635231],[23.278348,39.1630971],[23.2783474,39.1628673],[23.2783022,39.1627589],[23.278376,39.1623358],[23.2782166,39.1620735],[23.2783368,39.1616417],[23.2782697,39.1615827],[23.2780278,39.1614731],[23.2777307,39.1610928],[23.2776633,39.1608942],[23.2776775,39.1606419],[23.2774137,39.160406],[23.2773933,39.1601356],[23.2772905,39.1599998],[23.2772838,39.1595222],[23.2772269,39.1594317],[23.2770825,39.1593993],[23.2768641,39.1592537],[23.2765642,39.1591527],[23.2764738,39.1590486],[23.276266,39.1589932],[23.2762781,39.1589482],[23.2760464,39.1589648],[23.2758504,39.1588915],[23.276374,39.1586244],[23.2765531,39.1580849],[23.2767047,39.1579777],[23.2769171,39.1575735],[23.2768851,39.157312],[23.2769789,39.1571954],[23.2770015,39.1568532],[23.2771543,39.1566288],[23.2772946,39.1565621],[23.2774728,39.1561127],[23.2771966,39.1559578],[23.2771788,39.1554351],[23.2769602,39.1553075],[23.2767896,39.1550181],[23.2765478,39.1548995],[23.276321,39.1544385],[23.2759055,39.1543278],[23.2755018,39.154055],[23.2752411,39.1538686],[23.2750525,39.1530745],[23.2745569,39.1528732],[23.2743852,39.1526919],[23.2743747,39.1525837],[23.2745621,39.1523686],[23.2744699,39.1521563],[23.2742784,39.1516505],[23.2742853,39.1512225],[23.2739429,39.1507608],[23.2739837,39.1501663],[23.2736652,39.1496237],[23.2735706,39.1485598],[23.2738636,39.1481922],[23.2739966,39.148139],[23.274077,39.1477385],[23.2747894,39.1459768],[23.2749469,39.1452839],[23.2750151,39.1442481],[23.2752214,39.1421768],[23.2752052,39.1417487],[23.2751348,39.1417032],[23.2743268,39.1408106]]},{"id":17311,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2-\u03a0\u03b9\u03bd\u03b1\u03ba\u03ac\u03c4\u03b5\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_AgiosGeorgios_Pinakates","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4132,"name_EN":"Pelion Mt: Agios Georgios-Pinakates","description_EN":"","ascent_time":95,"descent_time":85,"marker":"Red_dots","level":9,"ascent":152,"descent":167,"maxelev":653,"minelev":563,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.08472 39.33654,23.11765 39.34291)","views":18,"millestones":"0,23.0850925,39.3429089#1,23.0909199,39.3388320#2,23.1013665,39.3383637#3,23.1075633,39.3387157#4.1,23.1176530,39.3366366","x":23.1045232,"y":39.3369734,"coor":[[23.0850925,39.3429089],[23.0852694,39.3427796],[23.0858096,39.3424775],[23.0859762,39.3421634],[23.0856574,39.3416924],[23.0849702,39.3410022],[23.0848132,39.3405774],[23.0847571,39.3397931],[23.0848535,39.3395235],[23.0853225,39.3391488],[23.0862054,39.3388223],[23.0870445,39.3385406],[23.0881713,39.3384413],[23.0888009,39.3384642],[23.0889399,39.3384833],[23.0904283,39.3386887],[23.0922085,39.3392072],[23.0922206,39.3391712],[23.0925548,39.3390973],[23.0929258,39.3390055],[23.0932378,39.3391071],[23.0934372,39.3389464],[23.0935509,39.3391275],[23.0939892,39.3393292],[23.094211,39.3392228],[23.0942944,39.3390612],[23.0947506,39.3387765],[23.0951345,39.3386983],[23.0953081,39.3387357],[23.0955059,39.3386922],[23.0957136,39.3387839],[23.0960853,39.3387508],[23.0964482,39.3386995],[23.0966353,39.3385929],[23.0969488,39.3385773],[23.0973703,39.3384499],[23.0978012,39.3383271],[23.0981822,39.3384742],[23.0984489,39.3384943],[23.0989603,39.3384262],[23.0994155,39.3382225],[23.099997,39.3381188],[23.1004025,39.338167],[23.1010498,39.3383612],[23.1015371,39.338365],[23.1019787,39.3383143],[23.1020864,39.3382521],[23.1022374,39.3382443],[23.1022698,39.3383166],[23.1024457,39.3383675],[23.1025309,39.338233],[23.1027672,39.3380952],[23.103022,39.3380205],[23.103134,39.3379944],[23.1031941,39.3378326],[23.1035781,39.3377455],[23.1037636,39.3377649],[23.1040202,39.3376588],[23.1040682,39.337533],[23.1042789,39.3373905],[23.1041877,39.3372636],[23.1043368,39.337026],[23.1045232,39.3369734],[23.1050501,39.336599],[23.1056657,39.3365496],[23.1058273,39.3366139],[23.10607,39.3366924],[23.1060686,39.3368005],[23.106212,39.3368422],[23.105962,39.3373448],[23.1061208,39.3373416],[23.106223,39.3375225],[23.1061376,39.3378463],[23.1061926,39.338081],[23.1061316,39.3383148],[23.106209,39.3386217],[23.1058936,39.3387815],[23.1059034,39.3389257],[23.1061115,39.3389814],[23.1061437,39.3391889],[23.1063508,39.3390418],[23.1067806,39.3390091],[23.1070146,39.3388577],[23.1076084,39.3387],[23.1081284,39.3388662],[23.1085082,39.3391124],[23.1088806,39.3390252],[23.1089962,39.3390621],[23.1094166,39.3388491],[23.1097192,39.3387793],[23.1099856,39.3388174],[23.1106322,39.3390746],[23.1110419,39.3387894],[23.1118449,39.3386063],[23.1119087,39.3385212],[23.1120356,39.3385762],[23.1121289,39.3385409],[23.1119813,39.3382875],[23.1119764,39.3381297],[23.1121029,39.3382208],[23.1125437,39.3382242],[23.1129253,39.3383352],[23.1131372,39.3380935],[23.1132947,39.3380272],[23.1136222,39.3378224],[23.1137278,39.3378142],[23.1139616,39.3376718],[23.1143479,39.3376117],[23.1145445,39.3376582],[23.1146262,39.3376228],[23.1146236,39.3374561],[23.1148069,39.3371782],[23.1150702,39.337009],[23.1155936,39.3369048],[23.1158161,39.3367443],[23.1161183,39.3367016],[23.1163611,39.3367755],[23.1163806,39.33669],[23.1164928,39.3365332],[23.1168486,39.3366756],[23.1170723,39.3365872],[23.1172925,39.3366068],[23.117343,39.3366613],[23.117529,39.3366357],[23.117653,39.3366366]]},{"id":17312,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a7\u03ac\u03bd\u03b9\u03b1-\u039a\u03b9\u03c3\u03c3\u03cc\u03c2","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc \u03b4\u03ac\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Chania-Kissos","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":13826,"name_EN":"Pelion Mt: Chania-Kissos","description_EN":"A long route along Pelion montaine forest","ascent_time":495,"descent_time":510,"marker":"Red_dots","level":12,"ascent":402,"descent":1070,"maxelev":1411,"minelev":513,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06262 39.36521,23.13246 39.40576)","views":65,"millestones":"0,23.0627537,39.3959471#1,23.0729574,39.3931464#2,23.0815141,39.3875760#3,23.0896308,39.3847348#4,23.0900949,39.3766803#5,23.0916366,39.3693901#6,23.0989766,39.3660516#7,23.1045795,39.3712327#8,23.1107480,39.3775834#9,23.1095855,39.3804226#10,23.1095696,39.3839128#11,23.1150525,39.3905371#12,23.1194888,39.3961546#13,23.1261454,39.4029464#13.8,23.1318140,39.4062998","x":23.1079967,"y":39.3740108,"coor":[[23.0627537,39.3959471],[23.0644964,39.3951051],[23.0648902,39.3945001],[23.0656741,39.3940649],[23.066151,39.3940056],[23.0669058,39.3940117],[23.0671899,39.3941221],[23.0687273,39.3941344],[23.0696153,39.393727],[23.0701747,39.3935783],[23.0706624,39.3935822],[23.0714268,39.3937325],[23.071977,39.3934035],[23.0727577,39.393198],[23.0734802,39.39301],[23.0744743,39.3924773],[23.0749955,39.3923102],[23.0758163,39.391704],[23.0760904,39.3911746],[23.0771559,39.3905073],[23.0780836,39.3897217],[23.0783654,39.3894852],[23.07925,39.38933],[23.0800693,39.3888319],[23.0805932,39.3887279],[23.0807136,39.3884045],[23.0812543,39.3879041],[23.0814318,39.3876532],[23.081902,39.3872154],[23.0822518,39.38702],[23.0825235,39.3868329],[23.0828778,39.3870159],[23.0827241,39.3868615],[23.0827488,39.3867536],[23.0829004,39.3867007],[23.0835501,39.3865481],[23.0836938,39.3864907],[23.0838253,39.3864827],[23.0849937,39.3868163],[23.085365,39.3868372],[23.0860761,39.3866266],[23.0873445,39.3864113],[23.0877777,39.3861353],[23.0879117,39.3856588],[23.0880752,39.3855835],[23.0887929,39.3857513],[23.0892222,39.3857817],[23.0896759,39.3857132],[23.0898377,39.3857685],[23.0897368,39.3854974],[23.0897305,39.3850829],[23.0895945,39.3848295],[23.0897506,39.3844343],[23.0897013,39.3828661],[23.0900061,39.3826432],[23.089906,39.3823],[23.0897685,39.3819656],[23.0893917,39.3814761],[23.0889675,39.3810583],[23.0888537,39.3802689],[23.0888527,39.3797013],[23.0892892,39.378281],[23.089513,39.3780305],[23.090211,39.3779278],[23.0903772,39.3776408],[23.0903152,39.3770546],[23.0901682,39.3767471],[23.0899502,39.3765472],[23.0900464,39.3762956],[23.0899326,39.3761145],[23.0899358,39.3758713],[23.0897905,39.3754376],[23.0896983,39.3753829],[23.0892691,39.3753615],[23.0891776,39.3752526],[23.0891215,39.374207],[23.0889059,39.3738268],[23.0888978,39.3735565],[23.0887625,39.3732491],[23.0891616,39.3729098],[23.089676,39.3726345],[23.089952,39.3719428],[23.0899683,39.3715825],[23.0902095,39.3717827],[23.090349,39.3717657],[23.0905299,39.3712445],[23.0908811,39.371013],[23.0910012,39.3707076],[23.0911308,39.3705644],[23.091287,39.3701512],[23.0912896,39.369953],[23.0915635,39.3694235],[23.0917737,39.369326],[23.0921846,39.3689688],[23.0926184,39.3686388],[23.0935044,39.3683483],[23.0951875,39.3683614],[23.095584,39.3682203],[23.0962551,39.3674867],[23.0965046,39.3670471],[23.096662,39.3665438],[23.0970826,39.3663308],[23.0972943,39.3661162],[23.0978668,39.3658323],[23.098305,39.3651509],[23.0983218,39.3649482],[23.0987943,39.3652943],[23.0990137,39.3656699],[23.0988633,39.3656327],[23.0988157,39.3657225],[23.0989858,39.3660302],[23.09895,39.366111],[23.0990287,39.3663098],[23.0991553,39.3663919],[23.0989466,39.3663722],[23.0989229,39.3664081],[23.0993094,39.3670508],[23.099282,39.367375],[23.0996166,39.3675308],[23.0998339,39.3677848],[23.1001116,39.367859],[23.1002835,39.3680315],[23.100618,39.3681963],[23.1008963,39.3682255],[23.1010684,39.36838],[23.1009514,39.3684512],[23.1011088,39.3688488],[23.1010273,39.3688662],[23.1010958,39.3689569],[23.100991,39.3689831],[23.1012109,39.3690388],[23.1010691,39.369227],[23.1008122,39.3693511],[23.1008462,39.3694145],[23.1010199,39.3694428],[23.1008797,39.3695138],[23.1009371,39.3695684],[23.1008551,39.3696218],[23.1009468,39.3697126],[23.1011551,39.3697683],[23.1017833,39.369665],[23.1020956,39.3697485],[23.1021061,39.3698387],[23.1022679,39.369894],[23.102255,39.369993],[23.1025907,39.3700677],[23.1026586,39.3702034],[23.1032455,39.3706134],[23.103594,39.370589],[23.1040303,39.3709708],[23.1046072,39.3712456],[23.1048394,39.3712474],[23.1049878,39.3714467],[23.1053794,39.371684],[23.1056576,39.3717222],[23.1060033,39.3719231],[23.1062819,39.3719252],[23.106315,39.3720606],[23.106636,39.3723785],[23.1066451,39.3725768],[23.1067373,39.3726225],[23.1067476,39.3727307],[23.107208,39.3730406],[23.1072031,39.373428],[23.1076071,39.3736113],[23.1079967,39.3740108],[23.1081243,39.3740208],[23.1082082,39.3747242],[23.108323,39.3748242],[23.1085782,39.3748442],[23.1086585,39.3749169],[23.1086485,39.3750475],[23.1087042,39.3752371],[23.1089009,39.3752837],[23.1090367,39.3753884],[23.109025,39.3754829],[23.1093587,39.3757197],[23.110029,39.3758735],[23.1103253,39.3763083],[23.1102662,39.376853],[23.1105187,39.3773415],[23.1107405,39.3774468],[23.11075,39.377609],[23.1108419,39.3776908],[23.1109466,39.3776736],[23.1111463,39.3774859],[23.1111568,39.3775761],[23.1113412,39.3776856],[23.1114284,39.377844],[23.1116905,39.3782334],[23.1122213,39.3784898],[23.1119524,39.3785508],[23.1121604,39.3789173],[23.1123455,39.3789728],[23.1125899,39.3789206],[23.1126475,39.3789571],[23.1125744,39.3792268],[23.1126327,39.3798445],[23.112527,39.3799338],[23.1127698,39.3800167],[23.112571,39.3801324],[23.112535,39.3802222],[23.1122322,39.380292],[23.1122543,39.3803822],[23.1120906,39.3804711],[23.1117659,39.3804416],[23.1116946,39.3805762],[23.1118883,39.380866],[23.1120733,39.3809215],[23.1121416,39.3810301],[23.1123806,39.3810365],[23.1127195,39.3811517],[23.1125097,39.3812132],[23.1121494,39.3812465],[23.1116863,39.3811438],[23.1112913,39.3811588],[23.110933,39.3810299],[23.1103452,39.380692],[23.1099163,39.3806347],[23.1095593,39.3804067],[23.1093879,39.3801891],[23.109074,39.3802228],[23.108821,39.3800316],[23.1087161,39.3800579],[23.1088406,39.3803111],[23.1092449,39.3804764],[23.1093891,39.3810091],[23.1101345,39.3817357],[23.1102933,39.3820342],[23.1111426,39.3828156],[23.1116375,39.3831618],[23.1120069,39.3833268],[23.1121149,39.3835078],[23.1110471,39.3831888],[23.1104778,39.3832205],[23.1096695,39.3828719],[23.1092989,39.382797],[23.1092515,39.3828687],[23.1094015,39.382942],[23.1097102,39.3833228],[23.1096505,39.3834484],[23.1096944,39.383647],[23.1096203,39.3838267],[23.1095502,39.3839478],[23.1096306,39.3840205],[23.1095837,39.3840561],[23.1097921,39.3841028],[23.1097324,39.3842285],[23.1098221,39.3843058],[23.1100623,39.3845959],[23.1100714,39.3847942],[23.1102799,39.3848319],[23.1102553,39.3849398],[23.1101146,39.3850469],[23.1101365,39.3851551],[23.1107384,39.3853039],[23.1108065,39.3854216],[23.1107576,39.3856194],[23.1108374,39.3857372],[23.1107197,39.3858624],[23.1107518,39.3860789],[23.1110283,39.3862432],[23.1115041,39.3862649],[23.1116254,39.3863199],[23.1119111,39.3866825],[23.1123536,39.3874968],[23.1132086,39.3878367],[23.1135186,39.3881094],[23.113716,39.3890299],[23.1141111,39.389925],[23.1143748,39.3901883],[23.115217,39.3906272],[23.1156855,39.3912255],[23.1157067,39.3913878],[23.1154258,39.3915659],[23.1152654,39.3917359],[23.1153428,39.3920428],[23.115175,39.392456],[23.1152973,39.3928895],[23.1151297,39.3932846],[23.1158447,39.3936775],[23.1160379,39.3940124],[23.1171884,39.393949],[23.1181731,39.3941367],[23.1186975,39.3939965],[23.1189058,39.3940522],[23.1188681,39.3942771],[23.1185034,39.3946528],[23.1183248,39.3950029],[23.1186589,39.3952126],[23.1187612,39.3953936],[23.1192899,39.3958301],[23.1195402,39.3962375],[23.1198814,39.3970195],[23.1202817,39.3975091],[23.1208026,39.3976392],[23.121148,39.3978851],[23.122015,39.398198],[23.1224057,39.3985343],[23.1227258,39.3989422],[23.1230101,39.3993363],[23.1229697,39.3997775],[23.1232863,39.4004647],[23.1235626,39.400656],[23.1236647,39.400855],[23.1241036,39.4010475],[23.1244361,39.4013924],[23.1246929,39.401552],[23.1250026,39.401685],[23.1255316,39.4021035],[23.1256689,39.4022667],[23.1257239,39.4025194],[23.1262859,39.4030823],[23.1265166,39.4032101],[23.1267906,39.4035906],[23.1274394,39.4038928],[23.1276598,39.4040071],[23.1277755,39.404044],[23.12797,39.4042798],[23.1282235,39.4044439],[23.1288601,39.4046198],[23.1293918,39.4049437],[23.129888,39.4051997],[23.1302568,39.4053151],[23.1304743,39.405569],[23.1306497,39.4055928],[23.1313235,39.4055798],[23.1313907,39.4057786],[23.1319555,39.4061252],[23.1319083,39.4061924],[23.131814,39.4062998]]},{"id":17333,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039d\u03b5\u03bf\u03c7\u03ce\u03c1\u03b9-\u0391\u03c6\u03ad\u03c4\u03b5\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Neochori_Afetes","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":5882,"name_EN":"Pelion Mt: Neochori-Afetes","description_EN":"","ascent_time":130,"descent_time":140,"marker":"Red_dots","level":11,"ascent":62,"descent":295,"maxelev":453,"minelev":215,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.18056 39.28057,23.22017 39.30436)","views":7,"millestones":"0,23.2199074,39.3046357#1,23.2167414,39.2977554#2,23.2134109,39.2892192#3,23.2052972,39.2836268#4,23.1945503,39.2850675#5,23.1865118,39.2809987#5.9,23.1808071,39.2831470","x":23.1984323,"y":39.2840221,"coor":[[23.2199074,39.3046357],[23.2195724,39.3045749],[23.2194456,39.3045019],[23.2192641,39.3044692],[23.2193252,39.3041813],[23.219226,39.3040454],[23.218756,39.3038756],[23.2187112,39.3037311],[23.2189218,39.3035703],[23.218935,39.3034263],[23.2190763,39.303229],[23.219091,39.3029497],[23.2188061,39.3024973],[23.2184843,39.3022338],[23.2185909,39.3020363],[23.2188711,39.301867],[23.2190063,39.3018634],[23.2188451,39.3016596],[23.2178422,39.3011122],[23.2175441,39.3008038],[23.2175339,39.3006866],[23.217687,39.3004714],[23.2178072,39.3000937],[23.2177764,39.2997331],[23.21792,39.2993376],[23.2177276,39.2989128],[23.2174518,39.2986857],[23.2174244,39.2982485],[23.2170525,39.2981829],[23.2167899,39.2980415],[23.2164842,39.2963364],[23.2157252,39.2947274],[23.2146821,39.2930219],[23.2138975,39.2916289],[23.2137061,39.2900778],[23.2136843,39.2898298],[23.2135606,39.2894866],[23.2123899,39.2873702],[23.2121957,39.2871166],[23.2111974,39.2861817],[23.2107155,39.2857279],[23.2098638,39.2856501],[23.2093459,39.2853041],[23.2087689,39.2850569],[23.2084447,39.2850187],[23.2077999,39.2846178],[23.2068846,39.2845575],[23.2061247,39.2840838],[23.205699,39.2838196],[23.205657,39.2837202],[23.2054953,39.2836695],[23.2048898,39.2835392],[23.2041627,39.2833721],[23.2039219,39.2834245],[23.2031915,39.2834195],[23.2030733,39.2836169],[23.2024578,39.2837028],[23.2019112,39.2838522],[23.2015377,39.2840074],[23.2008773,39.2839668],[23.2002534,39.2840211],[23.1996653,39.2838954],[23.1995452,39.2839486],[23.1991639,39.283928],[23.1984323,39.2840221],[23.1978622,39.2841984],[23.1975882,39.2843001],[23.1968407,39.2847725],[23.1958617,39.2852163],[23.1953628,39.2852399],[23.1951088,39.285148],[23.1943333,39.2850345],[23.1925077,39.2844722],[23.1919986,39.2843786],[23.1912488,39.284049],[23.1907163,39.2839732],[23.1903954,39.2838674],[23.1901101,39.2838474],[23.1899857,39.2839817],[23.1897035,39.2839482],[23.1895202,39.2837261],[23.1894655,39.2834374],[23.188803,39.2829507],[23.1885985,39.2825889],[23.1885378,39.2823542],[23.1883423,39.2822176],[23.1885406,39.2821109],[23.1886135,39.2821024],[23.1885797,39.282021],[23.1887791,39.2818242],[23.1888401,39.2815543],[23.1885505,39.2815343],[23.1880307,39.2813685],[23.1873473,39.2813096],[23.1869664,39.2811628],[23.1869194,39.2812165],[23.1865045,39.2809974],[23.1862139,39.2810674],[23.186136,39.2807876],[23.1860697,39.2807826],[23.185777,39.2810328],[23.1857634,39.2812039],[23.1854386,39.2812197],[23.1853471,39.2811109],[23.1850697,39.2810369],[23.1847055,39.2807595],[23.1844289,39.2806134],[23.1843568,39.2803696],[23.1843812,39.2803247],[23.1841949,39.2803955],[23.1841009,39.280503],[23.1840366,39.2810432],[23.1835257,39.2811117],[23.1833491,39.2813447],[23.1830213,39.2816127],[23.1826008,39.2824117],[23.1824169,39.2826492],[23.1822114,39.2826883],[23.1821378,39.2825977],[23.1818823,39.282632],[23.1818372,39.2825235],[23.1815758,39.2826298],[23.1812639,39.2828754],[23.181154,39.2827305],[23.1809335,39.2827469],[23.1808812,39.2827511],[23.1808418,39.2829626],[23.1808071,39.283147]]},{"id":17334,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2-\u039a\u03ac\u03c4\u03c9 \u0393\u03b1\u03c4\u03b6\u03ad\u03b1","description_GR":"\u03a9\u03c1\u03b1\u03af\u03b1 \u03ba\u03b1\u03c4\u03b7\u03c6\u03bf\u03c1\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03c0\u03bf\u03bb\u03cd\u03c0\u03bb\u03b5\u03c5\u03c1\u03bf \u03c0\u03b7\u03bb\u03b9\u03bf\u03c1\u03b5\u03af\u03c4\u03b9\u03ba\u03bf \u03c4\u03bf\u03c0\u03af\u03bf","path":"THESSALIA\/Thessaly_Pelion_AgGeorgios_Gadzea","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5717,"name_EN":"Pilio Mt: Aghios Georgios-Kato Gadzea","description_EN":"A trip along the richness of Pilion landscapes","ascent_time":120,"descent_time":140,"marker":"Red_dots","level":9,"ascent":41,"descent":633,"maxelev":620,"minelev":6,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.08427 39.31048,23.09851 39.3429)","views":9,"millestones":"0,23.0850925,39.3429089#1,23.0891264,39.3370000#2,23.0921434,39.3316219#3,23.0898720,39.3255878#4,23.0931921,39.3229547#5,23.0959842,39.3156609#5.7,23.0985116,39.3104809","x":23.0890022,"y":39.326279,"coor":[[23.0850925,39.3429089],[23.0852694,39.3427796],[23.0858096,39.3424775],[23.0859762,39.3421634],[23.0856574,39.3416924],[23.0849702,39.3410022],[23.0848132,39.3405774],[23.0846413,39.3404139],[23.0843816,39.3398622],[23.0843172,39.3394652],[23.084553,39.3391788],[23.0854089,39.3385007],[23.0854685,39.3383795],[23.0855045,39.3382897],[23.0861119,39.3379791],[23.0866121,39.3378839],[23.0878773,39.3378488],[23.0881694,39.3376979],[23.0883112,39.3375008],[23.0886945,39.3374677],[23.0891384,39.3372369],[23.0891641,39.3370479],[23.0889504,39.3367759],[23.0888259,39.3365407],[23.0888168,39.3363424],[23.0889819,39.3361364],[23.0891802,39.3360569],[23.0895397,39.3360777],[23.09014,39.3363077],[23.0907214,39.3362131],[23.0912315,39.3362531],[23.0909836,39.3356835],[23.0909077,39.3352684],[23.0917075,39.3353287],[23.0917776,39.3352932],[23.0917717,39.3352166],[23.0918252,39.3351224],[23.0918158,39.3347799],[23.0917355,39.3347072],[23.0916838,39.3342203],[23.0914549,39.3339752],[23.0912626,39.3335952],[23.0912581,39.3330456],[23.0914588,39.3327768],[23.0910892,39.3326478],[23.0910551,39.3325934],[23.0916048,39.3322553],[23.0920707,39.3321148],[23.0921884,39.3319896],[23.092104,39.3313402],[23.0920002,39.3312853],[23.0918483,39.3313742],[23.0917914,39.3312837],[23.0918138,39.3306216],[23.0917221,39.3305307],[23.091795,39.330279],[23.0914608,39.3297358],[23.0911129,39.329724],[23.0906036,39.3299949],[23.0905373,39.3297421],[23.0902129,39.3297035],[23.0901693,39.3294869],[23.0903597,39.3291189],[23.0900389,39.3288101],[23.090075,39.3284274],[23.0897672,39.3280105],[23.089735,39.327812],[23.0890711,39.3280051],[23.0890224,39.3276533],[23.0889266,39.3274363],[23.0890213,39.3272929],[23.088981,39.3268195],[23.0889618,39.3267112],[23.0890022,39.326279],[23.0891107,39.3261312],[23.0890773,39.3261039],[23.0891612,39.3259829],[23.0892534,39.3260287],[23.0895003,39.3257783],[23.0900258,39.3255121],[23.090541,39.3251467],[23.0906703,39.3250126],[23.0908607,39.3244779],[23.0909501,39.3241272],[23.0907722,39.3235266],[23.0906069,39.3228585],[23.090403,39.3224785],[23.0902349,39.3217428],[23.0901439,39.3215979],[23.0904608,39.3216815],[23.0909496,39.3220908],[23.0915132,39.3221853],[23.0922813,39.3228941],[23.0923718,39.323075],[23.0922969,39.3234799],[23.0923974,39.3237871],[23.0925568,39.3240226],[23.0926266,39.3240051],[23.0927027,39.3235011],[23.0929752,39.3230617],[23.0931985,39.3229508],[23.0936064,39.3228098],[23.0937952,39.322559],[23.0939608,39.3221999],[23.0941608,39.3219852],[23.0945655,39.3217496],[23.094579,39.3216911],[23.0947058,39.321665],[23.0947441,39.321395],[23.0948858,39.3211979],[23.0947482,39.3210797],[23.0947623,39.3208816],[23.0946127,39.3207903],[23.0945399,39.320141],[23.0942408,39.3199404],[23.0943751,39.3196756],[23.09433,39.3194095],[23.0940281,39.3191458],[23.0941216,39.3190925],[23.0940881,39.3189931],[23.0941584,39.3189396],[23.0940232,39.3188259],[23.0939215,39.3186179],[23.0939464,39.3184829],[23.0944301,39.3183065],[23.0951233,39.317627],[23.0950136,39.3172207],[23.0949731,39.3171258],[23.0952557,39.3168036],[23.0953887,39.3163811],[23.0955757,39.3162745],[23.0956953,39.3159961],[23.0958588,39.3159072],[23.0960135,39.3156021],[23.0961882,39.3155494],[23.0963781,39.3152174],[23.0962663,39.3148922],[23.0962833,39.3144688],[23.096406,39.3139472],[23.0966331,39.3134263],[23.0970124,39.313249],[23.0970687,39.3125647],[23.0973867,39.3121887],[23.0975728,39.3116946],[23.0978811,39.3111743],[23.0985116,39.3104809]]},{"id":17335,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03b9\u03ac\u03c2-\u039c\u03b1\u03cd\u03c1\u03b7 \u03a0\u03ad\u03c4\u03c1\u03b1","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Platanias_Mavri_Petra","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":10064,"name_EN":"Pelion Mt: Platanias-Mavri Petra","description_EN":"","ascent_time":185,"descent_time":185,"marker":"No_marks","level":9,"ascent":439,"descent":457,"maxelev":164,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.21308 39.12906,23.27445 39.1511)","views":11,"millestones":"0,23.2743268,39.1408106#1,23.2644615,39.1374522#2,23.2564120,39.1343475#3,23.2464288,39.1308261#4,23.2358675,39.1288464#5,23.2300986,39.1316106#6,23.2202389,39.1322356#7,23.2152240,39.1328013#8,23.2169166,39.1359466#9,23.2167503,39.1430880#10.1,23.2165791,39.1511282","x":23.2285231,"y":39.1319606,"coor":[[23.2743268,39.1408106],[23.2733517,39.1409352],[23.2725877,39.1409665],[23.2717109,39.1407087],[23.2712754,39.1405843],[23.2709548,39.1405688],[23.2707306,39.140608],[23.2704538,39.1405161],[23.2699517,39.1401525],[23.2697903,39.1400975],[23.2696874,39.1399707],[23.2695029,39.1399154],[23.269377,39.1397795],[23.2688351,39.1395959],[23.268479,39.1393413],[23.2675894,39.1392096],[23.2673629,39.139082],[23.2670932,39.1390082],[23.267163,39.1389726],[23.2668748,39.1388717],[23.2663695,39.1384991],[23.2661504,39.1384346],[23.2660936,39.1383261],[23.2657594,39.1381979],[23.2655418,39.1379802],[23.2649606,39.137891],[23.2641351,39.1371649],[23.2632014,39.1365147],[23.2624913,39.1358164],[23.2621658,39.1353367],[23.2619752,39.1347588],[23.26178,39.1346134],[23.2613978,39.134647],[23.2610284,39.1345726],[23.2597299,39.1348257],[23.2589336,39.1346314],[23.2584133,39.134592],[23.2580651,39.1346979],[23.2576757,39.1354163],[23.2575597,39.1354516],[23.2574943,39.1350638],[23.2573691,39.1348647],[23.2571518,39.1346291],[23.2567834,39.1344555],[23.2556436,39.1341193],[23.2555291,39.134042],[23.2547258,39.1334151],[23.2539892,39.13305],[23.2532973,39.1328293],[23.2525027,39.1324818],[23.251413,39.1315917],[23.2509983,39.1314178],[23.250673,39.1314743],[23.2505357,39.1313968],[23.2499115,39.1313478],[23.2495205,39.131129],[23.248449,39.1307076],[23.2480445,39.1306689],[23.2475143,39.1307826],[23.2471431,39.1308704],[23.2467498,39.1308678],[23.2452017,39.1306596],[23.2449353,39.1306849],[23.2446679,39.1308093],[23.244475,39.1304566],[23.2442344,39.1302388],[23.2430392,39.1294921],[23.2421776,39.1291531],[23.2408141,39.1290001],[23.2392869,39.1290081],[23.238339,39.1289299],[23.2372623,39.1290039],[23.2369504,39.1289568],[23.2366049,39.1288194],[23.2359221,39.128833],[23.2350985,39.1290348],[23.2346444,39.1293022],[23.2346068,39.1295722],[23.2348442,39.130182],[23.234973,39.1305433],[23.2349115,39.1308853],[23.2350833,39.1310487],[23.2350935,39.1311749],[23.2349398,39.1314802],[23.2345292,39.1320002],[23.2339862,39.1319245],[23.2337754,39.1321664],[23.2336363,39.1321835],[23.2330401,39.131684],[23.2326802,39.131569],[23.2323575,39.1315173],[23.2318005,39.1316758],[23.2314654,39.1316376],[23.2312826,39.1314201],[23.2311848,39.1308338],[23.2310359,39.1306976],[23.2307898,39.1309844],[23.23009,39.1315024],[23.2301106,39.1317368],[23.2304422,39.1320994],[23.2304299,39.1321624],[23.229562,39.1321837],[23.2292257,39.1322536],[23.2285231,39.1319606],[23.2274386,39.1316831],[23.2272421,39.1316637],[23.2270674,39.1317707],[23.2268979,39.1318687],[23.2266143,39.132047],[23.2262317,39.1321166],[23.225299,39.1320744],[23.2246514,39.132052],[23.2242132,39.1321167],[23.2238465,39.1321863],[23.2236673,39.1322392],[23.2235162,39.1323013],[23.2227257,39.1325483],[23.2218917,39.1326329],[23.2212794,39.1325567],[23.2204187,39.1323392],[23.2202003,39.1322116],[23.2200822,39.1320396],[23.2190915,39.1316455],[23.2186791,39.1312823],[23.218195,39.1311168],[23.2177721,39.1306454],[23.2168029,39.1304046],[23.2163175,39.1303653],[23.2158423,39.1304342],[23.2152994,39.1303585],[23.21516,39.1304116],[23.2145995,39.1308764],[23.2142648,39.130802],[23.2137783,39.1308528],[23.2135011,39.1308149],[23.2134192,39.1309946],[23.2134392,39.1312741],[23.213298,39.1314894],[23.213744,39.1319609],[23.2137979,39.1321145],[23.2150312,39.1325373],[23.2152147,39.1326827],[23.2152352,39.1329171],[23.2157181,39.1331907],[23.217427,39.1335086],[23.218409,39.1336323],[23.2189282,39.1337619],[23.2193078,39.1339627],[23.2201199,39.1348152],[23.2200545,39.1349724],[23.2201196,39.1353694],[23.2200609,39.1354411],[23.219899,39.13544],[23.2192075,39.135192],[23.2191379,39.1352096],[23.2191498,39.1353088],[23.2190906,39.1354346],[23.2192257,39.1357689],[23.2188748,39.1361089],[23.2182965,39.136096],[23.217564,39.1364155],[23.2174417,39.1359642],[23.2172707,39.1358954],[23.2167956,39.1359643],[23.2162419,39.1358074],[23.2161468,39.1356806],[23.2155673,39.1357668],[23.2156537,39.1363261],[23.2153276,39.1365221],[23.2153353,39.1368646],[23.2152526,39.1369542],[23.2154771,39.1375774],[23.2155446,39.1380104],[23.2157149,39.1381107],[23.2156277,39.1386688],[23.2158637,39.1393011],[23.2159046,39.139788],[23.2161196,39.1402219],[23.2161287,39.1404473],[23.2167092,39.1413162],[23.2169607,39.1415882],[23.2169809,39.1418587],[23.2168907,39.1418986],[23.2167557,39.1426006],[23.2167493,39.1431772],[23.2168576,39.1438448],[23.2168171,39.1443671],[23.2166258,39.1449245],[23.2166679,39.1453033],[23.2167697,39.1455112],[23.2166035,39.1458885],[23.2167033,39.1459883],[23.2169459,39.146026],[23.217071,39.1462251],[23.2171023,39.1465317],[23.2174279,39.147435],[23.2175584,39.1481927],[23.2177617,39.1486447],[23.2176412,39.1490764],[23.2171739,39.1494697],[23.2170271,39.1497255],[23.2170715,39.149897],[23.2169159,39.1503646],[23.2168887,39.1505716],[23.2168599,39.1508508],[23.2165791,39.1511282]]},{"id":17359,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03bf\u03bd\u03ae \u039b\u03b1\u03bc\u03c0\u03b7\u03b4\u03cc\u03bd\u03b1\u03c2-\u039c\u03c5\u03bb\u03bf\u03c0\u03cc\u03c4\u03b1\u03bc\u03bf\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Labidona_Mylopotamos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3069,"name_EN":"Pelion Mt: Labidona monastery-Mylopotamos","description_EN":"","ascent_time":70,"descent_time":70,"marker":"Red_dots","level":12,"ascent":132,"descent":146,"maxelev":91,"minelev":7,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.20174 39.36013,23.21358 39.37466)","views":21,"millestones":"0,23.2135713,39.3604904#1,23.2074968,39.3629903#2,23.2022196,39.3679426#3.1,23.2034069,39.3746670","x":23.2059986,"y":39.3645974,"coor":[[23.2135713,39.3604904],[23.2133048,39.3604526],[23.2125308,39.360123],[23.2121588,39.3601745],[23.2121226,39.3602914],[23.2123636,39.3605363],[23.212349,39.3608066],[23.2120554,39.3611109],[23.2113796,39.3615344],[23.2114122,39.3617328],[23.2113254,39.3622188],[23.2111131,39.3625237],[23.2116751,39.3631222],[23.2116933,39.3635729],[23.2114937,39.3637697],[23.2111681,39.3638216],[23.2107935,39.3641074],[23.2104444,39.3641771],[23.2102241,39.3641576],[23.2092511,39.3639708],[23.2088248,39.3636886],[23.2081659,39.3634498],[23.2071177,39.3627308],[23.2066545,39.3626331],[23.2065121,39.3629114],[23.2062426,39.3629411],[23.2060678,39.363003],[23.2061134,39.3630754],[23.2062292,39.3630942],[23.2061007,39.3631654],[23.206262,39.3632746],[23.2061686,39.3633281],[23.2063762,39.3634466],[23.2060852,39.3635167],[23.2063284,39.3635634],[23.206397,39.363654],[23.2065126,39.3639837],[23.2067425,39.3641835],[23.2067524,39.3643367],[23.2065997,39.3644979],[23.2062864,39.3644867],[23.2059986,39.3645974],[23.2059711,39.3649757],[23.2054883,39.3655761],[23.2050967,39.3663303],[23.2045481,39.3665968],[23.2042762,39.3670275],[23.2039239,39.3673855],[23.2033893,39.3674359],[23.202864,39.3676936],[23.2022589,39.3678246],[23.2022108,39.3679685],[23.2023595,39.3681677],[23.2023464,39.3682938],[23.2018088,39.3686145],[23.2024218,39.3698351],[23.202766,39.3701889],[23.2028448,39.3704057],[23.2028087,39.3705226],[23.2027942,39.371793],[23.2029062,39.3721541],[23.2032081,39.37285],[23.2032978,39.37313],[23.2032923,39.3736165],[23.2037763,39.3736423],[23.2041461,39.373789],[23.2043275,39.3737587],[23.2042797,39.3738846],[23.2040349,39.373973],[23.2039072,39.3739721],[23.2037573,39.373881],[23.2031412,39.3739488],[23.2031402,39.3740389],[23.2034408,39.3741491],[23.2036265,39.3741504],[23.2036996,39.374259],[23.2036055,39.3743665],[23.2037093,39.3744303],[23.2036048,39.3744296],[23.2036854,39.3744932],[23.2034782,39.3745233],[23.2034082,39.3745589],[23.2034069,39.374667]]},{"id":17392,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039a\u03ac\u03bb\u03b1\u03bc\u03bf\u03c2-\u03a0\u03ac\u03bf\u03c5","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Kalamos_Paou","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2639,"name_EN":"Pelion Mt: Kalamos-Paou","description_EN":"","ascent_time":60,"descent_time":65,"marker":"Red_dots","level":9,"ascent":64,"descent":63,"maxelev":42,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.18668 39.20435,23.1963 39.22287)","views":9,"millestones":"0,23.1866778,39.2228704#1,23.1883465,39.2144456#2,23.1919529,39.2076292#2.6,23.1963050,39.2043479","x":23.1908313,"y":39.2108158,"coor":[[23.1866778,39.2228704],[23.1868228,39.2213486],[23.1867465,39.2199243],[23.1868655,39.2196548],[23.1873112,39.2191714],[23.1873216,39.2182703],[23.1874872,39.2177849],[23.1878698,39.2169406],[23.1880083,39.2166667],[23.1882073,39.2164879],[23.1884454,39.2159309],[23.187982,39.2153374],[23.1882117,39.215321],[23.1882357,39.2152491],[23.1883595,39.2148355],[23.1882952,39.2132852],[23.1884354,39.213187],[23.1885942,39.2131926],[23.1887158,39.2129727],[23.1888323,39.2129195],[23.1893246,39.2129139],[23.1893372,39.2128239],[23.1896414,39.2125556],[23.1900313,39.2118916],[23.1902532,39.2117309],[23.1904888,39.2113901],[23.1906871,39.2112654],[23.1907814,39.2111218],[23.1908313,39.2108158],[23.1907633,39.2104955],[23.190833,39.2104779],[23.1908243,39.2102256],[23.1909074,39.2100459],[23.1907959,39.2096757],[23.1905736,39.2093633],[23.1902404,39.2091267],[23.1900356,39.2088099],[23.1900153,39.2085575],[23.190239,39.2082436],[23.1904139,39.2081367],[23.1917613,39.2078037],[23.1923115,39.2072939],[23.1927991,39.2071891],[23.1935166,39.2072391],[23.1935636,39.2071854],[23.1934867,39.2069145],[23.1934082,39.2066887],[23.193457,39.2064728],[23.193694,39.2060059],[23.1939874,39.2056655],[23.1950788,39.2054298],[23.195428,39.2054637],[23.1957065,39.2054206],[23.1960339,39.2051435],[23.1961498,39.2049461],[23.196305,39.2043479]]},{"id":17393,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a0\u03ac\u03bf\u03c5-\u03a7\u03cc\u03c1\u03c4\u03bf","description_GR":"\u039c\u03b9\u03b1 \u03b5\u03c5\u03c7\u03ac\u03c1\u03b9\u03c3\u03c4\u03b7 \u03c0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"THESSALIA\/Thessaly_Pelion_Paou_Chorto","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3228,"name_EN":"Pelion Mt: Paou-Chorto","description_EN":"A pleasant coastal hike","ascent_time":75,"descent_time":75,"marker":"Red_dots","level":11,"ascent":119,"descent":127,"maxelev":53,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.1963 39.19023,23.21677 39.20435)","views":12,"millestones":"0,23.1963047,39.2043479#1,23.2028448,39.2016465#2,23.2062722,39.1951086#3.2,23.2166644,39.1902270","x":23.2043802,"y":39.1964603,"coor":[[23.1963047,39.2043479],[23.1964488,39.2033848],[23.1965462,39.2029709],[23.1963226,39.2022665],[23.1963952,39.2019967],[23.1966054,39.201836],[23.1976184,39.2013654],[23.1979895,39.2013139],[23.1981741,39.2013782],[23.1979529,39.2014848],[23.1979634,39.201575],[23.1983458,39.2015596],[23.1989924,39.2017263],[23.1995599,39.2017211],[23.1998897,39.2014306],[23.2002729,39.2014647],[23.2005143,39.2016286],[23.2008489,39.201739],[23.2017332,39.2023938],[23.2021517,39.2022525],[23.2022003,39.2020546],[23.202329,39.2019384],[23.2028284,39.2018156],[23.2028299,39.201676],[23.2030076,39.2013258],[23.2027579,39.2008735],[23.2026544,39.2008097],[23.2023562,39.2006545],[23.2022877,39.2005639],[23.2025103,39.2003402],[23.2027088,39.2001974],[23.2028501,39.1999911],[23.2029929,39.1996497],[23.2030315,39.1993075],[23.2031086,39.199245],[23.2030595,39.1987851],[23.2032767,39.1983946],[23.2032545,39.1983043],[23.2030587,39.1982129],[23.2026772,39.1981562],[23.2027174,39.1979943],[23.2030182,39.1980144],[23.2033558,39.1978635],[23.2037155,39.1968703],[23.2040204,39.1965299],[23.2042647,39.1964325],[23.2043802,39.1964603],[23.2046935,39.1964084],[23.2053563,39.1961606],[23.2053952,39.1957914],[23.2055129,39.195621],[23.2056878,39.1955141],[23.2058125,39.19556],[23.2059019,39.1954344],[23.2061818,39.1952561],[23.2062739,39.1951081],[23.2066827,39.1948045],[23.2067872,39.1945529],[23.2071696,39.1945285],[23.2076971,39.1942798],[23.2081016,39.1943546],[23.2085196,39.1942493],[23.2090054,39.1942977],[23.2090752,39.1942711],[23.2090998,39.1941451],[23.2093239,39.1939709],[23.2096066,39.1937746],[23.2096529,39.1936398],[23.2097933,39.1935146],[23.2100369,39.1934802],[23.2102241,39.1933012],[23.2104995,39.1930147],[23.210732,39.1928361],[23.211197,39.192668],[23.2114913,39.1922375],[23.2119309,39.1921864],[23.2120944,39.1920614],[23.2126176,39.1918667],[23.2127712,39.1915974],[23.2130151,39.191527],[23.213202,39.191384],[23.2135505,39.1912783],[23.2139091,39.1913167],[23.2141392,39.1912552],[23.2144753,39.1912214],[23.2155633,39.1912648],[23.2158049,39.1914106],[23.2157853,39.1910861],[23.2163498,39.1906979],[23.2165159,39.1905684],[23.2167666,39.1904079],[23.2166644,39.190227]]},{"id":17705,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039b\u03b1\u03bc\u03c0\u03b9\u03bd\u03bf\u03cd-\u039c\u03bf\u03bd\u03ae \u039b\u03b1\u03bc\u03c0\u03b9\u03b4\u03cc\u03bd\u03b1\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Labinou_Labidona","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":299,"name_EN":"Pelion Mt: Labinou-Labidona monastery","description_EN":"\u039b\u03b1\u03bc\u03c0\u03b9\u03bd\u03bf\u03cd","ascent_time":25,"descent_time":30,"marker":"Red_dots","level":12,"ascent":4,"descent":256,"maxelev":291,"minelev":27,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.20613 39.35221,23.21418 39.36044)","views":18,"millestones":"0,23.2062217,39.3521553#1,23.2122831,39.3566793#0.3,23.2135713,39.3604904","x":23.2116005,"y":39.3569495,"coor":[[23.2062217,39.3521553],[23.2062756,39.3524305],[23.2065185,39.3525042],[23.2064712,39.352576],[23.2065309,39.352626],[23.2068727,39.3530878],[23.206859,39.3532725],[23.2070879,39.3533641],[23.207248,39.3535815],[23.2076855,39.3538908],[23.2078796,39.3542751],[23.2081676,39.3544663],[23.2083842,39.3548101],[23.2088228,39.3550294],[23.2089593,39.3554628],[23.2092025,39.3555095],[23.2093176,39.3556004],[23.2097128,39.355549],[23.2104304,39.3557251],[23.2104386,39.3560315],[23.2102391,39.3562194],[23.2106193,39.3564743],[23.2110009,39.356603],[23.2111149,39.356784],[23.2112304,39.3568298],[23.2112176,39.3569379],[23.2113563,39.3569929],[23.2115419,39.3570031],[23.2116005,39.3569495],[23.2116497,39.3567065],[23.211558,39.3565978],[23.2116525,39.3564542],[23.2116319,39.3562198],[23.2118424,39.3561807],[23.2118979,39.3564063],[23.2122314,39.3566789],[23.2123358,39.3566796],[23.2123118,39.3567515],[23.2125327,39.356717],[23.2125899,39.3567985],[23.2128285,39.3572506],[23.2128156,39.3573677],[23.212897,39.3573502],[23.2129741,39.3577202],[23.2131685,39.3579828],[23.2132219,39.3583976],[23.2129985,39.3586484],[23.213148,39.3587756],[23.2132239,39.3587355],[23.2134533,39.3587821],[23.2134737,39.3590346],[23.2130287,39.3590631],[23.2129806,39.3591123],[23.2138841,39.3592806],[23.2141013,39.3595794],[23.2140857,39.3599398],[23.2135713,39.3604904]]},{"id":18377,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0391\u03b3\u03af\u03b1 \u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae-\u03a6\u03ac\u03c1\u03bf\u03c2 \u039a\u03b1\u03b2\u03bf\u03cd\u03bb\u03b9\u03b1","description_GR":"\u03a3\u03c4\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a4\u03c1\u03af\u03ba\u03b5\u03c1\u03b9","path":"THESSALIA\/Thessaly_Pelion_AgKyriaki_Faros","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2234,"name_EN":"Pelion Mt: Agia Kyriaki-Kavoulia Lighthouse","description_EN":"Around Trikeri scenic area","ascent_time":40,"descent_time":35,"marker":"Red_dots","level":9,"ascent":136,"descent":148,"maxelev":52,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.05098 39.09237,23.06849 39.09639)","views":16,"millestones":"0,23.0684835,39.0927656#1,23.0608166,39.0930389#2.2,23.0509746,39.0963864","x":23.0611793,"y":39.0926484,"coor":[[23.0684835,39.0927656],[23.0679104,39.0923825],[23.0677025,39.0923628],[23.0671626,39.0929713],[23.0667538,39.0932834],[23.0663315,39.0937395],[23.0660554,39.0936292],[23.0657665,39.0936179],[23.0657603,39.0931267],[23.0656583,39.0929727],[23.065571,39.0925755],[23.065445,39.0924844],[23.0652135,39.0924195],[23.0650042,39.0925079],[23.0648296,39.0925966],[23.0647351,39.0927491],[23.0642438,39.0931776],[23.0638832,39.0933369],[23.0633856,39.093369],[23.0633205,39.0933685],[23.0630976,39.0932811],[23.0630042,39.0933524],[23.062518,39.0933936],[23.0621846,39.0932467],[23.0618413,39.0929736],[23.061635,39.092562],[23.0611793,39.0926484],[23.0607524,39.0927666],[23.0608835,39.0933444],[23.0606377,39.0935677],[23.060762,39.0937849],[23.0602134,39.0940914],[23.0599203,39.0943954],[23.0589393,39.0951264],[23.0586113,39.0956824],[23.0582731,39.0958959],[23.0580527,39.0959482],[23.0578959,39.0959199],[23.0576454,39.0956295],[23.057073,39.0951924],[23.0566019,39.0949723],[23.056278,39.0949787],[23.0556151,39.0952617],[23.0550942,39.0953025],[23.0547367,39.0952275],[23.0541509,39.0949344],[23.0538736,39.0949142],[23.0532707,39.0950354],[23.0525307,39.0950294],[23.0521357,39.0951704],[23.0516187,39.0957789],[23.0509746,39.0963864]]},{"id":19143,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03bb\u03ac\u03c3\u03b9\u03bf\u03c2-\u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1-\u0386\u03bd\u03c9 \u039b\u03b5\u03c7\u03ce\u03bd\u03b9\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0392\u03bb\u03ac\u03c3\u03b9\u03bf \u03c3\u03c4\u03b1 \u0386\u03bd\u03c9 \u039b\u03b5\u03c7\u03ce\u03bd\u03b9\u03b1 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03b1\u03c2","path":"THESSALIA\/Thessaly_Pelion_AgVlasios_AgMarina_ALechonia","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":164,"name_EN":"Pelion Mt: Agios Vlasios-Agia Marina-Ano Lechonia","description_EN":"From Agios Vlasios to Ano Lechonia via Agia Marina","ascent_time":55,"descent_time":65,"marker":"Red_dots","level":13,"ascent":50,"descent":304,"maxelev":314,"minelev":53,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.05267 39.32579,23.06786 39.34169)","views":2,"millestones":"0,23.0670878,39.3418108#1,23.0658226,39.3375110#2,23.0604613,39.3331966#3,23.0550637,39.3280575#0.2,23.0528893,39.3256754","x":23.064077,"y":39.3356595,"coor":[[23.0670878,39.3418108],[23.0670447,39.3415942],[23.0671723,39.3414871],[23.0673598,39.3413445],[23.067658,39.3407341],[23.0676498,39.3404818],[23.067255,39.3398704],[23.0672841,39.3398436],[23.0671968,39.3398024],[23.0671377,39.3398019],[23.0670742,39.3397788],[23.0670042,39.3397287],[23.0669487,39.3397868],[23.066915,39.3398902],[23.0669308,39.340012],[23.0669542,39.3400797],[23.066885,39.3400476],[23.0667987,39.3399929],[23.0666906,39.3399109],[23.0666157,39.3398743],[23.0664538,39.3397513],[23.0662258,39.3396099],[23.0662009,39.3395466],[23.0662393,39.3393306],[23.0656156,39.3391094],[23.0648926,39.3393829],[23.0646229,39.3391555],[23.0646405,39.3387051],[23.0641515,39.3379623],[23.0642351,39.3377827],[23.0643919,39.3377435],[23.0646916,39.33789],[23.0651029,39.3383709],[23.0652414,39.3384261],[23.0653463,39.3383909],[23.0653757,39.3379316],[23.0658325,39.3376109],[23.0657814,39.3370878],[23.0664026,39.3366243],[23.0663699,39.3364618],[23.0654738,39.3357879],[23.0653829,39.335643],[23.0653963,39.3355079],[23.0649641,39.3353467],[23.064731,39.3353404],[23.064077,39.3356595],[23.0632737,39.3358603],[23.0628447,39.3358388],[23.0621419,39.3354637],[23.0621359,39.3359142],[23.0614447,39.3355392],[23.060604,39.3344196],[23.0604577,39.334076],[23.0604831,39.333914],[23.0605984,39.3334014],[23.0605535,39.3332839],[23.0603817,39.3331203],[23.0596904,39.3327543],[23.0595424,39.3325458],[23.0595066,39.3326176],[23.0593553,39.3326525],[23.0594034,39.3325267],[23.059234,39.3321829],[23.0591272,39.3323623],[23.0588481,39.3324051],[23.0585583,39.3323847],[23.0583621,39.332257],[23.0584229,39.3320502],[23.0584053,39.3316266],[23.0588679,39.3308734],[23.0589583,39.3301894],[23.0586227,39.3302903],[23.0584484,39.330014],[23.0580343,39.3296908],[23.0573637,39.3292439],[23.0573113,39.3292074],[23.0570427,39.3290385],[23.0566986,39.3287474],[23.0565164,39.3284936],[23.0559285,39.3282095],[23.0555577,39.327747],[23.0552894,39.3278529],[23.054573,39.3284959],[23.0543183,39.3284578],[23.0542809,39.3277907],[23.0541041,39.3271315],[23.0540686,39.3266717],[23.0539782,39.3264907],[23.052979,39.3257437],[23.0528893,39.3256754]]},{"id":19145,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039b\u03b1\u03cd\u03ba\u03bf\u03c2-\u039c\u03bf\u03cd\u03c3\u03b3\u03b5\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Lafkos_Mousges2","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":5199,"name_EN":"Pelion Mt: Lafkos-Mousges","description_EN":"","ascent_time":115,"descent_time":120,"marker":"Red_dots","level":9,"ascent":129,"descent":343,"maxelev":377,"minelev":92,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.2461 39.15646,23.28042 39.17763)","views":8,"millestones":"0,23.2460962,39.1776302#1,23.2524424,39.1711130#2,23.2582831,39.1669654#3,23.2672278,39.1642252#4,23.2764025,39.1629397#5.2,23.2799232,39.1564613","x":23.2666728,"y":39.1645425,"coor":[[23.2460962,39.1776302],[23.2461244,39.1776033],[23.2461659,39.1776081],[23.2463195,39.1773208],[23.2464181,39.1771997],[23.2466679,39.176913],[23.2467329,39.1764494],[23.2468189,39.1759859],[23.246948,39.1756173],[23.247248,39.1754705],[23.2473413,39.1752053],[23.2473879,39.1750749],[23.2476395,39.1744819],[23.2477917,39.1741224],[23.2479325,39.1739431],[23.2487259,39.173367],[23.2493972,39.1733713],[23.2507661,39.1731008],[23.2512571,39.1726534],[23.2516091,39.1722051],[23.2517873,39.1717738],[23.2521712,39.171605],[23.2524292,39.1712823],[23.2524687,39.170832],[23.2529011,39.1704473],[23.2531374,39.1699983],[23.2532732,39.1691972],[23.2533776,39.1690356],[23.2533559,39.1689003],[23.2534893,39.1688742],[23.2534899,39.1688201],[23.2538915,39.1684037],[23.2539744,39.168224],[23.2540126,39.1678998],[23.25388,39.1672952],[23.2539332,39.1669937],[23.2540497,39.1669224],[23.2543214,39.1664015],[23.2547398,39.166242],[23.2551868,39.1659745],[23.255559,39.1659453],[23.2560582,39.1658044],[23.2562897,39.1658058],[23.2564847,39.1659693],[23.257176,39.16628],[23.2577955,39.1668066],[23.2581073,39.1668807],[23.2581067,39.1670384],[23.25828,39.1669719],[23.2584929,39.1665317],[23.2587025,39.1664159],[23.2590016,39.166598],[23.2593027,39.1665819],[23.2595353,39.1664753],[23.2596972,39.1664943],[23.2599307,39.1662976],[23.2599789,39.1661177],[23.2601985,39.1660154],[23.2606262,39.1660722],[23.2614618,39.1658612],[23.2616236,39.1658803],[23.2619107,39.1660984],[23.2624312,39.1661377],[23.2626641,39.166004],[23.2629423,39.1659697],[23.2632709,39.1655393],[23.2633521,39.1655218],[23.2636854,39.1657492],[23.2638819,39.1657774],[23.2640454,39.1656343],[23.2644052,39.1655465],[23.2645102,39.165466],[23.2648459,39.1654681],[23.2651052,39.1650192],[23.2653855,39.1647777],[23.2657923,39.1646181],[23.2662795,39.164513],[23.2666728,39.1645425],[23.2669612,39.1646344],[23.2671035,39.1643109],[23.26736,39.1641323],[23.2676218,39.164134],[23.2680516,39.1639925],[23.268205,39.1640205],[23.2686147,39.163924],[23.2687182,39.1639967],[23.2687284,39.1641229],[23.2691229,39.1640353],[23.2694022,39.1638929],[23.2696945,39.1636063],[23.2696805,39.1634891],[23.2698879,39.1635805],[23.2699447,39.163689],[23.2700625,39.1634915],[23.2702471,39.1635467],[23.2703173,39.1634751],[23.270501,39.1636204],[23.2705687,39.163783],[23.2706852,39.1637117],[23.2707095,39.1636037],[23.2709518,39.1636773],[23.2712968,39.1638957],[23.2714714,39.1637977],[23.2715978,39.1638886],[23.2720608,39.1638915],[23.2725568,39.1640568],[23.2729035,39.164113],[23.2730312,39.1640777],[23.273183,39.1641913],[23.2736098,39.1640859],[23.2738447,39.1637629],[23.2740769,39.1636923],[23.2743541,39.1637481],[23.2746089,39.1637316],[23.2747717,39.1636606],[23.2750196,39.1634414],[23.275193,39.1634605],[23.275831,39.1633202],[23.2765885,39.1628203],[23.2770697,39.1628413],[23.2771531,39.1627157],[23.2774528,39.1628437],[23.2776938,39.1630435],[23.2778064,39.1633505],[23.2779342,39.1633063],[23.2781565,39.1630734],[23.2781826,39.1627852],[23.2783474,39.1628673],[23.2783022,39.1627589],[23.278376,39.1623358],[23.2782166,39.1620735],[23.2783368,39.1616417],[23.2782701,39.1615828],[23.2783401,39.1615291],[23.2785251,39.1615483],[23.2788166,39.1613428],[23.2791299,39.1612637],[23.2793055,39.1610665],[23.2791372,39.1605429],[23.2792573,39.1601201],[23.2791198,39.1599841],[23.2792745,39.1595705],[23.279103,39.1593622],[23.2790815,39.1591999],[23.2793767,39.158625],[23.2790435,39.158276],[23.2790687,39.1580779],[23.2796846,39.1578385],[23.2797138,39.1577035],[23.2804128,39.1572572],[23.2802537,39.1569679],[23.2799309,39.1568398],[23.2798163,39.1567309],[23.2799232,39.1564613]]},{"id":19186,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1-\u0394\u03c5\u03c4\u03b9\u03ba\u03cc \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf-\u03a0\u03bf\u03c5\u03c1\u03af","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03bd\u03ac \u03b1\u03c0\u03cc\u03c4\u03bf \u0394\u03c5\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf","path":"THESSALIA\/Thessaly_Pelion_Makrinitsa_WestRefuge_Pouri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":792,"name_EN":"Pelion Mt: Makrinitsa-Western Refuge-Pouri","description_EN":"The route passing by the Western Refuge","ascent_time":400,"descent_time":395,"marker":"Red_dots","level":9,"ascent":1010,"descent":1195,"maxelev":1448,"minelev":421,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.9854 39.40298,23.09522 39.47669)","views":24,"millestones":"0,22.9895871,39.4021105#1,22.9883213,39.4066934#2,22.9955807,39.4106058#3,23.0024289,39.4115950#4,23.0106005,39.4168050#5,23.0123491,39.4251780#6,23.0173769,39.4265389#7,23.0241069,39.4307665#8,23.0320244,39.4357731#9,23.0375192,39.4410520#10,23.0409707,39.4471521#11,23.0465781,39.4489484#12,23.0554995,39.4530511#13,23.0638715,39.4580660#14,23.0704915,39.4648349#15,23.0778875,39.4702587#16,23.0861076,39.4736147#0.8,23.0942567,39.4775425","x":23.0355395,"y":39.4400514,"coor":[[22.9895871,39.4021105],[22.9892314,39.4021885],[22.9891273,39.4021606],[22.9889838,39.4024477],[22.9885327,39.4023176],[22.9885877,39.4025343],[22.9884251,39.4025329],[22.9883248,39.4023653],[22.9882367,39.4023556],[22.988189,39.4024453],[22.9882336,39.4025718],[22.9880887,39.4025795],[22.9880879,39.4026336],[22.9882807,39.4029822],[22.9882907,39.4030904],[22.9880936,39.4030707],[22.9881852,39.4031616],[22.9882171,39.4033601],[22.9878274,39.4032305],[22.9876058,39.4032917],[22.9879609,39.4036372],[22.9878879,39.403641],[22.9879608,39.4038174],[22.9875683,39.4036518],[22.9874569,39.4038535],[22.9864524,39.4042412],[22.9866149,39.4042517],[22.9865549,39.4043863],[22.9869268,39.4043715],[22.9868573,39.404434],[22.9870432,39.4044491],[22.9871433,39.4047563],[22.9872615,39.404843],[22.9874008,39.4048442],[22.9874461,39.4049257],[22.9874354,39.4049391],[22.987408,39.4052272],[22.9875702,39.4055304],[22.9878401,39.4061455],[22.9881483,39.4065176],[22.9883486,39.4067221],[22.9884338,39.4072544],[22.9885689,39.4075755],[22.9887419,39.4077392],[22.989116,39.4075712],[22.9893931,39.4076818],[22.989787,39.4077573],[22.9897128,39.4074638],[22.9901159,39.4077015],[22.9903195,39.4079511],[22.9904816,39.4079885],[22.9908497,39.408235],[22.9910953,39.4085705],[22.9912432,39.4087881],[22.9914641,39.408772],[22.9916019,39.4088813],[22.991892,39.4089018],[22.9920187,39.408975],[22.9921321,39.4091652],[22.9922504,39.4090221],[22.9924691,39.409105],[22.9927472,39.4099634],[22.993021,39.4100019],[22.9933753,39.4104014],[22.9944158,39.4107438],[22.9949926,39.4110191],[22.9951679,39.4109485],[22.9955096,39.410609],[22.9958815,39.4105942],[22.9961066,39.4102898],[22.9962583,39.4102371],[22.9964065,39.4104366],[22.9964105,39.4109682],[22.9964614,39.4115138],[22.9966429,39.4118217],[22.9966274,39.4120919],[22.9970514,39.412492],[22.9971556,39.4125425],[22.9974289,39.4121123],[22.9976272,39.41206],[22.9976766,39.4118531],[22.9978513,39.4118186],[22.9980635,39.4116042],[22.9981244,39.4114065],[22.9983474,39.4112462],[22.9983767,39.4110978],[22.9987009,39.4111727],[22.9990988,39.4109598],[22.999411,39.4107823],[22.9999231,39.4107146],[23.0000549,39.4107879],[23.0002852,39.4107763],[23.0005857,39.410878],[23.0006995,39.4110412],[23.0009876,39.4112058],[23.0010988,39.4115492],[23.0012585,39.4117578],[23.0015713,39.4118146],[23.0022712,39.4116043],[23.0025502,39.4115887],[23.0035101,39.4118852],[23.0038134,39.4117977],[23.003962,39.4119612],[23.0044126,39.4121363],[23.0046533,39.4123636],[23.0047317,39.4124859],[23.0048634,39.4124915],[23.0060276,39.4131232],[23.006271,39.4131613],[23.0066201,39.4131192],[23.0069088,39.4132388],[23.007833,39.4132873],[23.0084919,39.413802],[23.0088102,39.4142912],[23.0094512,39.4149635],[23.0096551,39.4153256],[23.0103652,39.4160435],[23.01053,39.4167117],[23.0107694,39.4170291],[23.0107992,39.4173897],[23.0110625,39.4176623],[23.0113347,39.4181331],[23.0113548,39.4183496],[23.0110384,39.4185451],[23.0109543,39.4187426],[23.0113434,39.4191604],[23.0114427,39.4195307],[23.0118739,39.4202552],[23.0118928,39.4205617],[23.0124165,39.421323],[23.012411,39.4217104],[23.0122324,39.4220152],[23.0124565,39.4226028],[23.0122149,39.4240785],[23.0122182,39.4246732],[23.0123504,39.4251789],[23.012454,39.4252518],[23.012582,39.4252349],[23.0132262,39.4248619],[23.0138785,39.4247413],[23.014272,39.4248528],[23.0145403,39.424774],[23.0149936,39.4247598],[23.0151777,39.4248875],[23.0152748,39.4249784],[23.015319,39.425141],[23.0152596,39.4252306],[23.0149844,39.4253364],[23.0148431,39.4254703],[23.0148603,39.425948],[23.0151231,39.4256709],[23.0153804,39.425547],[23.0153183,39.4258348],[23.0153743,39.4259794],[23.0155756,39.4257108],[23.0156807,39.4256756],[23.015616,39.4261436],[23.0158047,39.425947],[23.0158537,39.4257672],[23.0161351,39.4255804],[23.0160965,39.4258504],[23.0162326,39.4260858],[23.0162511,39.4264193],[23.0164515,39.4262138],[23.0164541,39.4260336],[23.0165728,39.4258544],[23.0168304,39.4257124],[23.0170935,39.426003],[23.0173766,39.4265279],[23.0173833,39.4267217],[23.0175237,39.4266508],[23.0176563,39.4263096],[23.0177966,39.4262477],[23.0179472,39.426276],[23.0182231,39.4264855],[23.0183662,39.4270544],[23.018649,39.4275974],[23.0185629,39.4279391],[23.0184454,39.4280282],[23.0186425,39.4280569],[23.0187708,39.4280219],[23.0188631,39.4280678],[23.0191466,39.4285657],[23.0191325,39.4287458],[23.0192797,39.4290174],[23.0196396,39.4290384],[23.0198116,39.429202],[23.0199168,39.4291579],[23.0202266,39.4294308],[23.0202364,39.429566],[23.0211526,39.4296819],[23.0212518,39.4300702],[23.0214013,39.4301795],[23.0214111,39.4303058],[23.0214624,39.4303783],[23.0225368,39.4308198],[23.0229859,39.4308461],[23.0233215,39.430939],[23.0235908,39.4307971],[23.0241955,39.4307572],[23.0246112,39.4309409],[23.0247504,39.43096],[23.0248325,39.4309067],[23.0249585,39.4310339],[23.0252142,39.431027],[23.0256183,39.4312106],[23.0257784,39.4313921],[23.0260558,39.4315026],[23.0263086,39.4317029],[23.0266788,39.4318142],[23.0266181,39.4320029],[23.0269672,39.4327987],[23.0274035,39.4331808],[23.0280518,39.4333484],[23.0282476,39.4334762],[23.0285031,39.4334783],[23.0287911,39.4336609],[23.0291741,39.4336911],[23.0293588,39.4337828],[23.0297073,39.4337857],[23.0298445,39.433949],[23.0300422,39.4339327],[23.030225,39.4341594],[23.0305019,39.4342969],[23.030676,39.4343164],[23.0309677,39.4342287],[23.0312101,39.4343388],[23.0316925,39.4347483],[23.0317229,39.435073],[23.0318926,39.4353987],[23.0319235,39.4356873],[23.0320498,39.4357965],[23.0325219,39.4361068],[23.0327545,39.4360907],[23.0333275,39.4366721],[23.0336889,39.436585],[23.0338302,39.436451],[23.0340636,39.4363809],[23.0343412,39.4364733],[23.0345133,39.4366279],[23.03493,39.4367485],[23.0350564,39.4368487],[23.0352423,39.4368502],[23.0353111,39.4369139],[23.0351697,39.4370569],[23.0351679,39.437192],[23.0347771,39.4380357],[23.0346876,39.4386297],[23.0347957,39.4392162],[23.0349995,39.4396054],[23.035194,39.4398232],[23.0355395,39.4400514],[23.0355148,39.4401593],[23.035363,39.4402616],[23.035653,39.4403001],[23.035869,39.4406443],[23.0362028,39.4408813],[23.0366889,39.4410205],[23.0369425,39.4411668],[23.0377,39.4410108],[23.0377809,39.4410476],[23.0373576,39.4414045],[23.0371306,39.4418531],[23.0368728,39.4420132],[23.0365,39.4420822],[23.0366006,39.4423713],[23.0365376,39.4427222],[23.0367665,39.4429764],[23.0370327,39.4430597],[23.0373144,39.4437018],[23.0373784,39.4441168],[23.0375042,39.444262],[23.0377352,39.444363],[23.0382027,39.4450156],[23.0385483,39.4452347],[23.0386826,39.4456143],[23.0390015,39.4460854],[23.0393143,39.4461601],[23.0394868,39.4462877],[23.0395429,39.4464323],[23.0398448,39.4464528],[23.040477,39.4461156],[23.0406372,39.4462972],[23.0406214,39.4466034],[23.0407199,39.4467529],[23.040984,39.4469893],[23.0409698,39.4471784],[23.0412247,39.4472346],[23.0412467,39.4473249],[23.0410583,39.4475035],[23.0410566,39.4476296],[23.0409502,39.4477549],[23.0411584,39.4478287],[23.0411916,39.4479551],[23.0414598,39.4478853],[23.0414467,39.4479933],[23.0415043,39.4480298],[23.0413283,39.4481545],[23.0413625,39.4481998],[23.0418281,39.4481496],[23.0417663,39.4484194],[23.0414859,39.4485252],[23.0413319,39.4487402],[23.041529,39.4487688],[23.0420892,39.4486023],[23.042239,39.4486936],[23.0423797,39.4486047],[23.0424138,39.448659],[23.0422649,39.44882],[23.0425584,39.4486061],[23.0431542,39.4483768],[23.0440151,39.4491587],[23.0443772,39.4492653],[23.0447271,39.4491781],[23.0453317,39.449156],[23.045633,39.4492216],[23.0456703,39.4490417],[23.0455922,39.4488068],[23.0453745,39.4485797],[23.0454333,39.4485261],[23.0455844,39.4485274],[23.0465444,39.4488596],[23.0467351,39.4493658],[23.0473855,39.4493981],[23.0479265,39.449781],[23.0484601,39.4498574],[23.0493831,39.4503516],[23.0503677,39.4505939],[23.050938,39.4505354],[23.05148,39.4508462],[23.0522,39.4508881],[23.0525808,39.4510895],[23.053529,39.4514486],[23.0539229,39.4515419],[23.0548981,39.4516219],[23.0550707,39.4517495],[23.0551949,39.4520208],[23.0550755,39.4522541],[23.0550715,39.4525514],[23.0553451,39.4529411],[23.0567728,39.4539438],[23.0569771,39.4543059],[23.0571504,39.4543884],[23.0578699,39.4544663],[23.0581094,39.4548106],[23.0585072,39.4549129],[23.0585502,39.4551656],[23.0587214,39.4554012],[23.0594476,39.4558486],[23.0597718,39.4559413],[23.0599316,39.4561589],[23.0605421,39.4565693],[23.0613057,39.4568367],[23.0623943,39.4571339],[23.0627772,39.457182],[23.0633685,39.4575337],[23.0636133,39.4574816],[23.0636815,39.4575992],[23.0638088,39.4576363],[23.0637263,39.4577258],[23.063772,39.4577802],[23.0640258,39.4579264],[23.0638691,39.4580693],[23.0640727,39.458116],[23.064105,39.4583055],[23.0644411,39.4583803],[23.0645096,39.4584709],[23.0643677,39.45865],[23.0645172,39.4587683],[23.064595,39.4590392],[23.0648007,39.4593022],[23.0652844,39.4596395],[23.0657364,39.4597332],[23.0662843,39.4605666],[23.0664348,39.4606128],[23.0665925,39.4609925],[23.0667561,39.4610614],[23.0669874,39.4611534],[23.0671817,39.4613982],[23.0676767,39.4617626],[23.0686945,39.4630142],[23.068921,39.4634665],[23.0692661,39.4637396],[23.0696207,39.4641659],[23.0700713,39.4643767],[23.0707015,39.4650666],[23.0710355,39.4652945],[23.0714824,39.4657846],[23.0717362,39.4659308],[23.072672,39.4668573],[23.0729425,39.4675578],[23.072871,39.4676834],[23.0728624,39.4677284],[23.0731967,39.4679473],[23.0730573,39.4681579],[23.0734615,39.4683593],[23.0739209,39.4687775],[23.0740601,39.4688056],[23.0749486,39.4693083],[23.0749294,39.4694928],[23.0752445,39.4695899],[23.0754777,39.4695377],[23.0757097,39.4695756],[23.0764133,39.4698876],[23.0767139,39.4696827],[23.0770817,39.4699514],[23.0772096,39.4699434],[23.0772763,39.4701782],[23.0775308,39.4702704],[23.0779612,39.4702558],[23.0781697,39.4703115],[23.0784662,39.4707463],[23.0788234,39.4709924],[23.0789252,39.4713176],[23.079167,39.4714907],[23.0795143,39.4716016],[23.0797102,39.4717383],[23.0803832,39.4718337],[23.0804864,39.4719427],[23.0806026,39.4719436],[23.0809494,39.4720995],[23.0813557,39.4721387],[23.0817839,39.4722863],[23.0817179,39.4725291],[23.0820069,39.4726575],[23.0820149,39.4727386],[23.0821059,39.4729736],[23.0823174,39.4729978],[23.08242,39.4731518],[23.0826627,39.4732618],[23.0827194,39.4733704],[23.0826719,39.4734421],[23.0828817,39.4734077],[23.0829853,39.4734806],[23.0831369,39.4734458],[23.083215,39.4736987],[23.0833098,39.4738391],[23.0834948,39.4739126],[23.0835052,39.4740118],[23.0838304,39.4740324],[23.0840526,39.4739351],[23.0843318,39.4739192],[23.0846531,39.4742461],[23.0848407,39.4741215],[23.0851436,39.4740788],[23.0854486,39.473865],[23.0859264,39.4737786],[23.0862206,39.4735106],[23.0863131,39.4735474],[23.0867328,39.4734606],[23.0868302,39.4734839],[23.0871655,39.4736307],[23.0875175,39.4739353],[23.087844,39.4738657],[23.0881132,39.4737237],[23.0883699,39.4736536],[23.0886693,39.4738722],[23.088576,39.4738985],[23.0885046,39.4740241],[23.0886298,39.4740611],[23.0889088,39.4740633],[23.0886847,39.4741426],[23.0886131,39.4742863],[23.0886468,39.4743766],[23.0888439,39.4744142],[23.0889127,39.4744868],[23.0889068,39.4749373],[23.0887773,39.4750624],[23.0888336,39.475207],[23.0890554,39.4752764],[23.0891342,39.4754752],[23.0893994,39.4756395],[23.0894902,39.4758114],[23.0897182,39.4758807],[23.0898579,39.4758638],[23.0900839,39.4754781],[23.0903418,39.4753089],[23.0904692,39.475346],[23.0906858,39.4756811],[23.0908272,39.475538],[23.0909669,39.4755211],[23.0911136,39.4754456],[23.0914137,39.4756102],[23.0917332,39.4760722],[23.0918951,39.4761455],[23.0922917,39.4760405],[23.0923495,39.476068],[23.0923595,39.4761942],[23.092159,39.4764089],[23.0924001,39.4768162],[23.0925606,39.4769887],[23.0924825,39.4770737],[23.0924557,39.4773438],[23.0926393,39.4775029],[23.0928271,39.4773692],[23.0936383,39.4775738],[23.0936739,39.47752],[23.0937544,39.4775837],[23.0936059,39.4774068],[23.0939017,39.4774046],[23.0941677,39.4775148],[23.0942567,39.4775425]]},{"id":19187,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u0386\u03b3\u03b9\u03bf\u03c2 \u039f\u03bd\u03bf\u03cd\u03c6\u03c1\u03b9\u03bf\u03c2-\u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1","description_GR":"\u03a9\u03c1\u03b1\u03af\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03cd\u03bb\u03b7 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_AgOnoufrios_Makrinitsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4506,"name_EN":"Pelion Mt: Agios Onoufrios-Makrinitsa","description_EN":"A nice trail on the Mt. Pilio gate","ascent_time":115,"descent_time":95,"marker":"Red_dots","level":9,"ascent":548,"descent":38,"maxelev":624,"minelev":99,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96868 39.38127,22.98989 39.40201)","views":6,"millestones":"0,22.9689920,39.3810887#1,22.9768885,39.3859210#2,22.9794239,39.3934856#3,22.9820266,39.3964315#4,22.9854137,39.4014877#4.5,22.9895857,39.4021105","x":22.9806267,"y":39.3946663,"coor":[[22.968992,39.3810887],[22.9691378,39.3811937],[22.9690942,39.3813194],[22.9689982,39.3815348],[22.9700912,39.3822113],[22.9709746,39.3829399],[22.9712854,39.3833707],[22.9719817,39.3833948],[22.9725914,39.3837787],[22.9737526,39.3837709],[22.9740554,39.3839312],[22.9743532,39.3839924],[22.9745436,39.3838995],[22.9749469,39.3841103],[22.9753998,39.3841053],[22.9758843,39.3843168],[22.9760139,39.3845882],[22.9762384,39.3845677],[22.9761443,39.384657],[22.9762126,39.3847477],[22.9763226,39.3847666],[22.9766068,39.3853323],[22.9767754,39.3856401],[22.9770654,39.3863815],[22.9772942,39.3866178],[22.9774442,39.3866822],[22.9776027,39.3868098],[22.9772977,39.3870233],[22.9773985,39.3872765],[22.9772462,39.3873653],[22.9770408,39.3871968],[22.9769936,39.3872504],[22.9771075,39.3873956],[22.9770598,39.3874853],[22.9772991,39.3877937],[22.977387,39.3881369],[22.977368,39.3886458],[22.9775018,39.3890254],[22.9774168,39.389277],[22.9774684,39.3894757],[22.9774415,39.3897277],[22.9775201,39.3899086],[22.9774076,39.3904573],[22.9774715,39.3908543],[22.9780278,39.3917242],[22.9781812,39.3919553],[22.9785604,39.3922289],[22.9787078,39.3924735],[22.9787038,39.3925996],[22.9788969,39.3928896],[22.978973,39.3932507],[22.9792373,39.3934423],[22.979523,39.3935078],[22.9796808,39.3938336],[22.9799906,39.3940886],[22.9806045,39.3942021],[22.9809853,39.3943676],[22.9816912,39.394536],[22.9811914,39.3946443],[22.9808104,39.3944877],[22.9810032,39.3948048],[22.9812382,39.394942],[22.9806267,39.3946663],[22.9802789,39.3946272],[22.9797123,39.3944601],[22.979492,39.3944401],[22.9798369,39.3946774],[22.979674,39.394703],[22.9793847,39.3946284],[22.9799004,39.3951015],[22.9801673,39.3951128],[22.9806478,39.3956126],[22.9811693,39.3958605],[22.9818232,39.3959157],[22.9818977,39.3960831],[22.9815805,39.3961614],[22.9818003,39.3962174],[22.9823387,39.3967267],[22.982811,39.3969921],[22.9821965,39.3969237],[22.9818083,39.3967941],[22.9816474,39.3966756],[22.9813913,39.3967184],[22.9816175,39.3971349],[22.9817279,39.3975323],[22.9818904,39.3975337],[22.9822008,39.3977527],[22.982359,39.3980514],[22.9822429,39.3980504],[22.9822869,39.398222],[22.9825854,39.3984588],[22.9826861,39.398721],[22.9826383,39.3988107],[22.9829163,39.3990159],[22.9828889,39.3990787],[22.9829162,39.3995925],[22.9829832,39.3997823],[22.9831228,39.3997655],[22.9831735,39.3998696],[22.9830822,39.4005626],[22.98334,39.4004027],[22.9835493,39.4003865],[22.9836993,39.4004509],[22.9836745,39.4005588],[22.9839062,39.4005968],[22.9842045,39.4008517],[22.9845419,39.4009628],[22.9846431,39.401189],[22.9852944,39.4013748],[22.9856268,39.4016841],[22.9857974,39.4018568],[22.9857385,39.4019103],[22.9857845,39.4019423],[22.9860152,39.4020524],[22.986223,39.4020407],[22.986665,39.4019905],[22.987152,39.4020488],[22.9875605,39.4019082],[22.9879005,39.4016859],[22.9880982,39.4016696],[22.9886095,39.4017506],[22.9889677,39.4018799],[22.9892303,39.4021885],[22.9895857,39.4021105]]},{"id":19325,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a7\u03ac\u03bd\u03b9\u03b1-\u039c\u03bf\u03bd\u03b1\u03c3\u03c4\u03b7\u03c1\u03ac\u03ba\u03b9-\u039a\u03b9\u03c3\u03c3\u03cc\u03c2","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc \u03b4\u03ac\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","path":"THESSALIA\/Thessaly_Pelion_Chania_Monasthraki_Kissos","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":2170,"name_EN":"Pelion Mt: Chania-Monasthraki-Kissos","description_EN":"A long route along Pelion montaine forest","ascent_time":390,"descent_time":410,"marker":"Red_dots","level":9,"ascent":487,"descent":1175,"maxelev":1404,"minelev":493,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06262 39.36521,23.13246 39.40576)","views":3,"millestones":"0,23.0627537,39.3959471#1,23.0729574,39.3931464#2,23.0815141,39.3875760#3,23.0896308,39.3847348#4,23.0900949,39.3766803#5,23.0916366,39.3693901#6,23.0989766,39.3660516#7,23.1045795,39.3712327#8,23.1107480,39.3775834#9,23.1095855,39.3804226#10,23.1095696,39.3839128#11,23.1150525,39.3905371#12,23.1194888,39.3961546#13,23.1261454,39.4029464#2.2,23.1318140,39.4062998","x":23.1079967,"y":39.3740108,"coor":[[23.0627537,39.3959471],[23.0644964,39.3951051],[23.0648902,39.3945001],[23.0656741,39.3940649],[23.066151,39.3940056],[23.0669058,39.3940117],[23.0671899,39.3941221],[23.0687273,39.3941344],[23.0696153,39.393727],[23.0701747,39.3935783],[23.0706624,39.3935822],[23.0714268,39.3937325],[23.071977,39.3934035],[23.0727577,39.393198],[23.0734802,39.39301],[23.0744743,39.3924773],[23.0749955,39.3923102],[23.0758163,39.391704],[23.0760904,39.3911746],[23.0771559,39.3905073],[23.0780836,39.3897217],[23.0783654,39.3894852],[23.07925,39.38933],[23.0800693,39.3888319],[23.0805932,39.3887279],[23.0807136,39.3884045],[23.0812543,39.3879041],[23.0814318,39.3876532],[23.081902,39.3872154],[23.0822518,39.38702],[23.0825235,39.3868329],[23.0828778,39.3870159],[23.0827241,39.3868615],[23.0827488,39.3867536],[23.0829004,39.3867007],[23.0835501,39.3865481],[23.0836938,39.3864907],[23.0838253,39.3864827],[23.0849937,39.3868163],[23.085365,39.3868372],[23.0860761,39.3866266],[23.0873445,39.3864113],[23.0877777,39.3861353],[23.0879117,39.3856588],[23.0880752,39.3855835],[23.0887929,39.3857513],[23.0892222,39.3857817],[23.0896759,39.3857132],[23.0898377,39.3857685],[23.0897368,39.3854974],[23.0897305,39.3850829],[23.0895945,39.3848295],[23.0897506,39.3844343],[23.0897013,39.3828661],[23.0900061,39.3826432],[23.089906,39.3823],[23.0897685,39.3819656],[23.0893917,39.3814761],[23.0889675,39.3810583],[23.0888537,39.3802689],[23.0888527,39.3797013],[23.0892892,39.378281],[23.089513,39.3780305],[23.090211,39.3779278],[23.0903772,39.3776408],[23.0903152,39.3770546],[23.0901682,39.3767471],[23.0899502,39.3765472],[23.0900464,39.3762956],[23.0899326,39.3761145],[23.0899358,39.3758713],[23.0897905,39.3754376],[23.0896983,39.3753829],[23.0892691,39.3753615],[23.0891776,39.3752526],[23.0891215,39.374207],[23.0889059,39.3738268],[23.0888978,39.3735565],[23.0887625,39.3732491],[23.0891616,39.3729098],[23.089676,39.3726345],[23.089952,39.3719428],[23.0899683,39.3715825],[23.0902095,39.3717827],[23.090349,39.3717657],[23.0905299,39.3712445],[23.0908811,39.371013],[23.0910012,39.3707076],[23.0911308,39.3705644],[23.091287,39.3701512],[23.0912896,39.369953],[23.0915635,39.3694235],[23.0917737,39.369326],[23.0921846,39.3689688],[23.0926184,39.3686388],[23.0935044,39.3683483],[23.0951875,39.3683614],[23.095584,39.3682203],[23.0962551,39.3674867],[23.0965046,39.3670471],[23.096662,39.3665438],[23.0970826,39.3663308],[23.0972943,39.3661162],[23.0978668,39.3658323],[23.098305,39.3651509],[23.0983218,39.3649482],[23.0987943,39.3652943],[23.0990137,39.3656699],[23.0988633,39.3656327],[23.0988157,39.3657225],[23.0989858,39.3660302],[23.09895,39.366111],[23.0990287,39.3663098],[23.0991553,39.3663919],[23.0989466,39.3663722],[23.0989229,39.3664081],[23.0993094,39.3670508],[23.099282,39.367375],[23.0996166,39.3675308],[23.0998339,39.3677848],[23.1001116,39.367859],[23.1002835,39.3680315],[23.100618,39.3681963],[23.1008963,39.3682255],[23.1010684,39.36838],[23.1009514,39.3684512],[23.1011088,39.3688488],[23.1010273,39.3688662],[23.1010958,39.3689569],[23.100991,39.3689831],[23.1012109,39.3690388],[23.1010691,39.369227],[23.1008122,39.3693511],[23.1008462,39.3694145],[23.1010199,39.3694428],[23.1008797,39.3695138],[23.1009371,39.3695684],[23.1008551,39.3696218],[23.1009468,39.3697126],[23.1011551,39.3697683],[23.1017833,39.369665],[23.1020956,39.3697485],[23.1021061,39.3698387],[23.1022679,39.369894],[23.102255,39.369993],[23.1025907,39.3700677],[23.1026586,39.3702034],[23.1032455,39.3706134],[23.103594,39.370589],[23.1040303,39.3709708],[23.1046072,39.3712456],[23.1048394,39.3712474],[23.1049878,39.3714467],[23.1053794,39.371684],[23.1056576,39.3717222],[23.1060033,39.3719231],[23.1062819,39.3719252],[23.106315,39.3720606],[23.106636,39.3723785],[23.1066451,39.3725768],[23.1067373,39.3726225],[23.1067476,39.3727307],[23.107208,39.3730406],[23.1072031,39.373428],[23.1076071,39.3736113],[23.1079967,39.3740108],[23.1081243,39.3740208],[23.1082082,39.3747242],[23.108323,39.3748242],[23.1085782,39.3748442],[23.1086585,39.3749169],[23.1086485,39.3750475],[23.1087042,39.3752371],[23.1089009,39.3752837],[23.1090367,39.3753884],[23.109025,39.3754829],[23.1093587,39.3757197],[23.110029,39.3758735],[23.1103253,39.3763083],[23.1102662,39.376853],[23.1105187,39.3773415],[23.1107405,39.3774468],[23.11075,39.377609],[23.1108419,39.3776908],[23.1109466,39.3776736],[23.1111463,39.3774859],[23.1111568,39.3775761],[23.1113412,39.3776856],[23.1114284,39.377844],[23.1116905,39.3782334],[23.1122213,39.3784898],[23.1119524,39.3785508],[23.1121604,39.3789173],[23.1123455,39.3789728],[23.1125899,39.3789206],[23.1126475,39.3789571],[23.1125744,39.3792268],[23.1126327,39.3798445],[23.112527,39.3799338],[23.1127698,39.3800167],[23.112571,39.3801324],[23.112535,39.3802222],[23.1122322,39.380292],[23.1122543,39.3803822],[23.1120906,39.3804711],[23.1117659,39.3804416],[23.1116946,39.3805762],[23.1118883,39.380866],[23.1120733,39.3809215],[23.1121416,39.3810301],[23.1123806,39.3810365],[23.1127195,39.3811517],[23.1125097,39.3812132],[23.1121494,39.3812465],[23.1116863,39.3811438],[23.1112913,39.3811588],[23.110933,39.3810299],[23.1103452,39.380692],[23.1099163,39.3806347],[23.1095593,39.3804067],[23.1093879,39.3801891],[23.109074,39.3802228],[23.108821,39.3800316],[23.1087161,39.3800579],[23.1088406,39.3803111],[23.1092449,39.3804764],[23.1093891,39.3810091],[23.1101345,39.3817357],[23.1102933,39.3820342],[23.1111426,39.3828156],[23.1116375,39.3831618],[23.1120069,39.3833268],[23.1121149,39.3835078],[23.1110471,39.3831888],[23.1104778,39.3832205],[23.1096695,39.3828719],[23.1092989,39.382797],[23.1092515,39.3828687],[23.1094015,39.382942],[23.1097102,39.3833228],[23.1096505,39.3834484],[23.1096944,39.383647],[23.1096203,39.3838267],[23.1095502,39.3839478],[23.1096306,39.3840205],[23.1095837,39.3840561],[23.1097921,39.3841028],[23.1097324,39.3842285],[23.1098221,39.3843058],[23.1100623,39.3845959],[23.1100714,39.3847942],[23.1102799,39.3848319],[23.1102553,39.3849398],[23.1101146,39.3850469],[23.1101365,39.3851551],[23.1107384,39.3853039],[23.1108065,39.3854216],[23.1107576,39.3856194],[23.1108374,39.3857372],[23.1107197,39.3858624],[23.1107518,39.3860789],[23.1110283,39.3862432],[23.1115041,39.3862649],[23.1116254,39.3863199],[23.1119111,39.3866825],[23.1123536,39.3874968],[23.1132086,39.3878367],[23.1135186,39.3881094],[23.113716,39.3890299],[23.1141111,39.389925],[23.1143748,39.3901883],[23.115217,39.3906272],[23.1156855,39.3912255],[23.1157067,39.3913878],[23.1154258,39.3915659],[23.1152654,39.3917359],[23.1153428,39.3920428],[23.115175,39.392456],[23.1152973,39.3928895],[23.1151297,39.3932846],[23.1158447,39.3936775],[23.1160379,39.3940124],[23.1171884,39.393949],[23.1181731,39.3941367],[23.1186975,39.3939965],[23.1189058,39.3940522],[23.1188681,39.3942771],[23.1185034,39.3946528],[23.1183248,39.3950029],[23.1186589,39.3952126],[23.1187612,39.3953936],[23.1192899,39.3958301],[23.1195402,39.3962375],[23.1198814,39.3970195],[23.1202817,39.3975091],[23.1208026,39.3976392],[23.121148,39.3978851],[23.122015,39.398198],[23.1224057,39.3985343],[23.1227258,39.3989422],[23.1230101,39.3993363],[23.1229697,39.3997775],[23.1232863,39.4004647],[23.1235626,39.400656],[23.1236647,39.400855],[23.1241036,39.4010475],[23.1244361,39.4013924],[23.1246929,39.401552],[23.1250026,39.401685],[23.1255316,39.4021035],[23.1256689,39.4022667],[23.1257239,39.4025194],[23.1262859,39.4030823],[23.1265166,39.4032101],[23.1267906,39.4035906],[23.1274394,39.4038928],[23.1276598,39.4040071],[23.1277755,39.404044],[23.12797,39.4042798],[23.1282235,39.4044439],[23.1288601,39.4046198],[23.1293918,39.4049437],[23.129888,39.4051997],[23.1302568,39.4053151],[23.1304743,39.405569],[23.1306497,39.4055928],[23.1313235,39.4055798],[23.1313907,39.4057786],[23.1319555,39.4061252],[23.1319083,39.4061924],[23.131814,39.4062998]]},{"id":19326,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a7\u03ac\u03bd\u03b9\u03b1-\u039a\u03b9\u03c3\u03c3\u03cc\u03c2 \u03b1\u03c0\u03cc \u03a1\u03b9\u03b6\u03b1\u03af\u03b9\u03ba\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b1\u03bb\u03b9\u03cc \u03c0\u03b5\u03c4\u03c1\u03cc\u03c3\u03c4\u03c1\u03c9\u03c4\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf \u039a\u03b9\u03c3\u03c3\u03cc\u03c2-\u03a7\u03ac\u03bd\u03b9","path":"THESSALIA\/Thessaly_Pelion_Chania_Rizeika_Kissos","activity_type":31,"assistance":1,"difficulty":2,"scenic_value":3,"length":309,"name_EN":"Pelion Mt: Chania-Kissos via Rizeika","description_EN":"Via the old cobbled path ftom Kissos to Chania","ascent_time":205,"descent_time":180,"marker":"Red_dots","level":9,"ascent":751,"descent":83,"maxelev":1222,"minelev":513,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.06263 39.39005,23.13216 39.40576)","views":7,"millestones":"0,23.1318173,39.4062999#1,23.1240346,39.4041314#2,23.1188141,39.4004508#3,23.1125201,39.3989542#4,23.1066324,39.3968452#5,23.0974979,39.3955658#6,23.0875084,39.3931942#7,23.0785937,39.3905599#8,23.0684162,39.3941319#0.3,23.0627559,39.3959471","x":23.1087935,"y":39.3975118,"coor":[[23.1318173,39.4062999],[23.1319115,39.4061924],[23.1319588,39.4061252],[23.131394,39.4057786],[23.1313268,39.4055799],[23.1306519,39.4055883],[23.1304779,39.405569],[23.1302604,39.4053151],[23.1298901,39.4052042],[23.129394,39.4049392],[23.1288637,39.4046198],[23.1285949,39.4045458],[23.1286273,39.4046586],[23.1286572,39.4047895],[23.128457,39.4048105],[23.1283477,39.4048142],[23.1283353,39.4048772],[23.1279878,39.4048025],[23.1278268,39.4046752],[23.127722,39.4046924],[23.1276865,39.4047462],[23.1278569,39.4050538],[23.1275212,39.4049612],[23.1276682,39.4052867],[23.1276073,39.4055115],[23.1274472,39.405312],[23.1272971,39.4052388],[23.1262896,39.404997],[23.1254198,39.4048914],[23.1248769,39.404653],[23.1245327,39.404317],[23.1240356,39.4041331],[23.1236941,39.4035809],[23.1229031,39.4027459],[23.1210957,39.4014708],[23.1201809,39.4003286],[23.1192239,39.3997807],[23.1186727,39.399281],[23.1185454,39.399244],[23.1184255,39.3992836],[23.1184121,39.3994277],[23.1189151,39.4000622],[23.1194657,39.400607],[23.1194876,39.4007153],[23.1193359,39.4007682],[23.1190135,39.4005495],[23.1185392,39.4003117],[23.1179365,39.400217],[23.1174369,39.4002312],[23.1166798,39.4004057],[23.1162042,39.400366],[23.1159503,39.400238],[23.1156745,39.4000016],[23.1150834,39.399907],[23.1146815,39.3995435],[23.1145565,39.3993263],[23.1145524,39.3987316],[23.114169,39.3978276],[23.1138471,39.3975729],[23.1131058,39.3972113],[23.1130431,39.3974091],[23.1132379,39.3976178],[23.1132366,39.3977169],[23.1130233,39.3980577],[23.1131815,39.3984013],[23.1131569,39.3985092],[23.1130184,39.3985262],[23.1125904,39.3983968],[23.1123808,39.3984402],[23.1123787,39.3986024],[23.1123773,39.3987105],[23.1125353,39.3989865],[23.1125668,39.3992571],[23.1124189,39.3991794],[23.1123603,39.399224],[23.1123919,39.3994765],[23.1119274,39.399473],[23.1118341,39.3995083],[23.1117394,39.3996517],[23.1116701,39.3996152],[23.1116099,39.3997859],[23.1117333,39.4001293],[23.1113981,39.4000005],[23.1112816,39.4000357],[23.1111775,39.3999989],[23.1108779,39.3998164],[23.1106342,39.3997965],[23.1104528,39.3994527],[23.1102686,39.3993251],[23.1100887,39.3988552],[23.1094567,39.3983278],[23.1093403,39.3983449],[23.1091095,39.398235],[23.1091013,39.3979646],[23.1087935,39.3975118],[23.1085703,39.3977083],[23.1084196,39.3976891],[23.1083707,39.3978779],[23.1082651,39.3979672],[23.1079775,39.3977488],[23.10764,39.3978093],[23.1074444,39.3976636],[23.107551,39.3975022],[23.1074371,39.3973211],[23.1073207,39.3973473],[23.1071806,39.3974048],[23.1070418,39.3973587],[23.1071254,39.3971791],[23.1071161,39.3969988],[23.1069905,39.3968267],[23.1068974,39.396844],[23.1067792,39.3970052],[23.1066303,39.3968419],[23.1065132,39.3969221],[23.1063757,39.3967769],[23.1061772,39.3968564],[23.106064,39.3966303],[23.1060148,39.3968462],[23.1058053,39.3968806],[23.1056026,39.3972935],[23.1050623,39.3977669],[23.105096,39.3978573],[23.1049908,39.3979106],[23.104178,39.3979043],[23.1036812,39.3977023],[23.1032568,39.3972845],[23.1028858,39.3972366],[23.1026433,39.3971266],[23.102515,39.3971707],[23.1021444,39.3970957],[23.10176,39.3971828],[23.1015161,39.397181],[23.101215,39.3970345],[23.1002296,39.3969007],[23.0991095,39.3964055],[23.0982707,39.3957052],[23.097587,39.3955917],[23.097019,39.3954297],[23.0961184,39.3950262],[23.0951511,39.3943879],[23.0943479,39.3936428],[23.0939888,39.393568],[23.0926315,39.3934673],[23.0914079,39.3928991],[23.0906072,39.3928568],[23.0903046,39.3929085],[23.0884601,39.3936509],[23.0880888,39.39363],[23.0876944,39.3933971],[23.086618,39.3922354],[23.08525,39.3920624],[23.0850203,39.3918624],[23.0847367,39.3913556],[23.0843201,39.3912442],[23.0837671,39.3909064],[23.082649,39.3906318],[23.0825239,39.3904326],[23.0825518,39.3900724],[23.0824845,39.3898916],[23.0820901,39.3898615],[23.0817091,39.3896963],[23.0813032,39.3896571],[23.0807191,39.3899228],[23.080062,39.3904402],[23.0794232,39.3904531],[23.0784694,39.3905717],[23.0782479,39.3906421],[23.077872,39.3909635],[23.0768236,39.3912165],[23.0762155,39.391536],[23.0758745,39.3918577],[23.0749976,39.3923102],[23.0744833,39.3924864],[23.0735476,39.3929925],[23.0727554,39.3931844],[23.0719792,39.3934035],[23.071429,39.3937325],[23.0706646,39.3935822],[23.0701769,39.3935783],[23.0696175,39.393727],[23.0687295,39.3941344],[23.0671921,39.3941221],[23.0669079,39.3940117],[23.0661532,39.3940056],[23.0656647,39.3940648],[23.0648924,39.3945001],[23.0645013,39.3950916],[23.0627559,39.3959471]]},{"id":19327,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u03a6\u03c5\u03c4\u03cc\u03ba\u03bf-\u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u0392\u03b1\u03b8\u03cd\u03c1\u03b5\u03bc\u03b1","path":"THESSALIA\/Thessaly_Pelion_Fytoko_Makrinitsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":7474,"name_EN":"Pelion Mt: Fytoko-Makrinitsa","description_EN":"Via the Vathyrema ravine","ascent_time":180,"descent_time":160,"marker":"Red_dots","level":9,"ascent":637,"descent":220,"maxelev":700,"minelev":183,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.93848 39.40031,22.98961 39.41021)","views":4,"millestones":"0,22.9385182,39.4076567#1,22.9460612,39.4102371#2,22.9523013,39.4078271#3,22.9602141,39.4062033#4,22.9593450,39.4010740#5,22.9700485,39.4027294#6,22.9792095,39.4004783#7.5,22.9895868,39.4021105","x":22.9612182,"y":39.4035952,"coor":[[22.9385182,39.4076567],[22.9387409,39.4081453],[22.9390198,39.408355],[22.9397689,39.4087403],[22.939978,39.4087422],[22.9405164,39.4087066],[22.9410614,39.4087656],[22.941589,39.409284],[22.9416204,39.4095095],[22.9414698,39.4097244],[22.9413162,39.4098942],[22.9413386,39.4099485],[22.9414434,39.4099314],[22.9418834,39.4098588],[22.9420831,39.4097075],[22.9423323,39.4093583],[22.9424215,39.4088365],[22.9427618,39.4086054],[22.9431456,39.4085728],[22.9435393,39.4086575],[22.9441714,39.4091047],[22.9454675,39.4100491],[22.9457224,39.4100874],[22.9461609,39.4102806],[22.9467089,39.4101414],[22.947278,39.4101465],[22.9474184,39.4100757],[22.9474314,39.4099857],[22.946834,39.4095478],[22.9468251,39.4093676],[22.9469777,39.4092608],[22.9471757,39.4092266],[22.9474854,39.4094817],[22.947616,39.4092936],[22.9478719,39.4092689],[22.9479731,39.4093284],[22.9487984,39.4092818],[22.9488426,39.4094354],[22.9491763,39.4096456],[22.9498515,39.4095436],[22.9502037,39.4092945],[22.9503191,39.4093406],[22.9507154,39.409254],[22.9511896,39.4093845],[22.951657,39.4093707],[22.9526581,39.4090553],[22.9530308,39.4089866],[22.9531834,39.4088798],[22.9530472,39.4086623],[22.9529821,39.4083554],[22.9524895,39.4079004],[22.9521767,39.407776],[22.9520749,39.4076669],[22.9521825,39.4074607],[22.9520936,39.4071896],[22.9522917,39.4071463],[22.9526435,39.4069242],[22.9526805,39.4067804],[22.9532001,39.4062084],[22.9533597,39.4056332],[22.9535015,39.4054722],[22.9535391,39.4052834],[22.953726,39.405213],[22.9540737,39.4052611],[22.9544113,39.4052101],[22.954827,39.405376],[22.9556859,39.4054108],[22.956299,39.4055785],[22.9565917,39.4054189],[22.9575459,39.4053013],[22.957917,39.4053407],[22.9581711,39.4054331],[22.9582503,39.4055779],[22.9584226,39.4057056],[22.9594529,39.4059311],[22.9596581,39.4061942],[22.9601429,39.4063968],[22.9602009,39.4063973],[22.9602039,39.4061991],[22.9604925,39.4063188],[22.9603226,39.406029],[22.9602907,39.4058305],[22.9603706,39.4059213],[22.9603834,39.4058403],[22.9607046,39.4061135],[22.9606393,39.4058156],[22.9607169,39.4052846],[22.9604254,39.4045792],[22.9607019,39.403951],[22.9606407,39.4033738],[22.9612182,39.4035952],[22.9613924,39.4035967],[22.9615647,39.4037244],[22.9616206,39.4038691],[22.9616905,39.4038517],[22.9617626,39.4036901],[22.9619265,39.4037772],[22.9618905,39.4036823],[22.9618357,39.4033168],[22.9613995,39.4029706],[22.9609203,39.4023896],[22.9605287,39.4021699],[22.9601703,39.4019865],[22.9594925,39.4014848],[22.9593237,39.4011229],[22.9594318,39.4008806],[22.959852,39.4007402],[22.9607811,39.4007395],[22.9621081,39.4005351],[22.962803,39.4006674],[22.9632418,39.4008335],[22.9637833,39.4011267],[22.9641507,39.4014183],[22.9656588,39.4015308],[22.9673924,39.4021048],[22.9681889,39.4024363],[22.9691269,39.4026248],[22.9697424,39.4026303],[22.9706209,39.4029084],[22.9713318,39.4027434],[22.972273,39.4027157],[22.972728,39.4025756],[22.9727736,39.40263],[22.9732649,39.4023911],[22.9742407,39.4023817],[22.9748786,39.4024414],[22.9750556,39.4022447],[22.9758653,39.4016752],[22.9760781,39.4014247],[22.9763362,39.4012468],[22.976727,39.4007276],[22.9767907,39.4003408],[22.9773465,39.4004538],[22.9771985,39.4002542],[22.9775577,39.4003115],[22.9786508,39.4002129],[22.9790791,39.4003068],[22.9791261,39.4002712],[22.9795745,39.4013834],[22.9798731,39.4016113],[22.9800927,39.4016853],[22.9805506,39.4021398],[22.9807314,39.4024838],[22.9807694,39.4022679],[22.9810104,39.4024682],[22.9811577,39.4027218],[22.981576,39.4027074],[22.9816561,39.4027892],[22.981601,39.4025905],[22.9817984,39.4025922],[22.9820249,39.4029907],[22.9822917,39.403011],[22.9826005,39.4033381],[22.9826937,39.4033209],[22.9828147,39.4029886],[22.9830973,39.4027207],[22.9831469,39.4025049],[22.9833581,39.4023536],[22.9833816,39.4019393],[22.9837285,39.4020415],[22.9841516,39.4016937],[22.9842643,39.4017578],[22.9846741,39.4015271],[22.9849534,39.4014935],[22.9850452,39.4015664],[22.9850437,39.4016745],[22.9851369,39.401824],[22.9852981,39.4019245],[22.9854716,39.4019711],[22.9857856,39.4019423],[22.9860163,39.4020524],[22.9862244,39.4020407],[22.9866665,39.4019905],[22.9871534,39.4020488],[22.987562,39.4019082],[22.987902,39.4016859],[22.9880997,39.4016696],[22.9886106,39.4017506],[22.9889688,39.4018799],[22.9892314,39.4021885],[22.9895868,39.4021105]]},{"id":19328,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039a\u03ac\u03c4\u03c9 \u039a\u03b5\u03c1\u03b1\u03c3\u03b9\u03ac-\u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1","description_GR":"\u039c\u03ad\u03c3\u03c9 \u039b\u03ad\u03c3\u03c7\u03b9\u03b1\u03bd\u03b7\u03c2","path":"THESSALIA\/Thessaly_Pelion_Kerasia_Makrinitsa","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":13295,"name_EN":"Pelion Mt: Kato Kerasia-Makrinitsa","description_EN":"Via Leschiani","ascent_time":395,"descent_time":370,"marker":"Red_dots","level":9,"ascent":952,"descent":472,"maxelev":966,"minelev":130,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.92317 39.40215,22.99398 39.46353)","views":12,"millestones":"0,22.9233503,39.4635299#1,22.9306211,39.4591822#2,22.9392842,39.4566877#3,22.9457633,39.4554178#4,22.9557326,39.4556634#5,22.9637724,39.4534174#6,22.9691717,39.4508356#7,22.9691251,39.4461280#8,22.9756629,39.4416155#9,22.9845558,39.4371926#10,22.9897155,39.4297851#11,22.9922659,39.4211557#12,22.9917401,39.4132200#13,22.9880204,39.4063597#13.3,22.9895882,39.4021105","x":22.9698483,"y":39.4481515,"coor":[[22.9233503,39.4635299],[22.9236576,39.4633435],[22.923486,39.4631663],[22.9234077,39.4629673],[22.9232001,39.4628573],[22.9231794,39.4626949],[22.9237133,39.4625331],[22.9243713,39.4626654],[22.9246392,39.4626318],[22.9248148,39.4625523],[22.9247461,39.4624796],[22.9257982,39.4620929],[22.9258832,39.4620261],[22.9258973,39.461864],[22.9262757,39.4614441],[22.9268759,39.460963],[22.9268828,39.4605126],[22.9267921,39.4603676],[22.9269354,39.4601166],[22.9273017,39.4598677],[22.928438,39.4596755],[22.929192,39.4597725],[22.9296577,39.4597227],[22.9299942,39.4597619],[22.9303963,39.4593151],[22.930915,39.4590045],[22.9311595,39.4589797],[22.9317158,39.4590839],[22.9318536,39.4591933],[22.931943,39.4594284],[22.9320464,39.4595104],[22.9326727,39.4595973],[22.9334441,39.4599828],[22.9335604,39.4599838],[22.9340712,39.4597407],[22.9343783,39.4594192],[22.9347522,39.4592875],[22.9349267,39.4591854],[22.9352409,39.4591613],[22.9353598,39.4589822],[22.9354756,39.4587309],[22.9358275,39.4585179],[22.9370482,39.458502],[22.9374424,39.4585687],[22.9377456,39.4584994],[22.9379953,39.4585152],[22.9381524,39.4585031],[22.9384822,39.4582178],[22.9386404,39.4577507],[22.9392833,39.4567474],[22.9392852,39.4566213],[22.9390436,39.4564569],[22.9390688,39.456331],[22.9399423,39.455902],[22.9403617,39.4558337],[22.9406088,39.4556377],[22.940829,39.4556758],[22.9410523,39.4555156],[22.9411607,39.4552643],[22.9413015,39.4551755],[22.9414469,39.4547894],[22.9413682,39.4546085],[22.9414642,39.4544111],[22.941494,39.4539789],[22.9413444,39.4538784],[22.9412888,39.4537157],[22.9414065,39.4536177],[22.9415342,39.4536278],[22.9419601,39.453902],[22.9420953,39.4541826],[22.9427614,39.4547112],[22.9429439,39.4549382],[22.9431977,39.4550666],[22.9433947,39.4551044],[22.9435886,39.4550386],[22.9439153,39.4549515],[22.9440813,39.4547367],[22.9448442,39.455014],[22.9451695,39.4550259],[22.9453576,39.4548835],[22.9457011,39.455229],[22.9457787,39.455473],[22.9460076,39.4557093],[22.9464763,39.4554613],[22.9468138,39.4554283],[22.9482973,39.455712],[22.9483816,39.4555146],[22.9481887,39.4552065],[22.9488357,39.4554646],[22.9492943,39.4554237],[22.9493948,39.455384],[22.9496027,39.4553229],[22.9500311,39.4554348],[22.95048,39.4557272],[22.9508395,39.4557845],[22.9518281,39.4557394],[22.9521782,39.4556434],[22.9524685,39.4556641],[22.9527598,39.4556126],[22.953037,39.4557323],[22.9537926,39.455721],[22.9541677,39.4555082],[22.9544126,39.4554563],[22.9550972,39.4555345],[22.9561169,39.4557419],[22.9570112,39.455786],[22.9568639,39.4556765],[22.9567863,39.4554236],[22.9571733,39.4551928],[22.9577201,39.4551616],[22.9581028,39.4552191],[22.9583476,39.4551672],[22.9587874,39.4552973],[22.9590775,39.4550071],[22.9593699,39.4548836],[22.9591975,39.4547559],[22.9590864,39.4543404],[22.959194,39.4541341],[22.9594198,39.454046],[22.9595733,39.4538852],[22.9595195,39.4535964],[22.9596954,39.4534899],[22.9599168,39.4534558],[22.9599922,39.4533619],[22.9604255,39.4536316],[22.9605926,39.4536285],[22.9608472,39.4537029],[22.9609962,39.4538484],[22.9612071,39.4537331],[22.9618227,39.4537567],[22.9619498,39.4538119],[22.9621018,39.4537501],[22.9626705,39.4538003],[22.9627884,39.4536932],[22.9631848,39.4536066],[22.9632471,39.4534991],[22.9638178,39.453414],[22.9643965,39.4535814],[22.9646996,39.453521],[22.9650068,39.4531814],[22.9648056,39.4526389],[22.964865,39.4525494],[22.9656515,39.4528087],[22.9667758,39.4530169],[22.9674517,39.4528967],[22.9675472,39.4528706],[22.9693075,39.4533006],[22.9695399,39.4533027],[22.9697587,39.4526559],[22.9697415,39.4522413],[22.9695832,39.4519425],[22.9696498,39.4513665],[22.9694652,39.4512747],[22.9686989,39.4512229],[22.9691544,39.4510737],[22.9692041,39.4508579],[22.9688704,39.4506297],[22.9687217,39.4504662],[22.9687464,39.4503673],[22.968597,39.4502579],[22.9687839,39.4501874],[22.9687146,39.4501598],[22.9687384,39.450124],[22.9693461,39.4498951],[22.9691257,39.4498661],[22.9692087,39.4497587],[22.9690283,39.4493787],[22.9690559,39.4490816],[22.9692207,39.4489389],[22.9692929,39.4487773],[22.9690124,39.448883],[22.9688972,39.4488099],[22.9691563,39.4485779],[22.9690634,39.4485771],[22.9694397,39.4482741],[22.9699286,39.4482243],[22.9699759,39.4481707],[22.9698483,39.4481515],[22.9699085,39.4480079],[22.9697455,39.4480335],[22.9690608,39.4479643],[22.9692491,39.4478038],[22.9695647,39.4476805],[22.9698011,39.4474123],[22.9693359,39.4474352],[22.9690124,39.4473062],[22.9691529,39.4472353],[22.9689918,39.4471258],[22.9691088,39.4470727],[22.9690292,39.4469549],[22.9691805,39.4469382],[22.9694158,39.4467421],[22.9695793,39.4466895],[22.9696295,39.4464376],[22.9692688,39.4464705],[22.9694,39.4462374],[22.9691452,39.446181],[22.9690557,39.445946],[22.968871,39.4458633],[22.9689304,39.4457737],[22.9685276,39.4455088],[22.9684708,39.4454182],[22.9686802,39.445402],[22.9687415,39.4451863],[22.9690212,39.4451348],[22.9693141,39.4449752],[22.9693107,39.4444165],[22.9696027,39.444311],[22.970249,39.4438301],[22.9704059,39.4439036],[22.9708691,39.4440158],[22.9710666,39.4440176],[22.9714754,39.443877],[22.9720202,39.4435034],[22.9724221,39.4430384],[22.9724176,39.4425563],[22.9724011,39.4421687],[22.972647,39.4420448],[22.9732193,39.4419462],[22.9734869,39.4419215],[22.9741994,39.4416755],[22.9747339,39.4416802],[22.9753278,39.4415954],[22.9755248,39.4416331],[22.9771315,39.441422],[22.9778147,39.4415902],[22.9782575,39.441504],[22.9784917,39.4413799],[22.978689,39.4413997],[22.9789462,39.4412938],[22.979225,39.4412962],[22.9798722,39.4407433],[22.9800895,39.4401865],[22.9805918,39.4400107],[22.9810156,39.439636],[22.9819292,39.4391394],[22.9823366,39.4390889],[22.9826653,39.4388576],[22.9830969,39.4387442],[22.9831687,39.4386007],[22.9834958,39.4384864],[22.9837219,39.4381189],[22.9841327,39.4378342],[22.9845118,39.4373329],[22.9845607,39.4371712],[22.9852036,39.4369065],[22.9859376,39.4367687],[22.9862196,39.4365549],[22.9863508,39.4363218],[22.9862613,39.4362354],[22.9861917,39.4362258],[22.9863119,39.4360286],[22.9870183,39.435386],[22.9871349,39.4352113],[22.9872837,39.4345639],[22.9876698,39.4335761],[22.9883158,39.4322932],[22.9890753,39.4303897],[22.9892535,39.4301209],[22.989641,39.4298359],[22.9901809,39.4294622],[22.9904555,39.428951],[22.9904168,39.42841],[22.9905214,39.4276],[22.99114,39.4249923],[22.9912576,39.4240878],[22.991856,39.4228676],[22.9920724,39.421554],[22.9922759,39.4211412],[22.9926781,39.4206402],[22.9924807,39.4198275],[22.9925307,39.4187737],[22.9929791,39.418291],[22.9932877,39.4176585],[22.9933436,39.4175058],[22.9935922,39.4169313],[22.9937681,39.4163381],[22.9937858,39.4159148],[22.9936978,39.4155716],[22.9937398,39.4153017],[22.9936497,39.4151027],[22.9935459,39.4150477],[22.9934799,39.4147948],[22.9935172,39.414624],[22.9931752,39.4141705],[22.9927938,39.414041],[22.9924688,39.4140202],[22.9922271,39.4138649],[22.9916571,39.4131121],[22.9913459,39.4129473],[22.99121,39.4127028],[22.9912125,39.4125316],[22.9906228,39.4123463],[22.9904757,39.4120747],[22.9901304,39.4118555],[22.9893883,39.410957],[22.9893676,39.4107856],[22.9890953,39.4103327],[22.9887821,39.4095011],[22.9893354,39.4097942],[22.9891993,39.4095677],[22.9890677,39.409026],[22.988953,39.4089259],[22.9888067,39.4086002],[22.9885542,39.4083908],[22.9886826,39.4083469],[22.9886615,39.4082025],[22.9885469,39.4080934],[22.9885833,39.4079856],[22.9883764,39.4078396],[22.9882971,39.4076948],[22.9882887,39.4074784],[22.9884349,39.4072544],[22.9883497,39.4067221],[22.9881494,39.4065176],[22.9878411,39.4061455],[22.9875713,39.4055305],[22.9874094,39.4052272],[22.9874368,39.4049391],[22.9874476,39.4049257],[22.9874023,39.4048442],[22.9872629,39.404843],[22.9871448,39.4047563],[22.9870447,39.4044491],[22.9868591,39.404434],[22.9869282,39.4043715],[22.9865563,39.4043863],[22.9866163,39.4042517],[22.9864539,39.4042412],[22.9874583,39.4038535],[22.9875694,39.4036518],[22.9879619,39.4038174],[22.987889,39.403641],[22.9879623,39.4036372],[22.9876073,39.4032917],[22.9878288,39.4032305],[22.9882182,39.4033601],[22.9881863,39.4031616],[22.9880947,39.4030707],[22.9882918,39.4030904],[22.9882818,39.4029822],[22.9880894,39.4026336],[22.9880901,39.4025796],[22.9882354,39.4025718],[22.9881908,39.4024453],[22.9882385,39.4023556],[22.9883266,39.4023654],[22.9884265,39.4025329],[22.9885891,39.4025343],[22.9885342,39.4023176],[22.9889852,39.4024477],[22.9891288,39.4021606],[22.9892329,39.4021885],[22.9895882,39.4021105]]},{"id":19329,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039c\u03b1\u03ba\u03c1\u03b9\u03bd\u03af\u03c4\u03c3\u03b1-\u03a3\u03c4\u03b1\u03b3\u03b9\u03ac\u03c4\u03b5\u03c2","description_GR":"","path":"THESSALIA\/Thessaly_Pelion_Makrinitsa_Stagiates","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2683,"name_EN":"Pelion Mt: Makrinitsa-Stagiates","description_EN":"","ascent_time":45,"descent_time":45,"marker":"Red_dots","level":9,"ascent":26,"descent":259,"maxelev":618,"minelev":384,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.98297 39.38887,22.99334 39.40205)","views":4,"millestones":"0,22.9895871,39.4021105#1,22.9927569,39.3991877#2,22.9865824,39.3929685#2.7,22.9835194,39.3887898","x":22.9931402,"y":39.3986858,"coor":[[22.9895871,39.4021105],[22.9897181,39.4018864],[22.9900466,39.4015829],[22.9903301,39.4011754],[22.9907265,39.4010707],[22.9910236,39.4006047],[22.9914699,39.4002572],[22.9917152,39.4001602],[22.9920285,39.4001809],[22.9922383,39.4001287],[22.9917141,39.4000611],[22.9917726,39.3999535],[22.99153,39.3998612],[22.9914242,39.3999504],[22.9910511,39.4000553],[22.9912883,39.399715],[22.9908916,39.3998377],[22.9903712,39.399689],[22.9902331,39.3995977],[22.990176,39.3995341],[22.9908373,39.3995759],[22.9911272,39.3993577],[22.9914067,39.399306],[22.9912573,39.3991966],[22.991106,39.3992133],[22.9910308,39.3991992],[22.9912998,39.3990663],[22.9923507,39.3994809],[22.9921442,39.3992989],[22.9926657,39.3993755],[22.9928334,39.3990256],[22.9930434,39.3989553],[22.9931967,39.3987944],[22.9931047,39.3987306],[22.9931402,39.3986858],[22.9930016,39.3986306],[22.9926055,39.3987172],[22.9923041,39.3986786],[22.9918346,39.398215],[22.991144,39.3977855],[22.9909616,39.3975497],[22.9909874,39.3973697],[22.9908821,39.3972741],[22.9901571,39.3960064],[22.9900811,39.3956453],[22.9891295,39.3947901],[22.9889591,39.3945273],[22.9886134,39.3943441],[22.9885712,39.3940464],[22.9880147,39.3939875],[22.9872075,39.393593],[22.9867369,39.3932105],[22.9864532,39.3927575],[22.9865949,39.3917856],[22.98598,39.3912711],[22.9854076,39.3906354],[22.9851457,39.3902727],[22.9850808,39.3899478],[22.9849694,39.3897666],[22.9842452,39.3895846],[22.98344,39.3893838],[22.98321,39.3892331],[22.9832593,39.3890353],[22.9831571,39.3889533],[22.9832523,39.388792],[22.9832847,39.3887878],[22.9833303,39.3888422],[22.9835194,39.3887898]]},{"id":19673,"author":"AnaDigit","name_GR":"\u03a0\u03ae\u03bb\u03b9\u03bf: \u039f\u03b2\u03c1\u03b9\u03cc\u03c2-\u03a0\u03bf\u03c5\u03c1\u03af","description_GR":"\u039f\u03b2\u03c1\u03b9\u03cc\u03c2-\u039c\u03b9\u03c4\u03b6\u03ad\u03bb\u03b1-\u03a0\u03bf\u03c5\u03c1\u03af","path":"THESSALIA\/Thessaly_Pelion_Ovrios_Pouri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5748,"name_EN":"Pilio Mt: Ovrios-Pouri","description_EN":"Ovrios-Mitzela-Pouri","ascent_time":135,"descent_time":120,"marker":"O2","level":9,"ascent":525,"descent":109,"maxelev":425,"minelev":4,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.07944 39.47754,23.09736 39.50697)","views":2,"millestones":"0,23.0794786,39.5069713#1,23.0851179,39.5014433#2,23.0882553,39.4979114#3,23.0931482,39.4924920#4,23.0904987,39.4866006#5,23.0972811,39.4819518#5.7,23.0941666,39.4775148","x":23.09322,"y":39.4948974,"coor":[[23.0794786,39.5069713],[23.0795428,39.5069493],[23.0795796,39.5068054],[23.0794425,39.5066151],[23.079444,39.506507],[23.0796432,39.5063914],[23.0798581,39.5064157],[23.0799749,39.5063806],[23.0798484,39.5062714],[23.0798728,39.5061815],[23.0803292,39.5059689],[23.0806822,39.5056653],[23.0809266,39.5055681],[23.0813562,39.5056256],[23.081543,39.505573],[23.0817308,39.5054484],[23.0818399,39.5051068],[23.0821668,39.5050193],[23.0824693,39.5050127],[23.08292,39.5052325],[23.0831761,39.5052165],[23.0832587,39.505127],[23.0833702,39.5046053],[23.0833064,39.5041543],[23.0835183,39.5038766],[23.0836487,39.5036885],[23.0835713,39.5033815],[23.08389,39.5030236],[23.0841589,39.5029176],[23.0846461,39.5026601],[23.0846705,39.5025702],[23.0849891,39.5020321],[23.0848561,39.5016436],[23.0848352,39.5014633],[23.0850554,39.501519],[23.0852327,39.5013042],[23.0853792,39.5013008],[23.0857517,39.5012767],[23.0856949,39.5011772],[23.0858244,39.5010521],[23.0859032,39.5008094],[23.0860318,39.5007563],[23.0861033,39.5006308],[23.0860997,39.500455],[23.0861144,39.5000272],[23.0863278,39.4997225],[23.0863548,39.4994344],[23.0864376,39.4993269],[23.0879897,39.4989246],[23.0878712,39.4988426],[23.0874065,39.4988029],[23.0871288,39.4986926],[23.0866326,39.4984004],[23.0864033,39.4981463],[23.0861247,39.498108],[23.0861255,39.498045],[23.0862892,39.4979742],[23.0860456,39.4979272],[23.0858963,39.4977819],[23.0854926,39.4979769],[23.0857533,39.4976907],[23.0868661,39.4979697],[23.0876815,39.497868],[23.0883532,39.4979183],[23.0892614,39.4978353],[23.0899874,39.4974626],[23.0902297,39.4974104],[23.0906408,39.4973821],[23.0910981,39.4970973],[23.0913105,39.4968557],[23.0917536,39.4967691],[23.0920011,39.4965187],[23.0919474,39.4961759],[23.0920444,39.4958703],[23.0917493,39.4953094],[23.091744,39.4948228],[23.0918953,39.4948149],[23.0922424,39.4949528],[23.0927084,39.4948934],[23.09322,39.4948974],[23.0933493,39.4947902],[23.0936843,39.494072],[23.0938656,39.4939878],[23.0938564,39.4938076],[23.0934608,39.4929215],[23.0931409,39.4924865],[23.0930551,39.4919272],[23.0929399,39.4918452],[23.0923135,39.4917232],[23.092094,39.4916133],[23.0919553,39.4915492],[23.0918073,39.4913047],[23.0915708,39.4907082],[23.090889,39.4903785],[23.0905663,39.4901597],[23.0904654,39.4898706],[23.0901533,39.489724],[23.0899368,39.4893799],[23.0898329,39.489325],[23.0897164,39.4891439],[23.0895204,39.4890162],[23.0902139,39.488445],[23.0902328,39.4878865],[23.0899115,39.4875596],[23.0895991,39.4874401],[23.0894619,39.4872588],[23.0889767,39.4870207],[23.088932,39.4868762],[23.0890617,39.4867421],[23.0896907,39.4866569],[23.0898319,39.4865318],[23.0909119,39.4866394],[23.091274,39.4865161],[23.0917388,39.4865377],[23.0929161,39.4868803],[23.0932986,39.4869734],[23.0940474,39.4866188],[23.0940724,39.4864839],[23.0942862,39.4861431],[23.0946736,39.4858578],[23.0950644,39.4853112],[23.0957299,39.4851002],[23.0959513,39.4848721],[23.0963495,39.48465],[23.0969244,39.484249],[23.0968439,39.4841853],[23.0968132,39.4838606],[23.09649,39.4836779],[23.0963992,39.483506],[23.0967652,39.4830764],[23.09676,39.4825808],[23.0971297,39.4822277],[23.097272,39.4820126],[23.09731,39.4817696],[23.0971761,39.4813361],[23.0966765,39.4804131],[23.0966551,39.4802688],[23.0967995,39.4798915],[23.0966424,39.4795344],[23.0965515,39.4793715],[23.0965657,39.4791733],[23.0965786,39.4790743],[23.0967659,39.4789767],[23.0966668,39.4789128],[23.0965501,39.478948],[23.0963417,39.4788743],[23.0964013,39.4787666],[23.0962508,39.4787114],[23.0960594,39.4785117],[23.0959222,39.4783304],[23.0958897,39.4781499],[23.0957051,39.4779277],[23.0955997,39.477981],[23.095334,39.4778528],[23.0948106,39.4778667],[23.0947126,39.4777218],[23.094424,39.4775574],[23.0942556,39.4775425],[23.0941666,39.4775148]]}],{"extent":[22.92066,39.08879,23.34312,39.50697],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":3,"action":{"type":"redirect"},"sort":{"type":"byname"}},"PELOPONNESE\/Pelop_Abeliona_Trail_1":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_2":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1c":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1a":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1b":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"Car_touring\/CAR_Rodos_Attavyros_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Attavyros_summit":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_36km_Lindos_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Kattavia_Skiadeni_loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"Car_touring\/CAR_Rodos_Lindos_Sport":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MACEDONIA\/Makedonia_Falakro_refuge_Chionotripa":{"url":null,"color":"#bb0707","width":6,"exclude":false,"useStyle":true},"MACEDONIA\/Makedonia_Falakro_refuge_ProfitisIlias":{"url":null,"color":"#b11f0b","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":"Menalon_Trail_Lousios.php","color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#248036","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#108b1a","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#fbfb00","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#e70404","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_1":{"url":null,"color":"#ec0a0a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_9":{"url":null,"color":"#f60606","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_10":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_11":{"url":null,"color":"#2fb4ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_12":{"url":null,"color":"#069f24","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_13":{"url":null,"color":"#f60404","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Merovigli_Skaros":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Oia_Amoudi":{"url":null,"color":"#2fffff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_2":{"url":null,"color":"#06b12f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_3":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_4":{"url":null,"color":"#f4ff00","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_5":{"url":null,"color":"#04b427","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_6":{"url":null,"color":"#ff2fd5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_7":{"url":null,"color":"#2abc0e","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_8":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Koukouli_Dilofo":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Vikos_Elafotopos":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_AnoPedina_Monodendri":{"url":null,"color":"#0dcb15","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_AKlidonia_Papigo":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_AstrakaRef_Gamila":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Astraka_Drakolimni":{"url":null,"color":"#2facff","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Konitsa_Astraka":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Konitsa_Stomio_Ast":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_O31_Astraka_Vrisoc":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_O31_Papigo_Astraka":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Voidomatis_bridges":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Stouros":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Vradeto_Beloi":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Kapesovo_Kipi":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_KKlidonia_AKlidonia":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Monodentri_Vitsa":{"url":null,"color":"#2fffee","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Elafotopos_AnoPedina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Skala_Vradetou":{"url":null,"color":"#e91c13","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Vradeto_Astraka":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Vitsa_Koukouli":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Tsepelovo_Astraka":{"url":null,"color":"#fbf100","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Papigo_Vikos":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Papigo_Loop":{"url":null,"color":"#f50000","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Monodendri_Vikos":{"url":null,"color":"#2f37ff","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Pelop_Lagadia_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Arvitsa":{"url":null,"color":"#0bbd13","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_2":{"url":null,"color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_1":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_3":{"url":null,"color":"#2fff8b","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Keresova":{"url":null,"color":"#f40404","width":6,"exclude":false,"useStyle":true},"ATTIKI\/Attiki_Imittos_Sfittia_Odos":{"url":null,"color":"#34bb0a","width":3,"exclude":false,"useStyle":true},"ATTIKI\/Attiki_Imittos_Papagou_Trail_2":{"url":null,"color":"#0a820a","width":6,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Trail10":{"url":null,"color":"#2f40ff","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Katechaki_GlykaNera":{"url":null,"color":"#ffd82f","width":3,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Ilioupoli_Sfittos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Kareas_Michailidis":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Katechaki_Summit":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Taxiarches_sum_road":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Anthousa_tower":{"url":null,"color":"#2f3dff","width":6,"exclude":false,"useStyle":true},"MTB_Roadbike\/MTB_Imittos_Liondari_cave":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Megalos_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Quarries":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Korakovouni_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Papagou_Asteriou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop3":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_OmvriosZefs":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kalopoula":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_roman_quarry":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_PrfIlias_Terpsithea":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop4":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_PrfIlias":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_Mnimeio_Michailidi":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Gyros_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Mikros_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Hard_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Anthousa_training":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Oreinos_Agonas_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Trail10_short_version":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_1":{"url":null,"color":"#1d7a10","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_2":{"url":null,"color":"#2f50ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_3":{"url":null,"color":"#eb0707","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_4":{"url":null,"color":"#f72fff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_5":{"url":null,"color":"#13930e","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6a":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6b":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_7":{"url":null,"color":"#ffff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_8":{"url":null,"color":"#e110d0","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_9":{"url":null,"color":"#51be14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Chora_loop1":{"url":null,"color":"#2fcdff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Chora_loop2":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Zogaki":{"url":null,"color":"#11a2b6","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala":{"url":null,"color":"#ffad00","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala2":{"url":null,"color":"#22d112","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_AgNikolaos_Poria":{"url":null,"color":"#1f9306","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Tromarisa_Poria":{"url":null,"color":"#ff2f2f","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Tromarisa_gorge":{"url":null,"color":"#ca2fff","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Zourva_Tromarisa":{"url":null,"color":"#3aff2f","width":6,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Meskla_Zourva":{"url":null,"color":"#85ff2f","width":6,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Zourva_Kambia":{"url":null,"color":"#fff42f","width":6,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Theriso_Kambia":{"url":null,"color":"#ffc22f","width":6,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Theriso_loop_1":{"url":null,"color":"#2ffaff","width":7,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Theriso_loop_2":{"url":null,"color":"#2fa6ff","width":4,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Theriso_Tembla":{"url":null,"color":"#b12fff","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_AgKyriaki_Tembla":{"url":null,"color":"#2f64ff","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Kambia_1":{"url":null,"color":"#ff2fd0","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Kambia_2":{"url":null,"color":"#2fff98","width":5,"exclude":false,"useStyle":true},"CRETE\/Crete_LefkaOri_Theriso_Zourva":{"url":null,"color":"#2fbfff","width":5,"exclude":false,"useStyle":true}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_Pelion_Routes = new getPoiCollection("Pelion_Routes",[{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u03a3\u03ba\u03b1\u03bd\u03c4\u03b6\u03cc\u03c7\u03bf\u03b9\u03c1\u03bf\u03c2","owner":"A. Bonetti","x":23.326899528504,"y":39.192912119333,"photo":"Erinaceus_concolor","type":7,"zoom_level":12,"id":261,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03c3\u03ba\u03b1\u03bd\u03c4\u03b6\u03cc\u03c7\u03bf\u03b9\u03c1\u03bf\u03c2 (Erinaceus concolor) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bf\u03b9\u03bd\u03cc\u03c2 \u03c3\u03b5 \u03cc\u03bb\u03b7 \u03c4\u03b7\u03bd \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03ae \u0395\u03bb\u03bb\u03ac\u03b4\u03b1","height":341,"width":512},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0397 \u03c0\u03b5\u03b6\u03bf\u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03b9\u03c3\u03c3\u03cc\u03c2-\u039c\u03bf\u03cd\u03c1\u03b5\u03c3\u03b9","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":23.137163,"y":39.397996,"photo":"Gefyra_Kissos_Mouresi","type":0,"zoom_level":14,"id":705,"hlink_GR":"","hlink_EN":"","description":"","height":384,"width":512},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf \u03c4\u03c1\u03b1\u03b9\u03bd\u03ac\u03ba\u03b9 \u03c3\u03c4\u03b9\u03c2 \u039c\u03b7\u03bb\u03b9\u03ad\u03c2","owner":"\u0394.\u0392\u03b1\u03c1\u03b1\u03bb\u03ae\u03c2","x":23.143903,"y":39.327574,"photo":"Varalis_Pilio_Milies","type":9,"zoom_level":14,"id":1556,"hlink_GR":"","hlink_EN":"","description":"","height":533,"width":800},{"name":"\u03a0\u0397\u039b\u0399\u039f","owner":"\u0394.\u0392\u03b1\u03c1\u03b1\u03bb\u03ae\u03c2","x":22.9924428,"y":39.398634,"photo":"Varalis_Pilio_hiking","type":0,"zoom_level":14,"id":1557,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":941},{"name":"\u03a0\u0397\u039b\u0399\u039f","owner":"\u0394.\u0392\u03b1\u03c1\u03b1\u03bb\u03ae\u03c2","x":23.113882,"y":39.466364,"photo":"Varalis_Pilio_hiking2","type":0,"zoom_level":14,"id":1558,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":881},{"name":"\u03a0\u0397\u039b\u0399\u039f","owner":"\u0394.\u0392\u03b1\u03c1\u03b1\u03bb\u03ae\u03c2","x":23.143903,"y":39.327574,"photo":"Varalis_church1","type":9,"zoom_level":15,"id":1560,"hlink_GR":"","hlink_EN":"","description":"","height":533,"width":800},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.062767,"y":39.396007,"photo":"K3II96491","type":450,"zoom_level":16,"id":4308,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.046692,"y":39.377323,"photo":"K3II96641","type":450,"zoom_level":16,"id":4309,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.034983,"y":39.371193,"photo":"K3II97031","type":450,"zoom_level":17,"id":4310,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.02974,"y":39.376712,"photo":"K3II97051","type":450,"zoom_level":16,"id":4311,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.029748,"y":39.376675,"photo":"K3II97061","type":450,"zoom_level":17,"id":4312,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.029935,"y":39.376805,"photo":"K3II97071","type":450,"zoom_level":17,"id":4313,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.997795,"y":39.391142,"photo":"K3II97131","type":450,"zoom_level":16,"id":4314,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.999072,"y":39.392582,"photo":"K3II97141","type":450,"zoom_level":17,"id":4315,"hlink_GR":"","hlink_EN":"","description":"","height":569,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.995068,"y":39.393265,"photo":"K3II97161","type":450,"zoom_level":16,"id":4316,"hlink_GR":"","hlink_EN":"","description":"","height":674,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.994817,"y":39.39328,"photo":"K3II97171","type":450,"zoom_level":16,"id":4317,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.9886,"y":39.391032,"photo":"K3II97201","type":450,"zoom_level":16,"id":4318,"hlink_GR":"","hlink_EN":"","description":"","height":652,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.986245,"y":39.389183,"photo":"K3II97231","type":450,"zoom_level":16,"id":4319,"hlink_GR":"","hlink_EN":"","description":"","height":644,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.983593,"y":39.388833,"photo":"K3II97261","type":450,"zoom_level":16,"id":4320,"hlink_GR":"","hlink_EN":"","description":"","height":663,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.98352,"y":39.388808,"photo":"K3II97271","type":450,"zoom_level":15,"id":4321,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.983547,"y":39.388833,"photo":"K3II97281","type":450,"zoom_level":17,"id":4322,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":644},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.983543,"y":39.388867,"photo":"K3II97291","type":450,"zoom_level":15,"id":4323,"hlink_GR":"","hlink_EN":"","description":"","height":688,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.983322,"y":39.389315,"photo":"K3II97351","type":450,"zoom_level":16,"id":4324,"hlink_GR":"","hlink_EN":"","description":"","height":787,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.985445,"y":39.390697,"photo":"K3II97361","type":450,"zoom_level":17,"id":4325,"hlink_GR":"","hlink_EN":"","description":"","height":613,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.986105,"y":39.391345,"photo":"K3II97371","type":450,"zoom_level":16,"id":4326,"hlink_GR":"","hlink_EN":"","description":"","height":636,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.991007,"y":39.397433,"photo":"K3II97461","type":450,"zoom_level":16,"id":4327,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.992072,"y":39.400117,"photo":"K3II97621","type":450,"zoom_level":16,"id":4329,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.990117,"y":39.401613,"photo":"K3II97641","type":450,"zoom_level":15,"id":4330,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":661},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.989868,"y":39.401762,"photo":"K3II97651","type":450,"zoom_level":17,"id":4331,"hlink_GR":"","hlink_EN":"","description":"","height":970,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.989255,"y":39.4022,"photo":"K3II97671","type":450,"zoom_level":16,"id":4332,"hlink_GR":"","hlink_EN":"","description":"","height":609,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.989215,"y":39.402155,"photo":"K3II97681","type":450,"zoom_level":16,"id":4333,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":730},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.986123,"y":39.40206,"photo":"K3II97721","type":450,"zoom_level":16,"id":4334,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.981167,"y":39.395898,"photo":"K3II97941","type":450,"zoom_level":17,"id":4335,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":711},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.969133,"y":39.381328,"photo":"K3II98081","type":450,"zoom_level":16,"id":4336,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.979338,"y":39.379812,"photo":"K3II98111","type":450,"zoom_level":17,"id":4337,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":987},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b7\u03bb\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.981012,"y":39.380603,"photo":"K3II98121","type":450,"zoom_level":17,"id":4338,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
Ultra Trail Pilion","owner":"AnaDigit","x":22.977053,"y":39.387462,"photo":"K3II98021","type":450,"zoom_level":16,"id":4339,"hlink_GR":"","hlink_EN":"","description":"","height":680,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0395\u03c0\u03b9\u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.98448,"y":39.38142,"photo":"K3II98151","type":450,"zoom_level":18,"id":4340,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0391\u03a1\u03a3\u0399\u03a3","owner":"AnaDigit","x":22.991758,"y":39.400088,"photo":"K3II97611","type":450,"zoom_level":18,"id":4341,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u0394\u03c1\u03ac\u03ba\u03b5\u03b9\u03b1-\u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1","owner":"AnaDigit","x":23.046388542328,"y":39.377248333332,"photo":"K3II96661","type":0,"zoom_level":15,"id":4342,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":969},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0391\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03ac\u03bb\u03c5\u03bc\u03bc\u03b1","owner":"AnaDigit","x":23.040483,"y":39.377273,"photo":"K3II96851","type":9,"zoom_level":17,"id":4343,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1-\u03a7\u03ac\u03bd\u03b9\u03b1","owner":"AnaDigit","x":23.031948,"y":39.388153,"photo":"K3II97091","type":0,"zoom_level":16,"id":4344,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u0391\u03bb\u03b9\u03ba\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1-\u03a7\u03ac\u03bd\u03b9\u03b1","owner":"AnaDigit","x":23.032732,"y":39.388525,"photo":"K3II97111","type":0,"zoom_level":16,"id":4345,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":22.921070575714,"y":39.413662374839,"photo":"DSC_0327","type":450,"zoom_level":17,"id":4360,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":683},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":22.927618,"y":39.460102,"photo":"DSC_03571","type":450,"zoom_level":15,"id":4361,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":683},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.047161,"y":39.376001,"photo":"20170924_1543302","type":450,"zoom_level":15,"id":4362,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.047173,"y":39.375935,"photo":"20170924_1543411","type":450,"zoom_level":15,"id":4363,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.0467,"y":39.37726,"photo":"20170924_1549271","type":450,"zoom_level":17,"id":4364,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.032292,"y":39.373598,"photo":"20170924_1800121","type":450,"zoom_level":15,"id":4366,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.032034,"y":39.373473,"photo":"20170924_1801291","type":450,"zoom_level":17,"id":4367,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.031419,"y":39.387399,"photo":"20170924_1852561","type":450,"zoom_level":17,"id":4368,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.051267,"y":39.393666,"photo":"20170924_1930481","type":450,"zoom_level":15,"id":4369,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":22.985502,"y":39.383034,"photo":"20170925_1631451","type":450,"zoom_level":15,"id":4370,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":22.985403,"y":39.38301,"photo":"20170925_1632181","type":450,"zoom_level":15,"id":4371,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":22.98817,"y":39.406489,"photo":"20170927_1821271","type":450,"zoom_level":15,"id":4372,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.129748190104,"y":39.330021874968,"photo":"20171030_1720081","type":450,"zoom_level":17,"id":4373,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.149861,"y":39.32828,"photo":"20171030_1435061","type":450,"zoom_level":17,"id":4374,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.148853,"y":39.32793,"photo":"20171030_1451381","type":450,"zoom_level":17,"id":4375,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.149278,"y":39.328533,"photo":"20171030_1457411","type":450,"zoom_level":17,"id":4376,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.150528,"y":39.314358,"photo":"20171030_1624401","type":450,"zoom_level":17,"id":4377,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.150527,"y":39.314266,"photo":"20171030_1625071","type":450,"zoom_level":17,"id":4378,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.152948,"y":39.312798,"photo":"20171030_1637141","type":450,"zoom_level":17,"id":4379,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.152651,"y":39.312609,"photo":"20171030_1646591","type":450,"zoom_level":17,"id":4380,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.181116,"y":39.39784,"photo":"20171031_1546041","type":450,"zoom_level":17,"id":4381,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.180619,"y":39.396989,"photo":"20171031_1549151","type":450,"zoom_level":17,"id":4382,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.17999,"y":39.392259,"photo":"20171031_1611341","type":450,"zoom_level":17,"id":4383,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.176843,"y":39.39015,"photo":"20171031_1620141","type":450,"zoom_level":17,"id":4384,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.166323,"y":39.399275,"photo":"20171101_1043451","type":450,"zoom_level":17,"id":4385,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.131898,"y":39.406288,"photo":"20171101_1618481","type":450,"zoom_level":17,"id":4386,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.13425,"y":39.400707,"photo":"20171101_1638071","type":450,"zoom_level":17,"id":4387,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.137919,"y":39.397684,"photo":"20171101_1655531","type":450,"zoom_level":17,"id":4388,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.148824,"y":39.327933,"photo":"PelionGP1_70_type94_23_14882379_39_327931721","type":450,"zoom_level":17,"id":4389,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.150531,"y":39.314247,"photo":"PelionGP1_75_type94_23_15053319_39_314244741","type":450,"zoom_level":17,"id":4390,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.15299,"y":39.312784,"photo":"PelionGP1_76_type94_23_15298949_39_312785941","type":450,"zoom_level":17,"id":4391,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.072791,"y":39.393221,"photo":"20171102_1151491","type":450,"zoom_level":17,"id":4392,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.15304,"y":39.423854,"photo":"PelionGP3_109_type94_23_15303188_39_423849491","type":450,"zoom_level":17,"id":4393,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.131897,"y":39.406321,"photo":"PelionGP3_114_type94_23_13189311_39_406278071","type":450,"zoom_level":17,"id":4394,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.084084,"y":39.401087,"photo":"PelionGP4_123_type94_23_0840851_39_401122991","type":450,"zoom_level":15,"id":4395,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.084084,"y":39.401087,"photo":"PelionGP4_123_type94_23_0840851_39_401122992","type":450,"zoom_level":17,"id":4396,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.086423,"y":39.402623,"photo":"PelionGP4_124_type94_23_08643346_39_402625861","type":450,"zoom_level":17,"id":4397,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.096248,"y":39.41241,"photo":"PelionGP4_133_type94_23_09622836_39_412431811","type":450,"zoom_level":17,"id":4398,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.098149,"y":39.413468,"photo":"PelionGP4_134_type94_23_09816129_39_413492131","type":450,"zoom_level":17,"id":4399,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":768},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.151627,"y":39.327419,"photo":"20171031_0907521","type":450,"zoom_level":17,"id":4400,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":576},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.248764,"y":39.299026,"photo":"20171031_1548391","type":450,"zoom_level":17,"id":4401,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":576},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.278391,"y":39.162415,"photo":"20171102_1136311","type":450,"zoom_level":17,"id":4402,"hlink_GR":"","hlink_EN":"","description":"","height":576,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.27663,"y":39.159126,"photo":"20171102_1141341","type":450,"zoom_level":17,"id":4403,"hlink_GR":"","hlink_EN":"","description":"","height":576,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.3363,"y":39.16682,"photo":"20171102_1245081","type":450,"zoom_level":17,"id":4404,"hlink_GR":"","hlink_EN":"","description":"","height":576,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.277302,"y":39.156544,"photo":"20171102_1340481","type":450,"zoom_level":17,"id":4405,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":576},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.149815,"y":39.32835,"photo":"PelionKA2_20_type94_23_14979851_39_328345831","type":450,"zoom_level":17,"id":4406,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":576},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.157515,"y":39.324928,"photo":"PelionKA2_21_type94_23_15750298_39_324931521","type":450,"zoom_level":17,"id":4407,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":576},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.166969,"y":39.319744,"photo":"PelionKA2_25_type94_23_16694457_39_319746341","type":450,"zoom_level":17,"id":4408,"hlink_GR":"","hlink_EN":"","description":"","height":576,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.255314,"y":39.293678,"photo":"PelionKA2_28_type94_23_25530781_39_29367941","type":450,"zoom_level":17,"id":4409,"hlink_GR":"","hlink_EN":"","description":"","height":1024,"width":576},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.277975,"y":39.156155,"photo":"PilionKA4_31_type94_23_27793859_39_156182451","type":450,"zoom_level":17,"id":4410,"hlink_GR":"","hlink_EN":"","description":"","height":576,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.176268423258,"y":39.340909109197,"photo":"K3II05981","type":450,"zoom_level":17,"id":4411,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.175753439127,"y":39.349272539892,"photo":"K3II06011","type":450,"zoom_level":17,"id":4412,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.180513,"y":39.357113,"photo":"K3II06061","type":450,"zoom_level":17,"id":4413,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.179100835979,"y":39.37747514263,"photo":"K3II06231","type":450,"zoom_level":17,"id":4414,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.177387,"y":39.37802,"photo":"K3II06241","type":450,"zoom_level":17,"id":4415,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.172062,"y":39.376417,"photo":"K3II06251","type":450,"zoom_level":17,"id":4416,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.169337,"y":39.37416,"photo":"K3II06271","type":450,"zoom_level":17,"id":4417,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.168753,"y":39.361593,"photo":"K3II06331","type":450,"zoom_level":17,"id":4418,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.13985,"y":39.349473,"photo":"K3II06451","type":450,"zoom_level":17,"id":4419,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.120019,"y":39.335654,"photo":"20171030_1556371","type":450,"zoom_level":17,"id":4420,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":668},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.158580835979,"y":39.33293756717,"photo":"K3II05921","type":0,"zoom_level":15,"id":4421,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":1060},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.165812,"y":39.33186,"photo":"K3II05931","type":0,"zoom_level":15,"id":4422,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":797},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.17729,"y":39.332882,"photo":"K3II05941","type":0,"zoom_level":15,"id":4423,"hlink_GR":"","hlink_EN":"","description":"","height":666,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.178057,"y":39.335117,"photo":"K3II05951","type":0,"zoom_level":15,"id":4424,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":1069},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.176647,"y":39.344605,"photo":"K3II06001","type":0,"zoom_level":15,"id":4425,"hlink_GR":"","hlink_EN":"","description":"","height":650,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.174368,"y":39.35269,"photo":"K3II06031","type":1001,"zoom_level":15,"id":4426,"hlink_GR":"","hlink_EN":"","description":"","height":784,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03af\u03c7\u03bf\u03c2 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.174165,"y":39.352808,"photo":"K3II06041","type":9,"zoom_level":15,"id":4427,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.180807,"y":39.357592,"photo":"K3II06081","type":0,"zoom_level":15,"id":4428,"hlink_GR":"","hlink_EN":"","description":"","height":673,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0394\u03b7\u03bc\u03b7\u03c4\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.183237,"y":39.358937,"photo":"K3II06121","type":9,"zoom_level":15,"id":4429,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.18698,"y":39.363363,"photo":"K3II06171","type":1001,"zoom_level":15,"id":4430,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":643},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7 \u039b\u03b1\u03bc\u03c0\u03b9\u03bd\u03bf\u03cd","owner":"AnaDigit","x":23.21335,"y":39.355863,"photo":"K3II06191","type":9,"zoom_level":15,"id":4431,"hlink_GR":"","hlink_EN":"","description":"","height":878,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.174665,"y":39.368513,"photo":"K3II06211","type":0,"zoom_level":15,"id":4432,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.17947,"y":39.376347,"photo":"K3II06221","type":1001,"zoom_level":15,"id":4433,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":718},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.169665,"y":39.375527,"photo":"K3II06261","type":0,"zoom_level":15,"id":4434,"hlink_GR":"","hlink_EN":"","description":"","height":987,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.162982,"y":39.364102,"photo":"K3II06301","type":0,"zoom_level":15,"id":4435,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":798},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.162965,"y":39.364002,"photo":"K3II06311","type":0,"zoom_level":15,"id":4436,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.166763,"y":39.357495,"photo":"K3II06341","type":0,"zoom_level":15,"id":4437,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":798},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.164733,"y":39.355082,"photo":"K3II06361","type":0,"zoom_level":15,"id":4438,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":798},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.153808,"y":39.348707,"photo":"K3II06371","type":0,"zoom_level":15,"id":4439,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":798},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.15366,"y":39.348715,"photo":"K3II06401","type":0,"zoom_level":15,"id":4440,"hlink_GR":"","hlink_EN":"","description":"","height":739,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.150585,"y":39.348752,"photo":"K3II06411","type":0,"zoom_level":15,"id":4441,"hlink_GR":"","hlink_EN":"","description":"","height":654,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.141992,"y":39.348577,"photo":"K3II06441","type":0,"zoom_level":15,"id":4442,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.131833,"y":39.350123,"photo":"K3II06481","type":0,"zoom_level":15,"id":4443,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":798},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u0395\u03b3\u03ba\u03b1\u03c4\u03b1\u03bb\u03b5\u03bb\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf \u03ba\u03c4\u03af\u03c3\u03bc\u03b1 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.099103,"y":39.348497,"photo":"K3II06531","type":9,"zoom_level":15,"id":4444,"hlink_GR":"","hlink_EN":"","description":"","height":899,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.087607,"y":39.34432,"photo":"K3II06571","type":1001,"zoom_level":15,"id":4445,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf \u039d\u03b7\u03bb\u03b5\u03af\u03b1\u03c2","owner":"AnaDigit","x":23.087287,"y":39.344648,"photo":"K3II06581","type":9,"zoom_level":15,"id":4446,"hlink_GR":"","hlink_EN":"","description":"","height":664,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u039f \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03bd\u03b1\u0390\u03c3\u03ba\u03bf\u03c2 \u03c4\u03c9\u03bd \u03a4\u03b1\u03be\u03b9\u03b1\u03c1\u03c7\u03ce\u03bd \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u039b\u03b1\u03c5\u03c1\u03ad\u03bd\u03c4\u03b9\u03bf","owner":"AnaDigit","x":23.077294084654,"y":39.369181913819,"photo":"K3II06601","type":9,"zoom_level":15,"id":4447,"hlink_GR":"","hlink_EN":"","description":"","height":912,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.106065,"y":39.36328,"photo":"K3II06641","type":0,"zoom_level":15,"id":4448,"hlink_GR":"","hlink_EN":"","description":"","height":809,"width":1200},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.144292,"y":39.323855,"photo":"Pelion_Milies_path_11","type":0,"zoom_level":15,"id":4449,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.14289,"y":39.323707,"photo":"Pelion_Milies_path_41","type":0,"zoom_level":15,"id":4451,"hlink_GR":"","hlink_EN":"","description":"","height":737,"width":1000},{"name":"\u03a0\u0397\u039b\u0399\u039f
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u03a0\u03ae\u03bb\u03b9\u03bf","owner":"AnaDigit","x":23.07374,"y":39.365931,"photo":"K3II06591","type":0,"zoom_level":15,"id":4452,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
Αφέτες-Άφυσος
Άφυσος-Λεφόκαστρο
Κισσός-Άγ. Δημήτριος-Άγ. Ιωάννης
Άγιος Δημήτριος-Άγιος Ιωάννης
Άγιος Γεώργιος-Καταφύγιο Εξαγκαθιάς
Άγιος Γεώργιος-Κάτω Γατζέα
Άγιος Ιωάννης-Νταμούχαρη
Άγιος Γεώργιος-Πινακάτες
Αγία Κυριακή-Φάρος Καβούλια
Άγιος Λαυρέντιος-Άγιος Γεώργιος
Άγιος Λαυρέντιος-Άγιος Βλάσιος
Άγιος Λαυρέντιος-Χάνια
Άγιος Ονούφριος-Μακρινίτσα
Άγιος Ονούφριος-Μακρινίτσα
Αγριά-Άγιος Λαυρέντιος
Άγιος Βλάσιος-Αγία Μαρίνα-Άνω Λεχώνια
Άγιος Βλάσιος-Στρόφιλος-Άνω Λεχώνια
Αλικόπετρα-Χάνια
Αλικόπετρα-Δράκεια
Άλλη Μεριά-Αγριά
Άλλη Μεριά-Άναβρος
Ανήλιο-Άγιος Ιωάννης
Ανήλιο-Χορευτό
Κισσός-Ανήλιο
Αργαλαστή-Κάλαμος
Αργαλαστή-Λαύκος
Αργαλαστή-Λεφόκαστρο
Αργαλαστή-Πάου
Αργαλαστή-Ξινόβρυση
Χάνια-Κισσός
Χάνια-Κισσός από Ριζαίικα
Χάνια-Μακρυράχη
Χάνια-Μοναστηράκι-Κισσός
Χάνια-Κισσός από Ριζαίικα
Χορευτό-Άγιος Ιωάννης
Νταμούχαρη-Μυλοπόταμος
Δράκεια-Άγιος Λαυρέντιος
Δράκεια-Χάνια
Φυτόκο-Κάτω Κερασιά
Φυτόκο-Μακρινίτσα
Κάλαμος-Πάου
Κάτω Κερασιά-Μακρινίτσα
Κισσός-Μούρεσι
Κορόπη-Αφέτες
Μονή Λαμπηδόνας-Μυλοπόταμος
Λαμπινού-Μονή Λαμπιδόνας
Λαύκος-Χονδρή Άμμος
Λαύκος-Μηλίνα
Λαύκος-Πλατανιάς
Λαύκος-Μούσγες
Λεφόκαστρο-Κάλαμος
Μακρινίτσα-Σταγιάτες
Μακρινίτσα-Δυτικό Καταφύγιο-Πουρί
Μακρινίτσα-Σταγιάτες
Ανήλιο-Μακρυράχη
Μετόχι-Χόρτο
Μετόχι-Χόρτο από Σταμαίικα
Μηλιές-Καλά Νερά- το κεντρικό καλντερίμι
Μηλιές-Κορόπη
Μηλιές-Λαμπινού
Μηλιές-Νεοχώρι
Μηλιές-Τσαγκαράδα
Μηλίνα-Λαύκος
Μηλίνα-Πλατανιάς
Μούρεσι-Άγιος Ιωάννης
Μούρεσι-Νταμούχαρη
Μούρεσι-Νταμούχαρη
Μούσγες-Κατηγιώργης
Νεοχώρι-Αφέτες
Νεοχώρι-Συκή
Οβριός-Πουρί
Πάου-Χόρτο
Πινακάτες-Καλά Νερά
Βυζίτσα-Πινακάτες
Πλατανιάς-Μαύρη Πέτρα
Πορταριά-Αλικόπετρα
Πορταριά-Άλλη Μεριά
Πουρί-Χορευτό
Προμύρι-Πλατανιάς
Σταγιάτες-Πορταριά
Συκή-Ξινόβρυση
Ανάβαση στο Τισσαίον όρος
Διάσχιση Τισσαίου όρους
Τρίκερι-Αγία Κυριακή
Τρίκερι-Αγία Κυριακή μέσω ράχης
Τρίκερι-Αλογόπορος
Τρίκερι-Κόττες
Τρίκερι-Θεριάκοντας-Αλογόπορος
Διάσχιση Τσαγκαράδας
Τσαγκαράδα-Νταμούχαρη
Τσαγκαράδα-Μέγα Ίσωμα-Καταφύγιο Εξαγκαθιάς
Τσαγκαράδα-Μούρεσι
Βόλος-Πορταριά
Βυζίτσα-Καλά Νερά
Βυζίτσα-Μηλιές
Ξουρίχτι-Μυλοπόταμος
Ξουρίχτι-Τσαγκαράδα
Ξινόβρυση-Ποτιστικά
Ζαγορά-Χάνια
Ζαγορά-Χορευτό
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["Pelion_Routes"],pc:["Pelion_Routes"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_Pelion_Routes.zoomTo();}; var gsMapManager = this.gsMapManager; gsMapManager.create = function(mapDivId,options,afterLoad){ if(typeof overrideUserOptions != "undefined") { for( var i in options) overrideUserOptions[i] = options[i]; options = overrideUserOptions; } if(typeof afterLoad != "undefined") { afterLoad = afterLoad }else{ if(typeof overrideAfterLoad != "undefined") afterLoad = overrideAfterLoad }; return gsMapManager.create_dummy_function(mapDivId,options,afterLoad); // return new gsMapObject(mapDivId,options,afterLoad); }