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_taygetos = new getAdventureCollection("taygetos",[{"id":17906,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b1\u03c1\u03cc\u03c1\u03b9-\u0396\u03b1\u03b3\u03bf\u03cd\u03bd\u03b1-\u03bc\u03bf\u03bd\u03ae \u03a6\u03b1\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7\u03c2","description_GR":"\u03a4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac\u03c2 \u0396\u03b1\u03b3\u03bf\u03cd\u03bd\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Taygetos_Parori_Faneromeni","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4226,"name_EN":"Taygetos Mt: Parori-Zagouna-Faneromeni monastery","description_EN":"Old path through the cave-church of Panagia Zagouna","ascent_time":105,"descent_time":90,"marker":"Yellow_square","level":10,"ascent":588,"descent":97,"maxelev":780,"minelev":259,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.37133 37.04487,22.38918 37.06173)","views":33,"millestones":"0,22.3826297,37.0618847#1,22.3884327,37.0570885#2,22.3862562,37.0548730#3,22.3804685,37.0505868#4.2,22.3716971,37.0446346","x":22.3863048,"y":37.0549246,"coor":[[22.3826297,37.0618847],[22.3829127,37.0617984],[22.3839271,37.0616951],[22.3843574,37.0615567],[22.3851197,37.0611435],[22.386081,37.0603634],[22.3863628,37.0603312],[22.388107,37.0604676],[22.3873987,37.0599261],[22.3871868,37.0598421],[22.3871691,37.0596166],[22.3874256,37.0591874],[22.3878523,37.0586885],[22.3879866,37.0581856],[22.3879016,37.0579501],[22.38797,37.0579059],[22.3879144,37.0578781],[22.3880971,37.0577454],[22.3883529,37.0573523],[22.3882993,37.0572254],[22.3885293,37.0569851],[22.38873,37.0565372],[22.3886873,37.0564285],[22.388737,37.0562038],[22.3889457,37.0559092],[22.3880975,37.0566638],[22.3882412,37.0562512],[22.3881854,37.0562324],[22.3880924,37.0563753],[22.3881071,37.0562133],[22.3882683,37.0560352],[22.3881328,37.0560604],[22.388374,37.0558203],[22.3884466,37.0555779],[22.3881156,37.0558078],[22.3877881,37.0558754],[22.3879706,37.0557517],[22.3880781,37.0554558],[22.3876446,37.0557473],[22.3879476,37.0552467],[22.3875678,37.0551243],[22.3874354,37.0550054],[22.3874003,37.055068],[22.3870602,37.0546668],[22.3870807,37.0549262],[22.3871796,37.0550357],[22.3869885,37.0550331],[22.3866775,37.0548486],[22.3866537,37.0549114],[22.3868751,37.0550766],[22.3867718,37.0551744],[22.3865026,37.0551437],[22.3863048,37.0549246],[22.3861123,37.0547192],[22.3862991,37.0543973],[22.3862974,37.0542102],[22.3863675,37.054085],[22.3861349,37.0539196],[22.3861168,37.0537121],[22.3858317,37.0533657],[22.38573,37.0529587],[22.3853959,37.0525418],[22.3853481,37.0521445],[22.3849933,37.0519054],[22.3848184,37.0516686],[22.384471,37.0516098],[22.3844325,37.0518346],[22.3842616,37.0519405],[22.3841385,37.0519117],[22.3841979,37.0517593],[22.3838678,37.0514213],[22.3837622,37.0516272],[22.3838515,37.0517749],[22.3837705,37.0518819],[22.3836931,37.0518178],[22.3833216,37.0518398],[22.3826518,37.0516053],[22.3823754,37.0513852],[22.381934,37.0509195],[22.3814954,37.0509226],[22.381283,37.0508656],[22.3805386,37.0504408],[22.3804928,37.0504762],[22.3805688,37.0506035],[22.3805122,37.0506207],[22.3803684,37.0505106],[22.3798435,37.0503412],[22.3795782,37.0501235],[22.3795069,37.0500391],[22.3795349,37.0499449],[22.3795823,37.0498824],[22.3794526,37.0493692],[22.3789795,37.0483532],[22.3786047,37.0479966],[22.3778825,37.0475901],[22.3775188,37.0472426],[22.3754759,37.0462795],[22.3742665,37.0460466],[22.374077,37.0459201],[22.3734669,37.046056],[22.3731213,37.045916],[22.3726022,37.0454763],[22.3722087,37.0449481],[22.3718656,37.044691],[22.3716971,37.0446346]]},{"id":17907,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b1\u03c1\u03cc\u03c1\u03b9-\u039b\u03b1\u03b3\u03ba\u03b1\u03b4\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","description_GR":"\u03a4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03b7\u03c2 \u039b\u03b1\u03b3\u03ba\u03b1\u03b4\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Taygetos_Parori_Lagadiotisa","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":620,"name_EN":"Taygetos Mt: Parori-Lagadiotisa","description_EN":"The path to the cave-church of Panagia Lagadiotisa","ascent_time":15,"descent_time":10,"marker":"Yellow_square","level":10,"ascent":76,"descent":22,"maxelev":396,"minelev":299,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.37893 37.0584,22.3827 37.06183)","views":22,"millestones":"0,22.3826304,37.0618847#0.6,22.3790055,37.0583471","x":22.3801168,"y":37.0594033,"coor":[[22.3826304,37.0618847],[22.3823962,37.0617914],[22.3822417,37.0616541],[22.3813023,37.0603433],[22.3804903,37.0599176],[22.3803943,37.059673],[22.3803388,37.0595415],[22.3801168,37.0594033],[22.3797239,37.0593709],[22.3795583,37.0586926],[22.3797014,37.0588388],[22.3795628,37.05858],[22.3792919,37.0586304],[22.3792277,37.0584763],[22.3790055,37.0583471]]},{"id":17910,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","description_GR":"\u039a\u03bb\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Taygetos_Varvara_Summit","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":3789,"name_EN":"Taygetos Mt: EOS Refuge-Taygetos summit","description_EN":"Classic ascent to the Taygetos summit","ascent_time":115,"descent_time":85,"marker":"Red_square","level":10,"ascent":841,"descent":5,"maxelev":2405,"minelev":1547,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34952 36.9502,22.36775 36.96197)","views":214,"millestones":"0,22.3677443,36.9504018#1,22.3616561,36.9558403#2,22.3580151,36.9618057#3,22.3524969,36.9574006#3.8,22.3497189,36.9529377","x":22.3600743,"y":36.9588115,"coor":[[22.3677443,36.9504018],[22.3671209,36.9501926],[22.366938,36.9503433],[22.3667572,36.9503949],[22.366639,36.9506727],[22.3664319,36.9509042],[22.3660583,36.9510433],[22.366087,36.9512781],[22.3659769,36.9517002],[22.3658151,36.9519143],[22.3657876,36.9521482],[22.3651384,36.9525719],[22.3651133,36.9526978],[22.3649656,36.9527769],[22.3645933,36.9528529],[22.364538,36.952816],[22.3641718,36.9531355],[22.3640934,36.9531254],[22.3639106,36.9532671],[22.3637353,36.9535892],[22.3636789,36.9535974],[22.3637448,36.9536704],[22.3636755,36.9537596],[22.3637192,36.9538143],[22.3636184,36.9538039],[22.3636399,36.9538492],[22.3635721,36.9538663],[22.3637622,36.953905],[22.3637591,36.9540492],[22.3636585,36.9540298],[22.3635658,36.9541637],[22.3634765,36.9541354],[22.3634301,36.9542069],[22.3633077,36.9541511],[22.3633124,36.9544576],[22.3632332,36.9544836],[22.3632183,36.9546546],[22.363137,36.9547797],[22.3630704,36.9547427],[22.3629994,36.954913],[22.3624549,36.9551669],[22.362169,36.9554063],[22.3620104,36.9554672],[22.3616769,36.9558322],[22.3614957,36.9559018],[22.3612044,36.9558707],[22.3610573,36.9559228],[22.3610751,36.9561393],[22.3609326,36.9564979],[22.3609911,36.9569133],[22.3610894,36.9570409],[22.3610598,36.9573739],[22.3609058,36.9577504],[22.3606096,36.9579446],[22.3604421,36.95842],[22.3602246,36.9586153],[22.3601576,36.9585963],[22.3600319,36.9586937],[22.3600743,36.9588115],[22.3599131,36.9589986],[22.3596339,36.9589226],[22.3595685,36.9588316],[22.3595801,36.9582909],[22.359032,36.958707],[22.3587541,36.9590997],[22.3586848,36.9597117],[22.3587372,36.9598836],[22.3585088,36.9605835],[22.3586193,36.9606662],[22.3586701,36.9609193],[22.3586283,36.9612972],[22.3585767,36.9613461],[22.3583511,36.9613881],[22.3580665,36.9615644],[22.3580085,36.9616537],[22.3580232,36.9620145],[22.3578997,36.9620128],[22.357768,36.9620808],[22.3577447,36.9620219],[22.3573269,36.9616015],[22.357256,36.96124],[22.357177,36.9612569],[22.3568468,36.9609459],[22.3567995,36.9610534],[22.3567434,36.9610526],[22.3563053,36.9605328],[22.3561791,36.9606572],[22.3562116,36.9607117],[22.3560087,36.960745],[22.3560621,36.9608719],[22.3556736,36.9606592],[22.3556324,36.9604874],[22.3557011,36.9604253],[22.3556811,36.9603078],[22.3554202,36.9599076],[22.3541824,36.9584483],[22.3536323,36.9579179],[22.353432,36.9567884],[22.353122,36.9570996],[22.3527708,36.957239],[22.3525985,36.9574168],[22.3525205,36.9573887],[22.3523048,36.9574984],[22.3519002,36.9564652],[22.3518821,36.9562667],[22.3520106,36.9560341],[22.3518643,36.9560501],[22.351866,36.955969],[22.3517212,36.9559129],[22.351727,36.9556426],[22.3512063,36.9553109],[22.3507526,36.9544754],[22.3500427,36.9535461],[22.3499136,36.9532829],[22.3498826,36.9531563],[22.3499395,36.9531211],[22.3497189,36.9529377]]},{"id":17911,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_AgDimitrios_Summit","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":5285,"name_EN":"Taygetos Mt: Agios Dimitrios-Taygetos summit","description_EN":"Ascent from Agios Dimitrios to the Taygetos summit","ascent_time":180,"descent_time":135,"marker":"Red_cycle","level":13,"ascent":895,"descent":20,"maxelev":2396,"minelev":1490,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34175 36.91849,22.35692 36.95283)","views":108,"millestones":"0,22.3569163,36.9184913#1,22.3525891,36.9251311#2,22.3458790,36.9311841#3,22.3450659,36.9368470#4,22.3469358,36.9449639#5.3,22.3497189,36.9529377","x":22.3423914,"y":36.9340449,"coor":[[22.3569163,36.9184913],[22.3565288,36.9186008],[22.3560712,36.9190001],[22.3559029,36.9189978],[22.355525,36.9188213],[22.3553564,36.919042],[22.3555025,36.919035],[22.3555257,36.9195221],[22.3557204,36.9198673],[22.3556716,36.9200469],[22.3555817,36.9206901],[22.355808,36.9209659],[22.3559721,36.9211665],[22.3559891,36.9214191],[22.3556675,36.9217571],[22.3551675,36.9220386],[22.3548647,36.9225482],[22.3541787,36.9231246],[22.3540168,36.9233477],[22.3537178,36.9241998],[22.3531663,36.924787],[22.3527818,36.9249169],[22.3525979,36.9251127],[22.3520336,36.9262946],[22.3518851,36.9269325],[22.3514555,36.9275935],[22.3504403,36.9288593],[22.3498299,36.9290492],[22.3494707,36.9290442],[22.3491205,36.9291475],[22.3487998,36.9294405],[22.3487173,36.9296196],[22.3482846,36.929902],[22.3481262,36.9304766],[22.3478508,36.9307522],[22.3474777,36.9308732],[22.3467615,36.9312869],[22.3466488,36.9313033],[22.3461697,36.9311344],[22.3450877,36.9313267],[22.3446476,36.9314287],[22.34417,36.9317105],[22.3440471,36.9316817],[22.3439673,36.9317347],[22.3439538,36.9318427],[22.3438564,36.9318345],[22.3436351,36.9320883],[22.3436529,36.9323049],[22.343764,36.9323605],[22.3434921,36.9324739],[22.3435083,36.9327626],[22.3434295,36.9327705],[22.3433707,36.9328959],[22.3430759,36.9330269],[22.3426491,36.9335528],[22.3426814,36.9336163],[22.3426113,36.9337415],[22.3424627,36.9338657],[22.3423914,36.9340449],[22.3424088,36.9342795],[22.3422694,36.9344939],[22.3424185,36.9348655],[22.342337,36.9349996],[22.3421338,36.9350508],[22.3430457,36.935717],[22.3437726,36.9358534],[22.3442827,36.9361489],[22.3444651,36.936539],[22.3446954,36.9367946],[22.3453447,36.9368848],[22.3464253,36.9378012],[22.3465812,36.9383802],[22.3468486,36.9389968],[22.3468303,36.9393211],[22.3470244,36.9402161],[22.3469639,36.9404136],[22.3470462,36.9407662],[22.3470076,36.940991],[22.3471798,36.9413359],[22.3471244,36.9418219],[22.3469236,36.9422788],[22.3467169,36.9424922],[22.3468363,36.9426832],[22.3470232,36.9433888],[22.3472225,36.9435178],[22.3472763,36.9436267],[22.3472339,36.9440317],[22.3469526,36.9445776],[22.3469149,36.9452801],[22.3467612,36.9456385],[22.3469864,36.9461284],[22.3469516,36.946182],[22.3474025,36.9466209],[22.3474666,36.946775],[22.3473901,36.9471976],[22.3471804,36.9475462],[22.3472953,36.9479444],[22.3471325,36.9482035],[22.3470438,36.948671],[22.3473099,36.9493507],[22.3474873,36.9494523],[22.3474074,36.9495143],[22.3474827,36.9496686],[22.3474088,36.9504878],[22.347726,36.9508797],[22.347662,36.9517622],[22.3477081,36.9522315],[22.3477719,36.9523946],[22.3480046,36.9520193],[22.3481053,36.9520387],[22.3483221,36.9518795],[22.3485128,36.9518912],[22.3485999,36.9520186],[22.3487017,36.9519839],[22.3489843,36.9524205],[22.3491716,36.9525854],[22.3497189,36.9529377]]},{"id":17913,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a3\u03bf\u03c7\u03ac-\u039b\u03b1\u03ba\u03ba\u03ce\u03bc\u03b1\u03c4\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Soxa_Lakomata","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3101,"name_EN":"Taygetos Mt: Socha-Lakomata","description_EN":"","ascent_time":80,"descent_time":65,"marker":"Red_dots","level":10,"ascent":461,"descent":19,"maxelev":1280,"minelev":833,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.36205 37.00147,22.3854 37.00538)","views":26,"millestones":"0,22.3853098,37.0056959#1,22.3767937,37.0032283#2,22.3680573,37.0021568#3.1,22.3621000,37.0032845","x":22.3722327,"y":37.0029012,"coor":[[22.3853098,37.0056959],[22.3853007,37.0055967],[22.3851431,37.0055089],[22.3848531,37.0054058],[22.3845947,37.0054023],[22.3844696,37.0054727],[22.3842775,37.0054566],[22.3842255,37.0052576],[22.383683,37.0052006],[22.3836677,37.0050607],[22.383412,37.004931],[22.3833902,37.0048473],[22.3832611,37.0048433],[22.3831735,37.004734],[22.3830251,37.0048401],[22.3830036,37.0047948],[22.3828983,37.0049916],[22.3828142,37.0049837],[22.3826818,37.0051329],[22.3824466,37.0050936],[22.3824573,37.0049721],[22.3822536,37.0048724],[22.3819952,37.0048689],[22.3818712,37.0048852],[22.381631,37.0050802],[22.380551,37.0046058],[22.3803921,37.0045789],[22.3800618,37.0043558],[22.3798057,37.0042441],[22.3793791,37.0042203],[22.3789917,37.0039446],[22.3783907,37.003666],[22.3783953,37.0034497],[22.3780954,37.0032834],[22.3781558,37.0030859],[22.3781126,37.0030042],[22.3779555,37.002993],[22.3777192,37.0030078],[22.3774225,37.0031209],[22.3769808,37.0031645],[22.3763242,37.0033898],[22.3760067,37.0035207],[22.3758799,37.0036722],[22.375563,37.003776],[22.3750681,37.0037963],[22.3745366,37.0039512],[22.3741765,37.0039734],[22.3732515,37.0036092],[22.3730973,37.0034628],[22.3723642,37.0030562],[22.3723448,37.0029117],[22.3722327,37.0029012],[22.3720137,37.0026278],[22.3717565,37.0025701],[22.3715857,37.002676],[22.3715603,37.0028108],[22.3714575,37.0028905],[22.3713676,37.0028893],[22.3711477,37.0026609],[22.3710692,37.0026508],[22.3710329,37.0027765],[22.3708627,37.003164],[22.3707612,37.0031807],[22.3699629,37.002674],[22.3697835,37.0026535],[22.3695171,37.0024966],[22.3692072,37.0026546],[22.3684709,37.0022366],[22.3683172,37.0020632],[22.3681266,37.0020426],[22.3680219,37.0022124],[22.3679581,37.0020403],[22.3678679,37.002057],[22.3674219,37.0018887],[22.3673563,37.0018066],[22.367383,37.0016087],[22.3675005,37.001367],[22.3672765,37.0013819],[22.3669092,37.0012146],[22.3666845,37.0012115],[22.3664351,37.0013163],[22.366406,37.0016223],[22.3662786,37.0018008],[22.3658842,37.0018495],[22.3656235,37.001954],[22.3652009,37.0017499],[22.3647075,37.0016981],[22.3639079,37.0017772],[22.3634163,37.0016442],[22.3632807,37.0016784],[22.3632397,37.0020203],[22.3634533,37.002537],[22.3633823,37.0027073],[22.3629829,37.0029902],[22.3629732,37.0034408],[22.3628942,37.0034577],[22.3628169,37.0033936],[22.3627684,37.0030323],[22.3626718,37.0028237],[22.3627361,37.002446],[22.3626452,37.0024898],[22.3623865,37.0030271],[22.3621,37.0032845]]},{"id":17914,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039a\u03b1\u03bb\u03cd\u03b2\u03b9\u03b1 \u03a3\u03bf\u03c7\u03ac\u03c2-\u03a3\u03bf\u03c7\u03ac","description_GR":"\u0392\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc \u03bf\u03c7\u03c5\u03c1\u03cc","path":"PELOPONNESE\/Pelop_Taygetos_KalyviaSochas_Soxa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5182,"name_EN":"Taygetos Mt: Kalyvia Sochas-Socha","description_EN":"Byzantine tower and medieval fortress","ascent_time":130,"descent_time":110,"marker":"Red_dots","level":10,"ascent":627,"descent":72,"maxelev":860,"minelev":280,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.38511 37.00616,22.41993 37.0149)","views":19,"millestones":"0,22.4197719,37.0139542#1,22.4142293,37.0150602#2,22.4107716,37.0135345#3,22.4043060,37.0114673#4,22.3955159,37.0093131#5.2,22.3853091,37.0056959","x":22.411232,"y":37.0142773,"coor":[[22.4197719,37.0139542],[22.4194752,37.0136258],[22.4193198,37.0135336],[22.4191468,37.0136439],[22.4190127,37.0136061],[22.4186509,37.0137094],[22.4186527,37.0136193],[22.4184608,37.0136618],[22.4184855,37.013554],[22.4183151,37.0136419],[22.4180962,37.0139003],[22.4178812,37.0139696],[22.417512,37.0138835],[22.4174455,37.0138376],[22.4175476,37.0137939],[22.4174585,37.0137566],[22.4171779,37.0137349],[22.4172472,37.0136457],[22.4177997,37.0135629],[22.417644,37.0134797],[22.417859,37.0134105],[22.41786,37.0133654],[22.4175223,37.0133879],[22.417591,37.0133258],[22.4175708,37.0132173],[22.4170524,37.0132825],[22.4171786,37.013158],[22.4169637,37.0132273],[22.4169663,37.0131011],[22.4166606,37.0132052],[22.4166629,37.0130971],[22.4165608,37.0131408],[22.4161342,37.013117],[22.4152585,37.0136101],[22.4152544,37.0138083],[22.4150454,37.01413],[22.4150076,37.0143278],[22.4145823,37.0147818],[22.414407,37.015104],[22.4143643,37.0149952],[22.4142596,37.0151651],[22.4142176,37.0150203],[22.4142231,37.014759],[22.4143274,37.0146072],[22.4140892,37.0147121],[22.4140914,37.014604],[22.4139435,37.0146922],[22.4139229,37.0146018],[22.4137948,37.0148164],[22.4136622,37.0147064],[22.4138288,37.014258],[22.4138122,37.0139784],[22.4132511,37.0144756],[22.4131689,37.0146458],[22.41315,37.0144743],[22.4130816,37.0145184],[22.4128668,37.0151194],[22.412695,37.0152704],[22.4127804,37.014947],[22.41254,37.0151601],[22.4125812,37.0148001],[22.4124903,37.014844],[22.4124525,37.014501],[22.4121748,37.0148848],[22.4120894,37.0146674],[22.411978,37.0146208],[22.4119536,37.0147106],[22.41191,37.0146469],[22.4118412,37.0147091],[22.4117742,37.0146902],[22.4116654,37.0145175],[22.4115742,37.0145794],[22.4113993,37.0143427],[22.4112959,37.0144494],[22.411232,37.0142773],[22.4110333,37.0141034],[22.4110363,37.0139592],[22.4108273,37.0142809],[22.4107603,37.014262],[22.4106798,37.0138103],[22.4108114,37.0134244],[22.410962,37.0132101],[22.4106783,37.0133415],[22.4106581,37.0132331],[22.4104229,37.0131939],[22.4104242,37.0131308],[22.4101844,37.0133079],[22.4100994,37.0130724],[22.4095001,37.0137854],[22.4091514,37.0143396],[22.4090849,37.0142936],[22.4089118,37.0145076],[22.4087135,37.0143157],[22.4086532,37.0145132],[22.4085704,37.0141696],[22.4081631,37.0142993],[22.4077157,37.0141941],[22.4072441,37.0141698],[22.4066889,37.0138469],[22.4064348,37.0136361],[22.406264,37.0132012],[22.4058773,37.0128805],[22.4051017,37.0123473],[22.404565,37.0122139],[22.4044768,37.0121316],[22.4043645,37.0115893],[22.4041923,37.0112265],[22.4036365,37.0109306],[22.4030741,37.01095],[22.4024729,37.0112123],[22.4012657,37.0103578],[22.4009425,37.0102273],[22.4002596,37.0101009],[22.3992898,37.0097183],[22.3987925,37.009315],[22.398663,37.0090609],[22.3985956,37.00906],[22.3982692,37.0096144],[22.3980948,37.0093597],[22.3976848,37.0096155],[22.3973252,37.0096107],[22.3969009,37.0094787],[22.3968106,37.0094955],[22.3967059,37.0096654],[22.3966164,37.0096461],[22.3964852,37.0094731],[22.3955663,37.0093435],[22.3951113,37.009067],[22.3947727,37.0091345],[22.3942958,37.0088306],[22.393933,37.0084471],[22.3937833,37.0080846],[22.3936719,37.008038],[22.3930268,37.0080856],[22.3925699,37.0078991],[22.392317,37.0076343],[22.3916986,37.0075448],[22.3911964,37.0073758],[22.3895627,37.0070381],[22.3892912,37.0070074],[22.3886471,37.0071699],[22.3883771,37.0071843],[22.3868607,37.0060821],[22.3863803,37.005848],[22.3859223,37.0057155],[22.3858599,37.005744],[22.3857456,37.005783],[22.3855097,37.0057798],[22.3853091,37.0056959]]},{"id":17915,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039c\u03c5\u03c3\u03c4\u03c1\u03ac\u03c2-\u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03b7","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Mystras_Taygeti","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2647,"name_EN":"Taygetos Mt: Mystras-Taygeti","description_EN":"","ascent_time":55,"descent_time":45,"marker":"Red_dots","level":10,"ascent":439,"descent":33,"maxelev":726,"minelev":317,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.35582 37.06186,22.37314 37.07015)","views":54,"millestones":"0,22.3728915,37.0703862#1,22.3654405,37.0672815#2,22.3592919,37.0634602#2.6,22.3559811,37.0626833","x":22.3632943,"y":37.0656484,"coor":[[22.3728915,37.0703862],[22.3729688,37.0699592],[22.3721324,37.0697877],[22.3718559,37.0695676],[22.3714042,37.0696515],[22.3709952,37.0693124],[22.3704214,37.0693225],[22.3703116,37.0691948],[22.3703857,37.0688894],[22.3702988,37.068744],[22.3701981,37.0686367],[22.3696374,37.0685569],[22.369479,37.0685998],[22.3689775,37.0689084],[22.3689226,37.0688445],[22.3686629,37.068895],[22.3688579,37.0687174],[22.368689,37.0687241],[22.3683329,37.068548],[22.3683035,37.0683605],[22.368066,37.0682581],[22.3673789,37.06778],[22.3670446,37.0676312],[22.3667515,37.0676632],[22.3668288,37.0675178],[22.3669767,37.0674387],[22.3669804,37.0672675],[22.3664494,37.0673774],[22.3661296,37.067391],[22.3655348,37.0673287],[22.3654235,37.0672731],[22.365223,37.0671982],[22.3650307,37.0672497],[22.3648523,37.0671751],[22.3647647,37.0670657],[22.3644636,37.0669444],[22.3643209,37.0667802],[22.3640522,37.0667224],[22.3640102,37.0665866],[22.3638427,37.0665302],[22.3637558,37.0663848],[22.363384,37.0664157],[22.3631801,37.0663341],[22.3632487,37.0662809],[22.3633372,37.0662709],[22.3633725,37.0661993],[22.3632303,37.066008],[22.3632943,37.0656484],[22.3631609,37.0655744],[22.3633088,37.0654954],[22.3635225,37.0654983],[22.3633026,37.0652609],[22.3633261,37.0652162],[22.3630244,37.0651219],[22.3629688,37.0650468],[22.3627503,37.0647463],[22.3627417,37.06462],[22.3628329,37.0645672],[22.3628129,37.0644497],[22.363005,37.0644073],[22.3630067,37.0643262],[22.3631764,37.0642835],[22.3631438,37.064229],[22.3632374,37.064059],[22.363105,37.06394],[22.3627142,37.0638084],[22.3622757,37.0638024],[22.3620272,37.063853],[22.3617368,37.0637589],[22.3614555,37.063764],[22.3613906,37.0637406],[22.3609926,37.0634196],[22.3600013,37.063496],[22.3598303,37.0636018],[22.3596612,37.0636175],[22.3591685,37.0634057],[22.3587639,37.063391],[22.3585867,37.0632624],[22.3583582,37.0632007],[22.3581374,37.0630083],[22.3580967,37.0628095],[22.3583231,37.0627405],[22.3586102,37.0624651],[22.3586531,37.0623327],[22.3585552,37.0621781],[22.3586865,37.0618284],[22.3585911,37.0616536],[22.3585,37.0617222],[22.3580844,37.0619778],[22.3574761,37.0620235],[22.3570523,37.0623128],[22.3568939,37.062421],[22.3563957,37.0625763],[22.3562584,37.0626826],[22.3559811,37.0626833]]},{"id":17916,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03b7-\u03a0\u03b5\u03c1\u03b3\u03b1\u03bd\u03c4\u03b1\u03af\u03b9\u03ba\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Taygeti_Pergandeika","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4696,"name_EN":"Taygetos Mt: Taygeti-Pergandeika","description_EN":"","ascent_time":110,"descent_time":105,"marker":"Red_dots","level":12,"ascent":431,"descent":327,"maxelev":1140,"minelev":706,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34878 37.04077,22.35895 37.06258)","views":5,"millestones":"0,22.3559811,37.0626833#1,22.3554656,37.0584861#2,22.3514103,37.0530746#3,22.3498803,37.0459709#4,22.3560242,37.0415180#4.7,22.3588663,37.0414699","x":22.3512154,"y":37.0524141,"coor":[[22.3559811,37.0626833],[22.3562591,37.0626826],[22.3563964,37.0625764],[22.3568946,37.062421],[22.3574768,37.0620235],[22.3576074,37.062014],[22.3580851,37.0619778],[22.3585011,37.0617222],[22.3583262,37.0617468],[22.3581708,37.0616545],[22.3579457,37.0616604],[22.3579395,37.061426],[22.3578631,37.0613168],[22.3577616,37.0613334],[22.3576437,37.0611605],[22.3574813,37.0608698],[22.3571699,37.0607033],[22.3572667,37.0603892],[22.3570354,37.0601606],[22.3567834,37.0603735],[22.3563975,37.0604425],[22.3561508,37.0606035],[22.3556865,37.0607503],[22.3554843,37.0607385],[22.3553998,37.060485],[22.3552222,37.0603744],[22.3553302,37.0600604],[22.3552154,37.0599754],[22.3553185,37.0598867],[22.3553102,37.0597514],[22.3554256,37.0596178],[22.3551602,37.0594068],[22.355399,37.0592839],[22.3554345,37.0592033],[22.355111,37.0590817],[22.3552936,37.058958],[22.3554826,37.058537],[22.3554338,37.0583876],[22.3558077,37.0582103],[22.3557345,37.0581664],[22.355835,37.0580394],[22.3557332,37.0577563],[22.3556578,37.0576021],[22.3553796,37.057463],[22.3548962,37.0574563],[22.3548049,37.0572567],[22.3548072,37.0570517],[22.3546745,37.056998],[22.3547327,37.0569087],[22.3545652,37.0568523],[22.3539368,37.0567895],[22.3535646,37.0568384],[22.3534528,37.0568098],[22.3533987,37.0567099],[22.353118,37.056688],[22.3530854,37.0566335],[22.3531659,37.0565535],[22.3529866,37.056524],[22.3530116,37.0564071],[22.3529153,37.0561805],[22.3526127,37.0558721],[22.352604,37.0557548],[22.3527277,37.0556573],[22.352677,37.0555462],[22.3525877,37.0555179],[22.3522444,37.0557926],[22.3519649,37.0557166],[22.3519372,37.0554345],[22.3518184,37.0552076],[22.3519444,37.0551012],[22.3519865,37.0547142],[22.3518505,37.0542436],[22.3516734,37.0541149],[22.3517959,37.053648],[22.3515275,37.0535811],[22.3515935,37.0531314],[22.3515161,37.0530672],[22.3511106,37.0530976],[22.3511917,37.0529906],[22.3510705,37.0528717],[22.3512212,37.0526665],[22.3511659,37.0526207],[22.3512578,37.0525318],[22.3512154,37.0524141],[22.3513404,37.0523527],[22.3513203,37.0522443],[22.351123,37.0520072],[22.3505619,37.0519543],[22.3506884,37.0518209],[22.3503908,37.0515464],[22.3504404,37.0513307],[22.3501644,37.0510925],[22.3502244,37.0509221],[22.3500802,37.05083],[22.3498557,37.0508088],[22.349589,37.0506609],[22.349267,37.0501179],[22.3492748,37.0497575],[22.3491353,37.0494491],[22.3492645,37.0492886],[22.3493998,37.0490629],[22.3495095,37.0488797],[22.3495309,37.0484113],[22.349407,37.0479048],[22.3493597,37.0473949],[22.3491139,37.0473194],[22.3491088,37.0471841],[22.3493306,37.0468086],[22.3497349,37.0463095],[22.3499007,37.0459243],[22.3499341,37.04542],[22.3500814,37.0453679],[22.3502308,37.0452168],[22.3502123,37.0450363],[22.3506682,37.0442314],[22.3507089,37.0439075],[22.350857,37.0438194],[22.3511117,37.0434805],[22.3514998,37.0432155],[22.3516618,37.0430014],[22.3521387,37.0426903],[22.3520771,37.0424191],[22.3525938,37.0421806],[22.3523287,37.0419606],[22.3524095,37.0418626],[22.352277,37.0417526],[22.3524016,37.0417093],[22.3524377,37.0416016],[22.3523389,37.0414921],[22.3524404,37.0414754],[22.3524305,37.0414122],[22.3529426,37.0411309],[22.3530472,37.0409701],[22.3538127,37.0409267],[22.3545577,37.0413156],[22.3550738,37.0413678],[22.3553218,37.0413352],[22.3562835,37.0415828],[22.3562734,37.0415286],[22.3566451,37.0414977],[22.3565683,37.0414065],[22.3566817,37.041363],[22.3565507,37.0411809],[22.3565751,37.0410912],[22.3569556,37.0411775],[22.356981,37.0410427],[22.3570814,37.0410801],[22.3571721,37.0410453],[22.3574052,37.0411838],[22.357518,37.0411673],[22.3574477,37.0409883],[22.3580184,37.0411134],[22.3581651,37.0410884],[22.3581113,37.0409795],[22.3581573,37.0408832],[22.3583152,37.0408584],[22.3582495,37.0407763],[22.3583398,37.0407596],[22.3583472,37.0409399],[22.3585003,37.0411403],[22.3584962,37.0413296],[22.3583832,37.041355],[22.3583474,37.0414537],[22.3585299,37.0418528],[22.3586985,37.0418551],[22.3587532,37.041928],[22.3588663,37.0414699]]},{"id":17918,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2-\u0391\u03bd\u03b1\u03b2\u03c1\u03c5\u03c4\u03ae","description_GR":"\u03a0\u03b1\u03bb\u03b9\u03cc \u03ba\u03b1\u03bb\u03bd\u03c4\u03b5\u03c1\u03af\u03bc\u03b9 \u0391\u03bd\u03b1\u03b2\u03c1\u03c5\u03c4\u03ae\u03c2","path":"PELOPONNESE\/Pelop_Taygetos_AgIoanis_Anavriti","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":7135,"name_EN":"Taygetos Mt: Agios Ioanis-Anavryti","description_EN":"Old cobblestone path to Anavryti","ascent_time":175,"descent_time":155,"marker":"Red_dots","level":10,"ascent":692,"descent":123,"maxelev":795,"minelev":223,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.37317 37.03057,22.40458 37.04813)","views":25,"millestones":"0,22.4036179,37.0485409#1,22.4031333,37.0421512#2,22.4023030,37.0368309#3,22.3966136,37.0394553#4,22.3908233,37.0422133#5,22.3853358,37.0411928#6,22.3795408,37.0345206#7.1,22.3735773,37.0304081","x":22.390312,"y":37.0423537,"coor":[[22.4036179,37.0485409],[22.4035091,37.0483682],[22.4037819,37.0478558],[22.4028843,37.0476432],[22.4024285,37.0475109],[22.4020394,37.0472983],[22.4017159,37.0472264],[22.40055,37.0467893],[22.4006678,37.0465858],[22.4008421,37.0463178],[22.401034,37.0457435],[22.4010867,37.0451606],[22.4011778,37.0448869],[22.4016854,37.0442718],[22.4026027,37.0434279],[22.4033766,37.0429313],[22.4028611,37.0412389],[22.4035252,37.0401302],[22.404014,37.0388028],[22.4041026,37.0377945],[22.4040349,37.03673],[22.4042249,37.0362458],[22.4044678,37.0359246],[22.4043075,37.0356408],[22.4036455,37.0355778],[22.4030392,37.0360744],[22.4019591,37.0371865],[22.4014791,37.0375586],[22.4006615,37.0379442],[22.3998694,37.0381859],[22.3990733,37.0386168],[22.3988588,37.0386589],[22.3974203,37.0396941],[22.3970791,37.0398788],[22.3967177,37.039955],[22.3959476,37.0407558],[22.3958119,37.04079],[22.3957123,37.0407165],[22.3961441,37.0399653],[22.3963163,37.0397963],[22.3969985,37.039436],[22.3970558,37.0393827],[22.3970128,37.039292],[22.3958899,37.0397545],[22.395544,37.0401645],[22.3952098,37.0403334],[22.3951145,37.0400527],[22.3952397,37.0399823],[22.395218,37.039946],[22.3947363,37.0398583],[22.3945651,37.0399822],[22.3946292,37.04024],[22.3939308,37.0408344],[22.3937853,37.0408054],[22.393787,37.0407243],[22.3940241,37.0401416],[22.3936584,37.0404251],[22.3934162,37.0407103],[22.393358,37.0413404],[22.3932016,37.041825],[22.3925897,37.0420511],[22.3924296,37.0421751],[22.3921389,37.042099],[22.3919242,37.0421502],[22.391734,37.0421026],[22.3915967,37.0416861],[22.3914858,37.0416125],[22.391236,37.0417263],[22.3911844,37.042041],[22.3908436,37.0422077],[22.390312,37.0423537],[22.3901554,37.0423155],[22.3899969,37.0423674],[22.3898658,37.0421854],[22.3897397,37.0423008],[22.3895974,37.0426504],[22.3894396,37.0421345],[22.3892752,37.041934],[22.3891847,37.0424916],[22.3891138,37.0426529],[22.3889654,37.042759],[22.3886832,37.0428093],[22.3883369,37.0427054],[22.3881557,37.042766],[22.3881022,37.0426391],[22.3876979,37.0426156],[22.3875872,37.042533],[22.3873603,37.042629],[22.387197,37.0429062],[22.3872469,37.0426726],[22.3874929,37.0422072],[22.3872433,37.042312],[22.3868815,37.042938],[22.386589,37.042943],[22.3864219,37.0428687],[22.3864597,37.0426799],[22.3863581,37.0421648],[22.3855564,37.0417933],[22.3854475,37.0416296],[22.3853983,37.0412954],[22.385116,37.0408229],[22.3849369,37.0407844],[22.3847378,37.0406285],[22.3845572,37.0406621],[22.3840674,37.0404301],[22.383161,37.0402284],[22.382301,37.0394235],[22.3822161,37.039188],[22.381997,37.0389146],[22.3814628,37.038655],[22.381325,37.0382655],[22.3810097,37.0377565],[22.3809646,37.0372331],[22.3808008,37.0370055],[22.3803813,37.0366392],[22.3803943,37.0360265],[22.380024,37.0359944],[22.3798476,37.0358298],[22.3796415,37.0354754],[22.3795142,37.0345904],[22.3795975,37.0343752],[22.380386,37.0337731],[22.3807108,37.0332998],[22.380605,37.0329919],[22.3805053,37.0329184],[22.3801912,37.0328871],[22.3800097,37.0329657],[22.3797205,37.0328176],[22.379669,37.0320688],[22.3796259,37.031978],[22.3794806,37.03194],[22.3786272,37.0318923],[22.3780197,37.0313792],[22.3766069,37.030729],[22.3751785,37.0302317],[22.3744929,37.0302223],[22.374258,37.030165],[22.3741808,37.0301617],[22.3735554,37.0302816],[22.3735773,37.0304081]]},{"id":17919,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a3\u03ad\u03bb\u03b1-\u039c\u03c5\u03c1\u03b3\u03b9\u03ac\u03bb\u03b9","description_GR":"\u03a4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u0391\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7 \u03c3\u03c4\u03bf \u039c\u03c5\u03c1\u03b3\u03b9\u03ac\u03bb\u03b9","path":"PELOPONNESE\/Pelop_Taygetos_Sela_Myrgiali","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2352,"name_EN":"Taygetos Mt: Sela-Myrgiali","description_EN":"","ascent_time":55,"descent_time":55,"marker":"Red_dots","level":10,"ascent":125,"descent":96,"maxelev":1234,"minelev":1106,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.33336 37.04584,22.34915 37.05335)","views":10,"millestones":"0,22.3491143,37.0473194#1,22.3398466,37.0471869#2,22.3337091,37.0512734#2.4,22.3359410,37.0533500","x":22.3380998,"y":37.0479678,"coor":[[22.3491143,37.0473194],[22.3487385,37.047197],[22.3482272,37.0469195],[22.3480577,37.0465859],[22.3480261,37.046439],[22.3474718,37.0465935],[22.3469107,37.0465406],[22.3463457,37.0466679],[22.3462128,37.0465759],[22.346039,37.0462941],[22.3458175,37.0461378],[22.3454256,37.0460602],[22.3449257,37.0457828],[22.3444171,37.0459019],[22.3443477,37.0459911],[22.3442945,37.0463689],[22.3439122,37.0464627],[22.3434987,37.0463488],[22.3423831,37.0469731],[22.3419424,37.0470751],[22.3415957,37.0469892],[22.3410512,37.0472069],[22.3404337,37.0471622],[22.3392293,37.0472175],[22.3389609,37.0471506],[22.3384044,37.0468904],[22.3379293,37.0475327],[22.3380998,37.0479678],[22.3381755,37.0486178],[22.3381006,37.0489592],[22.338032,37.0490124],[22.3376036,37.0490604],[22.3372018,37.0492779],[22.3368459,37.0496154],[22.3365725,37.0497738],[22.3361426,37.049894],[22.3361519,37.0499842],[22.3356036,37.0503731],[22.3342284,37.0500113],[22.3340923,37.0500635],[22.3339809,37.0500168],[22.3338564,37.0500511],[22.3334679,37.0503341],[22.3334164,37.0506308],[22.333673,37.0507246],[22.3337117,37.0510135],[22.3336543,37.0510668],[22.3337579,37.0514738],[22.3341379,37.0520921],[22.3342381,37.0521386],[22.3343008,37.0523558],[22.3352635,37.0530723],[22.3354929,37.053382],[22.3356266,37.0533275],[22.335941,37.05335]]},{"id":17925,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u0391\u03bd\u03b1\u03b2\u03c1\u03c5\u03c4\u03ae-\u03bc\u03bf\u03bd\u03ae \u03a6\u03b1\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03bf\u03b9\u03ba\u03bf\u03b3\u03b5\u03bd\u03b5\u03b9\u03b1\u03ba\u03ae \u03b2\u03cc\u03bb\u03c4\u03b1","path":"PELOPONNESE\/Pelop_Taygetos_Anavriti_Faneromeni","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2258,"name_EN":"Taygetos Mt: Anavryti-Faneromenis monastery","description_EN":"An easy family hike","ascent_time":40,"descent_time":40,"marker":"E4","level":10,"ascent":111,"descent":120,"maxelev":820,"minelev":760,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.36895 37.03016,22.37418 37.0451)","views":24,"millestones":"0,22.3741836,37.0301618#1,22.3699455,37.0362280#2.3,22.3718457,37.0451437","x":22.3696583,"y":37.0355009,"coor":[[22.3741836,37.0301618],[22.3735582,37.0302816],[22.3735759,37.0304081],[22.3734821,37.030587],[22.3732866,37.0307421],[22.3731599,37.0308846],[22.3729287,37.0309377],[22.3729607,37.0310193],[22.3730839,37.031039],[22.3731067,37.031188],[22.3727527,37.0314626],[22.372307,37.0312762],[22.3719291,37.0314355],[22.3716873,37.0317026],[22.3717061,37.0318741],[22.3715786,37.0321856],[22.3715197,37.032311],[22.3712919,37.032452],[22.371093,37.0326499],[22.3708609,37.0329892],[22.3699998,37.0334483],[22.3698308,37.033464],[22.3696409,37.0334073],[22.3694138,37.0335124],[22.3692065,37.0337439],[22.3691889,37.0340411],[22.3694716,37.0345249],[22.36976,37.0349525],[22.3697657,37.035214],[22.3696583,37.0355009],[22.3699596,37.036136],[22.3698802,37.0366937],[22.3699864,37.0369002],[22.3701588,37.0377769],[22.3703937,37.0378342],[22.3706469,37.03809],[22.3712197,37.0381159],[22.3713383,37.0383519],[22.3712886,37.0385766],[22.3714247,37.0390471],[22.3717796,37.0392773],[22.3711833,37.039819],[22.3707426,37.0399211],[22.3705084,37.0403595],[22.3701043,37.0411313],[22.3699772,37.0412918],[22.3697152,37.0414505],[22.3694808,37.0418979],[22.3695211,37.0421148],[22.3698814,37.0425682],[22.369978,37.0427858],[22.3702341,37.0429831],[22.3706683,37.0431874],[22.3711814,37.0439065],[22.3715799,37.0442004],[22.3716809,37.0444857],[22.3716835,37.0445781],[22.3716967,37.0446369],[22.3718457,37.0451437]]},{"id":17927,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u0391\u03bd\u03b1\u03b2\u03c1\u03c5\u03c4\u03ae-\u03ba\u03b1\u03c4. \u03b1\u03bd\u03ac\u03b3\u03ba\u03b7\u03c2 \u03a4\u03c3\u03ac\u03c1\u03ba\u03bf\u03c5","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Anavriti_Tsarkos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":6000,"name_EN":"Taygetos Mt: Anavryti-Tsarkos bivouac","description_EN":"","ascent_time":185,"descent_time":140,"marker":"Red_dots","level":12,"ascent":1010,"descent":34,"maxelev":1780,"minelev":790,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.33468 37.01143,22.37398 37.02987)","views":31,"millestones":"0,22.3735759,37.0304081#1,22.3687580,37.0244982#2,22.3653320,37.0195329#3,22.3554919,37.0172839#4,22.3484654,37.0151558#5,22.3426871,37.0123134#6,22.3350667,37.0123002","x":22.353412,"y":37.0181715,"coor":[[22.3735759,37.0304081],[22.3735582,37.0302816],[22.3727886,37.0298475],[22.3724653,37.0297168],[22.3721169,37.0297121],[22.3714749,37.0292436],[22.3713402,37.0290682],[22.3714861,37.0285564],[22.3714427,37.0284837],[22.3713307,37.0284642],[22.3713434,37.028559],[22.3712194,37.0285753],[22.3710733,37.0285733],[22.3707997,37.0287498],[22.3701682,37.0288403],[22.3696903,37.0285814],[22.3695491,37.0283541],[22.369282,37.0282242],[22.3690483,37.0279506],[22.369055,37.0276352],[22.3688581,37.0273802],[22.3690061,37.0267693],[22.3689127,37.0264075],[22.3689608,37.0252094],[22.3687988,37.0249007],[22.3688357,37.024748],[22.36872,37.0243768],[22.3686111,37.0242131],[22.3683005,37.0240195],[22.3678959,37.0234912],[22.3674954,37.0232964],[22.3672874,37.0230322],[22.3666759,37.0227173],[22.3664469,37.0223896],[22.3662357,37.0222786],[22.366224,37.0219877],[22.3661193,37.0216258],[22.3661205,37.0215717],[22.3661994,37.0215638],[22.3667942,37.021608],[22.3673861,37.0217874],[22.368072,37.0217788],[22.3678982,37.021497],[22.3677733,37.0210266],[22.3678,37.0208287],[22.367671,37.0205565],[22.3674286,37.0203278],[22.3672614,37.0202624],[22.3671652,37.0200268],[22.3669242,37.0199964],[22.3668114,37.0199182],[22.3664851,37.0199318],[22.3660959,37.0197371],[22.3657484,37.0197414],[22.3651256,37.0194263],[22.3645541,37.0193464],[22.3638012,37.0188132],[22.3636233,37.0187206],[22.3636369,37.0186126],[22.3633563,37.0185907],[22.3622762,37.0181162],[22.3616702,37.0180717],[22.3608437,37.017826],[22.3605298,37.0177856],[22.3601956,37.0176458],[22.3597456,37.0176666],[22.3593273,37.017778],[22.3585676,37.0175602],[22.3579345,37.0177317],[22.357349,37.0172549],[22.3569447,37.0172403],[22.3567006,37.0173518],[22.3563263,37.0175089],[22.3560895,37.0175416],[22.3555913,37.0171922],[22.3550521,37.0176985],[22.3546243,37.0177286],[22.3543296,37.0178417],[22.3539716,37.0177646],[22.3537439,37.0178967],[22.3535591,37.0181285],[22.353412,37.0181715],[22.3532783,37.0181156],[22.353247,37.018007],[22.3530788,37.0179866],[22.3530496,37.0177789],[22.3528568,37.0178573],[22.352837,37.0177309],[22.3525829,37.0175291],[22.3524918,37.0175819],[22.3523918,37.0175264],[22.3523223,37.0176246],[22.3522109,37.017578],[22.3521644,37.0176494],[22.351701,37.0172464],[22.351163,37.0171758],[22.3507565,37.0172603],[22.3503784,37.0170748],[22.350322,37.017083],[22.3503305,37.0172093],[22.3502075,37.0171806],[22.3500938,37.0167193],[22.3499702,37.0167176],[22.3498714,37.0166081],[22.3499423,37.0164468],[22.3499375,37.0161493],[22.3500666,37.0158987],[22.350048,37.0157182],[22.3498016,37.0156787],[22.3494931,37.0159088],[22.3493314,37.0155911],[22.3491547,37.0154444],[22.3485972,37.0152383],[22.347943,37.0148236],[22.3473847,37.0146536],[22.3471312,37.0144248],[22.3471248,37.0141993],[22.3469379,37.0140074],[22.3466357,37.0139492],[22.3465205,37.01356],[22.3463553,37.0134045],[22.3461722,37.0130324],[22.3459014,37.0130827],[22.3460342,37.0126609],[22.3459029,37.0124968],[22.3460881,37.012247],[22.3459694,37.01202],[22.3459755,37.0117407],[22.3459088,37.0117037],[22.3458501,37.0110404],[22.3455084,37.011252],[22.3450576,37.0113088],[22.3446251,37.0115551],[22.3445804,37.0115455],[22.3445971,37.0112934],[22.3445522,37.0112927],[22.3440713,37.0117006],[22.3440304,37.0115108],[22.3437359,37.0116148],[22.3430964,37.0120836],[22.3425046,37.0124178],[22.3405351,37.0130573],[22.3400078,37.0130139],[22.3400089,37.0129598],[22.339919,37.0129586],[22.3396121,37.0131165],[22.339432,37.013132],[22.3392749,37.0131208],[22.3393882,37.0130773],[22.3387263,37.013023],[22.3380832,37.0131311],[22.3374609,37.0133207],[22.3374893,37.0130507],[22.3373417,37.0131208],[22.3372603,37.0132458],[22.3368209,37.0132937],[22.3368221,37.0132397],[22.3365524,37.0132359],[22.33632,37.0130704],[22.3356724,37.0123583],[22.3353262,37.0122543],[22.3350667,37.0123002]]},{"id":17928,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u039d\u03ad\u03bf\u03c2 \u039c\u03c5\u03c3\u03c4\u03c1\u03ac\u03c2-\u0391\u03bd\u03b1\u03b2\u03c1\u03c5\u03c4\u03ae","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03c3\u03c4\u03bf\u03bd \u03a4\u03b1\u03cb\u03b3\u03b5\u03c4\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_E4_Parori_Anavriti","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8739,"name_EN":"Taygetos Mt: E4 Neos Mystras-Anavryti","description_EN":"E4 session along Taygetos","ascent_time":205,"descent_time":185,"marker":"E4","level":10,"ascent":829,"descent":332,"maxelev":820,"minelev":280,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.36716 37.03042,22.38367 37.06936)","views":48,"millestones":"0,22.3746511,37.0694617#1,22.3828888,37.0638831#2,22.3790866,37.0575148#3,22.3719119,37.0536747#4,22.3711610,37.0501074#5,22.3679498,37.0448803#6,22.3708928,37.0454495#7,22.3705077,37.0403654#8,22.3701020,37.0333926#8.7,22.3735585,37.0302816","x":22.3721059,"y":37.0498274,"coor":[[22.3746511,37.0694617],[22.3749584,37.0691933],[22.3756425,37.0689097],[22.3758453,37.0687976],[22.3762781,37.0685421],[22.3766542,37.0680988],[22.376849,37.0679303],[22.3775729,37.0677419],[22.378016,37.0675316],[22.3798614,37.0664392],[22.3802086,37.0662907],[22.3807168,37.0661467],[22.3812838,37.0659291],[22.3816722,37.065646],[22.3828573,37.0643912],[22.3829503,37.0642483],[22.3829361,37.0641219],[22.3828345,37.0636135],[22.3829172,37.0632767],[22.3826331,37.0628852],[22.3825098,37.062532],[22.382543,37.0622914],[22.3825577,37.0621992],[22.3826283,37.0618847],[22.3823941,37.0617913],[22.3822396,37.061654],[22.3813002,37.0603433],[22.3804882,37.0599176],[22.3803922,37.0596729],[22.3803367,37.0595415],[22.3801147,37.0594033],[22.3797217,37.0593709],[22.3795562,37.0586926],[22.3796993,37.0588388],[22.3799121,37.0589814],[22.3797658,37.0584566],[22.3795425,37.0583814],[22.3793168,37.0584144],[22.3792744,37.0582967],[22.3791195,37.0581774],[22.3791229,37.0580152],[22.3793708,37.0579915],[22.379029,37.0576714],[22.3791313,37.0576187],[22.3790456,37.0574192],[22.3788128,37.0572628],[22.3784964,37.0573306],[22.3783642,37.0572026],[22.3779835,37.0571253],[22.3780409,37.057072],[22.3779075,37.0569981],[22.3779871,37.056855],[22.3778677,37.056655],[22.3774862,37.0566138],[22.3773984,37.0565134],[22.3774255,37.0562975],[22.377305,37.0561426],[22.3772759,37.0559259],[22.3775373,37.0552715],[22.377148,37.0550679],[22.3772982,37.0548806],[22.3772355,37.0546544],[22.3768647,37.0546404],[22.3765147,37.0547077],[22.3762906,37.0546686],[22.3760898,37.0545937],[22.3759812,37.0544119],[22.3756767,37.0544528],[22.3753968,37.0543949],[22.3752714,37.0544743],[22.3751601,37.0544187],[22.3750012,37.0544887],[22.3747455,37.05435],[22.3742518,37.0542981],[22.3738871,37.0539957],[22.3736956,37.0540111],[22.3735405,37.0539008],[22.3732259,37.0538875],[22.3729433,37.0539557],[22.3721362,37.0538365],[22.3713808,37.0532876],[22.3710028,37.0530841],[22.3708271,37.0528834],[22.3704344,37.0528419],[22.3703063,37.0526396],[22.3703452,37.0525455],[22.3705891,37.0522987],[22.3707695,37.0522742],[22.3709816,37.0523492],[22.3712542,37.0527495],[22.3716089,37.0529887],[22.3728903,37.0530153],[22.3731278,37.0529555],[22.3734763,37.0529603],[22.3736352,37.0528904],[22.3735699,37.0527903],[22.3730194,37.0527647],[22.3727178,37.0526705],[22.3724739,37.0525049],[22.3722404,37.0524791],[22.3720722,37.0524588],[22.3719729,37.0523673],[22.3719662,37.0516281],[22.371706,37.0511739],[22.3717362,37.0508138],[22.371496,37.050477],[22.3711942,37.0503917],[22.3711399,37.0503008],[22.3711957,37.0497969],[22.3715942,37.0500908],[22.3719431,37.0500775],[22.3724645,37.0504092],[22.3725661,37.0503925],[22.3725347,37.0502839],[22.3721059,37.0498274],[22.3719734,37.0491856],[22.3716623,37.0490101],[22.3710676,37.0489479],[22.3705152,37.0484896],[22.3701698,37.0483406],[22.369914,37.0481118],[22.3698608,37.048066],[22.3694474,37.0479431],[22.3694853,37.0472226],[22.3690168,37.0465221],[22.3689991,37.0462966],[22.3690704,37.0461173],[22.3688449,37.0456184],[22.3688054,37.0453655],[22.368505,37.0452172],[22.3683181,37.0450163],[22.3679832,37.0449035],[22.3676841,37.0446921],[22.3678547,37.0446043],[22.3684258,37.0447113],[22.3690724,37.0449726],[22.3692821,37.0451558],[22.3693306,37.045517],[22.369575,37.0456555],[22.3698945,37.0459664],[22.3699461,37.0461834],[22.3698696,37.046606],[22.369936,37.0466519],[22.3702182,37.046079],[22.3698942,37.0454526],[22.3698246,37.045028],[22.3696497,37.0447913],[22.3696559,37.0445029],[22.3695689,37.0443665],[22.3697148,37.0443775],[22.369879,37.0445871],[22.370156,37.0447802],[22.3701279,37.0450412],[22.3702748,37.0450072],[22.3703899,37.0448826],[22.370373,37.0446209],[22.3704515,37.044631],[22.3705713,37.0448129],[22.3705202,37.0451007],[22.3706217,37.045084],[22.3708632,37.044835],[22.370895,37.0449255],[22.3707427,37.0452119],[22.3707844,37.0453657],[22.3717359,37.0460908],[22.371796,37.0464341],[22.3716666,37.0467027],[22.3717104,37.0467574],[22.3718251,37.0466508],[22.371898,37.0463995],[22.3718609,37.0460294],[22.3715185,37.0452135],[22.3715739,37.0447276],[22.3716802,37.0444857],[22.3715795,37.0442004],[22.371181,37.0439065],[22.3706679,37.0431874],[22.3702338,37.0429831],[22.3699773,37.0427858],[22.3698807,37.0425681],[22.3695205,37.0421125],[22.3694801,37.0418957],[22.3697146,37.0414482],[22.3699766,37.0412896],[22.3701037,37.0411291],[22.370508,37.0403595],[22.3707423,37.0399211],[22.371183,37.0398189],[22.3717792,37.0392773],[22.3714243,37.0390471],[22.3712882,37.0385766],[22.371338,37.0383519],[22.3712194,37.0381159],[22.3706465,37.03809],[22.3703934,37.0378342],[22.3701585,37.0377769],[22.3699861,37.0369002],[22.3698802,37.0366915],[22.3699596,37.0361337],[22.3696584,37.0354986],[22.3697657,37.0352117],[22.3697601,37.0349502],[22.3694713,37.0345226],[22.3691882,37.034041],[22.3692058,37.0337438],[22.3694131,37.0335123],[22.3696402,37.0334073],[22.3698301,37.033464],[22.3699991,37.0334483],[22.3708598,37.0329892],[22.3710919,37.0326498],[22.3712908,37.032452],[22.3715187,37.0323109],[22.3715776,37.0321856],[22.3717058,37.0318741],[22.3716869,37.0317026],[22.3719287,37.0314355],[22.3723063,37.0312762],[22.372752,37.0314626],[22.3731064,37.031188],[22.3730839,37.031039],[22.3729607,37.0310193],[22.3729287,37.0309377],[22.3731603,37.0308846],[22.373287,37.0307421],[22.3734825,37.030587],[22.3735762,37.0304081],[22.3735585,37.0302816]]},{"id":17929,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u0386\u03c1\u03bd\u03b1-\u039a\u03b1\u03c3\u03c4\u03ac\u03bd\u03b9\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 E4 \u03c3\u03c4\u03bf\u03bd \u03a4\u03b1\u03cd\u03b3\u03b5\u03c4\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_E4_Arna_Kastania","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":8676,"name_EN":"Taygetos Mt: E4 Arna-Kastania","description_EN":"E4 session along Taygetos","ascent_time":200,"descent_time":195,"marker":"E4","level":10,"ascent":619,"descent":612,"maxelev":1033,"minelev":480,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.3816 36.84249,22.41474 36.8786)","views":16,"millestones":"0,22.4140072,36.8779063#1,22.4076720,36.8761614#2,22.4050696,36.8706445#3,22.4009993,36.8652280#4,22.3917530,36.8626707#5,22.3834210,36.8588116#6,22.3856513,36.8531352#7,22.3885943,36.8456644#8.7,22.4002603,36.8424202","x":22.3900419,"y":36.8624952,"coor":[[22.4140072,36.8779063],[22.4136875,36.8776316],[22.4135902,36.87745],[22.4129821,36.8773923],[22.41278,36.8772454],[22.4125093,36.8773139],[22.4125172,36.8774763],[22.4124244,36.8776193],[22.4118434,36.8780441],[22.4115814,36.8781173],[22.4113578,36.8780782],[22.4108252,36.8783325],[22.4101741,36.8783508],[22.4096536,36.8785602],[22.4091941,36.878536],[22.4089679,36.8786231],[22.4085907,36.8789606],[22.4084589,36.8788236],[22.4085088,36.8785809],[22.4081274,36.8785758],[22.4080253,36.8786285],[22.4079816,36.8785738],[22.4081822,36.8780988],[22.4081721,36.8780446],[22.4080818,36.8780704],[22.4080728,36.8774213],[22.4081601,36.8769988],[22.4081196,36.876791],[22.408191,36.8765937],[22.4078365,36.8763726],[22.4075634,36.8760174],[22.407244,36.8757337],[22.4069643,36.8751531],[22.4066568,36.8748335],[22.4071247,36.8744522],[22.4071991,36.8741106],[22.4071857,36.8736778],[22.4074392,36.8728159],[22.4075908,36.8719977],[22.4075665,36.8715467],[22.407694,36.8708093],[22.4076082,36.8706188],[22.4074317,36.8704723],[22.4074011,36.8703276],[22.4071312,36.8703601],[22.4069871,36.870277],[22.4057533,36.8708013],[22.4056879,36.8707103],[22.4055294,36.8707802],[22.4056715,36.8704216],[22.4053451,36.8704713],[22.4049585,36.8707185],[22.4046946,36.8710034],[22.4045603,36.8709836],[22.4045746,36.8702987],[22.4044778,36.8700991],[22.4043013,36.8699525],[22.4043482,36.869854],[22.404266,36.8694924],[22.4040679,36.8693094],[22.4038339,36.8686934],[22.4037184,36.8677724],[22.4033228,36.8673795],[22.4030742,36.8669255],[22.4029402,36.8668967],[22.4028417,36.8667782],[22.4029363,36.8665451],[22.4027073,36.8662265],[22.4024412,36.8660787],[22.4020814,36.866119],[22.4018776,36.8662064],[22.4015522,36.866211],[22.4015987,36.8661305],[22.4014425,36.8660923],[22.4017279,36.8658528],[22.401775,36.8657453],[22.401539,36.8657692],[22.4015521,36.8656792],[22.401093,36.865637],[22.4008725,36.8654537],[22.4012659,36.865414],[22.4008458,36.8651199],[22.4002684,36.8648327],[22.3998434,36.8647729],[22.3995236,36.8645072],[22.3991554,36.8644121],[22.39909,36.8643211],[22.3987308,36.8643342],[22.3984347,36.8640058],[22.3980785,36.8638748],[22.3978462,36.8637184],[22.3976171,36.8634089],[22.3974126,36.8635323],[22.3970991,36.863501],[22.3966009,36.8631878],[22.3960095,36.8630356],[22.3958746,36.8630518],[22.3953306,36.8627831],[22.3947377,36.862703],[22.3940962,36.8628025],[22.3939067,36.8627458],[22.3933194,36.8629362],[22.3931192,36.8628524],[22.3928695,36.8629932],[22.3926802,36.8629276],[22.3926007,36.8629716],[22.3925135,36.8628532],[22.3922981,36.8629584],[22.3921814,36.8626414],[22.3919988,36.8627921],[22.391855,36.8626911],[22.3912071,36.8625651],[22.3911749,36.8624926],[22.3908938,36.8625248],[22.3908286,36.8624248],[22.3903763,36.8625989],[22.3900419,36.8624952],[22.3897722,36.8625186],[22.3891052,36.8622302],[22.3886131,36.8621604],[22.3884774,36.8622126],[22.3877996,36.861906],[22.3874306,36.8618469],[22.3868802,36.8613527],[22.3862803,36.8610742],[22.3863941,36.8609946],[22.3858929,36.8608255],[22.3858268,36.8607706],[22.3858619,36.8606989],[22.3852858,36.8603576],[22.385013,36.8599933],[22.3842816,36.8595688],[22.3843168,36.8594971],[22.3837487,36.8593091],[22.3835717,36.8591896],[22.3834853,36.8590352],[22.3837204,36.8590564],[22.383677,36.8589837],[22.3835457,36.8588287],[22.3835113,36.8588643],[22.3834005,36.8587997],[22.3833355,36.8586906],[22.3833809,36.8586642],[22.38302,36.8582266],[22.3825361,36.8577694],[22.3827164,36.8577267],[22.3825849,36.8575807],[22.3827101,36.8574923],[22.3826324,36.8574552],[22.3826794,36.8573567],[22.3826155,36.8571936],[22.3827407,36.8571051],[22.3826309,36.8569955],[22.3824845,36.8570205],[22.382415,36.8571277],[22.3820554,36.8571589],[22.3821704,36.8570253],[22.3822779,36.8567112],[22.3821991,36.8567282],[22.3822232,36.8566474],[22.3823382,36.8565138],[22.3825535,36.8564085],[22.3824874,36.8563536],[22.3826145,36.856175],[22.3823688,36.8561266],[22.3824144,36.8560912],[22.3828526,36.8557907],[22.3828429,36.8557184],[22.3826082,36.8556792],[22.3826026,36.8554087],[22.3828017,36.8552266],[22.3829918,36.8552563],[22.3831835,36.8552048],[22.3837297,36.8548336],[22.3841819,36.8546685],[22.3850909,36.854113],[22.3853978,36.8533871],[22.3866005,36.8521956],[22.3868419,36.8520321],[22.3871342,36.8514682],[22.3875372,36.8509689],[22.3876818,36.8504932],[22.3878066,36.8504228],[22.388956,36.8501679],[22.3890958,36.8499175],[22.389047,36.8495743],[22.389097,36.8488449],[22.3890382,36.8484384],[22.388813,36.8479487],[22.3888403,36.8471829],[22.388628,36.846878],[22.3885481,36.8464082],[22.3882991,36.8459812],[22.3883018,36.8458551],[22.3886314,36.8456432],[22.3894225,36.8453565],[22.3897425,36.8450724],[22.3899853,36.844776],[22.3903136,36.8446272],[22.3906571,36.8442893],[22.3909367,36.8443292],[22.392191,36.8449501],[22.392696,36.844398],[22.3937036,36.843943],[22.3943449,36.8438435],[22.3949793,36.8440774],[22.3954772,36.8443996],[22.3953195,36.8444335],[22.3953629,36.8445062],[22.39573,36.8446463],[22.3964565,36.8447643],[22.3968265,36.8447693],[22.3969846,36.8447174],[22.3972305,36.8447567],[22.3972841,36.8448746],[22.3974651,36.8448996],[22.3975509,36.8449909],[22.397708,36.844984],[22.3976913,36.8450807],[22.3977471,36.8450927],[22.3978877,36.8448039],[22.3980113,36.8442557],[22.3983113,36.8438542],[22.398436,36.843786],[22.3986011,36.8433984],[22.3988857,36.8431949],[22.3991657,36.843113],[22.3992927,36.8424027],[22.3995821,36.8422894],[22.3996129,36.842425],[22.39967,36.8423762],[22.4002603,36.8424202]]},{"id":17932,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u039b\u03b1\u03ba\u03ba\u03ce\u03bc\u03b1\u03c4\u03b1-\u03ba\u03b1\u03c4. \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 E4 \u03c3\u03c4\u03bf\u03bd \u03a4\u03b1\u03cb\u03b3\u03b5\u03c4\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_E4_Lakomata_Varvara","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":7748,"name_EN":"Taygetos Mt: E4 Lakomata-Taygetos ref.","description_EN":"E4 session along Taygetos Mt.","ascent_time":185,"descent_time":175,"marker":"E4","level":10,"ascent":481,"descent":219,"maxelev":1547,"minelev":1280,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.35918 36.95047,22.37264 37.00344)","views":39,"millestones":"0,22.3620993,37.0032845#1,22.3610976,36.9968434#2,22.3619482,36.9884735#3,22.3661608,36.9829451#4,22.3698587,36.9764371#5,22.3683104,36.9698830#6,22.3662894,36.9620760#7,22.3679098,36.9545694#7.7,22.3677439,36.9504017","x":22.3693623,"y":36.977088,"coor":[[22.3620993,37.0032845],[22.361904,37.0034801],[22.3618742,37.0032994],[22.3617409,37.0032255],[22.361725,37.0029188],[22.3616222,37.0029985],[22.361614,37.0028542],[22.3614339,37.0028697],[22.3611102,37.0022433],[22.3606893,37.0019581],[22.3606285,37.0016508],[22.360383,37.0015663],[22.3602846,37.0014387],[22.3600816,37.001472],[22.3599737,37.0012632],[22.3599792,37.0010109],[22.36021,37.0007257],[22.3601593,37.0004726],[22.3602184,37.0003382],[22.3598312,37.0000534],[22.3599102,36.9995137],[22.3597351,36.999295],[22.3596502,36.9990595],[22.3597233,36.9987991],[22.359296,36.9982884],[22.359794,36.9981241],[22.3599082,36.9980355],[22.3601563,36.9979939],[22.3603177,36.9978068],[22.3607953,36.997543],[22.3609572,36.9973289],[22.3610882,36.9969882],[22.3611064,36.996664],[22.3609636,36.995986],[22.3611968,36.9955927],[22.3611623,36.9951055],[22.3613792,36.9949462],[22.3615568,36.994525],[22.361475,36.9941453],[22.3612914,36.9938003],[22.3614068,36.9931349],[22.3613365,36.9927464],[22.3612273,36.9926006],[22.3615429,36.9920281],[22.361505,36.9917031],[22.3616297,36.991128],[22.3615882,36.9909652],[22.3613897,36.9907912],[22.3614191,36.9899443],[22.3613339,36.9892041],[22.3615571,36.9887475],[22.361879,36.9884094],[22.361935,36.9884192],[22.362038,36.9888532],[22.3623252,36.9890825],[22.362473,36.9884807],[22.3624555,36.988361],[22.3622196,36.9881955],[22.3624185,36.9878287],[22.3624711,36.9874689],[22.3626989,36.9873278],[22.3627134,36.9871748],[22.3628867,36.9869519],[22.36294,36.986565],[22.3636977,36.9863321],[22.3640397,36.9861025],[22.3642993,36.9860001],[22.36378,36.9855874],[22.3636933,36.985442],[22.3636963,36.984775],[22.3640242,36.9846804],[22.3640722,36.9845368],[22.364323,36.984369],[22.3645626,36.9842957],[22.36483,36.9841372],[22.3650511,36.9837797],[22.365256,36.9836563],[22.3653962,36.9834059],[22.3658663,36.9829617],[22.3663838,36.9829328],[22.3666113,36.9828007],[22.3671537,36.9826549],[22.3674403,36.9823885],[22.3678043,36.9821771],[22.3683467,36.9820314],[22.3683563,36.9815808],[22.3682403,36.9812277],[22.3679391,36.9806017],[22.3677204,36.9803192],[22.3680046,36.9796381],[22.3679449,36.9792768],[22.368105,36.9791438],[22.36888,36.9791544],[22.3692874,36.9790158],[22.369163,36.9785274],[22.3692459,36.9783302],[22.3693623,36.977088],[22.3692236,36.9767435],[22.3695196,36.9765583],[22.3698592,36.9764368],[22.3699535,36.9762308],[22.3701595,36.9760534],[22.3702435,36.9758021],[22.370458,36.975751],[22.3706754,36.9755647],[22.3707568,36.9754396],[22.370813,36.9749086],[22.3709969,36.9747128],[22.3710023,36.9744605],[22.3712325,36.9742023],[22.3712694,36.9740496],[22.3717852,36.9735699],[22.3721136,36.9734482],[22.3721568,36.9731649],[22.3720596,36.9729833],[22.3713247,36.9726758],[22.3710607,36.9724108],[22.3708118,36.9724975],[22.3706228,36.9724048],[22.3706032,36.9722693],[22.3703822,36.972095],[22.3700341,36.9710357],[22.3697632,36.9705723],[22.3691248,36.9704824],[22.3687722,36.9701621],[22.3682509,36.9698484],[22.3679841,36.9697186],[22.3677149,36.9696969],[22.3675178,36.9694598],[22.3670051,36.9692725],[22.3669094,36.9690188],[22.3667884,36.9688999],[22.3669405,36.9686136],[22.3669016,36.9683337],[22.367039,36.9682094],[22.3671292,36.9676698],[22.3673556,36.96706],[22.3671199,36.966525],[22.3670502,36.9661094],[22.3667258,36.965519],[22.3667843,36.9654117],[22.3667246,36.9650503],[22.3668078,36.9648352],[22.3667365,36.9644917],[22.3662956,36.964098],[22.3665612,36.9637592],[22.3666382,36.9633096],[22.3663592,36.9627018],[22.3663332,36.9623409],[22.3662139,36.962141],[22.366397,36.9619813],[22.366482,36.961685],[22.3668343,36.9614915],[22.3669619,36.961304],[22.3672699,36.9610829],[22.3674419,36.9603912],[22.3676831,36.9601422],[22.3676215,36.9598709],[22.3674795,36.9596797],[22.3674996,36.9592654],[22.3673486,36.9589749],[22.367321,36.958686],[22.3671909,36.9584679],[22.3668277,36.9581204],[22.3667317,36.9578848],[22.366835,36.957778],[22.3674088,36.9577318],[22.3675675,36.9576619],[22.3680844,36.9571282],[22.3681935,36.9567511],[22.368377,36.9565734],[22.3686014,36.9555309],[22.3683628,36.955131],[22.3679897,36.9547203],[22.3677458,36.9542618],[22.3680086,36.9540491],[22.3679199,36.953471],[22.368222,36.9529974],[22.3681083,36.9525362],[22.3682697,36.9523401],[22.3683198,36.9520974],[22.36818,36.9518071],[22.3683271,36.951755],[22.36865,36.9518856],[22.3691109,36.9518649],[22.3691686,36.9517936],[22.3691384,36.951631],[22.3694008,36.9514363],[22.36942,36.9513261],[22.3690834,36.9513125],[22.3684275,36.950997],[22.3680514,36.9507305],[22.3677439,36.9504017]]},{"id":17933,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u0391\u03bd\u03b1\u03b2\u03c1\u03c5\u03c4\u03ae-\u039b\u03b1\u03ba\u03ba\u03ce\u03bc\u03b1\u03c4\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 E4 \u03c3\u03c4\u03bf\u03bd \u03a4\u03b1\u03cb\u03b3\u03b5\u03c4\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_E4_Anavriti_Lakomata","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":4460,"name_EN":"Taygetos Mt: E4 Anavryti-Lakomata","description_EN":"E4 session along Taygetos Mt.","ascent_time":90,"descent_time":75,"marker":"E4","level":10,"ascent":540,"descent":55,"maxelev":1280,"minelev":790,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.35924 37.00345,22.37415 37.03021)","views":31,"millestones":"0,22.3735759,37.0304081#1,22.3687580,37.0244982#2,22.3657860,37.0193789#3,22.3608073,37.0127531#4.5,22.3621000,37.0032845","x":22.3642458,"y":37.0183574,"coor":[[22.3735759,37.0304081],[22.3735582,37.0302816],[22.3727886,37.0298475],[22.3724653,37.0297168],[22.3721169,37.0297121],[22.3714749,37.0292436],[22.3713402,37.0290682],[22.3714861,37.0285564],[22.3714427,37.0284837],[22.3713307,37.0284642],[22.3713434,37.028559],[22.3712194,37.0285753],[22.3710733,37.0285733],[22.3707997,37.0287498],[22.3701682,37.0288403],[22.3696903,37.0285814],[22.3695491,37.0283541],[22.369282,37.0282242],[22.3690483,37.0279506],[22.369055,37.0276352],[22.3688581,37.0273802],[22.3690061,37.0267693],[22.3689127,37.0264075],[22.3689608,37.0252094],[22.3687988,37.0249007],[22.3688357,37.024748],[22.36872,37.0243768],[22.3686111,37.0242131],[22.3683005,37.0240195],[22.3678959,37.0234912],[22.3674954,37.0232964],[22.3672874,37.0230322],[22.3666759,37.0227173],[22.3664469,37.0223896],[22.3662357,37.0222786],[22.366224,37.0219877],[22.3661193,37.0216258],[22.3661205,37.0215717],[22.3661994,37.0215638],[22.3667942,37.021608],[22.3673861,37.0217874],[22.368072,37.0217788],[22.3678982,37.021497],[22.3677733,37.0210266],[22.3678,37.0208287],[22.367671,37.0205565],[22.3674286,37.0203278],[22.3672614,37.0202624],[22.3671652,37.0200268],[22.3669242,37.0199964],[22.3668114,37.0199182],[22.3664851,37.0199318],[22.3660959,37.0197371],[22.3657484,37.0197414],[22.3658131,37.019704],[22.3658284,37.0195149],[22.3657547,37.0192795],[22.3653971,37.0191845],[22.3643722,37.0187557],[22.3643766,37.0185485],[22.3642458,37.0183574],[22.3642859,37.0180605],[22.3639478,37.0175781],[22.3635735,37.0172124],[22.3633813,37.0167411],[22.3628047,37.0163726],[22.3623193,37.0159423],[22.361798,37.0152613],[22.3617209,37.0150237],[22.3619716,37.0148649],[22.3620893,37.0146142],[22.361927,37.0138007],[22.3619909,37.0134411],[22.3614167,37.0129644],[22.361386,37.0128198],[22.3614586,37.0127464],[22.3613015,37.0127353],[22.3610736,37.0128763],[22.3607954,37.0127463],[22.3608315,37.0126386],[22.3612294,37.0124278],[22.3614723,37.0121067],[22.3614985,37.0119358],[22.3612819,37.0115542],[22.3611596,37.0114895],[22.3609988,37.0116495],[22.360808,37.0116378],[22.3608105,37.0115207],[22.3605422,37.0114539],[22.3602476,37.0110442],[22.3601013,37.0110512],[22.3597576,37.0108301],[22.3596625,37.0105494],[22.3598946,37.0102101],[22.359795,37.0101366],[22.3597977,37.0100105],[22.3598901,37.0098946],[22.3600021,37.0099142],[22.3600037,37.0098421],[22.3600711,37.009843],[22.3600726,37.0097709],[22.360152,37.009736],[22.3600085,37.0096168],[22.3597295,37.0095228],[22.3598109,37.0093977],[22.3601985,37.0091417],[22.3604751,37.0082983],[22.3605995,37.008264],[22.3607831,37.0080862],[22.3610042,37.0077378],[22.3610869,37.0075496],[22.3610645,37.0072361],[22.3613713,37.0070781],[22.3615799,37.0067835],[22.3622198,37.0067022],[22.3622112,37.0056971],[22.3619744,37.0052071],[22.3620852,37.004758],[22.3619155,37.004287],[22.3619553,37.0036273],[22.3621,37.0032845]]},{"id":17934,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03b7-\u03a0\u03b5\u03c1\u03b3\u03b1\u03bd\u03c4\u03b1\u03af\u03b9\u03ba\u03b1-\u03bc\u03bf\u03bd\u03ae \u03a6\u03b1\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Taygeti_Faneromeni","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6433,"name_EN":"Taygetos Mt: Taygeti-Pergandeika-Fameromenis monastery","description_EN":"","ascent_time":150,"descent_time":145,"marker":"Red_dots","level":10,"ascent":572,"descent":512,"maxelev":1140,"minelev":706,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34878 37.04097,22.37193 37.06258)","views":9,"millestones":"0,22.3559811,37.0626833#1,22.3554637,37.0584857#2,22.3514074,37.0530748#3,22.3499228,37.0456016#4,22.3564994,37.0415261#5,22.3624978,37.0416068#6.4,22.3718457,37.0451437","x":22.3506693,"y":37.0442314,"coor":[[22.3559811,37.0626833],[22.3562584,37.0626826],[22.3563957,37.0625763],[22.3568939,37.062421],[22.3571992,37.0622134],[22.3574761,37.0620235],[22.3580844,37.0619778],[22.3585,37.0617222],[22.3583255,37.0617468],[22.3581701,37.0616545],[22.357945,37.0616604],[22.3579388,37.061426],[22.3578624,37.0613168],[22.3577609,37.0613334],[22.3576426,37.0611605],[22.3574802,37.0608698],[22.3571689,37.0607033],[22.3572656,37.0603892],[22.3570344,37.0601606],[22.3567824,37.0603734],[22.3563957,37.0604424],[22.356149,37.0606035],[22.3556847,37.0607503],[22.3554825,37.0607385],[22.355398,37.060485],[22.3552205,37.0603743],[22.3553285,37.0600604],[22.3552136,37.0599754],[22.3553168,37.0598867],[22.3553085,37.0597514],[22.3554238,37.0596178],[22.3551584,37.0594068],[22.3553973,37.0592839],[22.3554327,37.0592033],[22.3551092,37.0590816],[22.3552918,37.058958],[22.3554809,37.058537],[22.3554324,37.0583876],[22.355806,37.0582102],[22.3557328,37.0581664],[22.3558329,37.0580394],[22.3557314,37.0577563],[22.355656,37.057602],[22.3553779,37.057463],[22.3548944,37.0574563],[22.3548035,37.0572567],[22.3548058,37.0570517],[22.3546734,37.056998],[22.3547316,37.0569087],[22.3545641,37.0568523],[22.3539357,37.0567895],[22.3535635,37.0568384],[22.3534517,37.0568098],[22.3533976,37.0567099],[22.3531169,37.056688],[22.3530844,37.0566335],[22.3531648,37.0565535],[22.3529855,37.0565239],[22.3530106,37.0564071],[22.3529142,37.0561804],[22.352612,37.0558721],[22.3526033,37.0557548],[22.3527266,37.0556573],[22.3526767,37.0555462],[22.3525873,37.0555179],[22.352244,37.0557926],[22.3519645,37.0557166],[22.3519365,37.0554345],[22.3518177,37.0552076],[22.3519437,37.0551011],[22.3519858,37.0547142],[22.3518498,37.0542436],[22.3516727,37.0541149],[22.3517952,37.0536479],[22.3515268,37.0535811],[22.3515927,37.0531314],[22.3515154,37.0530672],[22.3511099,37.0530976],[22.3512113,37.0530066],[22.3511955,37.0527],[22.3511787,37.0526164],[22.3512704,37.0525365],[22.3512165,37.0524276],[22.3513421,37.0523392],[22.3511683,37.0520574],[22.3510318,37.0519992],[22.3507071,37.0518211],[22.3503848,37.051544],[22.3503903,37.0512917],[22.3501343,37.051171],[22.3501611,37.0509731],[22.3495721,37.0506494],[22.3492731,37.050145],[22.34927,37.0497664],[22.3491292,37.0494355],[22.349325,37.0492219],[22.3493708,37.0491369],[22.3495007,37.0488998],[22.3495122,37.0483682],[22.3494053,37.0479003],[22.34936,37.0473949],[22.3491143,37.0473194],[22.3491098,37.0471841],[22.3493316,37.0468087],[22.349736,37.0463095],[22.3499017,37.0459243],[22.3499351,37.04542],[22.3500825,37.045368],[22.3502319,37.0452168],[22.3502133,37.0450363],[22.3506693,37.0442314],[22.35071,37.0439075],[22.3508581,37.0438195],[22.3511128,37.0434805],[22.3515008,37.0432155],[22.3516629,37.0430014],[22.3521526,37.0427108],[22.3520781,37.0424191],[22.3525667,37.0421825],[22.3524049,37.0418648],[22.3522606,37.0417817],[22.3524086,37.0416936],[22.3524336,37.0415768],[22.3523342,37.0414943],[22.3529606,37.0411244],[22.3530424,37.0409813],[22.3539089,37.0409483],[22.3545416,37.0413266],[22.3552376,37.0413813],[22.3553058,37.0413462],[22.3562786,37.041594],[22.3562573,37.0415397],[22.3566288,37.0415178],[22.3565635,37.0414177],[22.3566769,37.0413742],[22.3565581,37.0411472],[22.3569732,37.0411891],[22.3569758,37.0410719],[22.3571785,37.0410567],[22.3574006,37.041186],[22.3575604,37.0411566],[22.3574375,37.0409882],[22.357986,37.0411039],[22.3581664,37.0410794],[22.3581125,37.0409705],[22.3577736,37.0407697],[22.3583232,37.0408314],[22.3584493,37.0412388],[22.3583989,37.0414905],[22.3584406,37.0416443],[22.3586208,37.0416287],[22.3586245,37.0414575],[22.3588602,37.0413143],[22.3588871,37.0415828],[22.3589341,37.0418967],[22.3591897,37.0420354],[22.3596192,37.0419332],[22.3597568,37.0418089],[22.3596045,37.0415725],[22.3594709,37.0415075],[22.3594835,37.0414446],[22.3597748,37.0414937],[22.3602605,37.0413923],[22.3605054,37.0415038],[22.3607547,37.0414171],[22.3611256,37.0414223],[22.3615616,37.0415364],[22.3620781,37.0415706],[22.36229,37.0416547],[22.3623808,37.0416108],[22.3624588,37.041648],[22.3624936,37.0415944],[22.362557,37.0417845],[22.3629136,37.0419337],[22.3631167,37.0419004],[22.3633787,37.0417418],[22.3637917,37.0418827],[22.364457,37.0417927],[22.3646782,37.041967],[22.3647685,37.0419502],[22.3648003,37.0420408],[22.3648602,37.0418704],[22.3649441,37.0421509],[22.3650891,37.042207],[22.3650458,37.0421253],[22.3652026,37.0421545],[22.3652829,37.0420835],[22.3655743,37.0421236],[22.3661259,37.0420951],[22.366316,37.0421428],[22.3669916,37.042098],[22.3674486,37.0422846],[22.3676202,37.0426745],[22.3679431,37.0428232],[22.3681483,37.0426908],[22.3682266,37.0427099],[22.3683066,37.0426479],[22.3683508,37.0426846],[22.368432,37.0425685],[22.3684527,37.0426499],[22.3685341,37.0425249],[22.3685283,37.0427952],[22.3686179,37.0428144],[22.3687093,37.0427436],[22.3687636,37.0428345],[22.3688535,37.0428357],[22.3688896,37.042728],[22.368989,37.0428105],[22.3691948,37.0426511],[22.3692392,37.0426788],[22.3695117,37.0425563],[22.3698814,37.0425682],[22.369978,37.0427858],[22.3702341,37.0429831],[22.3706683,37.0431874],[22.3711814,37.0439065],[22.3715799,37.0442004],[22.3716809,37.0444857],[22.3716835,37.0445781],[22.3716967,37.0446369],[22.3718457,37.0451437]]},{"id":17935,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039a\u03bf\u03c5\u03bc\u03bf\u03c5\u03c3\u03c4\u03ac-\u03bc\u03bf\u03bd\u03ae \u0393\u03cc\u03bb\u03b1\u03c2","description_GR":"\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03c3\u03c5\u03bd\u03b4\u03b5\u03c4\u03b9\u03ba\u03cc \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u039a\u03bf\u03c5\u03bc\u03bf\u03c5\u03c3\u03c4\u03ac \u03c3\u03c4\u03b7 \u0393\u03cc\u03bb\u03b1","path":"PELOPONNESE\/Pelop_Taygetos_Koumousta_Ghola","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3473,"name_EN":"Taygetos Mt: Koumousta-Gola mon.","description_EN":"A connection trail","ascent_time":85,"descent_time":75,"marker":"Red_dots","level":10,"ascent":312,"descent":92,"maxelev":880,"minelev":580,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.4039 36.92791,22.41273 36.94698)","views":30,"millestones":"0,22.4075656,36.9470239#1,22.4047646,36.9406073#2,22.4098970,36.9372917#3,22.4112153,36.9302534#3.5,22.4104553,36.9278819","x":22.4090624,"y":36.9397994,"coor":[[22.4075656,36.9470239],[22.40751,36.9468294],[22.4076092,36.94638],[22.407488,36.9451886],[22.4073011,36.9449968],[22.4068652,36.9449008],[22.4058979,36.9438964],[22.4055858,36.943784],[22.4052159,36.943752],[22.4050606,36.9436598],[22.4050191,36.943497],[22.4054195,36.9429413],[22.4054465,36.9427253],[22.4051406,36.9423156],[22.4050957,36.9417742],[22.4047575,36.9413009],[22.4046651,36.9408851],[22.4040397,36.940284],[22.4047945,36.9406525],[22.4045594,36.9402978],[22.4046829,36.9402994],[22.4047862,36.9401927],[22.4050436,36.9402322],[22.4048271,36.9398958],[22.4044642,36.9395303],[22.4044251,36.9392504],[22.4053437,36.9393529],[22.4056865,36.9396099],[22.4060764,36.9397593],[22.4065705,36.9397569],[22.4071965,36.9398915],[22.4072427,36.939829],[22.4078208,36.9401072],[22.4084704,36.940188],[22.4086173,36.9401449],[22.4084852,36.940017],[22.4090624,36.9397994],[22.4092344,36.9396304],[22.4097453,36.938817],[22.4097268,36.9380867],[22.4100739,36.9375956],[22.4098139,36.9371414],[22.4100945,36.9366044],[22.4106765,36.9361525],[22.4108863,36.9357857],[22.4118114,36.9350319],[22.412321,36.9342816],[22.4125833,36.9340868],[22.4126076,36.933997],[22.4123758,36.9338046],[22.4122078,36.9332436],[22.4124559,36.932652],[22.4121184,36.9326835],[22.411608,36.9323883],[22.4115676,36.9321714],[22.4118288,36.9314899],[22.4117633,36.9313989],[22.4115725,36.9313963],[22.4111325,36.9312282],[22.4114063,36.9310155],[22.4112651,36.9302993],[22.411177,36.930217],[22.4113888,36.9299675],[22.4109999,36.9294485],[22.4109015,36.929321],[22.4104902,36.9291262],[22.4101232,36.9284182],[22.4102139,36.9283744],[22.410825,36.92868],[22.4108382,36.9283647],[22.4104746,36.9280353],[22.4104553,36.9278819]]},{"id":17936,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039a\u03bf\u03c5\u03bc\u03bf\u03c5\u03c3\u03c4\u03ac-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u039a\u03bf\u03c5\u03bc\u03bf\u03c5\u03c3\u03c4\u03ac-\u0394\u03b7\u03bc\u03b1\u03c1\u03c7\u03b5\u03af\u03bf-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_Koumousta_Varvara","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8415,"name_EN":"Taygetos Mt: Koumousta-EOS refuge","description_EN":"Koumousta-Dimarchio-refuge","ascent_time":215,"descent_time":180,"marker":"Red_dots","level":10,"ascent":997,"descent":116,"maxelev":1547,"minelev":660,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.36022 36.93968,22.40772 36.9503)","views":28,"millestones":"0,22.4075656,36.9470239#1,22.4022622,36.9413602#2,22.3932204,36.9407154#3,22.3842011,36.9411102#4,22.3779472,36.9420312#5,22.3684554,36.9422445#6,22.3631871,36.9394984#7,22.3632944,36.9444075#8.4,22.3677464,36.9504018","x":22.3751814,"y":36.9421325,"coor":[[22.4075656,36.9470239],[22.4074391,36.9471664],[22.4073506,36.9471021],[22.4071593,36.9465858],[22.4069635,36.9468175],[22.406925,36.9470514],[22.4068589,36.9469874],[22.4067263,36.9463456],[22.4065169,36.9461535],[22.406493,36.9456845],[22.4063125,36.9455582],[22.4061998,36.9455747],[22.4056836,36.9450179],[22.4052748,36.944697],[22.4049523,36.9445484],[22.4041801,36.9444209],[22.4040282,36.9441664],[22.4036633,36.9438911],[22.4036881,36.9437833],[22.4038583,36.9436955],[22.4039854,36.9435259],[22.4040457,36.9433284],[22.4038956,36.9429839],[22.403676,36.9427466],[22.4030552,36.9423597],[22.4028395,36.9419331],[22.4026424,36.9416961],[22.4022993,36.9414572],[22.4022355,36.9412851],[22.4020905,36.941238],[22.4021111,36.9413284],[22.4020437,36.9413275],[22.4012315,36.9409651],[22.4009068,36.9409247],[22.4004954,36.9407298],[22.4003831,36.9407283],[22.400472,36.9407746],[22.4004697,36.9408827],[22.3999095,36.9408211],[22.3993252,36.9408403],[22.3991361,36.9407566],[22.3991559,36.940883],[22.3990657,36.9408998],[22.397946,36.9407495],[22.3980784,36.9408595],[22.3969223,36.9408349],[22.3966407,36.9408761],[22.3967522,36.9409137],[22.3966839,36.9409578],[22.395955,36.940912],[22.3961872,36.9410863],[22.3953258,36.9409305],[22.3950254,36.9408002],[22.3943543,36.940674],[22.3938135,36.9407568],[22.3928942,36.9406903],[22.3921477,36.9404098],[22.3917592,36.9401972],[22.3914568,36.9401571],[22.3903177,36.940394],[22.3892869,36.9408217],[22.3882749,36.9414209],[22.3874592,36.9417613],[22.3868388,36.9424289],[22.3866456,36.9425344],[22.3864262,36.9417563],[22.3858261,36.9414597],[22.3852877,36.9414344],[22.3849642,36.9413308],[22.3845371,36.9413521],[22.3843245,36.9413131],[22.3841944,36.941095],[22.3838683,36.9411176],[22.3836137,36.9409429],[22.3832328,36.9409017],[22.3832341,36.9408386],[22.3830456,36.9407279],[22.383025,36.9406374],[22.3826352,36.9404879],[22.3825916,36.9404242],[22.3823328,36.9404477],[22.3817072,36.940295],[22.3810658,36.9403584],[22.3806628,36.9408306],[22.3804733,36.9407649],[22.3802534,36.9405456],[22.3801876,36.9398394],[22.3798362,36.9399968],[22.3794321,36.9399913],[22.3790521,36.939905],[22.3789612,36.9399578],[22.3790618,36.940295],[22.3790378,36.9403668],[22.3789581,36.9403702],[22.3788327,36.9404586],[22.3783928,36.9405517],[22.3782502,36.9407571],[22.3775044,36.940614],[22.3777745,36.9409489],[22.3779979,36.9420155],[22.3770303,36.94232],[22.3763826,36.9421489],[22.3763029,36.9422019],[22.3760787,36.9421808],[22.3760323,36.9422523],[22.3760958,36.9424335],[22.3760161,36.9424864],[22.3751814,36.9421325],[22.3742715,36.9421471],[22.3740674,36.9422435],[22.3736387,36.9423367],[22.3735806,36.9424261],[22.3736893,36.9425988],[22.3731569,36.9424991],[22.3728105,36.9424223],[22.3724391,36.9424623],[22.371465,36.9428545],[22.3710953,36.9428134],[22.3707734,36.9426377],[22.3699834,36.9426066],[22.3696168,36.9424213],[22.3692232,36.9424519],[22.3689273,36.9426371],[22.3687807,36.9426622],[22.3683872,36.942161],[22.3679058,36.9420913],[22.3674769,36.9421936],[22.3671521,36.9421531],[22.3670298,36.9420973],[22.3668325,36.9418693],[22.3660873,36.9415345],[22.365413,36.9415613],[22.3651307,36.9416385],[22.364583,36.9420456],[22.3640909,36.9419487],[22.3638833,36.9422072],[22.3637701,36.9422507],[22.3636406,36.9420056],[22.3635612,36.9415178],[22.3633873,36.941245],[22.3631775,36.9410798],[22.3626855,36.9409829],[22.3625992,36.9408195],[22.3626569,36.9407482],[22.3628783,36.94042],[22.3633493,36.9399217],[22.3634021,36.9395529],[22.3637892,36.9393058],[22.363775,36.9390826],[22.3634336,36.9391815],[22.3631681,36.9395204],[22.3630144,36.9398788],[22.362841,36.939588],[22.3625466,36.9397011],[22.3623065,36.9399051],[22.3621293,36.9398531],[22.3619514,36.9397695],[22.3617331,36.939478],[22.3615541,36.9394485],[22.3614747,36.9394835],[22.361425,36.9397081],[22.361564,36.9400345],[22.3614661,36.9404118],[22.3613178,36.9405179],[22.3609124,36.9405754],[22.3607407,36.9407262],[22.3604119,36.9413977],[22.3605426,36.9414716],[22.360572,36.9416703],[22.3616753,36.9420641],[22.3619335,36.9420677],[22.3618741,36.9422201],[22.3620053,36.9423841],[22.3619573,36.9425277],[22.3620539,36.9427363],[22.3620297,36.9428171],[22.3624887,36.9434093],[22.3626149,36.9443304],[22.363287,36.9444118],[22.3636168,36.9442181],[22.3643252,36.9441737],[22.3646252,36.9443221],[22.3646883,36.9445212],[22.3649097,36.9446685],[22.3652481,36.944912],[22.3658979,36.9455068],[22.3660973,36.9456358],[22.3663768,36.9456937],[22.3665956,36.9459671],[22.3667299,36.945987],[22.3669558,36.945927],[22.3672914,36.9459857],[22.367611,36.9462695],[22.3682558,36.9465758],[22.3686279,36.9470316],[22.3691163,36.9472997],[22.3693811,36.9475197],[22.3697645,36.9479756],[22.3698284,36.9481387],[22.3705086,36.9483644],[22.3704328,36.9485616],[22.3703192,36.9486232],[22.3702919,36.9488481],[22.370199,36.9489911],[22.370293,36.9492605],[22.3698247,36.9495312],[22.3692604,36.9496587],[22.3689769,36.94979],[22.3688309,36.949788],[22.3684976,36.9496212],[22.3681939,36.949644],[22.3678471,36.950108],[22.3678192,36.95036],[22.3677464,36.9504018]]},{"id":17937,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b7\u03b3\u03ae \u039c\u03b1\u03b3\u03b3\u03b1\u03bd\u03b9\u03ac\u03c1\u03b7-\u03ba\u03b1\u03c4. \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","description_GR":"\u039c\u03b9\u03b1 \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b7, \u03c0\u03bf\u03bb\u03cd \u03b2\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7","path":"PELOPONNESE\/Pelop_Taygetos_Maganiaris_Varvara","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3713,"name_EN":"Taygetos Mt: Maganiari spring-Taygetos ref.","description_EN":"A short yet important connection","ascent_time":100,"descent_time":75,"marker":"Red_square","level":10,"ascent":561,"descent":6,"maxelev":1547,"minelev":980,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.36742 36.95064,22.38509 36.96557)","views":66,"millestones":"0,22.3814700,36.9657661#1,22.3804550,36.9619571#2,22.3722865,36.9592433#3.7,22.3677449,36.9504040","x":22.3733003,"y":36.9588583,"coor":[[22.38147,36.9657661],[22.3810563,36.9656793],[22.3809571,36.9655878],[22.381094,36.9654905],[22.3810629,36.9653639],[22.3813944,36.9646631],[22.3813542,36.964604],[22.3821226,36.9643891],[22.38252,36.9641872],[22.3829709,36.9641123],[22.3833513,36.9641805],[22.3839503,36.9640084],[22.3841897,36.9638404],[22.3842839,36.9636344],[22.3848195,36.9633713],[22.3846859,36.9633154],[22.3839773,36.9633598],[22.3835426,36.9632007],[22.3833397,36.9630897],[22.3834566,36.9629719],[22.3833911,36.9628809],[22.3830322,36.962858],[22.3826643,36.9627268],[22.3823383,36.9627404],[22.381412,36.9624573],[22.3808726,36.962468],[22.3805856,36.9622297],[22.380381,36.9618123],[22.3802701,36.9617477],[22.3802494,36.9616663],[22.3801357,36.9617279],[22.379868,36.9616431],[22.3790471,36.961686],[22.3788258,36.9615297],[22.3786575,36.9615184],[22.378547,36.9614358],[22.3783549,36.9614872],[22.3775604,36.9613502],[22.3768414,36.9608266],[22.3766112,36.960562],[22.3762561,36.9603589],[22.3760395,36.9599774],[22.3758525,36.9597945],[22.3756627,36.9597379],[22.3752436,36.9599034],[22.375075,36.9599101],[22.3749549,36.9597462],[22.3745669,36.9595065],[22.3738668,36.9591544],[22.3736655,36.9591156],[22.3733003,36.9588583],[22.3730742,36.9589273],[22.3728073,36.9593292],[22.3722543,36.9594568],[22.3719627,36.9594348],[22.3719545,36.9592905],[22.3722809,36.9592589],[22.3724245,36.9588463],[22.3723709,36.9587283],[22.3722121,36.9587983],[22.3717413,36.9587558],[22.3719066,36.9583795],[22.3714186,36.9586161],[22.3710141,36.9586196],[22.3706018,36.9584697],[22.3706277,36.9583078],[22.3705394,36.9582345],[22.3703148,36.9582314],[22.3699809,36.9580917],[22.3698253,36.9574856],[22.3698391,36.9568368],[22.3692786,36.9573159],[22.3691661,36.9573233],[22.3691028,36.9571332],[22.3691415,36.9568994],[22.3690235,36.9566364],[22.3689567,36.9560856],[22.3691192,36.9558355],[22.3689399,36.9552922],[22.3688522,36.9551919],[22.3679908,36.9547203],[22.3677468,36.9542618],[22.3680097,36.9540491],[22.3679209,36.953471],[22.368223,36.9529974],[22.3681093,36.9525362],[22.3682708,36.9523401],[22.3683209,36.9520974],[22.3681811,36.9518071],[22.3683282,36.951755],[22.3686511,36.9518857],[22.369112,36.951865],[22.3691696,36.9517936],[22.3691394,36.951631],[22.3694019,36.9514363],[22.369421,36.9513284],[22.3690844,36.9513148],[22.3684285,36.9509993],[22.3680524,36.9507327],[22.3677449,36.950404]]},{"id":17938,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039b\u03b1\u03ba\u03ba\u03ce\u03bc\u03b1\u03c4\u03b1-\u03ba\u03b1\u03c4. \u03b1\u03bd\u03ac\u03b3\u03ba\u03b7\u03c2 \u03a4\u03c3\u03ac\u03c1\u03ba\u03bf\u03c5","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Lakomata_Tsarkos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":3808,"name_EN":"Taygetos Mt: Lakomata-Tsarkos bivouac","description_EN":"","ascent_time":130,"descent_time":105,"marker":"Red_dots","level":10,"ascent":532,"descent":41,"maxelev":1780,"minelev":1270,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.33505 37.00329,22.36229 37.01329)","views":14,"millestones":"0,22.3620996,37.0032845#1,22.3563700,37.0089343#2,22.3500395,37.0125480#3.8,22.3350674,37.0122980","x":22.3473161,"y":37.0125683,"coor":[[22.3620996,37.0032845],[22.3619554,37.003625],[22.3619152,37.0042847],[22.3620849,37.0047557],[22.3619741,37.0052049],[22.3622109,37.0056949],[22.3622199,37.0067],[22.3615796,37.0067813],[22.361371,37.0070758],[22.3610642,37.0072338],[22.3600542,37.0077336],[22.3594481,37.008221],[22.3589729,37.0083677],[22.3585711,37.0082359],[22.3584022,37.0082516],[22.3581281,37.0084551],[22.3578337,37.0085592],[22.357111,37.0086664],[22.356724,37.0088954],[22.356408,37.0089541],[22.3557744,37.0086298],[22.3553048,37.0085152],[22.3546047,37.0081449],[22.3544309,37.0089087],[22.3545256,37.0092074],[22.3543012,37.0102318],[22.3542138,37.0116817],[22.3537256,37.0119093],[22.3534559,37.0119056],[22.3531546,37.012325],[22.3527675,37.012554],[22.3521383,37.0125453],[22.3515496,37.0127444],[22.3508971,37.0127714],[22.3499918,37.0125335],[22.3495412,37.0125813],[22.3489643,37.0127535],[22.3484246,37.012764],[22.3473161,37.0125683],[22.3463019,37.0116529],[22.3461532,37.0112542],[22.3460757,37.011199],[22.3459622,37.0112515],[22.3460027,37.0110335],[22.3458509,37.0110382],[22.3455091,37.0112497],[22.3450583,37.0113065],[22.3446259,37.0115529],[22.3445811,37.0115432],[22.3445978,37.0112911],[22.3445529,37.0112905],[22.344072,37.0116984],[22.3440312,37.0115085],[22.3437367,37.0116126],[22.3430971,37.0120814],[22.3425054,37.0124156],[22.3405358,37.0130551],[22.3400085,37.0130116],[22.3400097,37.0129576],[22.3399198,37.0129563],[22.3396129,37.0131143],[22.3394327,37.0131298],[22.3392756,37.0131186],[22.339389,37.0130751],[22.338727,37.0130207],[22.338084,37.0131289],[22.3374617,37.0133185],[22.3374901,37.0130485],[22.3373424,37.0131185],[22.337261,37.0132436],[22.3368216,37.0132915],[22.3368228,37.0132374],[22.3365531,37.0132336],[22.3363207,37.0130681],[22.3356731,37.012356],[22.335327,37.012252],[22.3350674,37.012298]]},{"id":17940,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039f32 \u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1-\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b1\u03c8\u03bf\u03b4\u03b5\u03bc\u03b1\u03c4\u03bf\u03cd\u03c3\u03b1","description_GR":"\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03a1\u03b9\u03bd\u03c4\u03cc\u03bc\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Taygetos_O32_Pigadia_Kapsodematousa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":1213,"name_EN":"Taygetos Mt: Pigadia-Panagia Kapsodematousa","description_EN":"Ridomo gorge","ascent_time":145,"descent_time":145,"marker":"O32","level":12,"ascent":354,"descent":359,"maxelev":940,"minelev":660,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25727 36.98475,22.30667 36.99616)","views":32,"millestones":"0,22.2588413,36.9961834#1,22.2613197,36.9887089#2,22.2657157,36.9865945#3,22.2741877,36.9911554#4,22.2834775,36.9927052#5,22.2923176,36.9899663#1.2,22.3065312,36.9908548","x":22.2826777,"y":36.9932138,"coor":[[22.2588413,36.9961834],[22.2576508,36.9944331],[22.2576996,36.9941702],[22.2573302,36.9936623],[22.2573449,36.9932636],[22.257831,36.9930905],[22.2582528,36.9928263],[22.2588274,36.9922669],[22.2592343,36.9918538],[22.2593744,36.9916215],[22.2605096,36.9906196],[22.2605915,36.9904766],[22.2606839,36.9898741],[22.2608281,36.9894616],[22.2612368,36.9887826],[22.2613974,36.9886407],[22.2614093,36.9881181],[22.2615988,36.9876882],[22.2617832,36.9874836],[22.2615425,36.9872007],[22.2616923,36.9860492],[22.2616017,36.9855882],[22.2617095,36.9852923],[22.2617161,36.985004],[22.2619144,36.9846824],[22.2620498,36.9846574],[22.2622463,36.9844169],[22.2621568,36.9841046],[22.2626392,36.9841387],[22.2629649,36.9841435],[22.2635195,36.9844581],[22.2639356,36.9849328],[22.2642168,36.9854147],[22.2646358,36.9857633],[22.2652601,36.9864754],[22.265919,36.9866473],[22.2665149,36.986629],[22.2670724,36.9868174],[22.2674654,36.9868321],[22.2681327,36.9871303],[22.2686516,36.9875345],[22.2694842,36.9879792],[22.2702783,36.9886398],[22.2725218,36.9892944],[22.2736292,36.9895178],[22.2738626,36.9896293],[22.2740166,36.9897758],[22.2742094,36.9901932],[22.2741874,36.9911663],[22.274436,36.9916026],[22.2756388,36.9925754],[22.276229,36.9931699],[22.2763044,36.9933107],[22.2768255,36.9936247],[22.2769819,36.993663],[22.2781279,36.9936706],[22.2788617,36.9935191],[22.2813198,36.9936358],[22.2814896,36.9935842],[22.2819919,36.9932309],[22.2826777,36.9932138],[22.2830641,36.9930211],[22.2833632,36.99271],[22.2836557,36.9926962],[22.2841311,36.9925408],[22.2848631,36.9924703],[22.2853604,36.9923423],[22.2855958,36.9923637],[22.286268,36.991454],[22.2864264,36.9914022],[22.2868296,36.9914621],[22.2870001,36.9913745],[22.2870629,36.9910779],[22.2869888,36.9908786],[22.2870375,36.990708],[22.2872217,36.9905124],[22.2874486,36.9904165],[22.2878878,36.9903688],[22.2881771,36.9904991],[22.2883794,36.990493],[22.2885389,36.9903962],[22.2886904,36.990155],[22.2894123,36.9900302],[22.2897224,36.9897282],[22.2899601,36.9896506],[22.2902291,36.9896815],[22.290694,36.9899946],[22.2914444,36.9901046],[22.2922226,36.9899716],[22.2932125,36.9899227],[22.2938586,36.9896706],[22.2950478,36.9897508],[22.2952594,36.9898349],[22.2954056,36.989828],[22.2955143,36.9899918],[22.2960523,36.9900536],[22.2962449,36.9899843],[22.2964904,36.9900599],[22.2968845,36.9905253],[22.2971533,36.9905652],[22.2973747,36.9907126],[22.2977237,36.9906815],[22.2982936,36.9908249],[22.2984875,36.9906947],[22.2988625,36.990601],[22.2994811,36.9905738],[22.3001295,36.9902135],[22.3006697,36.9901762],[22.3008711,36.9902151],[22.3010261,36.9903165],[22.3012287,36.9908061],[22.3016197,36.9909108],[22.3024964,36.9908963],[22.3028823,36.9907216],[22.3032542,36.9906728],[22.3047065,36.9910541],[22.3054719,36.9909929],[22.3058566,36.9908722],[22.3063157,36.9909419],[22.3065312,36.9908548]]},{"id":17941,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b1\u03c8\u03bf\u03b4\u03b5\u03bc\u03b1\u03c4\u03bf\u03cd\u03c3\u03b1-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Taygetos_Kapsodematousa_EOSrefuge","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":12625,"name_EN":"Taygetos Mt: Panagia Kapsodematousa-EOS Refuge","description_EN":"Crossing of Taygetos crest","ascent_time":390,"descent_time":345,"marker":"No_marks","level":10,"ascent":1385,"descent":749,"maxelev":2240,"minelev":916,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.30607 36.9502,22.36775 36.99085)","views":34,"millestones":"0,22.3065304,36.9908548#1,22.3078709,36.9824203#2,22.3181383,36.9796484#3,22.3272983,36.9779620#4,22.3329831,36.9713256#5,22.3350260,36.9646133#6,22.3308684,36.9588400#7,22.3339152,36.9528928#8,22.3404078,36.9548508#9,22.3498179,36.9583171#10,22.3565182,36.9607856#11,22.3609231,36.9577084#12,22.3660103,36.9515752#12.6,22.3677447,36.9503995","x":22.3290237,"y":36.955999,"coor":[[22.3065304,36.9908548],[22.306535,36.9906476],[22.307028,36.9896992],[22.3071288,36.9887002],[22.3062721,36.9862904],[22.3061844,36.9856853],[22.3064467,36.9844992],[22.3070522,36.9830297],[22.30734,36.9827183],[22.3090009,36.9817866],[22.3098398,36.981447],[22.3110943,36.9811134],[22.3119977,36.9803961],[22.3127569,36.9801005],[22.3139488,36.9800543],[22.3155882,36.9800956],[22.3162877,36.9799613],[22.3171753,36.9799559],[22.3177406,36.9797972],[22.3185335,36.9795019],[22.3187727,36.9793521],[22.3197104,36.979113],[22.3201242,36.9792],[22.3205352,36.9788993],[22.3208058,36.9788581],[22.3210844,36.9789612],[22.3214002,36.9789026],[22.3218355,36.9790349],[22.3221637,36.9789224],[22.3222187,36.9789772],[22.3222017,36.9792384],[22.3223706,36.9792227],[22.3225251,36.9793511],[22.3226965,36.9792183],[22.3228429,36.9792024],[22.3235914,36.9793932],[22.324603,36.9793714],[22.3248481,36.979465],[22.3251519,36.9794423],[22.325452,36.9795907],[22.3260303,36.9793465],[22.3263852,36.9790451],[22.326669,36.9789139],[22.3267563,36.9785185],[22.3275263,36.9777272],[22.3278437,36.9775964],[22.3279144,36.9774442],[22.3282585,36.9771246],[22.3286437,36.9769768],[22.3288945,36.9768091],[22.3292625,36.9764177],[22.3294956,36.9765471],[22.3297123,36.9763969],[22.3299212,36.9760934],[22.3301608,36.9759255],[22.3302221,36.9756921],[22.3303129,36.9756483],[22.330316,36.9755041],[22.3304415,36.9754157],[22.3305243,36.9752276],[22.330769,36.9743117],[22.3312544,36.9731738],[22.3314495,36.9729873],[22.3313174,36.9728592],[22.331543,36.9728173],[22.331889,36.9724076],[22.3325293,36.9724076],[22.3328701,36.9717183],[22.3330035,36.9712695],[22.3334302,36.9707618],[22.3335011,36.9706005],[22.3334471,36.9705006],[22.3337761,36.970352],[22.3338604,36.9700918],[22.3340336,36.9698779],[22.3341886,36.9694655],[22.3341844,36.9691409],[22.3344069,36.9692432],[22.3347236,36.9691395],[22.334872,36.9690334],[22.334961,36.9690707],[22.3351117,36.9688565],[22.3352124,36.9688759],[22.3354697,36.9684108],[22.3355591,36.9684301],[22.3355073,36.9682311],[22.3355402,36.9682676],[22.3355762,36.96816],[22.3357451,36.9681443],[22.3358723,36.9679748],[22.3361073,36.9680142],[22.3360441,36.967824],[22.3357643,36.967775],[22.3358691,36.9676052],[22.3359473,36.9676244],[22.3359491,36.9675433],[22.3358295,36.9673613],[22.3356314,36.9661417],[22.3355749,36.966159],[22.3355311,36.9661043],[22.3353299,36.9655426],[22.3349479,36.9650325],[22.3348628,36.964815],[22.3351053,36.964512],[22.3353316,36.964434],[22.3353352,36.9642718],[22.3349766,36.9642307],[22.3347383,36.9643446],[22.3342091,36.9644002],[22.3340326,36.9642535],[22.3341388,36.9640207],[22.3341366,36.963606],[22.3342833,36.963572],[22.3342845,36.963518],[22.3341523,36.963399],[22.3340737,36.9633979],[22.3340491,36.9634967],[22.3338897,36.962566],[22.3339466,36.9625308],[22.3335957,36.9621383],[22.3335549,36.9619484],[22.3336471,36.9618416],[22.3336274,36.9617151],[22.3334968,36.961524],[22.3334958,36.9610553],[22.3335933,36.9607051],[22.3335286,36.960578],[22.333376,36.9603686],[22.333242,36.9603306],[22.3331817,36.9600053],[22.3327355,36.9593501],[22.3325803,36.9592578],[22.3321664,36.9591798],[22.3320523,36.9592594],[22.3317716,36.9592554],[22.3311706,36.9590036],[22.33066,36.958726],[22.329215,36.957525],[22.3290816,36.9569462],[22.3291421,36.9567488],[22.3292327,36.956714],[22.3290674,36.9565675],[22.3289776,36.9565662],[22.3289583,36.9564217],[22.329066,36.9561168],[22.3290237,36.955999],[22.3291062,36.9559348],[22.3297345,36.9559617],[22.3297491,36.9558087],[22.3298332,36.9558143],[22.3299067,36.9554233],[22.3306116,36.9550276],[22.3316879,36.9546011],[22.3333051,36.9530555],[22.3337355,36.9528903],[22.3339825,36.9528937],[22.3348882,36.9530777],[22.3352222,36.9532086],[22.3354318,36.9533827],[22.3357514,36.9526301],[22.3374723,36.9519962],[22.3379946,36.9517331],[22.3384805,36.9515957],[22.3388177,36.9515824],[22.3389727,36.9516837],[22.3389653,36.9520261],[22.3385709,36.9531203],[22.3385245,36.9537055],[22.3389801,36.9539282],[22.3396495,36.9541358],[22.3402227,36.9546306],[22.3406388,36.9551231],[22.3410502,36.9558319],[22.3417159,36.9562108],[22.3425842,36.9564685],[22.3428609,36.9569163],[22.3430065,36.9569363],[22.3437394,36.9568023],[22.344434,36.9568841],[22.3450077,36.9573608],[22.3459456,36.9576173],[22.3464553,36.9579398],[22.3474845,36.9581254],[22.3496473,36.9583538],[22.3500761,36.9582606],[22.3503493,36.9580932],[22.3513341,36.9577373],[22.3523051,36.9574984],[22.3525209,36.9573887],[22.3525989,36.9574168],[22.3527712,36.957239],[22.3531224,36.9570996],[22.3534323,36.9567884],[22.3536326,36.9579179],[22.3541828,36.9584483],[22.3554205,36.9599076],[22.3556815,36.9603078],[22.3557014,36.9604253],[22.3556327,36.9604874],[22.3556739,36.9606592],[22.3560625,36.9608719],[22.3560091,36.960745],[22.3562119,36.9607117],[22.3561794,36.9606572],[22.3563056,36.9605328],[22.3567437,36.9610526],[22.3567999,36.9610534],[22.3568471,36.9609459],[22.3571774,36.9612569],[22.3572564,36.96124],[22.3573272,36.9616015],[22.357745,36.9620219],[22.3577683,36.9620808],[22.3579,36.9620128],[22.3580235,36.9620145],[22.3580088,36.9616537],[22.3580669,36.9615644],[22.3583515,36.9613881],[22.358577,36.9613461],[22.3586286,36.9612973],[22.3586704,36.9609193],[22.3586197,36.9606662],[22.3585092,36.9605835],[22.3587376,36.9598837],[22.3586851,36.9597117],[22.3587544,36.9590997],[22.3590324,36.958707],[22.3595804,36.9582909],[22.3595688,36.9588316],[22.3596343,36.9589226],[22.3599134,36.9589986],[22.3600747,36.9588115],[22.3600323,36.9586937],[22.3601579,36.9585963],[22.3602249,36.9586153],[22.3604425,36.95842],[22.3606099,36.9579446],[22.3609061,36.9577504],[22.3610602,36.957374],[22.3610898,36.9570409],[22.3609914,36.9569133],[22.360933,36.9564979],[22.3610754,36.9561393],[22.3610576,36.9559228],[22.3612047,36.9558707],[22.3614961,36.9559018],[22.3616773,36.9558322],[22.3620108,36.9554672],[22.3621693,36.9554063],[22.3624552,36.9551669],[22.3629997,36.954913],[22.3630708,36.9547427],[22.3631374,36.9547797],[22.3632187,36.9546546],[22.3632336,36.9544836],[22.3633127,36.9544576],[22.3633081,36.9541511],[22.3634304,36.9542069],[22.3634769,36.9541354],[22.3635661,36.9541637],[22.3636588,36.9540298],[22.3637595,36.9540492],[22.3637626,36.953905],[22.3635725,36.9538663],[22.3636402,36.9538492],[22.3636187,36.9538039],[22.3637196,36.9538143],[22.3636758,36.9537596],[22.3637451,36.9536704],[22.3636793,36.9535974],[22.3637356,36.9535892],[22.363911,36.9532671],[22.3640937,36.9531254],[22.3641721,36.9531355],[22.3645383,36.9528161],[22.3645937,36.9528529],[22.3649659,36.9527769],[22.3651136,36.9526978],[22.3651388,36.9525719],[22.365788,36.9521482],[22.3658154,36.9519143],[22.3659772,36.9517002],[22.3660873,36.9512781],[22.3660587,36.9510433],[22.3664322,36.9509042],[22.3666393,36.9506727],[22.3667576,36.9503949],[22.3669383,36.9503434],[22.3671212,36.9501926],[22.3677447,36.9503995]]},{"id":17942,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03ad\u03bd\u03c4\u03b5 \u0391\u03bb\u03ce\u03bd\u03b9\u03b1-\u0391\u03c1\u03ba\u03bf\u03c5\u03b4\u03b9\u03ac\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03b5\u03be\u03b1\u03af\u03c3\u03b9\u03b1 \u03b8\u03ad\u03b1","path":"PELOPONNESE\/Pelop_Taygetos_5Alonia_Arkoudias","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":1180,"name_EN":"Taygetos Mt: Pende Alonia-Arkoudias","description_EN":"A short hike with excellent view","ascent_time":30,"descent_time":25,"marker":"No_marks","level":12,"ascent":145,"descent":23,"maxelev":1436,"minelev":1300,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.37642 36.98315,22.38691 36.98555)","views":14,"millestones":"0,22.3764730,36.9830126#1.2,22.3869067,36.9831909","x":22.3798231,"y":36.9855641,"coor":[[22.376473,36.9830126],[22.3767163,36.9831962],[22.3772392,36.9834377],[22.3774341,36.9837829],[22.3779939,36.9844034],[22.3784135,36.9847517],[22.3786277,36.9847185],[22.3793175,36.9850344],[22.379447,36.9852886],[22.3796349,36.9854353],[22.3798231,36.9855641],[22.380036,36.985594],[22.3809531,36.9852641],[22.3814675,36.9848474],[22.3816415,36.9845884],[22.382197,36.9843526],[22.3829913,36.9845167],[22.3842975,36.9838495],[22.386257,36.9836327],[22.3865292,36.9835103],[22.3869067,36.9831909]]},{"id":17946,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039f32 \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b1\u03c8\u03bf\u03b4\u03b5\u03bc\u03b1\u03c4\u03bf\u03cd\u03c3\u03b1-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Taygetos_O32_Kapsodematousa_EOSRefuge","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":17293,"name_EN":"Taygetos Mt: O32 Panagia Kapsodematousa-EOS Refuge","description_EN":"Crossing of Taygetos crest","ascent_time":575,"descent_time":520,"marker":"O32","level":10,"ascent":1758,"descent":1120,"maxelev":2219,"minelev":660,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25761 36.9502,22.36775 36.99617)","views":18,"millestones":"0,22.2588413,36.9961834#1,22.2607394,36.9897194#2,22.2646074,36.9857397#3,22.2740675,36.9898882#4,22.2821316,36.9932271#5,22.2907415,36.9900013#6,22.3010069,36.9903034#7,22.3103776,36.9931305#8,22.3201332,36.9895471#9,22.3307008,36.9915342#10,22.3405372,36.9905923#11,22.3506168,36.9874287#12,22.3510469,36.9793177#13,22.3545471,36.9718580#14,22.3545720,36.9651570#15,22.3586364,36.9602095#16,22.3632304,36.9545543#17.3,22.3677475,36.9503995","x":22.3511394,"y":36.9841731,"coor":[[22.2588413,36.9961834],[22.2576508,36.9944331],[22.2576996,36.9941702],[22.2583073,36.9936383],[22.2588034,36.993071],[22.2592418,36.9925704],[22.2599777,36.9923288],[22.2597798,36.9921367],[22.2588274,36.9922669],[22.2592343,36.9918538],[22.2593744,36.9916215],[22.2605096,36.9906196],[22.2605915,36.9904766],[22.2606839,36.9898741],[22.2608281,36.9894616],[22.2612368,36.9887826],[22.2613974,36.9886407],[22.2614093,36.9881181],[22.2615988,36.9876882],[22.2617832,36.9874836],[22.2615425,36.9872007],[22.2616923,36.9860492],[22.2612817,36.9848354],[22.2615154,36.9844422],[22.2621568,36.9841046],[22.2626392,36.9841387],[22.2629649,36.9841435],[22.2635195,36.9844581],[22.2639356,36.9849328],[22.2642168,36.9854147],[22.2646358,36.9857633],[22.2652601,36.9864754],[22.265919,36.9866473],[22.2665149,36.986629],[22.2670724,36.9868174],[22.2674654,36.9868321],[22.2681327,36.9871303],[22.2686516,36.9875345],[22.2694842,36.9879792],[22.2702783,36.9886398],[22.2725218,36.9892944],[22.2736292,36.9895178],[22.2738626,36.9896293],[22.2740166,36.9897758],[22.2742094,36.9901932],[22.2741874,36.9911663],[22.274436,36.9916026],[22.2756388,36.9925754],[22.276229,36.9931699],[22.2763044,36.9933107],[22.2768255,36.9936247],[22.2769819,36.993663],[22.2781279,36.9936706],[22.2788617,36.9935191],[22.2813198,36.9936358],[22.2814896,36.9935842],[22.2819919,36.9932309],[22.2826777,36.9932138],[22.2830641,36.9930211],[22.2833632,36.99271],[22.2836557,36.9926962],[22.2841311,36.9925408],[22.2848631,36.9924703],[22.2853604,36.9923423],[22.2855958,36.9923637],[22.286268,36.991454],[22.2864264,36.9914022],[22.2868296,36.9914621],[22.2870001,36.9913745],[22.2870629,36.9910779],[22.2869888,36.9908786],[22.2870375,36.990708],[22.2872217,36.9905124],[22.2874486,36.9904165],[22.2878878,36.9903688],[22.2881771,36.9904991],[22.2883794,36.990493],[22.2885389,36.9903962],[22.2886904,36.990155],[22.2894123,36.9900302],[22.2897224,36.9897282],[22.2899601,36.9896506],[22.2902291,36.9896815],[22.290694,36.9899946],[22.2914444,36.9901046],[22.2922226,36.9899716],[22.2932125,36.9899227],[22.2938586,36.9896706],[22.2950478,36.9897508],[22.2952594,36.9898349],[22.2954056,36.989828],[22.2955143,36.9899918],[22.2960523,36.9900536],[22.2962449,36.9899843],[22.2964904,36.9900599],[22.2968845,36.9905253],[22.2971533,36.9905652],[22.2973747,36.9907126],[22.2977237,36.9906815],[22.2982936,36.9908249],[22.2984875,36.9906947],[22.2988625,36.990601],[22.2994811,36.9905738],[22.3001295,36.9902135],[22.3006697,36.9901762],[22.3008711,36.9902151],[22.3010261,36.9903165],[22.3012287,36.9908061],[22.3016197,36.9909108],[22.3024964,36.9908963],[22.3028823,36.9907216],[22.3032542,36.9906728],[22.3047065,36.9910541],[22.3054719,36.9909929],[22.3058566,36.9908722],[22.3063157,36.9909419],[22.3065312,36.9908548],[22.3065965,36.9909459],[22.3075365,36.9911215],[22.3084524,36.991369],[22.3092742,36.9918043],[22.3099293,36.9926699],[22.3104898,36.9932367],[22.3105895,36.9933012],[22.3111656,36.9932125],[22.3115085,36.992947],[22.3119831,36.9928276],[22.3127367,36.9927932],[22.3133128,36.9926572],[22.3139941,36.9923334],[22.3155341,36.9917964],[22.3160572,36.9915154],[22.3164965,36.9914676],[22.316949,36.9913298],[22.3179851,36.9904071],[22.3180888,36.9902914],[22.3193148,36.9897229],[22.3220127,36.9891571],[22.3229771,36.9892429],[22.3236569,36.9894958],[22.3245397,36.9897156],[22.3266755,36.9907012],[22.3285174,36.9912499],[22.3294011,36.9914336],[22.3305898,36.9915404],[22.3330534,36.9914128],[22.334436,36.9919009],[22.3352438,36.9919573],[22.3358415,36.9918576],[22.3359505,36.9914986],[22.3358007,36.9911539],[22.3361691,36.9907445],[22.3374749,36.9906366],[22.338059,36.9906448],[22.3388323,36.9907367],[22.3396527,36.9907302],[22.3413553,36.9904566],[22.3420402,36.9901709],[22.3425024,36.9901053],[22.3433728,36.9898651],[22.345654,36.9888153],[22.346725,36.9886499],[22.3479482,36.9881983],[22.3486907,36.9881545],[22.3498351,36.9882335],[22.3504657,36.9876474],[22.3506513,36.9873796],[22.3510311,36.9873173],[22.3510015,36.9870803],[22.3510865,36.986784],[22.3510412,36.9862786],[22.351253,36.9858399],[22.3513207,36.9858228],[22.3515385,36.9851048],[22.3514402,36.9844545],[22.3513806,36.9844469],[22.3513605,36.9843384],[22.3511694,36.9843448],[22.3511394,36.9841731],[22.3509989,36.9828732],[22.3510883,36.981856],[22.3507299,36.9812831],[22.3504958,36.9811988],[22.3503554,36.9809354],[22.3505115,36.9804689],[22.3506835,36.9803091],[22.3509304,36.9797987],[22.3511028,36.9790981],[22.3511592,36.977855],[22.3510732,36.9776736],[22.3512424,36.9776398],[22.3512448,36.9775317],[22.3515701,36.9775543],[22.3515949,36.9774464],[22.3515198,36.9772832],[22.3516561,36.9772129],[22.3516137,36.9770952],[22.3517524,36.9769168],[22.3517803,36.9766649],[22.3519807,36.9767488],[22.3519172,36.9765676],[22.3520148,36.9756857],[22.352268,36.974887],[22.3529105,36.974265],[22.3532642,36.9740085],[22.3532097,36.9739356],[22.353301,36.9738648],[22.3533632,36.9735862],[22.3536031,36.9734003],[22.3537548,36.973141],[22.3540857,36.9729022],[22.3542588,36.9726883],[22.3542615,36.9725621],[22.3545605,36.9722418],[22.354496,36.9721057],[22.3545684,36.9718724],[22.3544466,36.9717896],[22.354328,36.9715626],[22.3543803,36.9712208],[22.3544953,36.9710962],[22.3542347,36.970678],[22.3542738,36.9704261],[22.3544128,36.9702298],[22.3540717,36.9699006],[22.3539238,36.9694659],[22.3539482,36.9693761],[22.3536402,36.9690743],[22.3536276,36.9686145],[22.3535513,36.9685053],[22.3535684,36.9682351],[22.3534743,36.9679093],[22.3535258,36.9676036],[22.3533946,36.9674395],[22.3533895,36.967151],[22.3534668,36.9668907],[22.3537667,36.9665253],[22.3539707,36.966438],[22.3545099,36.9664365],[22.3551068,36.9663659],[22.354984,36.9663281],[22.3549748,36.9662379],[22.3550431,36.9661937],[22.3549312,36.9661742],[22.3549448,36.9660662],[22.3547105,36.9659908],[22.35478,36.9658926],[22.3546019,36.9658181],[22.3548288,36.9657131],[22.3546627,36.9656026],[22.3546644,36.9655215],[22.3544863,36.9654469],[22.3544433,36.9653562],[22.3545111,36.9653391],[22.3544486,36.9651129],[22.3545824,36.9651598],[22.3546176,36.9650882],[22.3547409,36.9650989],[22.354776,36.9650363],[22.354865,36.9650736],[22.3550075,36.964715],[22.3550832,36.9648513],[22.3551506,36.9648522],[22.3551884,36.9646635],[22.3549777,36.9644352],[22.3551147,36.9644326],[22.3552516,36.9643354],[22.3553178,36.9643904],[22.3555209,36.9643481],[22.3557435,36.9644413],[22.3560523,36.964707],[22.3564891,36.9647671],[22.3568606,36.9647272],[22.3570325,36.9645673],[22.3570018,36.9644317],[22.357668,36.9642697],[22.3577775,36.9638746],[22.3580889,36.9634981],[22.3585732,36.9629121],[22.3583891,36.9625941],[22.3577711,36.9620808],[22.3579032,36.9620105],[22.3580267,36.9620123],[22.358012,36.9616515],[22.3580701,36.9615622],[22.3583547,36.9613859],[22.3585802,36.9613439],[22.3586318,36.961295],[22.3586736,36.9609171],[22.3586229,36.960664],[22.3585124,36.9605813],[22.3587408,36.9598814],[22.3586883,36.9597095],[22.3587576,36.9590975],[22.3590356,36.9587048],[22.3595836,36.9582887],[22.359572,36.9588293],[22.3596375,36.9589204],[22.3599166,36.9589964],[22.3600779,36.9588093],[22.3600355,36.9586915],[22.3601611,36.9585941],[22.3602281,36.9586131],[22.3604457,36.9584178],[22.3606131,36.9579424],[22.3609093,36.9577482],[22.3610634,36.9573717],[22.361093,36.9570387],[22.3609947,36.9569111],[22.3609362,36.9564957],[22.3610786,36.9561371],[22.3610608,36.9559205],[22.3612079,36.9558685],[22.3614993,36.9558996],[22.3616805,36.95583],[22.362014,36.955465],[22.3621725,36.9554041],[22.3624584,36.9551647],[22.363003,36.9549108],[22.363074,36.9547405],[22.3631406,36.9547775],[22.3632219,36.9546524],[22.3632368,36.9544814],[22.3633159,36.9544554],[22.3633113,36.9541489],[22.3634336,36.9542047],[22.3634801,36.9541332],[22.3635693,36.9541615],[22.363662,36.9540276],[22.3637627,36.954047],[22.3637658,36.9539028],[22.3635757,36.9538641],[22.3636434,36.953847],[22.3636219,36.9538017],[22.3637228,36.9538121],[22.363679,36.9537574],[22.3637483,36.9536682],[22.3636825,36.9535952],[22.3637388,36.953587],[22.3639142,36.9532649],[22.3640969,36.9531232],[22.3641753,36.9531333],[22.3645415,36.9528138],[22.3645969,36.9528507],[22.3649691,36.9527747],[22.3651168,36.9526956],[22.365142,36.9525697],[22.3657912,36.952146],[22.3658186,36.9519121],[22.3659804,36.951698],[22.3660905,36.9512758],[22.3660619,36.9510411],[22.3664354,36.950902],[22.3666425,36.9506705],[22.3667608,36.9503927],[22.3669415,36.9503411],[22.3671245,36.9501904],[22.3677475,36.9503995]]},{"id":17947,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u03ba\u03b1\u03c4. \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5-\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","description_GR":"\u039a\u03bf\u03b9\u03bd\u03cc \u03c4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03c9\u03bd E4 \u03ba\u03b1\u03b9 \u039f32 \u03c3\u03c4\u03bf\u03bd \u03a4\u03b1\u03cd\u03b3\u03b5\u03c4\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_E4_O32_Varvara_AgDimitrios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5185,"name_EN":"Taygetos Mt: E4 Taygetos EOS ref.-Agios Dimitrios","description_EN":"Common section of O32 and E4 along Taygetos","ascent_time":120,"descent_time":120,"marker":"E4","level":10,"ascent":368,"descent":424,"maxelev":1567,"minelev":1220,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.35863 36.91995,22.37111 36.95028)","views":25,"millestones":"0,22.3677443,36.9504018#1,22.3656285,36.9452578#2,22.3614478,36.9397664#3,22.3619837,36.9354846#4,22.3623756,36.9268544#5.2,22.3592838,36.9198557","x":22.3630408,"y":36.9379255,"coor":[[22.3677443,36.9504018],[22.3678171,36.9503599],[22.367845,36.9501079],[22.3681918,36.949644],[22.3684955,36.9496211],[22.3688288,36.949788],[22.3689748,36.94979],[22.3692583,36.9496587],[22.3698226,36.9495312],[22.3702909,36.9492605],[22.370197,36.9489888],[22.3702899,36.9488458],[22.3703171,36.9486209],[22.3704307,36.9485594],[22.3705065,36.9483621],[22.3698263,36.9481364],[22.3697624,36.9479733],[22.3693791,36.9475174],[22.3691142,36.9472974],[22.3686258,36.9470293],[22.3682538,36.9465735],[22.367609,36.9462672],[22.3672894,36.9459834],[22.3669537,36.9459247],[22.3667278,36.9459847],[22.3665935,36.9459648],[22.3663748,36.9456914],[22.3660953,36.9456335],[22.3658959,36.9455046],[22.365246,36.9449097],[22.3649077,36.9446662],[22.3646862,36.944519],[22.3646231,36.9443198],[22.3643231,36.9441715],[22.3636147,36.9442158],[22.3632849,36.9444095],[22.3626129,36.9443281],[22.3624866,36.943407],[22.3620277,36.9428148],[22.3620518,36.942734],[22.3619552,36.9425254],[22.3620032,36.9423818],[22.361872,36.9422178],[22.3619314,36.9420654],[22.3616732,36.9420618],[22.36057,36.941668],[22.3605405,36.9414693],[22.3604098,36.9413954],[22.3607386,36.9407239],[22.3609103,36.9405731],[22.3613158,36.9405156],[22.361464,36.9404095],[22.3615619,36.9400323],[22.3614229,36.9397059],[22.3614727,36.9394812],[22.361552,36.9394463],[22.361731,36.9394758],[22.3619494,36.9397672],[22.3621273,36.9398508],[22.3623044,36.9399028],[22.3625446,36.9396988],[22.3628389,36.9395857],[22.3630124,36.9398765],[22.363166,36.9395181],[22.3634315,36.9391792],[22.363773,36.9390803],[22.3636992,36.9388539],[22.3634864,36.9387789],[22.3630912,36.9381921],[22.3630408,36.9379255],[22.3627762,36.9376965],[22.3624967,36.9376386],[22.3622534,36.937464],[22.3620415,36.9373979],[22.3617489,36.93743],[22.3614814,36.9373361],[22.361134,36.9373043],[22.3605443,36.9370528],[22.3603465,36.9368518],[22.3603949,36.9366902],[22.3606207,36.9366302],[22.3611212,36.9363307],[22.36154,36.9361742],[22.3616433,36.9360675],[22.3617279,36.9357892],[22.362131,36.9353171],[22.3621023,36.9345595],[22.3623882,36.9337883],[22.3622384,36.9334437],[22.3619107,36.9330156],[22.3617288,36.9325985],[22.3618043,36.9322209],[22.361752,36.9320399],[22.3618907,36.9318526],[22.3621722,36.9307658],[22.3621803,36.9298646],[22.3625071,36.9292832],[22.3625632,36.9287612],[22.3626682,36.928623],[22.3626109,36.9281535],[22.3624681,36.9280073],[22.362401,36.9269428],[22.362307,36.926617],[22.3623791,36.9263926],[22.3622804,36.9262831],[22.3624168,36.9262039],[22.3625101,36.9260429],[22.3626916,36.9259553],[22.3626929,36.9258922],[22.3619193,36.9253227],[22.3616069,36.9252283],[22.3614821,36.9252896],[22.3612961,36.9250617],[22.3613652,36.9244588],[22.3615266,36.9242627],[22.3615538,36.9240378],[22.3613707,36.9236747],[22.3613539,36.9234131],[22.361599,36.9229748],[22.3615802,36.9228033],[22.3616596,36.9227683],[22.3617819,36.9228241],[22.361731,36.92258],[22.3618229,36.9224821],[22.3617841,36.9221932],[22.3616626,36.9221014],[22.3615003,36.9218197],[22.3615281,36.9215677],[22.361418,36.921467],[22.3615111,36.9213151],[22.3615143,36.9211619],[22.3613143,36.921069],[22.3610168,36.9208035],[22.3609262,36.9203156],[22.3606863,36.9199878],[22.3600168,36.9197982],[22.3595091,36.9199174],[22.359363,36.9199244],[22.3592838,36.9198557]]},{"id":17948,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2-\u0386\u03c1\u03bd\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 E4 \u03c3\u03c4\u03bf\u03bd \u03a4\u03b1\u03cd\u03b3\u03b5\u03c4\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_E4_AgDimitrios_Arna","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":11236,"name_EN":"Taygetos Mt: E4 Agios Dimitrios-Arna","description_EN":"E4 session along Taygetos","ascent_time":355,"descent_time":355,"marker":"E4","level":10,"ascent":294,"descent":1029,"maxelev":1493,"minelev":747,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.35167 36.87791,22.41401 36.91975)","views":13,"millestones":"0,22.3592838,36.9198557#1,22.3565216,36.9129653#2,22.3520973,36.9069421#3,22.3561397,36.9017510#4,22.3647555,36.9025222#5,22.3719265,36.8993799#6,22.3796512,36.9024584#7,22.3867871,36.9004609#8,22.3933645,36.8944373#9,22.4009515,36.8887456#10,22.4089517,36.8839937#11.2,22.4140075,36.8779063","x":22.3747165,"y":36.899312,"coor":[[22.3592838,36.9198557],[22.3591332,36.9197635],[22.3588251,36.918948],[22.3582841,36.9185259],[22.3580838,36.918442],[22.3576247,36.9183906],[22.3571642,36.9184023],[22.3569153,36.918489],[22.3567826,36.9178742],[22.3568445,36.9176047],[22.356913,36.9175515],[22.3568832,36.9173709],[22.357179,36.9171857],[22.3573023,36.9171964],[22.3572282,36.9169881],[22.3572978,36.9168809],[22.3573164,36.9165386],[22.3571976,36.9164671],[22.3570349,36.9162035],[22.3569056,36.9153769],[22.3569358,36.9150168],[22.3568528,36.9147002],[22.3565688,36.9143357],[22.3564627,36.9140458],[22.3565647,36.9140022],[22.356555,36.9139299],[22.356391,36.9137294],[22.356353,36.9134044],[22.3564581,36.9132165],[22.3563946,36.9130354],[22.3564832,36.9130907],[22.3565419,36.9129743],[22.3563306,36.9128813],[22.356401,36.912738],[22.3558651,36.9126044],[22.3557519,36.9126479],[22.3549697,36.9124839],[22.355155,36.912216],[22.3550664,36.9121607],[22.3550134,36.9120158],[22.3550755,36.9117372],[22.3542323,36.9117526],[22.35401,36.9116503],[22.3541987,36.911324],[22.3547466,36.9108989],[22.3548902,36.9104863],[22.3548826,36.9103149],[22.35476,36.9097544],[22.3545441,36.9093548],[22.3542698,36.9090626],[22.3538261,36.9088131],[22.3537648,36.90865],[22.3533802,36.9082661],[22.3527597,36.9078879],[22.3523206,36.9074311],[22.352115,36.9070768],[22.3519804,36.9060293],[22.3519767,36.9056778],[22.3522163,36.9044552],[22.3524747,36.903918],[22.3528655,36.9034908],[22.3532507,36.9033249],[22.3536832,36.9035652],[22.3539637,36.9035691],[22.3540442,36.9034801],[22.3537105,36.9033403],[22.353461,36.9029402],[22.353355,36.9021275],[22.3531596,36.9019648],[22.3538931,36.902153],[22.3541315,36.9020301],[22.3550523,36.9020068],[22.3558187,36.9018552],[22.3565532,36.901622],[22.35724,36.9015233],[22.3574964,36.9015359],[22.357691,36.9018811],[22.3578576,36.9019645],[22.3589651,36.9021331],[22.3594448,36.9022659],[22.3597834,36.9021804],[22.360243,36.9022048],[22.3605766,36.9024167],[22.3610366,36.902423],[22.3613484,36.9025355],[22.3617558,36.9023789],[22.362104,36.9023657],[22.3624317,36.902262],[22.3629372,36.9022419],[22.3630689,36.902379],[22.3631692,36.9024164],[22.3632599,36.9023726],[22.3639383,36.9026613],[22.3643347,36.9024955],[22.3641281,36.902709],[22.3638949,36.9031204],[22.3639498,36.9031753],[22.3640626,36.9031498],[22.3643688,36.9030008],[22.3648643,36.9023947],[22.3650844,36.9015504],[22.3653068,36.9011208],[22.365854,36.9007228],[22.3660737,36.9004193],[22.3663087,36.9004496],[22.3666697,36.9003644],[22.366935,36.9000256],[22.3673443,36.8997788],[22.3674062,36.8995093],[22.3675332,36.8993397],[22.3676462,36.8993052],[22.3681043,36.8994017],[22.3684097,36.8992887],[22.3688978,36.8995568],[22.3691358,36.8999747],[22.3697204,36.8999286],[22.3703247,36.900009],[22.370691,36.9002033],[22.3712152,36.9003547],[22.371292,36.9004369],[22.3715872,36.9002787],[22.3716565,36.8996577],[22.3719663,36.8993375],[22.3722936,36.8992518],[22.3725002,36.8990383],[22.3727029,36.8990051],[22.3727942,36.8989342],[22.3734344,36.8989069],[22.3736583,36.898937],[22.3739467,36.8990942],[22.374026,36.8990592],[22.3744725,36.8991735],[22.3747165,36.899312],[22.3748359,36.899503],[22.3753601,36.8996544],[22.3757258,36.8998757],[22.3765019,36.8997962],[22.3768379,36.8998278],[22.3775613,36.8995853],[22.3778399,36.8996792],[22.3782029,36.9000267],[22.3781146,36.9004852],[22.3779978,36.9006999],[22.3781842,36.9014416],[22.378327,36.9015877],[22.3784388,36.9016073],[22.3786535,36.9015381],[22.3787533,36.9015936],[22.378968,36.9020562],[22.3791797,36.9021312],[22.3795431,36.9024606],[22.379644,36.902462],[22.3800297,36.902269],[22.3804903,36.9022482],[22.3811574,36.9020139],[22.3813579,36.9020888],[22.3815195,36.9024064],[22.3818453,36.9023928],[22.3821669,36.9025775],[22.3824137,36.9025809],[22.3825999,36.9027997],[22.3826301,36.9029624],[22.3825616,36.9030155],[22.3827417,36.9029909],[22.3834125,36.9031172],[22.3839997,36.902945],[22.3845465,36.9030966],[22.3849953,36.9031027],[22.3850417,36.9030312],[22.3851539,36.9030328],[22.3851332,36.9029514],[22.384791,36.9026763],[22.384574,36.9023218],[22.3847203,36.901774],[22.3851295,36.9015272],[22.3853822,36.9012512],[22.3858447,36.9011403],[22.3861246,36.9006393],[22.3864534,36.9004816],[22.3867792,36.900468],[22.3869279,36.9003348],[22.38693,36.9002357],[22.3870916,36.9000215],[22.3874193,36.8999178],[22.3874769,36.8998465],[22.3874871,36.8993599],[22.387605,36.8990911],[22.38798,36.8988708],[22.3880735,36.8986918],[22.3880923,36.8983316],[22.3887573,36.8981964],[22.3888965,36.8979819],[22.3894468,36.8979623],[22.3897083,36.8978036],[22.3897697,36.8975521],[22.3901063,36.8975567],[22.3903544,36.8974969],[22.3906606,36.8973478],[22.3907999,36.8971244],[22.3911472,36.8971561],[22.3914738,36.8970975],[22.3917134,36.8969114],[22.3920931,36.8964659],[22.3923849,36.895929],[22.39282,36.8955203],[22.3931091,36.8951096],[22.3934414,36.8942488],[22.3939473,36.8936697],[22.3944636,36.8925951],[22.3948301,36.8922395],[22.3949292,36.8918961],[22.3957647,36.891655],[22.3963712,36.8916271],[22.3972572,36.8911163],[22.3982583,36.8910036],[22.3989586,36.8907877],[22.3997205,36.8903022],[22.3999915,36.8900039],[22.4001175,36.8897802],[22.4007122,36.8892474],[22.4010993,36.8884414],[22.4014794,36.8879688],[22.4017962,36.8878469],[22.4020469,36.887661],[22.4023054,36.8871056],[22.4026322,36.8870379],[22.4029273,36.8868751],[22.4037268,36.8862008],[22.4040043,36.8860288],[22.4044112,36.8853492],[22.405338,36.8850282],[22.4057968,36.8850884],[22.4064605,36.8850072],[22.4069023,36.8850086],[22.4073027,36.8851762],[22.407517,36.885125],[22.4076034,36.8847476],[22.4080844,36.8842763],[22.4083892,36.8841903],[22.4087025,36.8842305],[22.4089188,36.8840802],[22.4090138,36.8838291],[22.409367,36.8835724],[22.4094253,36.883465],[22.4093883,36.883086],[22.4095614,36.8828539],[22.4103859,36.8825945],[22.4110038,36.8825577],[22.4112122,36.8822451],[22.4120191,36.8817511],[22.4121631,36.8813023],[22.412262,36.8812496],[22.413132,36.8809547],[22.413648,36.8809616],[22.4137168,36.8808904],[22.4136979,36.8807189],[22.4133932,36.8802642],[22.413396,36.880129],[22.4137997,36.8790528],[22.4138319,36.8788008],[22.4133824,36.8792094],[22.4133736,36.8790921],[22.4136037,36.8784417],[22.4140075,36.8779063]]},{"id":17949,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u039a\u03bf\u03c3\u03ba\u03ac\u03c1\u03b1\u03b3\u03b1\u03c2","description_GR":"\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1-\u03a3\u03ac\u03bd\u03c4\u03b1\u03b2\u03b1","path":"PELOPONNESE\/Pelop_Taygetos_Pigadia_Sandava","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":15993,"name_EN":"Taygetos Mt: Koskaraga gorge","description_EN":"Pigadia-Sandava","ascent_time":465,"descent_time":495,"marker":"No_marks","level":10,"ascent":234,"descent":1150,"maxelev":930,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.14121 36.9523,22.26258 36.9944)","views":50,"millestones":"0,22.2588413,36.9961834#1,22.2607394,36.9897194#2,22.2591609,36.9818897#3,22.2570594,36.9731962#4,22.2545977,36.9648160#5,22.2455946,36.9621396#6,22.2361120,36.9596912#7,22.2277099,36.9578812#8,22.2184466,36.9580255#9,22.2093321,36.9564362#10,22.1989740,36.9552431#11,22.1883998,36.9546950#12,22.1788938,36.9532793#13,22.1688398,36.9519158#14,22.1593576,36.9524915#15,22.1494926,36.9524186#16.0,22.1424919,36.9504848","x":22.2187951,"y":36.9580265,"coor":[[22.2588413,36.9961834],[22.2576508,36.9944331],[22.2576996,36.9941702],[22.2583073,36.9936383],[22.2592418,36.9925704],[22.2599777,36.9923288],[22.2597798,36.9921367],[22.2588274,36.9922669],[22.2592343,36.9918538],[22.2593744,36.9916215],[22.2605096,36.9906196],[22.2605915,36.9904766],[22.2606839,36.9898741],[22.2608281,36.9894616],[22.2612368,36.9887826],[22.2613974,36.9886407],[22.2614093,36.9881181],[22.2615988,36.9876882],[22.2617832,36.9874836],[22.2615425,36.9872007],[22.2616923,36.9860492],[22.2612817,36.9848354],[22.2615154,36.9844422],[22.2610312,36.9843495],[22.2607425,36.9842011],[22.2603975,36.9835651],[22.2595597,36.9828588],[22.2592143,36.9822408],[22.2590394,36.9810395],[22.258377,36.9795426],[22.2583607,36.979272],[22.2584841,36.9787871],[22.2583557,36.9785058],[22.2584078,36.9781911],[22.2579961,36.9770313],[22.2577052,36.9764863],[22.2576117,36.9751689],[22.2576679,36.974674],[22.2573521,36.973741],[22.2570909,36.9733767],[22.2568913,36.9722741],[22.2565478,36.9715751],[22.2560381,36.9707744],[22.2558904,36.9703576],[22.2558898,36.9698889],[22.2560672,36.9690082],[22.2560293,36.9687012],[22.2558454,36.9683921],[22.2550782,36.9675516],[22.2549923,36.9673791],[22.255043,36.9671274],[22.2553095,36.9667708],[22.2553249,36.966095],[22.2552404,36.9658595],[22.2547196,36.9650586],[22.2544298,36.9644685],[22.2541095,36.9642295],[22.2537061,36.9641875],[22.2529358,36.9644736],[22.2525552,36.9644139],[22.2520152,36.964451],[22.2515449,36.96439],[22.2507443,36.9640808],[22.2500459,36.9641696],[22.2489632,36.9633785],[22.2487187,36.9632667],[22.2480537,36.9633651],[22.2477177,36.9633241],[22.2474232,36.9629412],[22.2473242,36.9623629],[22.2470603,36.9621156],[22.246871,36.9620407],[22.2466689,36.9620377],[22.2461916,36.962283],[22.2460342,36.9622897],[22.2454546,36.9620919],[22.2445477,36.9619703],[22.243923,36.9617808],[22.2432564,36.9614645],[22.2429877,36.9614245],[22.2424243,36.9615063],[22.2411331,36.9614871],[22.2398707,36.9616757],[22.2396354,36.9616542],[22.2395029,36.9615531],[22.2393208,36.9611719],[22.2387024,36.960712],[22.2385847,36.9604579],[22.2381809,36.9599472],[22.2380347,36.959954],[22.2376022,36.9602],[22.2372648,36.960222],[22.2370868,36.9601472],[22.236757,36.9598359],[22.236368,36.9596589],[22.2354669,36.9597717],[22.2351259,36.9599469],[22.2348381,36.960249],[22.2346138,36.9602367],[22.2342327,36.9597173],[22.2340406,36.9592818],[22.2340497,36.9588853],[22.2339759,36.9586769],[22.233625,36.9583112],[22.2331582,36.9580969],[22.2329112,36.9580932],[22.2327172,36.9582255],[22.232412,36.9583111],[22.2321808,36.9585961],[22.2320103,36.9586837],[22.2315032,36.9587573],[22.230279,36.9587571],[22.2299721,36.9589147],[22.2297244,36.9589381],[22.2293884,36.958897],[22.2291005,36.9587215],[22.2286104,36.9585429],[22.2281343,36.9582474],[22.2277048,36.9578804],[22.2270591,36.9576364],[22.2267892,36.9576504],[22.2263237,36.9578688],[22.2259195,36.9578628],[22.2253371,36.957791],[22.2250428,36.957408],[22.2248209,36.9572875],[22.224528,36.9573282],[22.2242772,36.9574867],[22.2235878,36.9576747],[22.2233414,36.957644],[22.2228094,36.9573386],[22.2226185,36.9573357],[22.222347,36.9574218],[22.2219535,36.9579206],[22.2213449,36.9580106],[22.2210505,36.9581144],[22.2201345,36.9588668],[22.2198983,36.9588813],[22.2195534,36.9587409],[22.218973,36.9581013],[22.2187951,36.9580265],[22.2184921,36.9580129],[22.2177349,36.9582179],[22.2167837,36.9580684],[22.216557,36.9581551],[22.215881,36.9587308],[22.2151809,36.9588916],[22.2144751,36.9592956],[22.2141146,36.9593442],[22.2138824,36.9591875],[22.2136902,36.958761],[22.2133787,36.9586301],[22.2131917,36.9584651],[22.2128902,36.9583884],[22.2126915,36.9582412],[22.2122081,36.958261],[22.2115431,36.9578814],[22.2111857,36.9577949],[22.2108315,36.9575733],[22.2103862,36.9574043],[22.210132,36.9572292],[22.2097276,36.9567544],[22.2091763,36.9563135],[22.2089281,36.9563638],[22.208583,36.9562324],[22.208305,36.9562643],[22.2077384,36.9563278],[22.2072259,36.9561962],[22.2066491,36.95589],[22.206149,36.9561438],[22.2056213,36.9561359],[22.2052078,36.9560485],[22.2046073,36.9557961],[22.2039587,36.9552004],[22.2036121,36.9551321],[22.2026528,36.9553339],[22.2015296,36.9553349],[22.2003549,36.9551458],[22.200074,36.9551506],[22.1994192,36.9552939],[22.198792,36.9552213],[22.1979157,36.955235],[22.1974689,36.9551291],[22.1968724,36.9551831],[22.1944435,36.9548397],[22.1938991,36.9550658],[22.1934258,36.9551307],[22.1925658,36.955406],[22.1920364,36.9554701],[22.1918583,36.9554043],[22.1907539,36.9546123],[22.1903966,36.9545258],[22.1890431,36.9547259],[22.1884591,36.954726],[22.1880487,36.9545125],[22.18759,36.9539647],[22.1873788,36.9538713],[22.186784,36.9538532],[22.1865122,36.9539482],[22.1861294,36.9539874],[22.1858956,36.9539028],[22.1854981,36.9536173],[22.1844282,36.9532674],[22.1837936,36.9525637],[22.1835278,36.9524064],[22.1826441,36.9522577],[22.1822163,36.9523052],[22.1818646,36.9524531],[22.1810527,36.9530625],[22.1803729,36.9533135],[22.1793935,36.9534157],[22.1789912,36.9533284],[22.1784696,36.953068],[22.1781833,36.9528293],[22.1775933,36.9526129],[22.177313,36.9525906],[22.1770648,36.9526408],[22.1767194,36.9529961],[22.1762751,36.9532596],[22.1752423,36.9532438],[22.1746974,36.9534878],[22.1742805,36.9535444],[22.1739124,36.9534396],[22.1733274,36.9534847],[22.1729465,36.9534428],[22.1721378,36.9529797],[22.1707675,36.9525169],[22.1697399,36.9522848],[22.1691187,36.9519597],[22.1687943,36.9519097],[22.1682291,36.9520632],[22.1674817,36.9527907],[22.1668703,36.9529976],[22.1666056,36.9532639],[22.1662519,36.9534928],[22.1655518,36.9536532],[22.1647547,36.9536409],[22.163845,36.9531762],[22.1636993,36.9531649],[22.1632224,36.9533829],[22.1627886,36.9536736],[22.1625965,36.9537247],[22.162384,36.9536854],[22.1619624,36.9534715],[22.1605041,36.9534039],[22.1600546,36.9529463],[22.1591368,36.9523552],[22.1588902,36.9523333],[22.1581022,36.9524113],[22.1577456,36.9522976],[22.157204,36.9519376],[22.1566928,36.9517134],[22.1563577,36.9516361],[22.1554588,36.9516582],[22.1536455,36.9522519],[22.1532415,36.9522411],[22.152783,36.9521619],[22.1522215,36.9516935],[22.1511857,36.9513393],[22.1509336,36.9513602],[22.1504216,36.9516767],[22.14996,36.9521472],[22.1494815,36.9524282],[22.1492449,36.9524605],[22.1488759,36.9523917],[22.1482488,36.9521295],[22.1476444,36.952048],[22.1471048,36.951607],[22.1464706,36.9513627],[22.1456539,36.9512328],[22.1446505,36.9513974],[22.144359,36.9513748],[22.1439291,36.9510436],[22.1435408,36.9508482],[22.1433942,36.950873],[22.1433121,36.9510159],[22.1432529,36.9515152],[22.1427953,36.9513999],[22.1423192,36.9511221],[22.1422685,36.9508959],[22.1424919,36.9504848]]},{"id":17952,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03ac\u03bd\u03c9 \u0392\u03ad\u03c1\u03b3\u03b1-\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u039a\u03b1\u03bb\u03b1\u03b8\u03af\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5\u03c2","path":"PELOPONNESE\/Pelop_Taygetos_PanoVerga_Pigadia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10252,"name_EN":"Taygetos Mt: Pan Verga-Pigadia","description_EN":"Crossing the Kalathion Mt.","ascent_time":275,"descent_time":265,"marker":"Red_dots","level":12,"ascent":511,"descent":455,"maxelev":1313,"minelev":860,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.181 36.99416,22.25888 37.00884)","views":20,"millestones":"0,22.1819742,36.9970496#1,22.1854281,37.0039843#2,22.1934434,37.0069850#3,22.1981121,37.0070410#4,22.2067311,37.0040130#5,22.2159473,36.9998075#6,22.2240076,36.9987094#7,22.2337675,36.9987624#8,22.2425689,36.9990992#9,22.2493058,36.9964828#10.3,22.2588327,36.9961742","x":22.2247887,"y":36.9984279,"coor":[[22.1819742,36.9970496],[22.1821972,36.9971251],[22.1823705,36.9978669],[22.1820736,36.9985383],[22.1815898,36.9990356],[22.1815329,36.9995395],[22.1811962,37.0004627],[22.1817145,37.0018226],[22.1822457,37.0021642],[22.1831263,37.0024661],[22.1833344,37.0026946],[22.1834465,37.0027054],[22.1837879,37.002999],[22.1838899,37.0029645],[22.1845528,37.0034434],[22.1850888,37.0035868],[22.1854166,37.0039793],[22.1859062,37.0041851],[22.1864107,37.0047066],[22.18684,37.0055604],[22.186951,37.0056161],[22.1871455,37.0059436],[22.1872991,37.0056305],[22.1874486,37.0059572],[22.1875915,37.0060946],[22.1877163,37.0060424],[22.1880201,37.006029],[22.1886553,37.0062551],[22.1896858,37.006397],[22.1901089,37.0065657],[22.1900034,37.0062756],[22.1900708,37.0062767],[22.1914018,37.007018],[22.1914589,37.0069828],[22.1914046,37.0069009],[22.1914835,37.0068931],[22.1922764,37.0071034],[22.1925022,37.0070618],[22.1930957,37.007152],[22.1936867,37.0068725],[22.1942488,37.0068631],[22.1945661,37.0067507],[22.1944908,37.0061367],[22.1946591,37.0061483],[22.1949132,37.0063324],[22.1953926,37.0064929],[22.1956855,37.006939],[22.1956711,37.007074],[22.1950655,37.0074974],[22.1946236,37.0081216],[22.1947961,37.0084307],[22.1946083,37.0087703],[22.194759,37.009052],[22.195648,37.0090024],[22.1963145,37.0088594],[22.1972159,37.0078095],[22.198145,37.0070124],[22.1986582,37.0066958],[22.2002158,37.0059352],[22.2006417,37.0050314],[22.2009272,37.0048374],[22.2013085,37.0048702],[22.2023101,37.005291],[22.2028133,37.0053978],[22.2033188,37.0054054],[22.2038627,37.0052154],[22.2042163,37.0049954],[22.2046646,37.0045695],[22.2049923,37.0040157],[22.2057899,37.0035501],[22.20638,37.0037843],[22.2070663,37.0042273],[22.207469,37.0043055],[22.2080136,37.0040884],[22.208301,37.0038133],[22.2107436,37.0031652],[22.2116624,37.0028005],[22.212937,37.0021167],[22.2137369,37.0015519],[22.2146136,37.0005826],[22.2165274,36.9994757],[22.2173278,36.9988839],[22.2178897,36.9979189],[22.2179478,36.9978386],[22.2184441,36.997756],[22.218871,36.9977624],[22.219226,36.9974793],[22.2195047,36.9975736],[22.2197976,36.9975419],[22.2203007,36.9971709],[22.2208316,36.9970527],[22.2212394,36.9973923],[22.2213099,36.9977449],[22.2212037,36.9979596],[22.2216773,36.9983723],[22.2228181,36.9986057],[22.2232811,36.9985045],[22.2233229,36.9986403],[22.2236015,36.9987436],[22.22375,36.9986377],[22.2238956,36.9986579],[22.223916,36.9987483],[22.2241656,36.9986439],[22.224367,36.998683],[22.2246631,36.9985161],[22.2246762,36.9984352],[22.2247887,36.9984279],[22.2256316,36.9989092],[22.2261462,36.999007],[22.2264851,36.9989309],[22.2268427,36.9990174],[22.2274082,36.9993413],[22.2280993,36.999586],[22.2284142,36.9995727],[22.2286023,36.9997017],[22.2288515,36.9996152],[22.2294115,36.9996957],[22.2296277,36.9995818],[22.2304469,36.99963],[22.2308557,36.9994468],[22.2313959,36.9994098],[22.2312788,36.9996154],[22.2315521,36.9994572],[22.2321213,36.9991412],[22.232937,36.9988559],[22.2337146,36.9987594],[22.2346462,36.9988093],[22.2351756,36.9987541],[22.2365198,36.999423],[22.2370484,36.9994038],[22.2373045,36.9995068],[22.2377383,37.0001892],[22.2378756,37.0000831],[22.2379602,36.9998229],[22.2383834,36.9995048],[22.2384782,36.9992898],[22.2387291,36.9991313],[22.2392908,36.9991397],[22.2395554,36.9988732],[22.2399126,36.9989776],[22.240094,36.9989082],[22.2403294,36.9989297],[22.2407072,36.9991156],[22.2409461,36.9994797],[22.2411133,36.9995362],[22.241162,36.9993747],[22.241531,36.9994523],[22.2417584,36.9993385],[22.2420625,36.9993069],[22.2420981,36.9992264],[22.2424617,36.9990515],[22.2428732,36.9992378],[22.243122,36.9991694],[22.243351,36.9989835],[22.2434727,36.9990664],[22.2437086,36.9990699],[22.2440889,36.998661],[22.2445638,36.9985328],[22.244523,36.9983519],[22.2446041,36.998245],[22.2448843,36.9982761],[22.245067,36.9981527],[22.2453145,36.9981383],[22.2454133,36.9982389],[22.2457312,36.9980994],[22.2466419,36.9980768],[22.2466904,36.9979243],[22.2465913,36.9978327],[22.2465426,36.9975075],[22.2466005,36.9974362],[22.2468026,36.9974392],[22.2468049,36.9973401],[22.2466067,36.9971659],[22.2467169,36.996771],[22.2465134,36.9968221],[22.2465161,36.9967049],[22.2466467,36.9964004],[22.2465955,36.9961833],[22.2468035,36.995934],[22.2469683,36.9960987],[22.2473028,36.9962118],[22.2475166,36.9961969],[22.248553,36.9965728],[22.2491184,36.9964189],[22.2493637,36.9965036],[22.2496116,36.9964712],[22.249897,36.9962771],[22.2502578,36.9957326],[22.2515042,36.9952823],[22.2520342,36.9952],[22.2521956,36.9950221],[22.2524795,36.9948911],[22.2526811,36.9949211],[22.2527348,36.99503],[22.2531032,36.9951346],[22.2534633,36.9951129],[22.2543614,36.9946574],[22.254685,36.9942656],[22.254947,36.9941072],[22.255225,36.9942375],[22.2553336,36.9944013],[22.2555774,36.9945491],[22.2561341,36.9947736],[22.256431,36.9950574],[22.2570335,36.9952465],[22.2571611,36.9955638],[22.2575689,36.9959123],[22.2576316,36.9961205],[22.2578089,36.9962313],[22.2582353,36.9962556],[22.2582175,36.9965437],[22.258328,36.9966265],[22.2588327,36.9961742]]},{"id":17968,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039e\u03b7\u03c1\u03bf\u03ba\u03ac\u03bc\u03c0\u03b9-\u039a\u03bf\u03c5\u03bc\u03bf\u03c5\u03c3\u03c4\u03ac","description_GR":"\u0391\u03bd\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c4\u03bf\u03c5 \u0391\u03bd\u03ac\u03ba\u03c9\u03bb\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Taygetos_Xirokambi_Koumousta","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5999,"name_EN":"Taygetos Mt: Xirokambi-Koumousta","description_EN":"Anakolo Gorge","ascent_time":140,"descent_time":125,"marker":"Red_dots","level":10,"ascent":468,"descent":61,"maxelev":666,"minelev":254,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.40732 36.94686,22.45111 36.95825)","views":14,"millestones":"0,22.4508686,36.9588276#1,22.4429292,36.9548929#2,22.4371881,36.9500295#3,22.4287122,36.9511768#4,22.4187296,36.9486508#5,22.4117736,36.9465175#6.0,22.4075577,36.9470328","x":22.4255384,"y":36.9507788,"coor":[[22.4508686,36.9588276],[22.4500881,36.958547],[22.4502622,36.9582699],[22.4504974,36.9577502],[22.4493061,36.9572299],[22.4491611,36.9571829],[22.4478824,36.9565442],[22.446854,36.9563055],[22.4465479,36.9564457],[22.4464584,36.9564265],[22.4463588,36.9558032],[22.4458951,36.9554096],[22.445754,36.9551644],[22.4447295,36.9552862],[22.4442585,36.955253],[22.4439018,36.9551221],[22.4434184,36.9551428],[22.443162,36.9550493],[22.4425637,36.9546449],[22.441511,36.9544958],[22.4405009,36.9533649],[22.4401443,36.953225],[22.4398818,36.952879],[22.439295,36.9524657],[22.4390659,36.9521382],[22.4380014,36.9509164],[22.4381927,36.9509009],[22.4390134,36.9514074],[22.4391154,36.9513637],[22.4384548,36.9507151],[22.4376304,36.9503887],[22.4372886,36.9500778],[22.4368327,36.9498555],[22.4365699,36.9495275],[22.4357499,36.9495347],[22.4354608,36.9493957],[22.4350308,36.9490025],[22.4347525,36.9488816],[22.433958,36.948745],[22.433845,36.9487795],[22.4336942,36.9490119],[22.433228,36.9492942],[22.4331284,36.9497706],[22.432923,36.9499301],[22.4326988,36.9499091],[22.43239,36.9496346],[22.432221,36.9496595],[22.4314499,36.9505687],[22.4311701,36.9510697],[22.4305703,36.9512961],[22.4298648,36.9511967],[22.4291219,36.951277],[22.4283621,36.9510867],[22.4271619,36.9510167],[22.4261222,36.9507866],[22.4255384,36.9507788],[22.424094,36.9500206],[22.423215,36.9501711],[22.4225966,36.9496582],[22.4219905,36.9496411],[22.4212535,36.949442],[22.4209233,36.9491132],[22.4207173,36.9487589],[22.4198689,36.9485132],[22.4193975,36.948498],[22.4189675,36.9486545],[22.4187318,36.9486513],[22.4175259,36.9483108],[22.4169732,36.9478888],[22.4158117,36.9481167],[22.4155823,36.9478072],[22.4150404,36.9474033],[22.4149714,36.9474835],[22.4152985,36.9479566],[22.4147899,36.9475712],[22.4144301,36.9475935],[22.4136911,36.9474845],[22.4137115,36.9475839],[22.4139885,36.9477678],[22.413897,36.9478477],[22.41351,36.9475541],[22.4131831,36.9470721],[22.4128366,36.9469953],[22.4125924,36.9468569],[22.4122994,36.9463662],[22.4120303,36.9463446],[22.4121396,36.9464903],[22.4121044,36.9465619],[22.4117811,36.9464494],[22.4117575,36.9465032],[22.411945,36.9466679],[22.4118982,36.9467574],[22.4120893,36.9472918],[22.4120316,36.9473631],[22.4114574,36.9468958],[22.4109447,36.9467086],[22.4098261,36.9464954],[22.4092865,36.9465242],[22.4092846,36.9466143],[22.4102239,36.9468071],[22.4105901,36.9470194],[22.4108302,36.9473561],[22.4107184,36.9478683],[22.4101706,36.947212],[22.4099704,36.9471192],[22.4096789,36.9470973],[22.4089802,36.9472141],[22.408634,36.9471193],[22.4077467,36.9471255],[22.4075577,36.9470328]]},{"id":17985,"author":"AnaDigit","name_GR":"\u039c\u03ac\u03bd\u03b7-\u0391\u03b2\u03af\u03b1: \u0386\u03bd\u03c9 \u0392\u03ad\u03c1\u03b3\u03b1-\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u039a\u03b1\u03bb\u03b1\u03b8\u03af\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5\u03c2","path":"PELOPONNESE\/Pelop_Mani_Avia_PanoVerga_Pigadia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1890,"name_EN":"Mani-Avia: Ano Verga-Pigadia","description_EN":"Crossing Mt Kalathion","ascent_time":235,"descent_time":235,"marker":"Red_dots","level":10,"ascent":576,"descent":528,"maxelev":1317,"minelev":894,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.18077 36.99416,22.25889 37.00901)","views":10,"millestones":"0,22.1810937,36.9991227#1,22.1864519,37.0046982#2,22.1945689,37.0065942#3,22.1988530,37.0066135#4,22.2075434,37.0042926#5,22.2166828,36.9993749#6,22.2246891,36.9984436#7,22.2350442,36.9987798#8,22.2436136,36.9990843#9,22.2500505,36.9960290#1.9,22.2588416,36.9961834","x":22.2236176,"y":36.9987438,"coor":[[22.1810937,36.9991227],[22.1811252,36.9992155],[22.1810407,36.9992683],[22.1810056,36.9993264],[22.1812486,36.9995013],[22.1811778,36.9996445],[22.181253,36.9996997],[22.1809986,37.0000022],[22.1813283,37.0003137],[22.1817592,37.0003879],[22.1819033,37.0004713],[22.1819122,37.0005706],[22.1820716,37.0004829],[22.1820334,37.0006716],[22.1821217,37.000736],[22.182004,37.0009595],[22.1821484,37.0010338],[22.1821883,37.0012418],[22.1824789,37.0013093],[22.1823988,37.0014162],[22.1824871,37.0014807],[22.1824621,37.0015884],[22.1821152,37.0019977],[22.1820664,37.0021592],[22.1824203,37.002399],[22.1826943,37.002455],[22.18292,37.0024134],[22.1831434,37.0024709],[22.183385,37.0027089],[22.1834533,37.0026739],[22.1835073,37.0027649],[22.183652,37.0028212],[22.1837603,37.0029941],[22.184095,37.0030984],[22.1844255,37.0033738],[22.1851396,37.003592],[22.1853379,37.0037573],[22.1854451,37.0039753],[22.1859239,37.0041628],[22.1861635,37.004482],[22.1864507,37.0046937],[22.1865128,37.0049199],[22.1868064,37.00533],[22.1868462,37.0055469],[22.1868925,37.0054936],[22.187141,37.005912],[22.1873166,37.0056172],[22.1874437,37.0059436],[22.1875117,37.0059176],[22.1875308,37.0060621],[22.1877107,37.0060559],[22.1879246,37.0060411],[22.1886385,37.0062683],[22.1897364,37.0064113],[22.1901037,37.0065611],[22.1901504,37.0064897],[22.1900313,37.0062986],[22.1900656,37.0062721],[22.1908649,37.0066899],[22.1910631,37.0068641],[22.1914194,37.0070048],[22.1914327,37.0069148],[22.1914889,37.0069157],[22.1923012,37.0071106],[22.1925498,37.0070513],[22.1928305,37.0070646],[22.1931166,37.0071275],[22.1937661,37.0068535],[22.1942395,37.0068427],[22.1945773,37.0067261],[22.1945404,37.0061893],[22.1946067,37.0061948],[22.1948386,37.0063696],[22.1952508,37.00652],[22.195457,37.0068296],[22.1954144,37.0072075],[22.1948225,37.007523],[22.1947695,37.0078647],[22.194538,37.0081496],[22.1946299,37.0085386],[22.1944075,37.0089137],[22.1944901,37.0092214],[22.1952562,37.009143],[22.1961433,37.0091745],[22.1975427,37.0084567],[22.1985605,37.0067596],[22.2002092,37.0059464],[22.2003067,37.0056234],[22.2006349,37.0050516],[22.2009204,37.0048576],[22.2013017,37.0048904],[22.2023033,37.0053112],[22.2028065,37.0054179],[22.203312,37.0054256],[22.2038559,37.0052355],[22.2042095,37.0050156],[22.2046578,37.0045897],[22.2049855,37.0040359],[22.2057831,37.0035702],[22.2063732,37.0038045],[22.2070595,37.0042475],[22.2074623,37.0043257],[22.2080068,37.0041086],[22.2082942,37.0038335],[22.2107368,37.0031854],[22.2116556,37.0028207],[22.2129302,37.0021368],[22.2137301,37.001572],[22.2146068,37.0006028],[22.2165206,36.9994959],[22.217321,36.998904],[22.2178829,36.9979391],[22.2179525,36.9978477],[22.2184488,36.997765],[22.2187064,36.997805],[22.2188757,36.9977715],[22.2192307,36.9974884],[22.2195094,36.9975827],[22.2198023,36.997551],[22.2203054,36.99718],[22.220497,36.9971558],[22.2207017,36.9970508],[22.2208475,36.997062],[22.2212554,36.9974016],[22.2213258,36.9977541],[22.2212197,36.9979688],[22.2214276,36.9982063],[22.2216932,36.9983815],[22.222834,36.9986149],[22.2231833,36.9985751],[22.2232973,36.9985047],[22.2233391,36.9986405],[22.2236176,36.9987438],[22.2237662,36.9986379],[22.2239024,36.998667],[22.2239193,36.9987574],[22.2241689,36.998653],[22.2243703,36.998692],[22.2246664,36.9985252],[22.2246795,36.9984443],[22.224792,36.9984369],[22.2256349,36.9989182],[22.2261495,36.9990161],[22.2263292,36.9990188],[22.2264886,36.998931],[22.2268462,36.9990175],[22.2274118,36.9993414],[22.2281028,36.999586],[22.2284177,36.9995727],[22.2286058,36.9997017],[22.228855,36.9996153],[22.2292143,36.9996297],[22.2294148,36.9997048],[22.229631,36.9995908],[22.2304502,36.9996391],[22.230859,36.9994559],[22.2313935,36.9994211],[22.2315554,36.9994663],[22.2321246,36.9991503],[22.2329403,36.998865],[22.2337179,36.9987684],[22.2346495,36.9988183],[22.2351789,36.9987631],[22.2357333,36.9990868],[22.2365231,36.9994321],[22.2370517,36.9994129],[22.2373078,36.9995158],[22.2375048,36.9997441],[22.237567,36.9999703],[22.2377416,37.0001983],[22.2378768,37.0000899],[22.2379615,36.9998297],[22.2383846,36.9995115],[22.2384795,36.9992966],[22.2387303,36.9991381],[22.2389652,36.9991867],[22.2392918,36.9991555],[22.2395564,36.998889],[22.2399136,36.9989934],[22.240095,36.998924],[22.2403305,36.9989455],[22.2407083,36.9991314],[22.2409471,36.9994955],[22.2411144,36.999552],[22.241163,36.9993905],[22.2415321,36.9994681],[22.2417594,36.9993543],[22.2420636,36.9993227],[22.2420992,36.9992421],[22.2424628,36.9990673],[22.242742,36.9991435],[22.2428743,36.9992536],[22.2431231,36.9991852],[22.2433521,36.9989993],[22.2434738,36.9990822],[22.2437097,36.9990857],[22.2440899,36.9986767],[22.2442149,36.9986155],[22.2444394,36.9986278],[22.2445648,36.9985486],[22.2446002,36.998477],[22.2445241,36.9983677],[22.2446052,36.9982607],[22.2448854,36.9982919],[22.245068,36.9981684],[22.2451795,36.9982061],[22.2453156,36.9981541],[22.2454144,36.9982547],[22.2457322,36.9981152],[22.2463501,36.9981243],[22.2465202,36.9980547],[22.2466317,36.9980924],[22.2466802,36.9979399],[22.2465812,36.9978483],[22.2466065,36.9977225],[22.2465326,36.9975141],[22.2465905,36.9974428],[22.2466907,36.9974804],[22.2467927,36.9974458],[22.2467949,36.9973467],[22.2467292,36.9972736],[22.2466171,36.997263],[22.2465967,36.9971725],[22.2467146,36.9969309],[22.2467071,36.9967686],[22.2465036,36.9968197],[22.2465063,36.9967025],[22.2466369,36.996398],[22.2465857,36.9961809],[22.2467937,36.9959316],[22.2469585,36.9960963],[22.247293,36.9962094],[22.2475068,36.9961945],[22.2485433,36.9965704],[22.2491086,36.9964165],[22.2493539,36.9965012],[22.2496019,36.9964688],[22.2498872,36.9962747],[22.2502481,36.9957302],[22.2514944,36.9952799],[22.2520244,36.9951976],[22.2521858,36.9950197],[22.2524697,36.9948887],[22.2526713,36.9949187],[22.252725,36.9950277],[22.2530934,36.9951322],[22.2534535,36.9951105],[22.2543516,36.994655],[22.2546752,36.9942632],[22.2549373,36.9941048],[22.2552152,36.9942351],[22.2553238,36.9943989],[22.2555677,36.9945467],[22.2561244,36.9947712],[22.2564213,36.995055],[22.2570237,36.9952441],[22.2571513,36.9955614],[22.2572518,36.9955899],[22.2575722,36.9959214],[22.2576405,36.9961297],[22.2578178,36.9962404],[22.2582442,36.9962647],[22.2582264,36.9965529],[22.2583369,36.9966356],[22.2588416,36.9961834]]},{"id":18624,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u0386\u03c3\u03c0\u03c1\u03b1 \u03a7\u03ce\u03bc\u03b1\u03c4\u03b1-\u03a0\u03b1\u03be\u03b9\u03bc\u03ac\u03b4\u03b9","description_GR":"\u03a4\u03bf \u03b4\u03c5\u03c4\u03b9\u03ba\u03cc \u03c3\u03ba\u03ad\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03ac\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a0\u03b1\u03be\u03b9\u03bc\u03ac\u03b4\u03b9\u03b9","path":"PELOPONNESE\/Pelop_Taygetos_AspraChomata_Paximadi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5446,"name_EN":"Taygetos Mt: Aspra Chomata-Paximadi","description_EN":"The western part of Paximadi crossing","ascent_time":135,"descent_time":125,"marker":"Red_dots","level":12,"ascent":551,"descent":229,"maxelev":1741,"minelev":1416,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.27749 37.04264,22.31741 37.05324)","views":25,"millestones":"0,22.2777336,37.0424964#1,22.2866307,37.0440431#2,22.2947156,37.0478663#3,22.3010439,37.0449529#4,22.3044151,37.0512367#5.4,22.3171750,37.0532272","x":22.3001476,"y":37.047261,"coor":[[22.2777336,37.0424964],[22.2778907,37.0425099],[22.2782232,37.0427221],[22.2787206,37.0426031],[22.2788602,37.0423978],[22.2790256,37.0423394],[22.279077,37.0422545],[22.279244,37.0423741],[22.2796402,37.042506],[22.2798867,37.0425456],[22.2802061,37.042343],[22.2802715,37.0424341],[22.2808887,37.0424881],[22.2818861,37.042133],[22.2822313,37.0422822],[22.2825079,37.0424845],[22.2826218,37.0429188],[22.2824693,37.043196],[22.2825239,37.0432689],[22.2834288,37.0430296],[22.2836761,37.0430332],[22.2841086,37.0433008],[22.2844895,37.0433604],[22.2847849,37.0437252],[22.2852773,37.0438315],[22.2860067,37.0438961],[22.2862066,37.0440071],[22.2869025,37.0440622],[22.2874576,37.0443767],[22.2880923,37.0441515],[22.2883055,37.0441726],[22.2883924,37.0443091],[22.288739,37.0443952],[22.2888245,37.0445947],[22.2890726,37.0445623],[22.2896559,37.0446247],[22.2897817,37.0450322],[22.2902128,37.0448581],[22.2906817,37.0450091],[22.2913036,37.0448558],[22.2917114,37.0448774],[22.2920556,37.0450717],[22.2924687,37.0452038],[22.2924992,37.0453485],[22.2926866,37.0455134],[22.292911,37.0455347],[22.2931114,37.0456277],[22.2932498,37.0459722],[22.2939599,37.046397],[22.2942441,37.0467616],[22.2943708,37.047133],[22.2946337,37.0474432],[22.2947402,37.0477061],[22.294687,37.0480749],[22.2949732,37.0483494],[22.2950256,37.0485214],[22.2954753,37.0485279],[22.2955726,37.0487005],[22.2959158,37.0489398],[22.2961631,37.0489433],[22.2964865,37.0490652],[22.2969139,37.0490623],[22.2973374,37.0492306],[22.2975064,37.049215],[22.2976668,37.0490821],[22.2976614,37.0488206],[22.2980651,37.0483668],[22.2982458,37.0478286],[22.2989211,37.0478022],[22.2992274,37.0476804],[22.2996981,37.0477502],[22.2998912,37.0476629],[22.3001476,37.047261],[22.3003397,37.0467139],[22.3003365,37.0463533],[22.300196,37.0460989],[22.3002203,37.0460182],[22.3004491,37.0458412],[22.3006254,37.0455012],[22.3006782,37.0451505],[22.3012245,37.0448518],[22.3014455,37.0445215],[22.3018735,37.0444916],[22.3019706,37.0446732],[22.3025246,37.0450417],[22.3025997,37.045205],[22.3028,37.045298],[22.3028432,37.0453797],[22.3028687,37.0457496],[22.3027685,37.0462079],[22.3028751,37.0464708],[22.3029632,37.0470579],[22.3031945,37.0472775],[22.3030945,37.047222],[22.3030295,37.0476177],[22.3032846,37.0477746],[22.30343,37.0483174],[22.303596,37.048437],[22.303671,37.0486003],[22.3038499,37.0486479],[22.3037192,37.0494662],[22.3035042,37.0495263],[22.3033657,37.0496865],[22.3033465,37.0500468],[22.3037118,37.0503044],[22.3039455,37.0509206],[22.3044552,37.0512614],[22.3045315,37.0513706],[22.3044725,37.051496],[22.3046272,37.0516154],[22.304734,37.0518693],[22.3048461,37.0518889],[22.305087,37.0521808],[22.3053556,37.0522387],[22.305853,37.0521196],[22.3061555,37.052169],[22.3063265,37.0520633],[22.3064275,37.0520737],[22.3064705,37.0521645],[22.3068154,37.0523316],[22.3068698,37.0524135],[22.3070721,37.0524164],[22.3072088,37.0523372],[22.3073879,37.0523758],[22.3078835,37.0523379],[22.3084721,37.0526707],[22.3101043,37.0531086],[22.310778,37.0531542],[22.3111891,37.0533764],[22.3118265,37.0535387],[22.3123168,37.053744],[22.3130483,37.0537183],[22.3132868,37.0536136],[22.3137722,37.0535303],[22.3144453,37.053603],[22.3146627,37.0534348],[22.3147518,37.0534722],[22.3149106,37.0534113],[22.3150947,37.0537294],[22.3154003,37.0536436],[22.3155896,37.0537274],[22.3161519,37.0537264],[22.3165164,37.0535152],[22.3170566,37.0534959],[22.317175,37.0532272]]},{"id":18625,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b9\u03ba\u03bf\u03c5\u03bb\u03b9\u03ac\u03bd\u03b9\u03ba\u03b1-\u03a0\u03b1\u03be\u03b9\u03bc\u03ac\u03b4\u03b9","description_GR":"\u03a4\u03bf \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03cc \u03c3\u03ba\u03ad\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03ac\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a0\u03b1\u03be\u03b9\u03bc\u03ac\u03b4\u03b9\u03b9","path":"PELOPONNESE\/Pelop_Taygetos_Pikoulianika_Paximadi","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":9013,"name_EN":"Taygetos Mt: Pikoulianika-Paximadi","description_EN":"The eastern part of Paximadi crossing","ascent_time":265,"descent_time":215,"marker":"Red_dots","level":10,"ascent":1372,"descent":190,"maxelev":1838,"minelev":556,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.3165 37.05379,22.35767 37.08363)","views":25,"millestones":"0,22.3569058,37.0795937#1,22.3530972,37.0774649#2,22.3491543,37.0808306#3,22.3429123,37.0819685#4,22.3359705,37.0820464#5,22.3277957,37.0778763#6,22.3236913,37.0713016#7,22.3234939,37.0652240#8,22.3215143,37.0576458#9,22.3171729,37.0532271","x":22.3294465,"y":37.0800888,"coor":[[22.3569058,37.0795937],[22.356866,37.0794489],[22.357122,37.0790559],[22.3570569,37.0789468],[22.3563466,37.0790181],[22.356059,37.0793116],[22.3559239,37.0793187],[22.3559336,37.0788682],[22.3561876,37.0785652],[22.3560783,37.0784195],[22.3554088,37.0786896],[22.3553267,37.0788417],[22.355297,37.0791748],[22.3549428,37.0789085],[22.3548802,37.0786823],[22.3549425,37.077881],[22.3547981,37.077746],[22.3546395,37.0777979],[22.3543395,37.078668],[22.3539216,37.0787434],[22.3539771,37.0785706],[22.3540133,37.078454],[22.3539354,37.0784168],[22.3535361,37.0786727],[22.3534349,37.0786713],[22.3535392,37.0785285],[22.3534042,37.0780129],[22.3532394,37.0778303],[22.3531564,37.0775047],[22.3526574,37.0771733],[22.3526041,37.0770373],[22.3526433,37.0767855],[22.3525774,37.0767125],[22.352476,37.0767201],[22.3523949,37.0773003],[22.3523733,37.0788142],[22.3521866,37.0791271],[22.3517974,37.0794372],[22.3517644,37.0794007],[22.3519188,37.0790242],[22.35193,37.0787202],[22.3518408,37.0786829],[22.3517611,37.0787269],[22.3515629,37.0790486],[22.3511603,37.0794576],[22.3506845,37.0796132],[22.3506829,37.0796853],[22.3508386,37.0797686],[22.3510689,37.0800422],[22.3511072,37.0803492],[22.3506534,37.0810459],[22.3503602,37.0810779],[22.3499119,37.0809995],[22.3492415,37.0807919],[22.3485372,37.0811066],[22.3484159,37.0815105],[22.3485272,37.0816157],[22.3485353,37.08176],[22.3482894,37.0822072],[22.3479139,37.0824003],[22.347554,37.0823953],[22.3472251,37.0825169],[22.3470708,37.0827423],[22.3469145,37.0832088],[22.3466708,37.0835479],[22.346467,37.0836082],[22.3463112,37.0835339],[22.3464784,37.0830856],[22.3464121,37.0830306],[22.3453564,37.0834665],[22.3452644,37.0835554],[22.3451445,37.0838962],[22.3448604,37.0840274],[22.3446708,37.0839527],[22.3438674,37.0831303],[22.3433317,37.0824197],[22.3430769,37.0822359],[22.3429591,37.0819639],[22.3426434,37.0819955],[22.3424373,37.0821639],[22.3422274,37.0825035],[22.3422333,37.0827469],[22.3421643,37.082818],[22.3419215,37.082747],[22.3413797,37.0828296],[22.3408653,37.083201],[22.3406509,37.083234],[22.3405449,37.0834488],[22.340179,37.0837231],[22.3400332,37.0837031],[22.3398905,37.0835388],[22.3398834,37.0833495],[22.3395643,37.0830205],[22.339486,37.0830014],[22.3391324,37.0832218],[22.3384225,37.0832749],[22.3382435,37.0831823],[22.3382267,37.0829207],[22.338366,37.0827243],[22.338363,37.0823457],[22.3381826,37.0818475],[22.3379697,37.0818084],[22.3378154,37.0816621],[22.3370136,37.0812903],[22.3367103,37.081268],[22.3365162,37.0814005],[22.336503,37.0814904],[22.3361137,37.0818004],[22.3359501,37.0820775],[22.3353168,37.0822309],[22.3349473,37.0821536],[22.3348604,37.0820082],[22.3347269,37.0819432],[22.3338424,37.0817505],[22.3332453,37.0817872],[22.3327811,37.0819249],[22.3321722,37.0819884],[22.3314467,37.0817258],[22.3311449,37.0815413],[22.3303567,37.0805478],[22.3298702,37.0804193],[22.3296209,37.0803436],[22.3294465,37.0800888],[22.3282927,37.0793515],[22.3280566,37.0788344],[22.3278615,37.0779844],[22.327612,37.0775663],[22.3275457,37.0775113],[22.3272493,37.0776874],[22.3270925,37.0776581],[22.3266636,37.0777242],[22.3262811,37.077214],[22.3260794,37.0761566],[22.3259644,37.0757584],[22.3258657,37.0756399],[22.3259222,37.0756316],[22.3259354,37.0755417],[22.3258691,37.0754867],[22.3258719,37.0753605],[22.3257265,37.0753224],[22.3257405,37.0751964],[22.32558,37.0748246],[22.3256542,37.0745192],[22.325533,37.0744004],[22.3255583,37.0742745],[22.3254828,37.0741292],[22.3251944,37.0739449],[22.325089,37.0736189],[22.3249679,37.0735001],[22.3248212,37.0730113],[22.3249236,37.0729586],[22.3249512,37.0727247],[22.3249428,37.0725984],[22.324767,37.0724066],[22.3248071,37.0721188],[22.324484,37.071979],[22.3242747,37.0717282],[22.3239687,37.071832],[22.3237675,37.0717751],[22.3238624,37.0715511],[22.3237668,37.0712974],[22.3234965,37.0713116],[22.3230639,37.0715488],[22.3228185,37.0714552],[22.322678,37.0711919],[22.3229662,37.0707633],[22.3230564,37.0707556],[22.3232823,37.0701999],[22.3231376,37.069621],[22.3231982,37.0694236],[22.32331,37.0694522],[22.3235079,37.0691486],[22.3237222,37.0686108],[22.3238126,37.0685941],[22.3239856,37.0683982],[22.3239426,37.0683075],[22.3241253,37.0681839],[22.3240855,37.067949],[22.3242893,37.0678888],[22.3242108,37.0673649],[22.3243477,37.0672767],[22.3241509,37.0670215],[22.3243681,37.0668624],[22.3243235,37.0668437],[22.3243665,37.0664207],[22.3243003,37.0663657],[22.3244384,37.0662234],[22.3247443,37.0661196],[22.3246708,37.0660419],[22.3243377,37.0658479],[22.3243302,37.0656766],[22.3242391,37.0657294],[22.323925,37.0656889],[22.3236686,37.0655861],[22.3237388,37.0654609],[22.3233808,37.0653747],[22.3235663,37.065125],[22.3232761,37.0650218],[22.3233805,37.064879],[22.3232797,37.0648596],[22.3232255,37.0647687],[22.3227438,37.0646807],[22.3227915,37.0645552],[22.3229381,37.0645393],[22.3230103,37.064324],[22.3230123,37.0642339],[22.3228923,37.0641601],[22.3229838,37.0640893],[22.3227975,37.0638703],[22.3227452,37.0636893],[22.3228143,37.0636182],[22.3227845,37.0634375],[22.3228648,37.0633665],[22.322617,37.063381],[22.3225626,37.0632992],[22.3226678,37.0631204],[22.322701,37.0626341],[22.322231,37.0620146],[22.3220313,37.0613808],[22.3222094,37.0609507],[22.3222272,37.0606535],[22.3217898,37.0600885],[22.3217757,37.0597098],[22.3218795,37.0590803],[22.3216184,37.05868],[22.3216469,37.0578963],[22.3211826,37.0570244],[22.3213369,37.0561433],[22.3208739,37.0557222],[22.3209098,37.0556235],[22.3208096,37.055577],[22.3205727,37.0556097],[22.3203942,37.0555441],[22.320197,37.055307],[22.3199746,37.0551957],[22.3198609,37.0547434],[22.3194118,37.05471],[22.3193313,37.05479],[22.318784,37.05462],[22.3185466,37.054166],[22.3184855,37.0538767],[22.3180075,37.0536265],[22.3176716,37.0535587],[22.3171729,37.0532271]]},{"id":18626,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a4\u03c3\u03ac\u03c1\u03ba\u03bf\u03c2-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u0397 \u03c0\u03b5\u03bc\u03c0\u03c4\u03bf\u03c5\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b5\u03bd\u03c4\u03b1\u03b4\u03ac\u03ba\u03c4\u03c5\u03bb\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Taygetos_Tsarkos_EOSRefuge","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":9709,"name_EN":"Taygetos Mt: Tsarkos-EOS Refuge","description_EN":"The more intresting part of Pentadaktylos crosswing","ascent_time":275,"descent_time":265,"marker":"O32","level":12,"ascent":752,"descent":973,"maxelev":2219,"minelev":1547,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.335 36.9502,22.36775 37.0123)","views":41,"millestones":"0,22.3350671,37.0122979#1,22.3396074,37.0046937#2,22.3450263,36.9976865#3,22.3495384,36.9927989#4,22.3513712,36.9844009#5,22.3519515,36.9766722#6,22.3536324,36.9688009#7,22.3551862,36.9630950#8,22.3600669,36.9586680#9.7,22.3677460,36.9504018","x":22.3535496,"y":36.9685052,"coor":[[22.3350671,37.0122979],[22.3350031,37.0121393],[22.3350104,37.0118059],[22.3355367,37.0113807],[22.3356441,37.0110938],[22.3359642,37.0108459],[22.3361792,37.0107768],[22.3362961,37.0105711],[22.3364532,37.0105823],[22.3366145,37.0104043],[22.3368181,37.0103441],[22.3374581,37.0098573],[22.3377689,37.0095192],[22.3378623,37.0093582],[22.3379334,37.0086742],[22.3378502,37.0083666],[22.3380289,37.0079004],[22.3385701,37.0073041],[22.3391046,37.0062886],[22.3395011,37.0056271],[22.3395435,37.0052311],[22.33948,37.00505],[22.3397308,37.0043685],[22.3397522,37.0039001],[22.3396763,37.0037728],[22.3399724,37.0035967],[22.3401568,37.003383],[22.3403502,37.0032775],[22.3405051,37.0033878],[22.3405266,37.0023967],[22.3409034,37.0016088],[22.3419167,37.0004872],[22.3423247,36.9998079],[22.3426456,36.999524],[22.3435449,36.998473],[22.3441268,36.9980665],[22.3449508,36.9978977],[22.3452021,36.9971892],[22.3461718,36.9965177],[22.3464473,36.9962511],[22.3466567,36.9959205],[22.3468047,36.9958324],[22.3472276,36.9965414],[22.3473934,36.9966699],[22.3475203,36.9965184],[22.3478674,36.9965773],[22.3478707,36.9964241],[22.3481765,36.9963112],[22.3483038,36.9961417],[22.3482779,36.9957809],[22.3479092,36.9951628],[22.3478393,36.9947562],[22.3479478,36.9944152],[22.3480592,36.9943154],[22.3480188,36.9941075],[22.3482427,36.9936239],[22.3484721,36.9934108],[22.3487746,36.993451],[22.3487895,36.99328],[22.3489036,36.9932005],[22.3491515,36.9931679],[22.34923,36.9926552],[22.349507,36.9928393],[22.3496573,36.9926431],[22.3500187,36.992558],[22.3507861,36.9913609],[22.350866,36.9907851],[22.3508347,36.9901538],[22.3510141,36.9896515],[22.351104,36.9886072],[22.3512156,36.988122],[22.3512191,36.9879598],[22.3511219,36.9877782],[22.3511597,36.9875895],[22.3510308,36.9873173],[22.3509997,36.9870802],[22.3510848,36.986784],[22.3510395,36.9862786],[22.3512512,36.9858399],[22.351319,36.9858228],[22.3515367,36.9851048],[22.3514384,36.9844544],[22.3513792,36.9844468],[22.3513591,36.9843384],[22.351168,36.9843448],[22.351138,36.9841731],[22.3509975,36.9828732],[22.3510869,36.9818559],[22.3507285,36.9812831],[22.3504944,36.9811988],[22.350354,36.9809354],[22.3505101,36.9804689],[22.3506821,36.980309],[22.350929,36.9797987],[22.3511014,36.9790981],[22.3511574,36.977855],[22.3510714,36.9776735],[22.3512407,36.9776398],[22.351243,36.9775317],[22.3515683,36.9775542],[22.3515931,36.9774464],[22.351518,36.9772831],[22.3516543,36.9772129],[22.3516119,36.9770952],[22.3517506,36.9769168],[22.3517785,36.9766648],[22.3519789,36.9767487],[22.3519154,36.9765676],[22.3520131,36.9756856],[22.3522662,36.974887],[22.3529087,36.9742649],[22.3532625,36.9740085],[22.3532079,36.9739356],[22.3532993,36.9738647],[22.3533615,36.9735862],[22.3536014,36.9734002],[22.353753,36.973141],[22.3540839,36.9729022],[22.354257,36.9726883],[22.3542598,36.9725621],[22.3545587,36.9722418],[22.3544943,36.9721057],[22.3545667,36.9718723],[22.3544449,36.9717895],[22.3543262,36.9715625],[22.3543785,36.9712208],[22.3544935,36.9710962],[22.3542329,36.9706779],[22.354272,36.9704261],[22.3544111,36.9702297],[22.3540699,36.9699005],[22.353922,36.9694658],[22.3539464,36.969376],[22.3536384,36.9690743],[22.3536258,36.9686145],[22.3535496,36.9685052],[22.3535666,36.9682351],[22.3534725,36.9679093],[22.3535241,36.9676036],[22.3533928,36.9674395],[22.3533878,36.967151],[22.3534653,36.9668907],[22.3537653,36.9665253],[22.3539693,36.966438],[22.3545085,36.9664364],[22.3551054,36.9663659],[22.3549826,36.9663281],[22.3549734,36.9662378],[22.3550417,36.9661937],[22.3549298,36.9661741],[22.3549434,36.9660662],[22.3547091,36.9659908],[22.3547786,36.9658926],[22.3546005,36.9658181],[22.3548274,36.965713],[22.3546613,36.9656026],[22.354663,36.9655215],[22.3544849,36.9654469],[22.3544419,36.9653562],[22.3545097,36.9653391],[22.3544472,36.9651129],[22.354581,36.9651598],[22.3546162,36.9650882],[22.3547395,36.9650989],[22.3547746,36.9650363],[22.3548636,36.9650736],[22.3550061,36.964715],[22.3550818,36.9648513],[22.3551492,36.9648522],[22.355187,36.9646635],[22.354976,36.9644352],[22.3548341,36.9642439],[22.355012,36.9638048],[22.3554442,36.9635584],[22.3555998,36.9636326],[22.3555568,36.9635419],[22.3552684,36.9633757],[22.3554056,36.9632604],[22.355351,36.9631875],[22.3551179,36.9630581],[22.3552016,36.9628249],[22.3555063,36.962757],[22.3557243,36.9625437],[22.3556393,36.9623172],[22.3558966,36.962154],[22.3562087,36.9619556],[22.3564236,36.9618864],[22.3568265,36.9619551],[22.3569353,36.9621188],[22.3572752,36.9619793],[22.3573736,36.9621069],[22.3577461,36.9620219],[22.3577697,36.9620808],[22.3579014,36.9620128],[22.3580249,36.9620145],[22.3580102,36.9616537],[22.3580683,36.9615644],[22.3583529,36.9613881],[22.3585784,36.9613461],[22.35863,36.9612973],[22.3586718,36.9609193],[22.3586211,36.9606662],[22.3585106,36.9605836],[22.358739,36.9598837],[22.3586865,36.9597117],[22.3587558,36.9590997],[22.3590338,36.958707],[22.3595818,36.9582909],[22.3595702,36.9588316],[22.3596357,36.9589226],[22.3599148,36.9589986],[22.3600761,36.9588115],[22.3600337,36.9586938],[22.3601593,36.9585964],[22.3602263,36.9586153],[22.3604439,36.95842],[22.3606113,36.9579446],[22.3609075,36.9577504],[22.3610616,36.957374],[22.3610912,36.9570409],[22.3609929,36.9569133],[22.3609344,36.9564979],[22.3610768,36.9561393],[22.361059,36.9559228],[22.3612061,36.9558707],[22.3614975,36.9559018],[22.3616787,36.9558322],[22.3620122,36.9554672],[22.3621707,36.9554063],[22.3624566,36.9551669],[22.3630012,36.954913],[22.3630722,36.9547428],[22.3631388,36.9547797],[22.3632201,36.9546547],[22.363235,36.9544836],[22.3633141,36.9544577],[22.3633095,36.9541511],[22.3634318,36.9542069],[22.3634783,36.9541354],[22.3635675,36.9541637],[22.3636602,36.9540298],[22.3637609,36.9540492],[22.363764,36.953905],[22.3635739,36.9538663],[22.3636416,36.9538493],[22.3636201,36.9538039],[22.363721,36.9538143],[22.3636772,36.9537596],[22.3637465,36.9536704],[22.3636807,36.9535974],[22.363737,36.9535892],[22.3639124,36.9532671],[22.3640951,36.9531254],[22.3641735,36.9531355],[22.3645397,36.9528161],[22.3645951,36.9528529],[22.3649673,36.9527769],[22.365115,36.9526978],[22.3651402,36.952572],[22.3657894,36.9521483],[22.3658168,36.9519143],[22.3659786,36.9517002],[22.3660887,36.9512781],[22.3660601,36.9510433],[22.3664336,36.9509043],[22.3666407,36.9506728],[22.366759,36.950395],[22.3669397,36.9503434],[22.3671226,36.9501927],[22.367746,36.9504018]]},{"id":18627,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039b\u03b1\u03ba\u03ba\u03ce\u03bc\u03b1\u03c4\u03b1-\u03a3\u03b9\u03b4\u03b7\u03c1\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03a0\u03b5\u03bd\u03c4\u03b1\u03b4\u03ac\u03ba\u03c4\u03c5\u03bb\u03bf","path":"PELOPONNESE\/Pelop_Taygetos_Lakomata_Sidirokastro","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":11724,"name_EN":"Taygetos Mt: Lakomata-Sidirokastro-EOS Refuge","description_EN":"Alternative way for Pentadaktylos crossing","ascent_time":375,"descent_time":340,"marker":"Red_dots","level":12,"ascent":1215,"descent":937,"maxelev":2219,"minelev":1270,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34501 36.9502,22.36775 37.01271)","views":28,"millestones":"0,22.3619550,37.0036250#1,22.3559931,37.0087386#2,22.3495975,37.0125778#3,22.3457527,37.0068500#4,22.3463664,36.9990316#5,22.3501578,36.9923373#6,22.3510993,36.9838322#7,22.3519816,36.9759463#8,22.3535232,36.9680890#9,22.3556372,36.9626252#10,22.3605481,36.9581221#11.7,22.3677443,36.9504018","x":22.3515917,"y":36.9774464,"coor":[[22.361955,37.003625],[22.3619149,37.0042847],[22.3620846,37.0047557],[22.3619738,37.0052049],[22.3622105,37.0056949],[22.3622192,37.0067],[22.3615789,37.0067813],[22.3613703,37.0070758],[22.3610635,37.0072338],[22.3600535,37.0077336],[22.3594474,37.008221],[22.3589722,37.0083676],[22.3585704,37.0082359],[22.3584015,37.0082516],[22.3581274,37.0084551],[22.357833,37.0085592],[22.35711,37.0086664],[22.3567229,37.0088953],[22.3564069,37.0089541],[22.3557733,37.0086298],[22.3553037,37.0085152],[22.3546037,37.0081449],[22.3544299,37.0089086],[22.3545246,37.0092074],[22.3543002,37.0102318],[22.3542127,37.0116817],[22.3537245,37.0119093],[22.3534549,37.0119056],[22.3531536,37.012325],[22.3527665,37.012554],[22.3521373,37.0125453],[22.3515485,37.0127444],[22.350896,37.0127714],[22.3499908,37.0125334],[22.3495402,37.0125813],[22.3489632,37.0127535],[22.3484235,37.012764],[22.347315,37.0125683],[22.3463008,37.0116529],[22.3461521,37.0112542],[22.3460747,37.011199],[22.3459611,37.0112515],[22.3460024,37.0110335],[22.3458502,37.0110382],[22.3459148,37.0107957],[22.3457141,37.0107208],[22.3458319,37.0104701],[22.3457428,37.0104328],[22.3457692,37.0102529],[22.3456906,37.0102518],[22.3458869,37.0100112],[22.3457172,37.0095401],[22.3458099,37.0094152],[22.3456762,37.0093593],[22.3455788,37.0091867],[22.3457308,37.0083956],[22.3456303,37.0083672],[22.3456322,37.0082771],[22.3455544,37.0082399],[22.3456003,37.0081955],[22.3457068,37.0081091],[22.3455505,37.0080618],[22.3454418,37.0078891],[22.3453961,37.0077803],[22.3455453,37.0076381],[22.3454575,37.0075378],[22.3458725,37.0065431],[22.3457049,37.0064957],[22.3457524,37.0063792],[22.3456635,37.0063329],[22.3455678,37.0060792],[22.3456601,37.0059723],[22.3456058,37.0058814],[22.3457109,37.0057026],[22.3456129,37.005557],[22.3457404,37.0053785],[22.3456972,37.0052968],[22.345803,37.005082],[22.3461161,37.0046357],[22.3460839,37.0045631],[22.3461805,37.004258],[22.3461375,37.0041673],[22.3456852,37.0038072],[22.3455125,37.0034803],[22.3454735,37.0026866],[22.3454084,37.0025775],[22.3455005,37.0024796],[22.3454015,37.0023791],[22.3454829,37.0022541],[22.345407,37.0021268],[22.3454663,37.0019834],[22.3453799,37.00182],[22.3453643,37.0015043],[22.3452554,37.0013405],[22.3454992,37.0009834],[22.3456205,37.0005705],[22.3463358,36.9997152],[22.3463028,36.9996787],[22.3463951,36.9995718],[22.3463515,36.9995081],[22.3464886,36.9994018],[22.3464902,36.9993298],[22.3466374,36.9992777],[22.34635,36.9990574],[22.3465478,36.9987447],[22.3465874,36.9984748],[22.3467597,36.9978778],[22.3466834,36.9977686],[22.3466868,36.9976154],[22.3467673,36.9975264],[22.3470164,36.9974398],[22.3472197,36.9968748],[22.3473927,36.9966699],[22.3475196,36.9965184],[22.3478667,36.9965773],[22.34787,36.9964241],[22.3481758,36.9963112],[22.3483031,36.9961417],[22.3482772,36.9957808],[22.3479085,36.9951628],[22.3478386,36.9947562],[22.3479471,36.9944152],[22.3480582,36.9943154],[22.3480177,36.9941075],[22.3482417,36.9936239],[22.348471,36.9934108],[22.3487735,36.993451],[22.3487885,36.99328],[22.3489026,36.9932005],[22.3491505,36.9931679],[22.349229,36.9926552],[22.3495059,36.9928393],[22.3496562,36.9926431],[22.3500176,36.992558],[22.3507851,36.9913609],[22.3508649,36.9907851],[22.3508336,36.9901537],[22.351013,36.9896515],[22.351103,36.9886072],[22.3512146,36.988122],[22.3512181,36.9879598],[22.3511209,36.9877782],[22.3511587,36.9875895],[22.3510297,36.9873173],[22.3509987,36.9870802],[22.3510837,36.986784],[22.3510384,36.9862786],[22.3512501,36.9858399],[22.3513179,36.9858228],[22.3515357,36.9851047],[22.3514373,36.9844544],[22.3513778,36.9844468],[22.3513577,36.9843384],[22.3511666,36.9843447],[22.3511366,36.9841731],[22.3509961,36.9828732],[22.3510855,36.9818559],[22.3507271,36.9812831],[22.350493,36.9811987],[22.3503526,36.9809354],[22.3505087,36.9804689],[22.3506807,36.980309],[22.3509276,36.9797987],[22.3511,36.979098],[22.351156,36.977855],[22.35107,36.9776735],[22.3512393,36.9776398],[22.3512416,36.9775317],[22.3515669,36.9775542],[22.3515917,36.9774464],[22.3515166,36.9772831],[22.3516529,36.9772129],[22.3516105,36.9770951],[22.3517492,36.9769168],[22.3517771,36.9766648],[22.3519775,36.9767487],[22.351914,36.9765676],[22.3520117,36.9756856],[22.3522648,36.9748869],[22.3529073,36.9742649],[22.3532611,36.9740084],[22.3532065,36.9739356],[22.3532979,36.9738647],[22.3533601,36.9735862],[22.3536,36.9734002],[22.3537516,36.9731409],[22.3540825,36.9729022],[22.3542556,36.9726882],[22.3542583,36.9725621],[22.3545573,36.9722418],[22.3544928,36.9721057],[22.3545653,36.9718723],[22.3544435,36.9717895],[22.3543248,36.9715625],[22.3543771,36.9712207],[22.3544921,36.9710962],[22.3542315,36.9706779],[22.3542706,36.9704261],[22.3544097,36.9702297],[22.3540685,36.9699005],[22.3539206,36.9694658],[22.353945,36.969376],[22.353637,36.9690743],[22.3536244,36.9686144],[22.3535482,36.9685052],[22.3535652,36.9682351],[22.3534711,36.9679093],[22.3535227,36.9676035],[22.3533914,36.9674395],[22.3533864,36.967151],[22.3534636,36.9668907],[22.3537635,36.9665253],[22.3539676,36.966438],[22.3545068,36.9664364],[22.3551036,36.9663658],[22.3549809,36.9663281],[22.3549716,36.9662378],[22.3550399,36.9661937],[22.354928,36.9661741],[22.3549416,36.9660661],[22.3547073,36.9659908],[22.3547768,36.9658926],[22.3545987,36.965818],[22.3548256,36.965713],[22.3546595,36.9656025],[22.3546613,36.9655215],[22.3544832,36.9654469],[22.3544402,36.9653561],[22.3545079,36.9653391],[22.3544454,36.9651129],[22.3545792,36.9651598],[22.3546144,36.9650882],[22.3547378,36.9650989],[22.3547728,36.9650363],[22.3548619,36.9650736],[22.3550044,36.964715],[22.3550801,36.9648513],[22.3551474,36.9648522],[22.3551852,36.9646634],[22.3549739,36.9644352],[22.354832,36.9642439],[22.3550099,36.9638047],[22.355442,36.9635583],[22.3555977,36.9636326],[22.3555547,36.9635419],[22.3552663,36.9633756],[22.3554035,36.9632604],[22.3553489,36.9631875],[22.3551158,36.9630581],[22.3551995,36.9628249],[22.3555042,36.962757],[22.3557222,36.9625437],[22.3556372,36.9623172],[22.3562066,36.9619555],[22.3564215,36.9618864],[22.3568244,36.9619551],[22.3569332,36.9621188],[22.3572731,36.9619793],[22.3573715,36.9621068],[22.357744,36.9620219],[22.3577673,36.9620808],[22.3578993,36.9620127],[22.3580228,36.9620145],[22.3580081,36.9616537],[22.3580662,36.9615644],[22.3583508,36.9613881],[22.3585763,36.9613461],[22.3586279,36.9612972],[22.3586697,36.9609193],[22.358619,36.9606662],[22.3585085,36.9605835],[22.3587369,36.9598836],[22.3586844,36.9597117],[22.3587537,36.9590997],[22.3590317,36.958707],[22.3595797,36.9582909],[22.3595681,36.9588315],[22.3596336,36.9589226],[22.3599127,36.9589986],[22.360074,36.9588115],[22.3600316,36.9586937],[22.3601572,36.9585963],[22.3602242,36.9586153],[22.3604418,36.95842],[22.3606092,36.9579446],[22.3609054,36.9577504],[22.3610595,36.9573739],[22.3610891,36.9570409],[22.3609907,36.9569133],[22.3609323,36.9564979],[22.3610747,36.9561393],[22.3610569,36.9559227],[22.361204,36.9558707],[22.3614954,36.9559018],[22.3616766,36.9558322],[22.3620101,36.9554672],[22.3621686,36.9554063],[22.3624545,36.9551669],[22.362999,36.954913],[22.3630701,36.9547427],[22.3631367,36.9547797],[22.363218,36.9546546],[22.3632329,36.9544836],[22.363312,36.9544576],[22.3633074,36.9541511],[22.3634297,36.9542069],[22.3634762,36.9541354],[22.3635654,36.9541637],[22.3636581,36.9540298],[22.3637588,36.9540492],[22.3637619,36.953905],[22.3635718,36.9538663],[22.3636395,36.9538492],[22.363618,36.9538039],[22.3637189,36.9538143],[22.3636751,36.9537596],[22.3637444,36.9536704],[22.3636786,36.9535974],[22.3637349,36.9535892],[22.3639103,36.9532671],[22.364093,36.9531254],[22.3641714,36.9531355],[22.3645376,36.952816],[22.364593,36.9528529],[22.3649652,36.9527769],[22.3651129,36.9526978],[22.3651381,36.9525719],[22.3657873,36.9521482],[22.3658147,36.9519143],[22.3659765,36.9517002],[22.3660866,36.951278],[22.3660579,36.9510433],[22.3664315,36.9509042],[22.3666386,36.9506727],[22.3667569,36.9503949],[22.3669376,36.9503433],[22.3671205,36.9501926],[22.3677443,36.9504018]]},{"id":18633,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u0397 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae\u03c2 \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","description_GR":"","path":"NATURE\/Nature_Taygetos_Flora_Taygetos_summit","activity_type":96,"assistance":1,"difficulty":2,"scenic_value":5,"length":3789,"name_EN":"Taygetos Mt: Flora of Taygetos summit","description_EN":"","ascent_time":0,"descent_time":0,"marker":"Red_square","level":13,"ascent":841,"descent":5,"maxelev":2405,"minelev":1547,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34952 36.9502,22.36775 36.96197)","views":16,"millestones":"0,22.3677443,36.9504018#1,22.3616561,36.9558402#2,22.3580148,36.9618054#3,22.3524967,36.9574003#3.8,22.3497182,36.9529377","x":22.360074,"y":36.9588115,"coor":[[22.3677443,36.9504018],[22.3671205,36.9501926],[22.3669376,36.9503433],[22.3667569,36.9503949],[22.3666386,36.9506727],[22.3664315,36.9509042],[22.3660579,36.9510433],[22.3660866,36.951278],[22.3659765,36.9517002],[22.3658147,36.9519143],[22.3657873,36.9521482],[22.3651381,36.9525719],[22.3651129,36.9526978],[22.3649652,36.9527769],[22.364593,36.9528529],[22.3645376,36.952816],[22.3641714,36.9531355],[22.364093,36.9531254],[22.3639103,36.9532671],[22.3637349,36.9535892],[22.3636786,36.9535974],[22.3637444,36.9536704],[22.3636751,36.9537596],[22.3637189,36.9538143],[22.363618,36.9538039],[22.3636395,36.9538492],[22.3635718,36.9538663],[22.3637619,36.953905],[22.3637588,36.9540492],[22.3636581,36.9540298],[22.3635654,36.9541637],[22.3634762,36.9541354],[22.3634297,36.9542069],[22.3633074,36.9541511],[22.363312,36.9544576],[22.3632329,36.9544836],[22.363218,36.9546546],[22.3631367,36.9547797],[22.3630701,36.9547427],[22.362999,36.954913],[22.3624545,36.9551669],[22.3621686,36.9554063],[22.3620101,36.9554672],[22.3616766,36.9558322],[22.3614954,36.9559018],[22.361204,36.9558707],[22.3610569,36.9559227],[22.3610747,36.9561393],[22.3609323,36.9564979],[22.3609907,36.9569133],[22.3610891,36.9570409],[22.3610595,36.9573739],[22.3609054,36.9577504],[22.3606092,36.9579446],[22.3604418,36.95842],[22.3602242,36.9586153],[22.3601572,36.9585963],[22.3600316,36.9586937],[22.360074,36.9588115],[22.3599127,36.9589986],[22.3596336,36.9589226],[22.3595681,36.9588315],[22.3595797,36.9582909],[22.3590317,36.958707],[22.3587537,36.9590997],[22.3586844,36.9597117],[22.3587369,36.9598836],[22.3585085,36.9605835],[22.358619,36.9606662],[22.3586697,36.9609193],[22.3586279,36.9612972],[22.3585763,36.9613461],[22.3583508,36.9613881],[22.3580662,36.9615644],[22.3580081,36.9616537],[22.3580228,36.9620145],[22.3578993,36.9620127],[22.3577673,36.9620808],[22.357744,36.9620219],[22.3573262,36.9616015],[22.3572553,36.96124],[22.3571763,36.9612569],[22.3568461,36.9609459],[22.3567988,36.9610534],[22.3567427,36.9610526],[22.3563046,36.9605328],[22.3561784,36.9606572],[22.3562109,36.9607117],[22.356008,36.960745],[22.3560614,36.9608719],[22.3556729,36.9606592],[22.3556317,36.9604874],[22.3557004,36.9604252],[22.3556804,36.9603078],[22.3554195,36.9599076],[22.3541817,36.9584483],[22.3536316,36.9579179],[22.3534313,36.9567884],[22.3531213,36.9570996],[22.3527701,36.9572389],[22.3525978,36.9574168],[22.3525198,36.9573887],[22.3523041,36.9574984],[22.3518995,36.9564652],[22.3518814,36.9562667],[22.3520099,36.9560341],[22.3518636,36.9560501],[22.3518653,36.955969],[22.3517205,36.9559129],[22.3517263,36.9556426],[22.3512056,36.9553109],[22.3507519,36.9544754],[22.350042,36.9535461],[22.3499129,36.9532829],[22.3498819,36.9531563],[22.3499388,36.9531211],[22.3497182,36.9529377]]},{"id":19235,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: E4 \u03a3\u03c0\u03ac\u03c1\u03c4\u03b7-\u039d\u03ad\u03bf\u03c2 \u039c\u03c5\u03c3\u03c4\u03c1\u03ac\u03c2","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 E4 \u03c3\u03c4\u03bf\u03bd \u03bb\u03b1\u03ba\u03c9\u03bd\u03b9\u03ba\u03cc \u03ba\u03ac\u03bc\u03c0\u03bf","path":"PELOPONNESE\/Pelop_E4_Sparti_Parori","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":2,"length":6497,"name_EN":"Taygetos Mt: E4 Sparti-Neos Mystras","description_EN":"E4 session in the laconic lowlandE4","ascent_time":125,"descent_time":120,"marker":"E4","level":10,"ascent":113,"descent":17,"maxelev":302,"minelev":201,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.37436 37.07021,22.43031 37.07902)","views":6,"millestones":"0,22.4302278,37.0744174#1,22.4192203,37.0732001#2,22.4092463,37.0753228#3,22.3999999,37.0761667#4,22.3904956,37.0789429#5,22.3813422,37.0757430#6,22.3767657,37.0724089#6.5,22.3746504,37.0694640","x":22.3941997,"y":37.0775471,"coor":[[22.4302278,37.0744174],[22.4297415,37.0743208],[22.4288954,37.0741158],[22.4277095,37.0738026],[22.4267965,37.0735719],[22.4255278,37.073456],[22.4249868,37.0734037],[22.4241938,37.0733368],[22.4229164,37.0732162],[22.421585,37.0730926],[22.4202713,37.0729737],[22.4192069,37.0731961],[22.4184467,37.0735105],[22.41586,37.0739784],[22.4147703,37.0739594],[22.414089,37.0736258],[22.4139031,37.0733709],[22.4137136,37.0732873],[22.4134184,37.0734185],[22.4125493,37.0741009],[22.4117778,37.0744151],[22.4112678,37.0747012],[22.410519,37.0751238],[22.4091987,37.0753224],[22.4089941,37.0754278],[22.4085819,37.0757738],[22.4081177,37.0764526],[22.40778,37.0764661],[22.4069992,37.0761491],[22.4065291,37.0760346],[22.4064409,37.0758802],[22.4063418,37.0757798],[22.4058592,37.0757282],[22.4056693,37.0760006],[22.4048242,37.0754123],[22.4041018,37.074997],[22.4037948,37.0749996],[22.4030692,37.0752693],[22.4025838,37.0753529],[22.401927,37.0755604],[22.4009226,37.0758668],[22.4001278,37.0762166],[22.3995542,37.0759948],[22.3986392,37.0761785],[22.3974071,37.0765269],[22.3958056,37.0770888],[22.395446,37.0771223],[22.3941997,37.0775471],[22.3916953,37.0778827],[22.3907918,37.0780507],[22.3902032,37.0782229],[22.3905313,37.0790454],[22.3893879,37.0792236],[22.3889386,37.0791905],[22.3882957,37.0787401],[22.3877017,37.0781011],[22.3874431,37.0780976],[22.3872422,37.0780227],[22.3866235,37.0780233],[22.3859199,37.0777794],[22.3853237,37.0772508],[22.384989,37.07712],[22.3846688,37.077368],[22.3841179,37.0770856],[22.3834352,37.0768217],[22.3822396,37.0764449],[22.381903,37.0764042],[22.3818521,37.0761511],[22.3811816,37.0756125],[22.3808414,37.0753757],[22.3803036,37.0752783],[22.379796,37.0753434],[22.3794823,37.0752851],[22.3787507,37.0753021],[22.3785582,37.0753626],[22.3781324,37.0753838],[22.3774922,37.075339],[22.3770123,37.0751611],[22.3766248,37.0748674],[22.3763391,37.0750798],[22.3761448,37.0750772],[22.3748252,37.0741848],[22.3746053,37.0739474],[22.3744784,37.0735671],[22.3752351,37.0735234],[22.3756524,37.0734751],[22.3761544,37.0731394],[22.3765995,37.0726949],[22.3772093,37.0716261],[22.3758303,37.0711949],[22.376036,37.0707831],[22.375925,37.0701867],[22.3757131,37.069785],[22.3750139,37.0696582],[22.3746504,37.069464]]},{"id":19236,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b1\u03c1\u03cc\u03c1\u03b9-\u039b\u03b1\u03b3\u03ba\u03b1\u03b4\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1-\u03bc\u03bf\u03bd\u03ae \u03a6\u03b1\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03b7\u03c2 \u039b\u03b1\u03b3\u03ba\u03b1\u03b4\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2 \u03c3\u03c4\u03b7 \u03bc\u03bf\u03bd\u03ae \u03a6\u03b1\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7\u03c2","path":"PELOPONNESE\/Pelop_Taygetos_Parori_Lagadiotisa_Faneromeni","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5385,"name_EN":"Taygetos Mt: Parori-Lagadiotisa-Faneromeni monastery","description_EN":"Ascent through the cave-church of Panagia Lagadiotisa to Faneromeni monastery","ascent_time":130,"descent_time":115,"marker":"E4","level":10,"ascent":672,"descent":190,"maxelev":786,"minelev":299,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.36732 37.04455,22.383 37.06168)","views":5,"millestones":"0,22.3826297,37.0618847#1,22.3774050,37.0565193#2,22.3705474,37.0523394#3,22.3722832,37.0500151#4,22.3693286,37.0454986#5.4,22.3716817,37.0444857","x":22.3724753,"y":37.0525049,"coor":[[22.3826297,37.0618847],[22.3823955,37.0617914],[22.382241,37.0616541],[22.3813016,37.0603433],[22.3804896,37.0599176],[22.3803936,37.059673],[22.3803381,37.0595415],[22.3801161,37.0594033],[22.3797232,37.0593709],[22.3795576,37.0586926],[22.3797007,37.0588388],[22.3799135,37.0589814],[22.3797672,37.0584566],[22.3795439,37.0583815],[22.3793182,37.0584144],[22.3792758,37.0582967],[22.3791209,37.0581774],[22.3791243,37.0580152],[22.3793722,37.0579915],[22.3790304,37.0576714],[22.3791327,37.0576187],[22.379047,37.0574193],[22.3788142,37.0572629],[22.3784978,37.0573306],[22.3783656,37.0572026],[22.3779849,37.0571253],[22.3780423,37.057072],[22.3779089,37.0569981],[22.3779885,37.056855],[22.3778691,37.0566551],[22.3774876,37.0566138],[22.3773998,37.0565134],[22.3774269,37.0562975],[22.3773065,37.0561426],[22.3772773,37.0559259],[22.3775387,37.0552715],[22.3771494,37.0550679],[22.3772996,37.0548807],[22.3772369,37.0546545],[22.3768661,37.0546404],[22.3765161,37.0547077],[22.376292,37.0546686],[22.3760912,37.0545937],[22.3759826,37.054412],[22.3756781,37.0544529],[22.3753982,37.054395],[22.3752728,37.0544744],[22.3751615,37.0544187],[22.3750026,37.0544887],[22.3747469,37.05435],[22.3742532,37.0542981],[22.3738885,37.0539957],[22.373697,37.0540111],[22.3735419,37.0539008],[22.3732273,37.0538875],[22.3729447,37.0539557],[22.3721376,37.0538365],[22.3713822,37.0532876],[22.3710042,37.0530841],[22.3708285,37.0528834],[22.3704358,37.0528419],[22.3703077,37.0526396],[22.3703466,37.0525455],[22.3705905,37.0522988],[22.3707709,37.0522742],[22.370983,37.0523492],[22.3712556,37.0527495],[22.3716103,37.0529888],[22.3728917,37.0530154],[22.3731292,37.0529555],[22.3734777,37.0529603],[22.3736366,37.0528904],[22.3735713,37.0527903],[22.3730208,37.0527648],[22.3727192,37.0526705],[22.3724753,37.0525049],[22.3722418,37.0524792],[22.3720736,37.0524588],[22.3719743,37.0523673],[22.3719676,37.0516281],[22.3717074,37.0511739],[22.3717376,37.0508138],[22.3714974,37.050477],[22.3711956,37.0503917],[22.3711413,37.0503009],[22.3711971,37.0497969],[22.3715956,37.0500908],[22.3719445,37.0500775],[22.3724659,37.0504092],[22.3725675,37.0503925],[22.3725361,37.050284],[22.3721073,37.0498274],[22.3719748,37.0491856],[22.3716637,37.0490101],[22.3710691,37.0489479],[22.3705166,37.0484896],[22.3701712,37.0483407],[22.3698622,37.048066],[22.3694488,37.0479432],[22.3694867,37.0472226],[22.3690182,37.0465222],[22.3690005,37.0462966],[22.3690718,37.0461173],[22.3688464,37.0456185],[22.3688068,37.0453655],[22.3685064,37.0452172],[22.3683195,37.0450163],[22.3679846,37.0449036],[22.3676855,37.0446921],[22.3678561,37.0446044],[22.3684272,37.0447114],[22.3690738,37.0449726],[22.3692835,37.0451558],[22.369332,37.045517],[22.3695764,37.0456555],[22.3698959,37.0459664],[22.3699475,37.0461834],[22.369871,37.046606],[22.3699374,37.046652],[22.3702196,37.046079],[22.3700036,37.0456614],[22.3698956,37.0454526],[22.369826,37.045028],[22.3696512,37.0447913],[22.3696573,37.0445029],[22.3695703,37.0443665],[22.3697162,37.0443776],[22.3698804,37.0445871],[22.3701574,37.0447802],[22.3701293,37.0450412],[22.3702762,37.0450072],[22.3703913,37.0448826],[22.3703744,37.044621],[22.3704529,37.044631],[22.3705727,37.044813],[22.3705216,37.0451007],[22.3706231,37.0450841],[22.3708646,37.044835],[22.3708964,37.0449256],[22.3707441,37.0452119],[22.3707858,37.0453657],[22.3717373,37.0460908],[22.3717974,37.0464341],[22.371668,37.0467028],[22.3717118,37.0467575],[22.3718266,37.0466509],[22.3718994,37.0463995],[22.3718623,37.0460294],[22.3715199,37.0452135],[22.3715753,37.0447276],[22.3716817,37.0444857]]},{"id":19299,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u039c\u03c5\u03c3\u03c4\u03c1\u03ac\u03c2-\u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03b7-\u0392\u03bb\u03b1\u03c7\u03bf\u03c7\u03ce\u03c1\u03b9-\u039c\u03c5\u03c3\u03c4\u03c1\u03ac\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03c9\u03c1\u03b1\u03af\u03b1 \u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7 \u03b6\u03ce\u03bd\u03b7 \u03c4\u03bf\u03c5 \u039c\u03c5\u03c3\u03c4\u03c1\u03b1","path":"PELOPONNESE\/Pelop_Taygetos_Mystras_Taygeti_loop","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":7791,"name_EN":"Taygetos Mt: Mystras-Taygeti-Vlachochori-Mystras","description_EN":"A nice loop trail in teh Mystras area","ascent_time":180,"descent_time":170,"marker":"Red_dots","level":10,"ascent":582,"descent":582,"maxelev":760,"minelev":317,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34665 37.06163,22.37315 37.07285)","views":4,"millestones":"0,22.3728915,37.0703862#1,22.3654405,37.0672815#2,22.3592919,37.0634602#3,22.3525869,37.0623600#4,22.3496937,37.0658834#5,22.3550817,37.0701745#6,22.3640050,37.0725399#7,22.3683781,37.0685706#7.8,22.3728915,37.0703862","x":22.3468504,"y":37.0636041,"coor":[[22.3728915,37.0703862],[22.3729688,37.0699592],[22.3721324,37.0697877],[22.3718559,37.0695676],[22.3714042,37.0696515],[22.3709952,37.0693124],[22.3704214,37.0693225],[22.3703116,37.0691948],[22.3703857,37.0688894],[22.3702988,37.068744],[22.3701981,37.0686367],[22.3696374,37.0685569],[22.369479,37.0685998],[22.3689775,37.0689084],[22.3689226,37.0688445],[22.3686629,37.068895],[22.3688579,37.0687174],[22.368689,37.0687241],[22.3683329,37.068548],[22.3683035,37.0683605],[22.368066,37.0682581],[22.3673789,37.06778],[22.3670446,37.0676312],[22.3667515,37.0676632],[22.3668288,37.0675178],[22.3669767,37.0674387],[22.3669804,37.0672675],[22.3664494,37.0673774],[22.3661296,37.067391],[22.3655348,37.0673287],[22.3654235,37.0672731],[22.365223,37.0671982],[22.3650307,37.0672497],[22.3648523,37.0671751],[22.3647647,37.0670657],[22.3644636,37.0669444],[22.3643209,37.0667802],[22.3640522,37.0667224],[22.3640102,37.0665866],[22.3638427,37.0665302],[22.3637558,37.0663848],[22.363384,37.0664157],[22.3631801,37.0663341],[22.3632487,37.0662809],[22.3633372,37.0662709],[22.3633725,37.0661993],[22.3632303,37.066008],[22.3632943,37.0656484],[22.3631609,37.0655744],[22.3633088,37.0654954],[22.3635225,37.0654983],[22.3633026,37.0652609],[22.3633261,37.0652162],[22.3630244,37.0651219],[22.3629688,37.0650468],[22.3627503,37.0647463],[22.3627417,37.06462],[22.3628329,37.0645672],[22.3628129,37.0644497],[22.363005,37.0644073],[22.3630067,37.0643262],[22.3631764,37.0642835],[22.3631438,37.064229],[22.3632374,37.064059],[22.363105,37.06394],[22.3627142,37.0638084],[22.3622757,37.0638024],[22.3620272,37.063853],[22.3617368,37.0637589],[22.3614555,37.063764],[22.3613906,37.0637406],[22.3609926,37.0634196],[22.3600013,37.063496],[22.3598303,37.0636018],[22.3596612,37.0636175],[22.3591685,37.0634057],[22.3587639,37.063391],[22.3585867,37.0632624],[22.3583582,37.0632007],[22.3581374,37.0630083],[22.3580967,37.0628095],[22.3583231,37.0627405],[22.3586102,37.0624651],[22.3586531,37.0623327],[22.3585552,37.0621781],[22.3586865,37.0618284],[22.3585911,37.0616536],[22.3585,37.0617222],[22.3580837,37.0619778],[22.3574768,37.0620235],[22.3568932,37.062421],[22.3563964,37.0625764],[22.3562577,37.0626826],[22.3559811,37.0626833],[22.3557357,37.0625897],[22.3556076,37.0622883],[22.3553289,37.0621267],[22.3550187,37.061906],[22.3546167,37.0617743],[22.3543748,37.0615186],[22.3541745,37.0614166],[22.3537463,37.0614558],[22.3533885,37.0613607],[22.3533489,37.0616305],[22.3527997,37.0620645],[22.3525098,37.0624661],[22.3523619,37.0625452],[22.3514735,37.0625418],[22.351016,37.0623732],[22.3504529,37.0624105],[22.3499868,37.0626383],[22.3498431,37.0630419],[22.3496934,37.0632021],[22.3489998,37.0630302],[22.3482907,37.0630564],[22.3479737,37.0631511],[22.3476649,37.0633902],[22.3474163,37.0634408],[22.3472035,37.0634017],[22.3471339,37.0634999],[22.3468504,37.0636041],[22.347121,37.0640946],[22.347661,37.0646069],[22.3479052,37.0647545],[22.3483296,37.0654094],[22.3483382,37.0655357],[22.3486692,37.0658287],[22.3488588,37.0659035],[22.3490961,37.0658527],[22.3492287,37.0659627],[22.3498496,37.0658542],[22.3500513,37.065893],[22.3501428,37.0658222],[22.3502087,37.0658952],[22.3505778,37.0659905],[22.3506313,37.0661174],[22.3508431,37.0662015],[22.3513076,37.0665684],[22.3515978,37.0666716],[22.3520078,37.0669567],[22.3521047,37.0671564],[22.3524385,37.0673233],[22.3525259,37.0674416],[22.3523778,37.0675297],[22.3523019,37.0679162],[22.3522881,37.0682],[22.3519887,37.0685203],[22.352421,37.0688147],[22.3525702,37.0693283],[22.3529462,37.0696219],[22.3530591,37.0696055],[22.3530266,37.0690282],[22.353097,37.0688939],[22.3531861,37.0689312],[22.3533922,37.0692856],[22.3535038,37.0695711],[22.3533529,37.0697853],[22.3533614,37.0699116],[22.3536646,37.0699338],[22.3548507,37.0702207],[22.3553478,37.0701194],[22.355578,37.0698793],[22.356136,37.0695625],[22.3562814,37.069551],[22.356711,37.0696449],[22.3569673,37.0697566],[22.3573066,37.0696711],[22.3577435,37.0697493],[22.358014,37.069726],[22.3582557,37.0697339],[22.3584711,37.0698968],[22.3587989,37.070343],[22.3594942,37.0706027],[22.3600493,37.0709439],[22.3602769,37.0713436],[22.3611408,37.0714457],[22.3624927,37.0717731],[22.3628331,37.0717192],[22.3635613,37.0716594],[22.3637959,37.0717348],[22.3640281,37.0719182],[22.3641078,37.072397],[22.3636206,37.0730843],[22.3643882,37.0724369],[22.3644956,37.0721635],[22.3644076,37.0720722],[22.364432,37.0719824],[22.3648768,37.0717001],[22.3651298,37.0714422],[22.3656387,37.071314],[22.365629,37.0712418],[22.3654491,37.0712393],[22.3654392,37.0711761],[22.3659105,37.0712276],[22.3659344,37.0711649],[22.3657783,37.0710996],[22.3657686,37.0710274],[22.3661296,37.0709783],[22.3664698,37.0708478],[22.3666179,37.0707597],[22.3666074,37.0706626],[22.367017,37.0704429],[22.3671322,37.0703183],[22.3670434,37.070263],[22.3671575,37.0701835],[22.3671025,37.0701286],[22.3671603,37.0700573],[22.3669726,37.0698925],[22.3670296,37.0698572],[22.3669978,37.0697667],[22.3671218,37.0697504],[22.3669776,37.0696582],[22.3671591,37.0695886],[22.366801,37.0695026],[22.3669155,37.069405],[22.3668946,37.0693326],[22.3670536,37.0692627],[22.3673688,37.069249],[22.3674803,37.0692956],[22.3677137,37.0689022],[22.3677321,37.068569],[22.3682952,37.0685317],[22.3683329,37.068548],[22.368689,37.0687241],[22.3688579,37.0687174],[22.3686629,37.068895],[22.3689226,37.0688445],[22.3689775,37.0689084],[22.369479,37.0685998],[22.3696374,37.0685569],[22.3701981,37.0686367],[22.3702988,37.068744],[22.3703857,37.0688894],[22.3703116,37.0691948],[22.3704214,37.0693225],[22.3709952,37.0693124],[22.3714042,37.0696515],[22.3718559,37.0695676],[22.3721324,37.0697877],[22.3729688,37.0699592],[22.3728915,37.0703862]]},{"id":19300,"author":"AnaDigit","name_GR":"\u03a4\u03b1\u03b0\u03b3\u03b5\u03c4\u03bf\u03c2: \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b1\u03c8\u03bf\u03b4\u03b5\u03bc\u03b1\u03c4\u03bf\u03cd\u03c3\u03b1-\u03ba\u03b1\u03c4. \u03b1\u03bd\u03ac\u03b3\u03ba\u03b7\u03c2 \u03a4\u03c3\u03ac\u03c1\u03ba\u03bf\u03c5","description_GR":"","path":"PELOPONNESE\/Pelop_Taygetos_Kapsodematousa_Tsarkos","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":4416,"name_EN":"Taygetos Mt: Panagia Kapsodematousa-Tsarkos bivouac","description_EN":"","ascent_time":150,"descent_time":110,"marker":"No_marks","level":10,"ascent":872,"descent":33,"maxelev":1780,"minelev":916,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.30606 36.99126,22.33553 37.01212)","views":13,"millestones":"0,22.3065304,36.9908548#1,22.3129769,36.9966968#2,22.3177026,37.0031842#3,22.3268979,37.0072034#4.4,22.3350671,37.0122979","x":22.314878,"y":37.0027698,"coor":[[22.3065304,36.9908548],[22.3065958,36.9909459],[22.3075358,36.9911215],[22.3084517,36.9913689],[22.3092735,36.9918043],[22.3099286,36.9926699],[22.3104891,36.9932367],[22.3105888,36.9933012],[22.3111649,36.9932125],[22.3114453,36.9932345],[22.3117211,36.9934638],[22.3118159,36.9937535],[22.3123202,36.9943195],[22.3123663,36.9947799],[22.3121966,36.9953363],[22.3121267,36.9959572],[22.312397,36.9964388],[22.3134986,36.9969321],[22.3137707,36.9973326],[22.3137868,36.9976212],[22.3139794,36.9980566],[22.3143293,36.9984942],[22.3143848,36.9990358],[22.3143606,36.9995267],[22.3144305,37.0001316],[22.3143123,37.000905],[22.3143579,37.0013834],[22.3145037,37.0019082],[22.314878,37.0027698],[22.3150317,37.0029342],[22.3154418,37.0031924],[22.3159351,37.0032445],[22.3171067,37.0031169],[22.3177794,37.0031895],[22.3212896,37.0040324],[22.3228375,37.0046762],[22.3240812,37.00587],[22.324681,37.006194],[22.3263485,37.0065149],[22.3263788,37.0071823],[22.3267707,37.007251],[22.3275865,37.006947],[22.3282912,37.0071011],[22.3290027,37.0069399],[22.3299096,37.0070969],[22.3305768,37.0074217],[22.3305631,37.0080525],[22.3298787,37.0085115],[22.3301046,37.0100019],[22.3304036,37.0107182],[22.3308859,37.0112748],[22.3313209,37.0116392],[22.3319274,37.0120105],[22.3341229,37.0123027],[22.3345788,37.0125254],[22.3347935,37.0124744],[22.3350671,37.0122979]]},{"id":19815,"author":"AnaDigit","name_GR":"O32: \u039f32 \u039b\u03b1\u03b3\u03ba\u03ac\u03b4\u03b1-\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u03a4\u03bf\u03c5\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a0\u03b5\u03c1\u03af\u03c0\u03c4\u03b5\u03c1\u03bf \u039b\u03b1\u03b3\u03ba\u03ac\u03b4\u03b1\u03c2 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5 \u03ad\u03c9\u03c2 \u03c4\u03b1 \u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1 \u0391\u03b2\u03af\u03b1\u03c2","path":"PELOPONNESE\/Pelop_O32_11_Lagada_Pigadia","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":16630,"name_EN":"O32: \u039f32 Lagada-Pigadia","description_EN":"From Lagada Tourist hut to Pigadia","ascent_time":295,"descent_time":305,"marker":"O32","level":10,"ascent":491,"descent":877,"maxelev":1440,"minelev":914,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.24989 36.99644,22.27864 37.06659)","views":3,"millestones":"0,22.2655775,37.0668148#1,22.2655835,37.0581962#2,22.2613047,37.0519062#3,22.2685303,37.0463941#4,22.2764665,37.0462556#5,22.2724240,37.0407651#6,22.2653774,37.0367268#7,22.2617418,37.0307909#8,22.2674428,37.0260909#9,22.2734805,37.0209591#10,22.2682499,37.0201579#11,22.2664504,37.0154622#12,22.2631713,37.0102877#13,22.2673909,37.0052926#14,22.2659299,36.9995433#15,22.2573479,37.0005026#16.6,22.2588408,36.9961901","x":22.2716478,"y":37.0246609,"coor":[[22.2655775,37.0668148],[22.2656939,37.0661518],[22.2656825,37.0656626],[22.2654378,37.0650484],[22.265325,37.0640734],[22.2652443,37.0635584],[22.2653955,37.0628463],[22.2654416,37.0618105],[22.2655854,37.0614228],[22.2656257,37.0606415],[22.265933,37.0599858],[22.266292,37.0595291],[22.2663436,37.0592392],[22.266239,37.0588929],[22.2656671,37.058328],[22.2648634,37.0570769],[22.2642599,37.0564146],[22.2638074,37.0552543],[22.2633968,37.055014],[22.2625206,37.0549696],[22.2621061,37.0548531],[22.2618291,37.0546755],[22.2613691,37.0541325],[22.2612216,37.0537],[22.26125,37.0529478],[22.2611866,37.0527688],[22.2609758,37.0526418],[22.260449,37.0525665],[22.2602799,37.0523837],[22.2608426,37.0523672],[22.2610016,37.0522974],[22.2611748,37.0521017],[22.2617851,37.05118],[22.2618704,37.0508906],[22.2622922,37.0506377],[22.2630503,37.0504324],[22.2634959,37.0501258],[22.2640611,37.0499966],[22.2649112,37.0497003],[22.2652613,37.0496333],[22.2658109,37.0496954],[22.266095,37.0495644],[22.2663635,37.0491312],[22.2666848,37.0488452],[22.2664507,37.0482627],[22.2665239,37.0480091],[22.2668,37.047736],[22.2668603,37.0475589],[22.2672918,37.0473737],[22.2676967,37.0468748],[22.2681942,37.0467514],[22.2684221,37.0466195],[22.2686347,37.046172],[22.2687962,37.0454961],[22.2688198,37.0449534],[22.2686895,37.0447487],[22.2687141,37.0446544],[22.2691444,37.044521],[22.2693393,37.0443571],[22.2695854,37.0444103],[22.2699735,37.0446503],[22.2703441,37.0446737],[22.2707999,37.0449012],[22.271042,37.0451345],[22.271701,37.0453289],[22.2719405,37.0456772],[22.2720681,37.045999],[22.2722013,37.0460753],[22.272834,37.0459425],[22.2731355,37.0460348],[22.2736082,37.0460169],[22.2756711,37.0462812],[22.2761962,37.0464308],[22.2771206,37.0458314],[22.277128,37.0455047],[22.2773603,37.0451746],[22.2774207,37.0444905],[22.2775169,37.0442148],[22.2772756,37.0434519],[22.2773583,37.0432751],[22.2773527,37.0430226],[22.2775381,37.0426851],[22.2775987,37.0424944],[22.2774646,37.042346],[22.2771602,37.0423844],[22.2761873,37.0416537],[22.2747633,37.0409796],[22.2745836,37.0409724],[22.2742782,37.0410536],[22.2737162,37.0410454],[22.2734083,37.040739],[22.2725975,37.0407948],[22.2717014,37.0406466],[22.2714766,37.0406433],[22.2710242,37.0407584],[22.2704648,37.0411333],[22.2700644,37.0409427],[22.2697363,37.0410303],[22.2694004,37.040969],[22.2689501,37.040994],[22.2685444,37.0405374],[22.268354,37.0400119],[22.2679043,37.0395164],[22.2674614,37.0392147],[22.2669789,37.0391716],[22.2666969,37.0387168],[22.2665629,37.0386766],[22.2662361,37.0387101],[22.2660597,37.0385588],[22.2659528,37.0383161],[22.2659918,37.0380824],[22.2659564,37.0376627],[22.2661078,37.0374306],[22.2660591,37.0371032],[22.2661088,37.0370002],[22.2659419,37.0369234],[22.2657329,37.0367221],[22.2650469,37.0367301],[22.2648581,37.0366282],[22.2646004,37.0365884],[22.2641337,37.0363472],[22.2635268,37.0358448],[22.2633703,37.0358042],[22.2630314,37.0358736],[22.2630768,37.0353628],[22.2630195,37.0353011],[22.2625514,37.0351208],[22.2623199,37.0349191],[22.2619273,37.034884],[22.2614297,37.0350119],[22.2613187,37.0349495],[22.2614454,37.0343227],[22.2616643,37.0340915],[22.2617383,37.0338019],[22.2614316,37.0334459],[22.2612836,37.0325424],[22.2610534,37.0322867],[22.2609787,37.0321076],[22.2610391,37.0319237],[22.2613266,37.031644],[22.261211,37.0312908],[22.2612477,37.0311606],[22.2615809,37.0308456],[22.2619435,37.0307202],[22.2620237,37.0306537],[22.2619422,37.030283],[22.2621636,37.0299392],[22.2622836,37.0291163],[22.2622079,37.0289845],[22.2618977,37.0287817],[22.261877,37.0287025],[22.2625949,37.0282804],[22.2630357,37.0281764],[22.2636941,37.0278954],[22.263851,37.0279157],[22.264335,37.0283847],[22.2651404,37.0285587],[22.2654219,37.0285381],[22.2664287,37.0282621],[22.2665205,37.0281823],[22.2666627,37.0278577],[22.267018,37.0275609],[22.2669915,37.0272406],[22.267204,37.026793],[22.2671801,37.02636],[22.2674563,37.0260801],[22.2679208,37.0259202],[22.2680774,37.025954],[22.2684101,37.0261549],[22.2685787,37.0261574],[22.2687281,37.0260131],[22.2688014,37.025755],[22.2689847,37.0256045],[22.2696158,37.0255326],[22.2698442,37.0253759],[22.2703878,37.0251991],[22.271014,37.0248499],[22.2714539,37.024782],[22.2716478,37.0246609],[22.2717411,37.024509],[22.2717119,37.0240151],[22.272184,37.0240152],[22.27278,37.0240059],[22.2729728,37.0239343],[22.2730768,37.0238051],[22.2731487,37.0231144],[22.2729992,37.0227675],[22.2731052,37.0220547],[22.2730955,37.0214913],[22.273165,37.0213999],[22.2735166,37.021263],[22.273565,37.0211105],[22.273512,37.0209678],[22.2733221,37.0209155],[22.2728117,37.0211176],[22.2727169,37.0213325],[22.2726938,37.0218572],[22.2723377,37.0221923],[22.2721852,37.022474],[22.2720151,37.0225391],[22.2713162,37.0221323],[22.2707372,37.0218895],[22.2702211,37.021846],[22.2695776,37.0219673],[22.2695802,37.0218547],[22.2702602,37.0216077],[22.2705649,37.0215558],[22.2710243,37.0216188],[22.2711378,37.0215709],[22.2711505,37.021508],[22.271062,37.0214459],[22.2708037,37.0214353],[22.2703011,37.0212928],[22.2696928,37.0213516],[22.2694017,37.0212977],[22.26876,37.0208445],[22.268692,37.0204672],[22.2686842,37.0203183],[22.268575,37.020177],[22.2682608,37.0201522],[22.2677604,37.0204108],[22.2671773,37.0203459],[22.2669401,37.0203988],[22.2667236,37.0205241],[22.266634,37.0205115],[22.2664098,37.0194965],[22.2652911,37.0182724],[22.2651585,37.0181713],[22.2634413,37.0175671],[22.2634777,37.0174504],[22.2640446,37.0172356],[22.2643527,37.0170306],[22.2650773,37.0168001],[22.2655468,37.0164194],[22.2658846,37.0158993],[22.2664527,37.0156304],[22.2664563,37.0154705],[22.2662602,37.015195],[22.266434,37.0149699],[22.2664035,37.0148275],[22.2660154,37.0145943],[22.2650885,37.0138349],[22.2640742,37.0134618],[22.2630975,37.0134114],[22.2620353,37.0131683],[22.2615828,37.0132969],[22.2614939,37.0132527],[22.2614793,37.0129078],[22.2617499,37.0123755],[22.2617207,37.0121767],[22.2617799,37.0120469],[22.26195,37.0119773],[22.2626365,37.0119378],[22.2628426,37.0117741],[22.2628912,37.0116125],[22.2626867,37.0112152],[22.2627139,37.011006],[22.26325,37.0101689],[22.2635387,37.0098284],[22.2636646,37.0097311],[22.2647819,37.0095243],[22.2650886,37.0093824],[22.2652933,37.0092299],[22.2653293,37.0091313],[22.2650697,37.0086836],[22.2650613,37.0085595],[22.265664,37.0082483],[22.26578,37.0080901],[22.2657657,37.0077316],[22.265548,37.0074197],[22.2655071,37.0072388],[22.2658377,37.0070341],[22.265937,37.0066232],[22.2662628,37.006628],[22.2668093,37.0068094],[22.2670488,37.0071509],[22.2672488,37.007253],[22.2678919,37.0066472],[22.2678606,37.0065409],[22.2673954,37.0062389],[22.2673001,37.0059851],[22.2673252,37.0058683],[22.2675785,37.0056016],[22.2673834,37.0052833],[22.2673644,37.0051298],[22.2675273,37.0048843],[22.2678139,37.0046361],[22.2677503,37.0044685],[22.2674953,37.004316],[22.2674666,37.0040948],[22.268056,37.0028821],[22.268031,37.0024987],[22.2677543,37.0023099],[22.2671085,37.0020481],[22.266907,37.0020136],[22.266546,37.0020759],[22.2663113,37.0020161],[22.2658914,37.0017013],[22.2655688,37.0015569],[22.2652776,37.0015143],[22.2648146,37.0016134],[22.2646417,37.001309],[22.2647785,37.0007296],[22.2645099,37.0001894],[22.264516,36.9999191],[22.2647096,36.9998048],[22.2660759,36.999516],[22.2662125,36.9994392],[22.2662157,36.9992972],[22.2653775,36.9994517],[22.2651528,36.9994485],[22.2645392,36.9992547],[22.2641094,36.9993769],[22.2636592,36.9994086],[22.263544,36.9995308],[22.2633865,37.0000333],[22.2622506,37.0005664],[22.2619111,37.0006719],[22.2617507,37.0008047],[22.2614595,37.0012579],[22.2613237,37.0012987],[22.2610892,37.0012344],[22.2605275,37.0007327],[22.2603382,37.0006556],[22.2601356,37.0006707],[22.2597603,37.0008634],[22.2591953,37.0010039],[22.2586406,37.000687],[22.2580897,37.000697],[22.2574411,37.000559],[22.2568205,37.0001781],[22.2566187,37.0001571],[22.2563694,37.0002458],[22.256157,37.0001999],[22.2556916,36.9999091],[22.2555569,36.9994137],[22.2553798,36.9992939],[22.254996,36.9993694],[22.2546853,36.9996916],[22.2542517,36.9999759],[22.2540828,36.9999914],[22.2537295,36.9997158],[22.2532157,36.9990908],[22.2527418,36.9986828],[22.2523408,36.9985281],[22.2514569,36.9983619],[22.2519188,36.9983079],[22.2523547,36.99792],[22.2548119,36.9966109],[22.255254,36.9964394],[22.2564807,36.9963583],[22.2576397,36.9961342],[22.257817,36.9962427],[22.2582435,36.996267],[22.2582256,36.9965574],[22.2583361,36.9966379],[22.2588408,36.9961901]]},{"id":19817,"author":"AnaDigit","name_GR":"O32: O32 \u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u0392\u03c5\u03c1\u03bf\u03cd","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 O32 \u03b1\u03c0\u03cc \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5 \u03c3\u03c4\u03b1 \u03a4\u03c3\u03ad\u03c1\u03b9\u03b1","path":"PELOPONNESE\/Pelop_O32_13_Varvara_Tseria","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":16435,"name_EN":"O32t: O32 Viros Gorge","description_EN":"O32 session from Taygetos refuge to Tseria","ascent_time":480,"descent_time":515,"marker":"O32","level":9,"ascent":618,"descent":1562,"maxelev":1567,"minelev":420,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.27142 36.91189,22.37128 36.94904)","views":5,"millestones":"0,22.3677443,36.9504018#1,22.3656285,36.9452578#2,22.3614478,36.9397664#3,22.3619837,36.9354846#4,22.3623756,36.9268544#5,22.3600198,36.9198037#6,22.3563567,36.9134157#7,22.3487784,36.9129980#8,22.3396603,36.9142435#9,22.3300619,36.9158575#10,22.3205400,36.9173308#11,22.3112357,36.9183973#12,22.3019130,36.9221562#13,22.2927583,36.9255531#14,22.2899030,36.9198251#15,22.2816511,36.9154553#16.4,22.2722277,36.9131861","x":22.346489,"y":36.9132314,"coor":[[22.3677443,36.9504018],[22.3678171,36.9503599],[22.367845,36.9501079],[22.3681918,36.949644],[22.3684955,36.9496211],[22.3688288,36.949788],[22.3689748,36.94979],[22.3692583,36.9496587],[22.3698226,36.9495312],[22.3702909,36.9492605],[22.370197,36.9489888],[22.3702899,36.9488458],[22.3703171,36.9486209],[22.3704307,36.9485594],[22.3705065,36.9483621],[22.3698263,36.9481364],[22.3697624,36.9479733],[22.3693791,36.9475174],[22.3691142,36.9472974],[22.3686258,36.9470293],[22.3682538,36.9465735],[22.367609,36.9462672],[22.3672894,36.9459834],[22.3669537,36.9459247],[22.3667278,36.9459847],[22.3665935,36.9459648],[22.3663748,36.9456914],[22.3660953,36.9456335],[22.3658959,36.9455046],[22.365246,36.9449097],[22.3649077,36.9446662],[22.3646862,36.944519],[22.3646231,36.9443198],[22.3643231,36.9441715],[22.3636147,36.9442158],[22.3632849,36.9444095],[22.3626129,36.9443281],[22.3624866,36.943407],[22.3620277,36.9428148],[22.3620518,36.942734],[22.3619552,36.9425254],[22.3620032,36.9423818],[22.361872,36.9422178],[22.3619314,36.9420654],[22.3616732,36.9420618],[22.36057,36.941668],[22.3605405,36.9414693],[22.3604098,36.9413954],[22.3607386,36.9407239],[22.3609103,36.9405731],[22.3613158,36.9405156],[22.361464,36.9404095],[22.3615619,36.9400323],[22.3614229,36.9397059],[22.3614727,36.9394812],[22.361552,36.9394463],[22.361731,36.9394758],[22.3619494,36.9397672],[22.3621273,36.9398508],[22.3623044,36.9399028],[22.3625446,36.9396988],[22.3628389,36.9395857],[22.3630124,36.9398765],[22.363166,36.9395181],[22.3634315,36.9391792],[22.363773,36.9390803],[22.3636992,36.9388539],[22.3634864,36.9387789],[22.3630912,36.9381921],[22.3630408,36.9379255],[22.3627762,36.9376965],[22.3624967,36.9376386],[22.3622534,36.937464],[22.3620415,36.9373979],[22.3617489,36.93743],[22.3614814,36.9373361],[22.361134,36.9373043],[22.3605443,36.9370528],[22.3603465,36.9368518],[22.3603949,36.9366902],[22.3606207,36.9366302],[22.3611212,36.9363307],[22.36154,36.9361742],[22.3616433,36.9360675],[22.3617279,36.9357892],[22.362131,36.9353171],[22.3621023,36.9345595],[22.3623882,36.9337883],[22.3622384,36.9334437],[22.3619107,36.9330156],[22.3617288,36.9325985],[22.3618043,36.9322209],[22.361752,36.9320399],[22.3618907,36.9318526],[22.3621722,36.9307658],[22.3621803,36.9298646],[22.3625071,36.9292832],[22.3625632,36.9287612],[22.3626682,36.928623],[22.3626109,36.9281535],[22.3624681,36.9280073],[22.362401,36.9269428],[22.362307,36.926617],[22.3623791,36.9263926],[22.3622804,36.9262831],[22.3624168,36.9262039],[22.3625101,36.9260429],[22.3626916,36.9259553],[22.3626929,36.9258922],[22.3619193,36.9253227],[22.3616069,36.9252283],[22.3614821,36.9252896],[22.3612961,36.9250617],[22.3613652,36.9244588],[22.3615266,36.9242627],[22.3615538,36.9240378],[22.3613707,36.9236747],[22.3613539,36.9234131],[22.361599,36.9229748],[22.3615802,36.9228033],[22.3616596,36.9227683],[22.3617819,36.9228241],[22.361731,36.92258],[22.3618229,36.9224821],[22.3617841,36.9221932],[22.3616626,36.9221014],[22.3615003,36.9218197],[22.3615281,36.9215677],[22.361418,36.921467],[22.3615111,36.9213151],[22.3615143,36.9211619],[22.3613143,36.921069],[22.3610168,36.9208035],[22.3609262,36.9203156],[22.3606863,36.9199878],[22.3600168,36.9197982],[22.3595091,36.9199174],[22.359363,36.9199244],[22.3592838,36.9198557],[22.3591332,36.9197635],[22.3588251,36.918948],[22.3582841,36.9185259],[22.3580838,36.918442],[22.3576247,36.9183906],[22.3571642,36.9184023],[22.3569153,36.918489],[22.3567826,36.9178742],[22.3568445,36.9176047],[22.356913,36.9175515],[22.3568832,36.9173709],[22.357179,36.9171857],[22.3573023,36.9171964],[22.3572282,36.9169881],[22.3572978,36.9168809],[22.3573164,36.9165386],[22.3571976,36.9164671],[22.3570349,36.9162035],[22.3569056,36.9153769],[22.3569358,36.9150168],[22.3568528,36.9147002],[22.3565688,36.9143357],[22.3564627,36.9140458],[22.3565647,36.9140022],[22.356555,36.9139299],[22.356391,36.9137294],[22.356353,36.9134044],[22.3564581,36.9132165],[22.3563946,36.9130354],[22.3564832,36.9130907],[22.3565419,36.9129743],[22.3563306,36.9128813],[22.356401,36.912738],[22.3558651,36.9126044],[22.3557519,36.9126479],[22.3549697,36.9124839],[22.355155,36.912216],[22.3550664,36.9121607],[22.3550134,36.9120158],[22.3550755,36.9117372],[22.3542323,36.9117526],[22.35401,36.9116503],[22.3532535,36.9118562],[22.3530811,36.9120431],[22.352629,36.91219],[22.3526135,36.9123881],[22.3524421,36.9125299],[22.351983,36.9124785],[22.3508027,36.913075],[22.3504758,36.9131426],[22.3501051,36.9131555],[22.3499269,36.9130899],[22.3498884,36.9127919],[22.3497545,36.912754],[22.3493951,36.9127671],[22.3485238,36.9130885],[22.3476129,36.9131659],[22.3469977,36.9130672],[22.3464589,36.9130687],[22.346489,36.9132314],[22.3458345,36.9133935],[22.3454638,36.9134064],[22.3453498,36.9134859],[22.3450581,36.9134819],[22.3444551,36.913852],[22.3442705,36.9140838],[22.3442775,36.9142822],[22.3441145,36.9143408],[22.3436426,36.9143612],[22.3434824,36.9145032],[22.3433837,36.9143937],[22.3430554,36.9145243],[22.3427774,36.9144032],[22.3428191,36.914548],[22.342549,36.9145803],[22.3424295,36.9143984],[22.3421621,36.9143045],[22.3417581,36.9142989],[22.3414246,36.91415],[22.341237,36.9140032],[22.3411619,36.9138399],[22.3410727,36.9138116],[22.3405844,36.9140752],[22.3401773,36.9142137],[22.3400513,36.9143291],[22.3398375,36.9143532],[22.3396589,36.9143056],[22.3396613,36.9141975],[22.3395504,36.9141328],[22.3394484,36.9141765],[22.3393374,36.9141208],[22.3390092,36.9142424],[22.3386407,36.9141562],[22.3384302,36.914027],[22.338318,36.9140255],[22.3379115,36.914137],[22.3374786,36.9144283],[22.3369823,36.9145386],[22.3362267,36.9141855],[22.3359914,36.9141642],[22.3355276,36.9143289],[22.3351705,36.9142338],[22.3349321,36.9143566],[22.3337926,36.9141063],[22.3334841,36.9143543],[22.3331695,36.9148817],[22.3323287,36.9153476],[22.3320122,36.9154513],[22.3315527,36.9154178],[22.3313412,36.9153338],[22.3309922,36.9153829],[22.3302443,36.9157059],[22.3297869,36.9160871],[22.3295733,36.9161021],[22.3295296,36.9160474],[22.3294174,36.9160458],[22.3288075,36.9162175],[22.3277501,36.9168336],[22.3273117,36.9168634],[22.3270882,36.9168152],[22.3267681,36.9165674],[22.3261796,36.9162706],[22.3259599,36.9160512],[22.3255559,36.9160455],[22.325352,36.9161328],[22.3250057,36.9160558],[22.3244501,36.9157956],[22.323899,36.9158419],[22.3235486,36.9159541],[22.3232795,36.9159413],[22.3230763,36.9159925],[22.3227772,36.9163218],[22.3227733,36.916502],[22.3226369,36.9165812],[22.322424,36.9165602],[22.3222533,36.9166659],[22.3214959,36.9169076],[22.3209726,36.9172247],[22.3204985,36.9173442],[22.3201077,36.9172485],[22.3197929,36.9172711],[22.3190682,36.9175583],[22.31893,36.9177186],[22.3184523,36.9180002],[22.3175927,36.9182945],[22.3166124,36.9184609],[22.3162768,36.9184111],[22.3162801,36.9187716],[22.3160599,36.919084],[22.3158553,36.9191983],[22.3155393,36.9192749],[22.3154623,36.9191566],[22.3152321,36.9187928],[22.3144476,36.9182229],[22.3141137,36.9180919],[22.3128134,36.9180104],[22.3093596,36.9188626],[22.3085646,36.9187702],[22.3064004,36.919172],[22.305203,36.9195064],[22.3044822,36.9196133],[22.3031863,36.9203429],[22.3030663,36.9206927],[22.3027423,36.9211297],[22.3022856,36.9214747],[22.3020886,36.9217513],[22.3020033,36.9220566],[22.3016466,36.9224481],[22.3013045,36.9226865],[22.2997847,36.9233859],[22.2993975,36.9236327],[22.2992019,36.9238462],[22.2982945,36.9242659],[22.2975047,36.9249486],[22.2969976,36.9250314],[22.2959796,36.9248726],[22.2947222,36.9248726],[22.2935425,36.9259192],[22.293284,36.9259335],[22.2922567,36.9251797],[22.2914387,36.9251138],[22.2910379,36.9249638],[22.2904184,36.9245493],[22.2900182,36.9243723],[22.2896872,36.9241152],[22.2895688,36.9238881],[22.2895301,36.9236082],[22.2896273,36.9232761],[22.2898005,36.9230622],[22.2907453,36.922481],[22.2919678,36.9215251],[22.2919518,36.9212364],[22.2916925,36.920782],[22.2914072,36.9204895],[22.2906573,36.9203886],[22.2901916,36.9201295],[22.289993,36.9199734],[22.2896355,36.9193914],[22.2886364,36.919395],[22.2882805,36.9192457],[22.287681,36.9189486],[22.2874391,36.9187198],[22.2871393,36.9185713],[22.2868542,36.9182697],[22.2864969,36.9181834],[22.2861046,36.917655],[22.2860626,36.9175282],[22.2861111,36.9173667],[22.2860248,36.9172122],[22.2858921,36.9171202],[22.2857574,36.9171182],[22.2856372,36.9169723],[22.2854024,36.9169328],[22.2853401,36.9167066],[22.2850156,36.9161611],[22.2846186,36.9158399],[22.2838614,36.9155676],[22.2831373,36.9155751],[22.2824972,36.9155839],[22.281638,36.9153551],[22.2816572,36.9154996],[22.2812394,36.9156108],[22.2809368,36.9155884],[22.2805469,36.9154565],[22.2803718,36.9152557],[22.2801377,36.9152478],[22.279779,36.9152246],[22.2798004,36.91527],[22.2797443,36.9152691],[22.2793685,36.9150113],[22.2794159,36.9153996],[22.2792596,36.9153613],[22.2792455,36.9154873],[22.2791465,36.9153957],[22.2788876,36.915428],[22.278874,36.915536],[22.278752,36.9154711],[22.278772,36.9155795],[22.2786049,36.915523],[22.2783105,36.9156359],[22.2782336,36.9155627],[22.2782488,36.9153827],[22.2779701,36.9152975],[22.2777316,36.9149245],[22.2771888,36.9146012],[22.2771684,36.9145107],[22.2765409,36.9139608],[22.276494,36.9140503],[22.2763494,36.9139941],[22.2753844,36.9139801],[22.2742439,36.9137833],[22.2736425,36.9134636],[22.2733654,36.9133063],[22.2731593,36.9129878],[22.2728014,36.9129286],[22.2725179,36.9130596],[22.2722277,36.9131861]]}],{"extent":[22.14121,36.84249,22.45111,37.08363],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#106428","width":5,"action":{"type":"openurl"},"sort":{"type":"none"}},"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}}}); 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_taygetos = new getPoiCollection("taygetos",[{"name":"\u039c\u0391\u039d\u0397
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c3\u03c4\u03bf \u0395\u03be\u03bf\u03c7\u03ce\u03c1\u03b9","owner":"A. Bonetti","x":22.271139144898,"y":36.901307568288,"photo":"Exohori tower - Mani","type":9,"zoom_level":14,"id":170,"hlink_GR":"","hlink_EN":"","description":"","height":511,"width":334},{"name":"\u039c\u0391\u039d\u0397
\u039a\u03b1\u03c1\u03b4\u03b1\u03bc\u03cd\u03bb\u03b7","owner":"A. Bonetti","x":22.227622985842,"y":36.889638503752,"photo":"Kardamili - Messinia 01","type":0,"zoom_level":13,"id":186,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u039c\u0391\u039d\u0397
\u039f\u03b9 \u03c0\u03cd\u03c1\u03b3\u03bf\u03b9 \u03c4\u03b7\u03c2 \u039a\u03b1\u03c1\u03b4\u03b1\u03bc\u03cd\u03bb\u03b7\u03c2","owner":"A. Bonetti","x":22.235004425052,"y":36.8876477205,"photo":"Kardamili 01","type":9,"zoom_level":14,"id":187,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u039c\u03a5\u03a3\u03a4\u03a1\u0391\u03a3
\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03ba\u03b1\u03c3\u03c4\u03c1\u03bf\u03c0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b1\u03c2","owner":"A. Bonetti","x":22.367655754092,"y":37.072088963031,"photo":"Mystra 01","type":10,"zoom_level":12,"id":228,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u03a4\u0391\u03ab\u0393\u0395\u03a4\u039f\u03a3
\u0397 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c4\u03bf\u03c5 \u03a1\u03b9\u03bd\u03c4\u03cc\u03bc\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c4\u03b7\u03c2 \u039a\u03bf\u03c3\u03ba\u03ac\u03c1\u03b1\u03b3\u03b1\u03c2","owner":"A. Bonetti","x":22.262513160708,"y":36.98438085646,"photo":"Ridomo gorge","type":9,"zoom_level":13,"id":238,"hlink_GR":"","hlink_EN":"","description":"","height":511,"width":335},{"name":"\u03a4\u0391\u03ab\u0393\u0395\u03a4\u039f\u03a3
\u0397 \u03c1\u03ac\u03c7\u03b7 \u0391\u03bb\u03bf\u03b3\u03cc\u03b3\u03bf\u03c5\u03b2\u03b5\u03c2","owner":"A. Bonetti","x":22.34499645233,"y":36.959386080222,"photo":"Taygetos - Chalasmeno1","type":0,"zoom_level":14,"id":247,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2 \u03b7 \u03ba\u03bf\u03c1\u03c6\u03ae \u03a7\u03b1\u03bb\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf","height":334,"width":512},{"name":"\u039a\u0391\u03a1\u0394\u0391\u039c\u03a5\u039b\u0397
\u0397 \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03ae \u03c0\u03cc\u03bb\u03b7","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":22.2350545,"y":36.8916024,"photo":"Kardamyli_old_town","type":9,"zoom_level":14,"id":714,"hlink_GR":"","hlink_EN":"","description":"","height":559,"width":600},{"name":"\u03a4\u0391\u03ab\u0393\u0395\u03a4\u039f\u03a3
\u03a0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5","owner":"AnaDigit","x":22.355607,"y":36.960076,"photo":"Pelop_Taygetos_koryfi","type":0,"zoom_level":15,"id":2425,"hlink_GR":"","hlink_EN":"","description":"","height":667,"width":1000},{"name":"\u03a4\u0391\u03ab\u0393\u0395\u03a4\u039f\u03a3
\u03a4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03c4\u03bf\u03c5 \u03a4\u03b1\u03cb\u03b3\u03ad\u03c4\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b7 \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","owner":"AnaDigit","x":22.367742,"y":36.950465,"photo":"Pelop_Taygetos_katafygio","type":0,"zoom_level":15,"id":2426,"hlink_GR":"","hlink_EN":"","description":"","height":796,"width":800},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.239846,"y":36.888623,"photo":"Mani_Kardamyli_simansi (1)1","type":450,"zoom_level":17,"id":3340,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.195051,"y":36.933053,"photo":"Mani_Kardamyli_simansi (2)1","type":450,"zoom_level":17,"id":3341,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.235075,"y":36.891411,"photo":"Mani_Kardamyli_simansi (3)1","type":450,"zoom_level":17,"id":3342,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.23293,"y":36.890708,"photo":"Mani_Kardamyli_simansi (4)1","type":450,"zoom_level":17,"id":3343,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.239293,"y":36.8941,"photo":"Mani_Kardamyli_simansi (5)1","type":450,"zoom_level":17,"id":3344,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.2439,"y":36.897246,"photo":"Mani_Kardamyli_simansi (6)1","type":450,"zoom_level":17,"id":3345,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.248745,"y":36.89991,"photo":"Mani_Kardamyli_simansi (9)1","type":450,"zoom_level":17,"id":3349,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.24642,"y":36.905371,"photo":"Mani_Kardamyli_simansi (12)1","type":450,"zoom_level":17,"id":3352,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.246076,"y":36.905668,"photo":"Mani_Kardamyli_simansi (14)1","type":450,"zoom_level":17,"id":3354,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.246991,"y":36.904371,"photo":"Mani_Kardamyli_simansi (15)1","type":450,"zoom_level":17,"id":3355,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.247688,"y":36.904088,"photo":"Mani_Kardamyli_simansi (16)1","type":450,"zoom_level":17,"id":3356,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.250958,"y":36.903598,"photo":"Mani_Kardamyli_simansi (17)1","type":450,"zoom_level":17,"id":3357,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.25099,"y":36.903605,"photo":"Mani_Kardamyli_simansi (18)1","type":450,"zoom_level":17,"id":3358,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.250866,"y":36.903721,"photo":"Mani_Kardamyli_simansi (19)1","type":450,"zoom_level":17,"id":3359,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.243728,"y":36.894853,"photo":"Mani_Kardamyli_simansi (20)1","type":450,"zoom_level":17,"id":3360,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.243786,"y":36.894773,"photo":"Mani_Kardamyli_simansi (21)1","type":450,"zoom_level":17,"id":3361,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.244155,"y":36.896625,"photo":"Mani_Kardamyli_simansi (22)1","type":450,"zoom_level":17,"id":3362,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.234816,"y":36.890535,"photo":"Mani_Kardamyli_simansi (23)1","type":450,"zoom_level":17,"id":3363,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.242288,"y":36.893445,"photo":"Mani_Kardamyli_simansi (24)1","type":450,"zoom_level":17,"id":3364,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.243161,"y":36.89047,"photo":"Mani_Kardamyli_simansi (25)1","type":450,"zoom_level":17,"id":3365,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.241431,"y":36.890455,"photo":"Mani_Kardamyli_simansi (26)1","type":450,"zoom_level":17,"id":3366,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.257091,"y":36.909443,"photo":"Mani_Simansi_2_ (2)1","type":450,"zoom_level":17,"id":3367,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.261526,"y":36.912805,"photo":"Mani_Simansi_2_ (1)1","type":450,"zoom_level":17,"id":3368,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.25933,"y":36.906133,"photo":"Mani_Simansi_2_ (3)1","type":450,"zoom_level":17,"id":3369,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.259755,"y":36.906145,"photo":"Mani_Simansi_2_ (4)1","type":450,"zoom_level":17,"id":3370,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.258666,"y":36.905913,"photo":"Mani_Simansi_2_ (5)1","type":450,"zoom_level":17,"id":3371,"hlink_GR":"","hlink_EN":"","description":"","height":752,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.258542439151,"y":36.906094005031,"photo":"Mani_Simansi_2_ (7)2","type":450,"zoom_level":17,"id":3373,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.257206,"y":36.906046,"photo":"Mani_Simansi_2_ (9)1","type":450,"zoom_level":17,"id":3374,"hlink_GR":"","hlink_EN":"","description":"","height":799,"width":800},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.253421,"y":36.904031,"photo":"Mani_Simansi_2_ (10)1","type":450,"zoom_level":17,"id":3375,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.266983,"y":36.89991,"photo":"Mani_Simansi_2_ (11)1","type":450,"zoom_level":17,"id":3376,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.246871,"y":36.892161,"photo":"Mani_Simansi_2_ (12)1","type":450,"zoom_level":17,"id":3377,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.244981,"y":36.890686,"photo":"Mani_Simansi_2_ (13)1","type":450,"zoom_level":17,"id":3378,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.250228,"y":36.908876,"photo":"Mani_Simansi_2_ (14)1","type":450,"zoom_level":18,"id":3379,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.260881,"y":36.913521,"photo":"Mani_Simansi_2_ (15)1","type":450,"zoom_level":17,"id":3380,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.261555,"y":36.913303,"photo":"Mani_Simansi_2_ (16)1","type":450,"zoom_level":17,"id":3381,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.261678,"y":36.91307,"photo":"Mani_Simansi_2_ (17)1","type":450,"zoom_level":17,"id":3382,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.261795,"y":36.913123,"photo":"Mani_Simansi_2_ (18)1","type":450,"zoom_level":17,"id":3383,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1334},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.269988,"y":36.914988,"photo":"Mani_Simansi_2_ (19)1","type":450,"zoom_level":17,"id":3384,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.272168,"y":36.913236,"photo":"Mani_Simansi_2_ (20)1","type":450,"zoom_level":17,"id":3385,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.203611,"y":36.962778,"photo":"20160301_1702341","type":450,"zoom_level":17,"id":3386,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.198056,"y":36.966667,"photo":"20160301_1713211","type":450,"zoom_level":17,"id":3387,"hlink_GR":"","hlink_EN":"","description":"","height":654,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.195833,"y":36.968056,"photo":"20160301_1716441","type":450,"zoom_level":17,"id":3388,"hlink_GR":"","hlink_EN":"","description":"","height":667,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.194167,"y":36.969444,"photo":"20160301_1722403","type":450,"zoom_level":17,"id":3390,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.193611,"y":36.969167,"photo":"20160301_1724051","type":450,"zoom_level":17,"id":3391,"hlink_GR":"","hlink_EN":"","description":"","height":730,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.273611,"y":36.913611,"photo":"20160302_1214501","type":450,"zoom_level":17,"id":3392,"hlink_GR":"","hlink_EN":"","description":"","height":494,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.261733,"y":36.875686,"photo":"DSC036371","type":450,"zoom_level":17,"id":3393,"hlink_GR":"","hlink_EN":"","description":"","height":595,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.274378,"y":36.88216,"photo":"DSC036411","type":450,"zoom_level":17,"id":3395,"hlink_GR":"","hlink_EN":"","description":"","height":613,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.277343,"y":36.882591,"photo":"DSC036481","type":450,"zoom_level":17,"id":3396,"hlink_GR":"","hlink_EN":"","description":"","height":500,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.279011,"y":36.883298,"photo":"DSC036511","type":450,"zoom_level":17,"id":3397,"hlink_GR":"","hlink_EN":"","description":"","height":470,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.275596,"y":36.884213,"photo":"DSC036581","type":450,"zoom_level":17,"id":3399,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.261156,"y":36.876558,"photo":"DSC036721","type":450,"zoom_level":18,"id":3400,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.248813,"y":36.896255,"photo":"DSC037881","type":450,"zoom_level":17,"id":3401,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":697},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.266816,"y":36.903763,"photo":"DSC037491","type":450,"zoom_level":17,"id":3402,"hlink_GR":"","hlink_EN":"","description":"","height":986,"width":1000},{"name":"\u039c\u0391\u039d\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","owner":"AnaDigit","x":22.251348,"y":36.897193,"photo":"DSC037441","type":450,"zoom_level":17,"id":3403,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800}],{});function createAdventureListWidgetContext(){};console.log('sort type: none');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="
Παρόρι-Ζαγούνα-μονή Φανερωμένης
Παρόρι-Λαγκαδιώτισσα
καταφύγιο ΕΟΣ-κορυφή Ταϋγέτου
Άγιος Δημήτριος-κορυφή Ταϋγέτου
Σοχά-Λακκώματα
Καλύβια Σοχάς-Σοχά
Μυστράς-Ταϋγέτη
Ταϋγέτη-Περγανταίικα
Άγιος Ιωάννης-Αναβρυτή
Σέλα-Μυργιάλι
Αναβρυτή-μονή Φανερωμένης
Αναβρυτή-κατ. ανάγκης Τσάρκου
E4 Νέος Μυστράς-Αναβρυτή
E4 Άρνα-Καστάνια
E4 Λακκώματα-κατ. Ταϋγέτου
E4 Αναβρυτή-Λακκώματα
Ταϋγέτη-Περγανταίικα-μονή Φανερωμένης
Κουμουστά-μονή Γόλας
Κουμουστά-Καταφύγιο ΕΟΣ
Πηγή Μαγγανιάρη-κατ. Ταϋγέτου
Λακκώματα-κατ. ανάγκης Τσάρκου
Ο32 Πηγάδια-Παναγία Καψοδεματούσα
Παναγία Καψοδεματούσα-Καταφύγιο ΕΟΣ
Πέντε Αλώνια-Αρκουδιάς
Ο32 Παναγία Καψοδεματούσα-Καταφύγιο ΕΟΣ
E4 κατ. Ταϋγέτου-Άγιος Δημήτριος
E4 Άγιος Δημήτριος-Άρνα
Φαράγγι Κοσκάραγας
Πάνω Βέργα-Πηγάδια
Ξηροκάμπι-Κουμουστά
Άνω Βέργα-Πηγάδια
Άσπρα Χώματα-Παξιμάδι
Πικουλιάνικα-Παξιμάδι
Τσάρκος-Καταφύγιο ΕΟΣ
Λακκώματα-Σιδηρόκαστρο-Καταφύγιο ΕΟΣ
Η χλωρίδα της κορυφής του Ταϋγέτου
E4 Σπάρτη-Νέος Μυστράς
Παρόρι-Λαγκαδιώτισσα-μονή Φανερωμένης
Μυστράς-Ταϋγέτη-Βλαχοχώρι-Μυστράς
Παναγία Καψοδεματούσα-κατ. ανάγκης Τσάρκου
Ο32 Λαγκάδα-Πηγάδια
O32 Φαράγγι Βυρού
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["taygetos"],pc:["taygetos"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_taygetos.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); }