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_arcadian_trails = new getAdventureCollection("arcadian_trails",[{"id":18538,"author":"AnaDigit","name_GR":"\u039c\u03af\u03bd\u03b8\u03b7: \u039b\u03b9\u03bd\u03af\u03c3\u03c4\u03b1\u03b9\u03bd\u03b1-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u039c\u03af\u03bd\u03b8\u03b7\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03c1\u03b5\u03c0\u03b1\u03ba\u03cc\u03c1\u03b5","path":"PELOPONNESE\/Pelop_Minthi_Linistena_Kopekore","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5193,"name_EN":"Minthi: Linistena-Minthi summit","description_EN":"Ascent to Krepakore castle","ascent_time":135,"descent_time":110,"marker":"No_marks","level":10,"ascent":523,"descent":53,"maxelev":1335,"minelev":846,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.85218 37.44798,21.8643 37.47292)","views":20,"millestones":"0,21.8569736,37.4478440#1,21.8610743,37.4525412#2,21.8597513,37.4607902#3,21.8567794,37.4680831#4,21.8542417,37.4702556#5.2,21.8635833,37.4731320","x":21.8565411,"y":37.4684128,"coor":[[21.8569736,37.447844],[21.8566206,37.4479367],[21.8561435,37.4484147],[21.8555131,37.4483221],[21.8559419,37.4490644],[21.8565715,37.449184],[21.8567446,37.4494575],[21.8570661,37.4496796],[21.8573742,37.449577],[21.8579021,37.4492982],[21.8581522,37.4492487],[21.8586026,37.4493109],[21.8589377,37.4494522],[21.8598492,37.4495949],[21.8601671,37.4499431],[21.8602981,37.4509007],[21.8605317,37.4514277],[21.8611141,37.452015],[21.8610816,37.4525123],[21.8609547,37.4529967],[21.8605982,37.4535692],[21.8604334,37.4538005],[21.86038,37.4544845],[21.8596817,37.4558687],[21.859547,37.456033],[21.8594895,37.456068],[21.8595213,37.4561407],[21.859697,37.4563241],[21.8596881,37.4565109],[21.8595605,37.4574188],[21.8600391,37.4576798],[21.8603586,37.457974],[21.8605597,37.4588518],[21.8604811,37.4592289],[21.8600425,37.4599419],[21.8596968,37.460963],[21.8597823,37.4611358],[21.8602161,37.461387],[21.860353,37.4617409],[21.8599149,37.4628325],[21.8593568,37.4629756],[21.8590774,37.4632589],[21.8588013,37.4634251],[21.8587057,37.4636036],[21.858488,37.4637078],[21.8581513,37.4640171],[21.858094,37.4644397],[21.8582912,37.4653782],[21.85802,37.4657699],[21.8576207,37.465846],[21.8576584,37.466108],[21.8573836,37.4662292],[21.8573076,37.4665162],[21.8575213,37.4665561],[21.8574201,37.4669328],[21.8572526,37.4672542],[21.8569254,37.4676268],[21.8567512,37.4681823],[21.8565411,37.4684128],[21.8565105,37.4686917],[21.8563672,37.4689594],[21.8561021,37.4691348],[21.8558386,37.4692562],[21.8558643,37.4691486],[21.8556748,37.469055],[21.8551575,37.4685589],[21.8550455,37.4685209],[21.8539853,37.4684295],[21.85339,37.4682925],[21.8530187,37.4678352],[21.8523599,37.4675461],[21.8523285,37.4678519],[21.8524769,37.4681971],[21.8528498,37.4686004],[21.8529784,37.468846],[21.8530131,37.4692162],[21.852862,37.4693576],[21.8528227,37.4695462],[21.8529054,37.469818],[21.8532316,37.469878],[21.8534191,37.4696471],[21.8535329,37.4696221],[21.8538701,37.4696914],[21.8551495,37.4716071],[21.8552384,37.4716628],[21.8556116,37.4716606],[21.8558505,37.4716086],[21.8560005,37.4715032],[21.8566293,37.4712622],[21.8568836,37.4710686],[21.8575375,37.470738],[21.8576403,37.4707038],[21.8577959,37.4707968],[21.8581491,37.470704],[21.8584183,37.470781],[21.8583982,37.4706905],[21.8585264,37.4705577],[21.8586068,37.4705141],[21.8586846,37.4705605],[21.8587545,37.4704897],[21.8589242,37.4704838],[21.8592263,37.4705974],[21.8593462,37.4707528],[21.8594713,37.470728],[21.8599285,37.4709526],[21.8601648,37.4709929],[21.8604263,37.4712274],[21.8605737,37.4716086],[21.8611272,37.4716276],[21.8616376,37.4715738],[21.8618698,37.4717582],[21.8623642,37.4718663],[21.8627312,37.4720802],[21.862937,37.4723994],[21.863226,37.4725758],[21.8634011,37.4727773],[21.8635833,37.473132]]},{"id":18539,"author":"AnaDigit","name_GR":"\u039c\u03af\u03bd\u03b8\u03b7: \u0391\u03bc\u03c5\u03b3\u03b4\u03b1\u03bb\u03b9\u03ad\u03c2-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u039c\u03af\u03bd\u03b8\u03b7\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03c1\u03b5\u03c0\u03b1\u03ba\u03cc\u03c1\u03b5","path":"PELOPONNESE\/Pelop_Minthi_Amygdalies_Kopekore","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6812,"name_EN":"Minthi: Amygdalies-Minthi summit","description_EN":"Ascent to Krepakore castle","ascent_time":175,"descent_time":145,"marker":"No_marks","level":10,"ascent":749,"descent":36,"maxelev":1335,"minelev":604,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.8441 37.47057,21.86366 37.49791)","views":19,"millestones":"0,21.8441014,37.4979057#1,21.8507153,37.4949287#2,21.8505040,37.4914392#3,21.8553359,37.4902922#4,21.8588909,37.4831019#5,21.8582583,37.4779790#6,21.8574338,37.4707867#6.8,21.8635826,37.4731320","x":21.8589658,"y":37.4837479,"coor":[[21.8441014,37.4979057],[21.8446208,37.4975457],[21.8451988,37.4978987],[21.8455732,37.4974301],[21.8457788,37.4969653],[21.8465253,37.4961768],[21.8461892,37.4969277],[21.8461007,37.4972505],[21.8461765,37.4973691],[21.8467062,37.4966487],[21.8472543,37.496073],[21.8479666,37.4956894],[21.8483999,37.4956545],[21.8491162,37.4955234],[21.849847,37.4952843],[21.8504986,37.4950439],[21.8510269,37.4947651],[21.8510088,37.4953956],[21.8508147,37.4958517],[21.8519555,37.495512],[21.8523456,37.4953208],[21.8527695,37.4955268],[21.8538327,37.4948116],[21.853789,37.4947568],[21.8534465,37.4948677],[21.8532559,37.4948101],[21.8531973,37.4944847],[21.8530334,37.4942834],[21.8529538,37.4939035],[21.8522061,37.4927634],[21.851821,37.4923869],[21.8514965,37.4922638],[21.8513933,37.4919195],[21.8509897,37.491795],[21.8505247,37.4914441],[21.8500528,37.4913363],[21.8498468,37.4910262],[21.8487521,37.4909432],[21.8485425,37.4907591],[21.8484349,37.4905679],[21.84841,37.490216],[21.8488143,37.49071],[21.8489833,37.4907311],[21.849294,37.4905475],[21.8495899,37.4904808],[21.8499273,37.49055],[21.8523246,37.4913506],[21.8527341,37.4916645],[21.85287,37.4916579],[21.8531812,37.4914563],[21.8535815,37.4913014],[21.8543656,37.4907749],[21.8549031,37.4905684],[21.855364,37.4902704],[21.8567639,37.4899623],[21.8570183,37.4893722],[21.8582497,37.4882319],[21.8585665,37.4878322],[21.8585305,37.4875071],[21.8588776,37.487234],[21.858938,37.4870999],[21.8589198,37.4865498],[21.8589979,37.4861908],[21.8596468,37.4856438],[21.8596509,37.4854997],[21.8592594,37.4849519],[21.8592345,37.4842395],[21.8589658,37.4837479],[21.8589977,37.4834241],[21.8588826,37.4830976],[21.8591166,37.483219],[21.859197,37.4831754],[21.8589787,37.4829011],[21.8591439,37.4822642],[21.8592618,37.4820951],[21.8596132,37.4820654],[21.8603736,37.4823676],[21.8608775,37.4830121],[21.8607666,37.4825414],[21.8609184,37.4811834],[21.8607136,37.4804317],[21.8603633,37.4800288],[21.8601727,37.4795747],[21.8595816,37.4788881],[21.8588932,37.4784431],[21.8585421,37.4780672],[21.857735,37.4778183],[21.8574702,37.4771916],[21.8573506,37.476865],[21.8575471,37.4767154],[21.8576031,37.4763379],[21.8576922,37.4763846],[21.8576945,37.4763035],[21.8576868,37.4761772],[21.8575861,37.4761393],[21.8573036,37.4757377],[21.85746,37.4754071],[21.857326,37.474954],[21.8567206,37.4735822],[21.8563942,37.4731347],[21.8561651,37.4724456],[21.8559566,37.4722256],[21.8556109,37.4716606],[21.8558498,37.4716086],[21.8559998,37.4715031],[21.8566286,37.4712622],[21.8568829,37.4710686],[21.8575368,37.470738],[21.8576396,37.4707038],[21.8577952,37.4707967],[21.8581484,37.470704],[21.8584176,37.470781],[21.8583975,37.4706905],[21.8585257,37.4705576],[21.8586061,37.470514],[21.8586839,37.4705605],[21.8587538,37.4704897],[21.8589235,37.4704838],[21.8592256,37.4705974],[21.8593455,37.4707527],[21.8594706,37.470728],[21.8599278,37.4709526],[21.8601641,37.4709929],[21.8604256,37.4712274],[21.860573,37.4716086],[21.8611265,37.4716276],[21.8616369,37.4715738],[21.8618691,37.4717582],[21.8623635,37.4718663],[21.8627305,37.4720802],[21.8629363,37.4723994],[21.8632253,37.4725758],[21.8634004,37.4727773],[21.8635826,37.473132]]},{"id":18540,"author":"AnaDigit","name_GR":"\u03a4\u03b5\u03c4\u03c1\u03ac\u03b6\u03b9: \u0386\u03bd\u03c9 \u039c\u03ad\u03bb\u03c0\u03b5\u03b9\u03b1-\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a4\u03b5\u03c4\u03c1\u03b1\u03b6\u03af\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5\u03c2","path":"PELOPONNESE\/Pelop_Tetrazi_AnoMelpeia_PrfIlias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5280,"name_EN":"Tetrazi: Ano Melpeia-Profitis Ilias","description_EN":"Ascent to Tetrazi summit","ascent_time":120,"descent_time":105,"marker":"No_marks","level":10,"ascent":815,"descent":425,"maxelev":1231,"minelev":732,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.9424 37.35083,21.95855 37.37748)","views":12,"millestones":"0,21.9468778,37.3506325#1,21.9463968,37.3568787#2,21.9453983,37.3612241#3,21.9518952,37.3657922#4,21.9570071,37.3717425#5.3,21.9552522,37.3777064","x":21.9512365,"y":37.3647853,"coor":[[21.9468778,37.3506325],[21.9469543,37.350724],[21.9475607,37.3508426],[21.947495,37.351184],[21.9474418,37.3514016],[21.9470964,37.3516479],[21.9468837,37.3519957],[21.9464794,37.3523312],[21.9461593,37.3524788],[21.945716,37.3530029],[21.9456145,37.3534157],[21.9456301,37.3536683],[21.9461131,37.3541723],[21.9462357,37.3543885],[21.9461871,37.3545138],[21.9455554,37.3549084],[21.9455524,37.3554311],[21.9456202,37.3554323],[21.9458297,37.3552016],[21.9460227,37.3551599],[21.9462023,37.355199],[21.9462231,37.3552625],[21.9460392,37.3553855],[21.9460242,37.3555204],[21.9463173,37.3559491],[21.9461839,37.3567038],[21.9462859,37.3566875],[21.9463453,37.3565804],[21.9464351,37.3566],[21.9463497,37.3572474],[21.9466401,37.3577752],[21.9467164,37.3587047],[21.9469119,37.3589875],[21.9469853,37.3591961],[21.9469253,37.3592874],[21.9467505,37.3592393],[21.9464973,37.3594152],[21.946163,37.3592561],[21.9455106,37.3591637],[21.9444778,37.3593621],[21.9439636,37.3595874],[21.9436945,37.3595197],[21.9433665,37.359541],[21.9430633,37.3594816],[21.9428923,37.3595418],[21.9432231,37.3596624],[21.9435498,37.3601007],[21.943934,37.3600894],[21.9442699,37.3601943],[21.9447723,37.3608159],[21.9448076,37.361177],[21.9448841,37.3612685],[21.9450865,37.361299],[21.9454388,37.361215],[21.945562,37.3612532],[21.9462349,37.3618327],[21.9466135,37.3620285],[21.9471412,37.3621368],[21.9473338,37.3625277],[21.9475551,37.3626937],[21.9482528,37.3627779],[21.9484179,37.3625194],[21.9485676,37.3624139],[21.9492452,37.3624076],[21.9496441,37.3622703],[21.9504837,37.3625372],[21.9509242,37.3627747],[21.9510561,37.3628311],[21.9510394,37.3628984],[21.9508863,37.36313],[21.9509825,37.36333],[21.9509364,37.3637798],[21.9510331,37.3643763],[21.9512404,37.3646412],[21.9512365,37.3647853],[21.9510488,37.3650434],[21.951236,37.3652179],[21.951594,37.3653413],[21.9519566,37.3657081],[21.9517502,37.3659951],[21.9517455,37.3661663],[21.9519278,37.3665209],[21.9524755,37.3671432],[21.9527542,37.3672742],[21.9535295,37.3674138],[21.9535537,37.3674864],[21.9531096,37.3676229],[21.9527759,37.3678514],[21.9527274,37.3679767],[21.9528486,37.368087],[21.9532752,37.3681755],[21.9534075,37.3682949],[21.9536097,37.3683345],[21.9537306,37.3684537],[21.9541333,37.3685959],[21.9543208,37.3687614],[21.9543244,37.3686262],[21.9548535,37.369104],[21.9549393,37.3692677],[21.9551423,37.3692803],[21.9551283,37.3693791],[21.9552598,37.3695256],[21.9555047,37.369656],[21.9558582,37.3702705],[21.956135,37.3704735],[21.9563065,37.3708099],[21.9565372,37.3710482],[21.9565674,37.371184],[21.9567774,37.3713498],[21.9569949,37.37166],[21.9570422,37.3719943],[21.9568359,37.3721078],[21.9568457,37.3721621],[21.9571902,37.3723663],[21.9572101,37.3724658],[21.9575389,37.3724174],[21.9577053,37.3725284],[21.9578295,37.3725306],[21.9578726,37.3726034],[21.9579639,37.3725689],[21.9578582,37.3727203],[21.9578648,37.3728917],[21.9574345,37.3733529],[21.9574333,37.3733979],[21.9577471,37.3734845],[21.9577339,37.3735563],[21.9575143,37.3737418],[21.9573094,37.3738013],[21.9573982,37.3738569],[21.9573082,37.3738464],[21.9573406,37.373901],[21.9572378,37.3739443],[21.9574621,37.3740022],[21.9574942,37.3740659],[21.9569897,37.3743456],[21.9568453,37.3746765],[21.9567792,37.3746123],[21.9565565,37.3749149],[21.9563152,37.3746493],[21.9562029,37.3746294],[21.9561111,37.3746819],[21.9558574,37.3752903],[21.9550163,37.3763212],[21.9549673,37.3764645],[21.95509,37.3765207],[21.9550758,37.3766286],[21.9547622,37.3773622],[21.9552522,37.3777064]]},{"id":18541,"author":"AnaDigit","name_GR":"\u03a4\u03b5\u03c4\u03c1\u03ac\u03b6\u03b9: \u0392\u03ac\u03c3\u03c4\u03b1\u03c2-\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a4\u03b5\u03c4\u03c1\u03b1\u03b6\u03af\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5\u03c2","path":"PELOPONNESE\/Pelop_Tetrazi_Vastas_PrfIlias","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":6385,"name_EN":"Tetrazi: Vastas-Profitis Ilias","description_EN":"Ascent to Tetrazi summit","ascent_time":125,"descent_time":105,"marker":"No_marks","level":10,"ascent":641,"descent":88,"maxelev":1380,"minelev":825,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.95503 37.36552,21.98625 37.38595)","views":18,"millestones":"0,21.9862449,37.3656324#1,21.9857945,37.3701670#2,21.9813775,37.3766857#3,21.9753963,37.3825702#4,21.9659734,37.3861274#5,21.9607095,37.3802445#6.4,21.9552533,37.3777064","x":21.9768787,"y":37.3805546,"coor":[[21.9862449,37.3656324],[21.9861766,37.3655208],[21.9856641,37.3656833],[21.985359,37.3661693],[21.9852248,37.3661985],[21.9848903,37.3660396],[21.9845183,37.3660152],[21.9844158,37.3660495],[21.9843433,37.3662286],[21.984172,37.3662977],[21.9841382,37.3664278],[21.9844354,37.366505],[21.9843671,37.3666435],[21.9842645,37.3666778],[21.9843073,37.3667687],[21.9842165,37.3667852],[21.9843363,37.3669494],[21.9840974,37.3670175],[21.9837462,37.3674801],[21.984202,37.3673257],[21.9841883,37.3674155],[21.9840037,37.3675656],[21.9839808,37.3676666],[21.9842059,37.3676975],[21.9842336,37.3678354],[21.9840669,37.3682877],[21.9839504,37.3682113],[21.9838505,37.3682254],[21.983807,37.3682945],[21.9838889,37.3683072],[21.98437,37.368606],[21.9844105,37.3687779],[21.9845794,37.3687988],[21.9845772,37.3688799],[21.9846569,37.3688542],[21.9850683,37.3690956],[21.9852145,37.3691161],[21.9852654,37.3693242],[21.9854724,37.3696072],[21.9856628,37.3696645],[21.9856491,37.3697544],[21.9861217,37.3698165],[21.9859111,37.3700923],[21.9856411,37.3702657],[21.9852158,37.3703328],[21.984572,37.3703398],[21.9844764,37.3704058],[21.9846059,37.3704193],[21.9846827,37.3705017],[21.9846181,37.370807],[21.9845016,37.3709402],[21.9839968,37.371238],[21.9837787,37.3714596],[21.9833719,37.3714707],[21.9832103,37.3716031],[21.9829281,37.3715983],[21.9825988,37.3720884],[21.9823102,37.3723628],[21.9821312,37.3727203],[21.9813602,37.3736804],[21.9813534,37.3739327],[21.9816735,37.3746321],[21.981671,37.3747222],[21.9814405,37.3748985],[21.9816131,37.3751988],[21.9816394,37.3754021],[21.9812844,37.3760088],[21.9814642,37.3764625],[21.9813428,37.3767759],[21.9813928,37.3770201],[21.9813238,37.3771451],[21.9812853,37.3774463],[21.9806723,37.3777242],[21.9803999,37.3777737],[21.9802113,37.3780678],[21.9801717,37.3782835],[21.9799327,37.3783515],[21.9798383,37.3785031],[21.9797011,37.3785638],[21.9794768,37.3785059],[21.9791814,37.378573],[21.978934,37.3785327],[21.978604,37.3786262],[21.9782779,37.3785755],[21.9782303,37.3786649],[21.9783021,37.3789364],[21.9781622,37.3790963],[21.9781864,37.3794572],[21.977584,37.3796001],[21.9773849,37.3798671],[21.9773433,37.3801547],[21.97719,37.3803954],[21.9768787,37.3805546],[21.976403,37.3810241],[21.9760252,37.3812159],[21.9758531,37.3813932],[21.9757529,37.381761],[21.9754552,37.3819091],[21.9754077,37.3819984],[21.9754156,37.3821247],[21.9755781,37.3823799],[21.9755288,37.3825322],[21.9751988,37.3826257],[21.9748764,37.3828545],[21.9744666,37.3829737],[21.9739254,37.3833609],[21.9737493,37.3836102],[21.9734627,37.3837676],[21.9729529,37.3842455],[21.9721016,37.3844021],[21.9714228,37.3844445],[21.9711303,37.3844035],[21.9709349,37.3845263],[21.9707814,37.384776],[21.9703804,37.3849854],[21.9701263,37.3851973],[21.9689268,37.3853345],[21.9680784,37.385383],[21.9672101,37.385332],[21.9671412,37.3853759],[21.9670877,37.3856814],[21.9669486,37.3858142],[21.9664566,37.386049],[21.9660136,37.3861405],[21.9658681,37.386093],[21.9658168,37.3859028],[21.9656314,37.3856563],[21.9651872,37.3853783],[21.9649388,37.385374],[21.9645616,37.3855388],[21.964358,37.3855533],[21.9637311,37.3853442],[21.9632808,37.3852914],[21.9628454,37.3851036],[21.9622797,37.385139],[21.9619979,37.3847015],[21.9619723,37.3839801],[21.9618252,37.383572],[21.961716,37.3834349],[21.961193,37.3831465],[21.960777,37.3826594],[21.960614,37.3824223],[21.9607676,37.3821726],[21.9608083,37.381921],[21.9605778,37.3816737],[21.9603964,37.381283],[21.9606538,37.380954],[21.9607279,37.380721],[21.9606919,37.3795487],[21.9606172,37.3793852],[21.9605608,37.3793843],[21.9605316,37.3796271],[21.9602254,37.3800904],[21.9600414,37.3802134],[21.9599982,37.3801406],[21.9600919,37.3796015],[21.960006,37.3794378],[21.9596413,37.3791431],[21.9593063,37.3790021],[21.9588545,37.3785888],[21.9587961,37.3786599],[21.9590226,37.3790513],[21.9589745,37.3791586],[21.9588511,37.3791294],[21.9582668,37.3786057],[21.9581278,37.3783149],[21.9580187,37.3785924],[21.9579048,37.3786264],[21.9578277,37.3781384],[21.9577511,37.378047],[21.9573821,37.378329],[21.9567304,37.3786242],[21.9565745,37.3785404],[21.9565473,37.3782966],[21.9564619,37.3781148],[21.9564054,37.3781139],[21.9562116,37.3785972],[21.9563452,37.3790861],[21.9562554,37.3794811],[21.9560728,37.3791355],[21.9555442,37.3786397],[21.9554838,37.3783683],[21.9552651,37.3781032],[21.9552533,37.3777064]]},{"id":18564,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u0386\u03bd\u03c9 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2-\u0399\u03b5\u03c1\u03ae \u039a\u03bf\u03c1\u03c5\u03c6\u03ae \u039b\u03cd\u03ba\u03b1\u03b9\u03bf\u03c5","description_GR":"","path":"PELOPONNESE\/Pelop_Lykeo_AnoKaries_ProfitisIlias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3396,"name_EN":"Arcadian Trails: Ano Karyes-Zeus altar on Mt Lykeon","description_EN":"","ascent_time":90,"descent_time":70,"marker":"No_marks","level":10,"ascent":426,"descent":12,"maxelev":1375,"minelev":948,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.98836 37.43769,22.00359 37.44965)","views":37,"millestones":"0,22.0034505,37.4376870#1,22.0027058,37.4452717#2,21.9959000,37.4494830#3,21.9911828,37.4464571#3.4,21.9884445,37.4465574","x":21.997468,"y":37.4474948,"coor":[[22.0034505,37.437687],[22.0030089,37.4379297],[22.0027983,37.4379464],[22.0028411,37.4380372],[22.0025669,37.4382286],[22.0026721,37.4383476],[22.002417,37.4384311],[22.0021661,37.438517],[22.0020346,37.4387851],[22.0018611,37.4389354],[22.0018274,37.4390881],[22.0019356,37.4392701],[22.0020452,37.4398217],[22.0020474,37.4401642],[22.0019741,37.4403703],[22.0018371,37.4405933],[22.0018408,37.4408817],[22.0015858,37.4415443],[22.0015796,37.4417785],[22.001643,37.4419418],[22.0019,37.4420543],[22.0020286,37.4423179],[22.0025313,37.4429662],[22.002648,37.4441037],[22.0028125,37.4443859],[22.0028044,37.444521],[22.0023832,37.4450546],[22.002651,37.4451853],[22.0027865,37.4454039],[22.0030478,37.4456471],[22.0032178,37.4460555],[22.0033609,37.4462021],[22.003325,37.4462736],[22.0029732,37.4462091],[22.0024691,37.4460384],[22.0022186,37.4461062],[22.0021945,37.4461599],[22.0014666,37.4463278],[22.0012176,37.4463416],[22.0010387,37.4462665],[21.9999055,37.4463735],[21.9997224,37.4464605],[21.9990769,37.4465037],[21.9987906,37.446643],[21.998632,37.4466584],[21.9983291,37.4469957],[21.9977769,37.4473558],[21.997468,37.4474948],[21.9975834,37.4478708],[21.9973975,37.448521],[21.997191,37.4486347],[21.9966561,37.4487698],[21.9959025,37.449478],[21.995759,37.449773],[21.9956345,37.4497393],[21.9955965,37.4494683],[21.9956845,37.4491363],[21.9958677,37.4487046],[21.9956751,37.4483882],[21.9954653,37.4482404],[21.9950501,37.4477827],[21.9949289,37.4475869],[21.9947041,37.447538],[21.9947397,37.4474756],[21.9952945,37.4474399],[21.9958794,37.447549],[21.9961648,37.4474457],[21.9958253,37.4474579],[21.9953232,37.4472151],[21.9950469,37.4469761],[21.9942851,37.4467198],[21.9938467,37.4462077],[21.9934277,37.4462366],[21.9929495,37.4463637],[21.9928906,37.4464528],[21.992812,37.4464335],[21.9927767,37.4464869],[21.9924303,37.4463368],[21.992324,37.4465063],[21.9920966,37.4465565],[21.9917596,37.4464787],[21.9912173,37.4464694],[21.9905903,37.4462425],[21.9903199,37.4462108],[21.9902908,37.4460301],[21.9901709,37.4458658],[21.9899257,37.4457355],[21.9898005,37.4457694],[21.989727,37.4459394],[21.9896994,37.4461282],[21.9892477,37.446321],[21.989087,37.4466225],[21.988499,37.4466305],[21.9884445,37.4465574]]},{"id":18565,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u03a3\u03c4\u03ac\u03b4\u03b9\u03bf \u039b\u03c5\u03ba\u03b1\u03af\u03bf\u03c5-\u0399\u03b5\u03c1\u03ae \u039a\u03bf\u03c1\u03c5\u03c6\u03ae \u039b\u03cd\u03ba\u03b1\u03b9\u03bf\u03c5","description_GR":"","path":"PELOPONNESE\/Pelop_Lykeo_Lykeo_ProfitisIlias","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":1295,"name_EN":"Arcadian Trails: Ancient stadium-Zeus altar on Mt Lykeon","description_EN":"","ascent_time":25,"descent_time":20,"marker":"No_marks","level":10,"ascent":212,"descent":11,"maxelev":1375,"minelev":1167,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.98837 37.44584,21.99621 37.44934)","views":15,"millestones":"0,21.9955958,37.4494660#1,21.9903790,37.4462159#1.3,21.9884448,37.4465575","x":21.9928114,"y":37.4464312,"coor":[[21.9955958,37.449466],[21.9956897,37.4491252],[21.9958674,37.4487023],[21.9956745,37.4483859],[21.9954647,37.4482381],[21.9950498,37.4477805],[21.9949283,37.4475847],[21.9947035,37.4475358],[21.9947391,37.4474733],[21.9952939,37.4474376],[21.9958788,37.4475467],[21.9961641,37.4474434],[21.9958247,37.4474557],[21.9953225,37.4472128],[21.9950463,37.4469738],[21.9942845,37.4467176],[21.993846,37.4462054],[21.993427,37.4462344],[21.9929489,37.4463614],[21.99289,37.4464505],[21.9928114,37.4464312],[21.992776,37.4464847],[21.9924296,37.4463346],[21.9923234,37.446504],[21.992096,37.4465542],[21.9917589,37.4464764],[21.9912166,37.4464672],[21.9905897,37.4462402],[21.9903193,37.4462086],[21.9902902,37.4460278],[21.9901702,37.4458636],[21.9899251,37.4457332],[21.9897998,37.4457672],[21.9897263,37.4459394],[21.9896987,37.4461282],[21.989247,37.446321],[21.9890863,37.4466224],[21.9887354,37.4466435],[21.9884948,37.4466304],[21.9884448,37.4465575]]},{"id":18582,"author":"AnaDigit","name_GR":"\u039a\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u039d\u03ad\u03b4\u03b1\u03c2: \u039f\u03bb\u03b9\u03ba\u03ae \u03b4\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u039d\u03ad\u03b4\u03b1\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03c3\u03c5\u03bd\u03b1\u03c1\u03c0\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae \u03c5\u03b3\u03c1\u03ae \u03c0\u03b5\u03c1\u03b9\u03c0\u03ad\u03c4\u03b5\u03b9\u03b1","path":"PELOPONNESE\/Pelop_Neda_ravine","activity_type":32,"assistance":1,"difficulty":4,"scenic_value":5,"length":25094,"name_EN":"Ilia: Neda Valley: the Neda Integrale","description_EN":"A adventurous downstream trail","ascent_time":1150,"descent_time":1110,"marker":"Red_dots","level":10,"ascent":658,"descent":1011,"maxelev":794,"minelev":132,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.79588 37.37921,21.96458 37.42312)","views":141,"millestones":"0,21.9626274,37.4261170#1,21.9601362,37.4190348#2,21.9567306,37.4147785#3,21.9547729,37.4070727#4,21.9489764,37.4008898#5,21.9413295,37.4031993#6,21.9319752,37.4070506#7,21.9220036,37.4064103#8,21.9134149,37.4019749#9,21.9104602,37.3941894#10,21.9026274,37.3912194#11,21.8926510,37.3900397#12,21.8843917,37.3899420#13,21.8760561,37.3918445#14,21.8676478,37.3962346#15,21.8577717,37.3948111#16,21.8492621,37.3911950#17,21.8391402,37.3919024#18,21.8284713,37.3935949#19,21.8207197,37.3962716#20,21.8118867,37.3916351#21,21.8033622,37.3922126#22,21.7985979,37.3906629#23,21.8034915,37.3883756#24,21.8060383,37.3820787#25.1,21.8095459,37.3768764","x":21.8809812,"y":37.3920008,"coor":[[21.9626274,37.426117],[21.9626294,37.425975],[21.9624708,37.4255758],[21.9625694,37.4252711],[21.962531,37.4252051],[21.9624828,37.4248978],[21.9629107,37.4245244],[21.9631704,37.4241143],[21.9629451,37.4236688],[21.9627788,37.4235646],[21.963391,37.4231538],[21.9631918,37.4229972],[21.9630739,37.4227608],[21.9628536,37.4225498],[21.9625643,37.4223195],[21.9624017,37.4220643],[21.9619325,37.421867],[21.9619347,37.4217859],[21.9619733,37.4215613],[21.961759,37.4214156],[21.9613925,37.4212583],[21.9614396,37.4207725],[21.9607231,37.4205258],[21.9605272,37.4204436],[21.9604619,37.4203523],[21.9606504,37.4200672],[21.9603973,37.4198195],[21.9602864,37.4196103],[21.9601223,37.4189946],[21.9594666,37.4177576],[21.9595048,37.416767],[21.9598367,37.4166105],[21.9593096,37.4164662],[21.9596526,37.4163189],[21.9597581,37.4160481],[21.9597198,37.4159753],[21.9590304,37.4155669],[21.9586594,37.4156123],[21.958262,37.4161011],[21.9580145,37.4160608],[21.9572597,37.4160973],[21.9565973,37.4159417],[21.9561797,37.4159254],[21.9559319,37.4159211],[21.9562484,37.4157982],[21.9564748,37.4157841],[21.9568392,37.4157701],[21.9568318,37.4152112],[21.9567272,37.414903],[21.9567448,37.4142544],[21.9567811,37.4141649],[21.9571855,37.4138385],[21.9572927,37.413633],[21.9572827,37.4135878],[21.9570696,37.41353],[21.9564513,37.4129966],[21.9562952,37.4129218],[21.9560548,37.4126203],[21.9559927,37.4124119],[21.9562229,37.4118391],[21.9563159,37.411327],[21.9564335,37.4111578],[21.956331,37.4108902],[21.9557735,37.4106192],[21.9552125,37.4100598],[21.9550047,37.4089747],[21.9551284,37.4085803],[21.9550545,37.4082613],[21.9549767,37.4079288],[21.9550272,37.4077314],[21.9551311,37.4076521],[21.9551622,37.4073372],[21.954997,37.4071811],[21.9547628,37.4070689],[21.9547797,37.4068619],[21.9545274,37.4065872],[21.9545696,37.4062815],[21.9546962,37.4061936],[21.9547807,37.4059968],[21.9547848,37.4054291],[21.9542265,37.4047705],[21.9537238,37.4045636],[21.953442,37.4045406],[21.9524869,37.4044272],[21.9516906,37.4042152],[21.9510426,37.4039516],[21.9510453,37.4038525],[21.9508494,37.4035787],[21.9503643,37.4031377],[21.9497762,37.4023345],[21.9498611,37.4017051],[21.9495062,37.40105],[21.9492725,37.4009198],[21.9487502,37.4008634],[21.9490603,37.4007652],[21.9493058,37.4008776],[21.9490603,37.4007652],[21.9487502,37.4008634],[21.9485081,37.4010395],[21.9481888,37.4011511],[21.9474077,37.4012096],[21.9463873,37.4009305],[21.9460653,37.4007267],[21.9458569,37.4004978],[21.9455997,37.4004032],[21.945026,37.4003121],[21.9447204,37.4003338],[21.9441274,37.4005398],[21.9439433,37.4006628],[21.9438829,37.4008059],[21.9439102,37.4009303],[21.9439732,37.401222],[21.9433286,37.4016614],[21.9421257,37.4022713],[21.9414455,37.4027732],[21.9412574,37.4034549],[21.941139,37.4036511],[21.9401485,37.4039312],[21.9395368,37.4039926],[21.9392744,37.4040872],[21.9388043,37.4043404],[21.9385202,37.4046463],[21.938464,37.4047107],[21.9375756,37.4049746],[21.937309,37.4052223],[21.9363663,37.4054041],[21.9361432,37.405301],[21.9357804,37.4053488],[21.9354514,37.4058117],[21.9353487,37.4058459],[21.9343771,37.405847],[21.9335457,37.4060938],[21.9328919,37.4064519],[21.9326822,37.4066825],[21.9325688,37.4066985],[21.9320291,37.4070135],[21.9309434,37.4077493],[21.9306822,37.4079272],[21.9289017,37.4077609],[21.9285436,37.4076374],[21.9282357,37.4077402],[21.92805,37.4075116],[21.9276015,37.4073866],[21.9266402,37.4074238],[21.9257043,37.4077679],[21.9255311,37.4076477],[21.9253848,37.4076271],[21.9245983,37.4074691],[21.9243428,37.4073114],[21.9241902,37.4070744],[21.9235685,37.406676],[21.9230975,37.4065505],[21.9224307,37.4065568],[21.9218711,37.4063667],[21.9208723,37.4057183],[21.9205485,37.4051719],[21.9202624,37.4048965],[21.9198162,37.4046904],[21.9185024,37.4048114],[21.9180758,37.4047138],[21.9173222,37.4041868],[21.9163954,37.403792],[21.9153182,37.4035297],[21.9149074,37.4032701],[21.914667,37.4029774],[21.9145297,37.4026326],[21.9142095,37.4023655],[21.9139066,37.4022881],[21.9138088,37.4023134],[21.9135426,37.4023808],[21.9134078,37.4023514],[21.9134291,37.4019913],[21.9131556,37.401671],[21.9129217,37.4015497],[21.9121067,37.4007963],[21.9121515,37.4004006],[21.9123505,37.4001518],[21.9124977,37.3997308],[21.9124588,37.3990993],[21.9121596,37.3984811],[21.9116826,37.3981663],[21.9115022,37.3981541],[21.9109899,37.3978927],[21.9107588,37.3976723],[21.9109827,37.3965227],[21.9107852,37.3959064],[21.9107718,37.3951672],[21.9105094,37.3948561],[21.9105508,37.3947127],[21.9105066,37.3944618],[21.9103546,37.3936052],[21.9101764,37.3935119],[21.9097043,37.3934315],[21.9088884,37.3939307],[21.9082497,37.3941538],[21.9081596,37.3941432],[21.9080025,37.3936988],[21.9076299,37.3932866],[21.907093,37.3930969],[21.9064395,37.3934458],[21.9061781,37.3935043],[21.9058409,37.3934442],[21.9054244,37.3929862],[21.9043862,37.3921387],[21.9036366,37.3922876],[21.9030087,37.3921233],[21.9027693,37.391389],[21.9024086,37.3909591],[21.9021286,37.390873],[21.9016607,37.3910449],[21.9011635,37.3910541],[21.899817,37.3907328],[21.8990325,37.3909171],[21.8982212,37.3908486],[21.8978983,37.3906807],[21.8975748,37.3901342],[21.8972863,37.3899488],[21.8967773,37.3899758],[21.8964383,37.3898797],[21.8950086,37.38971],[21.8947135,37.3897588],[21.8941184,37.3900366],[21.8937677,37.3900574],[21.8932963,37.3899499],[21.893056,37.3900627],[21.8929248,37.3902226],[21.8928016,37.3901844],[21.8924936,37.3898905],[21.8918246,37.3895812],[21.8915744,37.3896398],[21.8912728,37.3899228],[21.8907777,37.390662],[21.8903555,37.3908167],[21.8899955,37.3907652],[21.8895865,37.3900459],[21.8892797,37.389707],[21.8892374,37.3892016],[21.8891178,37.3890372],[21.8887267,37.388886],[21.8880824,37.3893071],[21.887682,37.3894892],[21.8870857,37.3894064],[21.8864494,37.3895393],[21.8850378,37.389532],[21.8847949,37.389735],[21.8844883,37.3897926],[21.8838267,37.3908261],[21.8837128,37.3908601],[21.8834306,37.3908551],[21.8823777,37.3904284],[21.8820123,37.3902799],[21.8816503,37.3903005],[21.8812756,37.3907714],[21.8811943,37.3916532],[21.8809812,37.3920008],[21.8802331,37.3920955],[21.8799564,37.3918923],[21.879253,37.3916003],[21.8787771,37.3916549],[21.8782414,37.3918255],[21.8779197,37.392018],[21.877334,37.3919624],[21.8771292,37.3920128],[21.8769978,37.3918663],[21.8767184,37.3917621],[21.8763338,37.3917822],[21.875754,37.391916],[21.8751722,37.3925184],[21.8749225,37.3926603],[21.8746083,37.3929881],[21.874138,37.393241],[21.8732629,37.3934326],[21.8719156,37.3947421],[21.870916,37.3949404],[21.8698622,37.3950566],[21.8695925,37.3950067],[21.8695376,37.3949516],[21.8690139,37.3950954],[21.8687599,37.3952891],[21.8684441,37.3956709],[21.8682889,37.3959655],[21.8681864,37.3963962],[21.8679578,37.3964912],[21.8677494,37.3962712],[21.8675369,37.3961953],[21.8670289,37.3961861],[21.8658057,37.3959027],[21.8654174,37.3956523],[21.8649283,37.3949766],[21.8646394,37.3948092],[21.8643584,37.394759],[21.8638679,37.3953269],[21.8629026,37.3955077],[21.8624636,37.3954547],[21.8617395,37.3954957],[21.8613216,37.3953935],[21.8601579,37.3951066],[21.8592757,37.3947482],[21.8587259,37.3946211],[21.8582738,37.3946309],[21.8579297,37.3948139],[21.85732,37.3948029],[21.8572662,37.3947118],[21.8569203,37.3945613],[21.8559863,37.3936432],[21.8556536,37.3934298],[21.8555155,37.3931209],[21.855669,37.3924929],[21.855193,37.3921508],[21.8546906,37.3919434],[21.8540382,37.3918504],[21.853787,37.391945],[21.8532569,37.3923139],[21.8525824,37.3922025],[21.8517593,37.391755],[21.8513308,37.3917292],[21.8506817,37.3915191],[21.8504108,37.3915142],[21.8499526,37.3913436],[21.8495028,37.3913467],[21.8491842,37.3911449],[21.8489694,37.39115],[21.8486567,37.3910271],[21.8484091,37.3909956],[21.8479773,37.3910869],[21.8474957,37.3913395],[21.8469599,37.3915099],[21.8465904,37.3917916],[21.8459949,37.3920781],[21.8453016,37.3921646],[21.844876,37.3920397],[21.8445771,37.3922235],[21.8442863,37.3925156],[21.843865,37.3926341],[21.8435517,37.3925293],[21.8429534,37.3925183],[21.8423474,37.3923811],[21.8406085,37.3915743],[21.8401562,37.3915931],[21.8392569,37.391838],[21.8381203,37.3924751],[21.8369942,37.3927519],[21.8363055,37.3927393],[21.8353654,37.3928302],[21.8335458,37.392869],[21.833169,37.3929094],[21.8321407,37.3930235],[21.8311048,37.3933019],[21.8295042,37.3935789],[21.8292792,37.3935477],[21.8288793,37.3933151],[21.8284646,37.3935959],[21.8280658,37.3937147],[21.827282,37.393475],[21.8269696,37.3933431],[21.8266095,37.3929039],[21.8261894,37.3925897],[21.8256979,37.3924005],[21.8250877,37.3924073],[21.8248554,37.3926283],[21.8246622,37.3926698],[21.8246255,37.3927682],[21.824373,37.3929078],[21.8240112,37.3929192],[21.8237323,37.3931776],[21.8237041,37.3934182],[21.8236787,37.3935168],[21.8235204,37.3935229],[21.823518,37.393604],[21.8234062,37.3935659],[21.8233036,37.3936001],[21.8231159,37.3938399],[21.822793,37.3940683],[21.8226495,37.394345],[21.822546,37.3945526],[21.8221465,37.3946985],[21.8220848,37.3948776],[21.8219221,37.3950368],[21.8220253,37.3953722],[21.8218032,37.3956294],[21.8210335,37.3960748],[21.820956,37.3961928],[21.8206024,37.3963125],[21.8196724,37.3964395],[21.8194595,37.3963815],[21.8186371,37.3959157],[21.8171998,37.3948438],[21.8167773,37.3942232],[21.8164265,37.3938562],[21.8150187,37.3933255],[21.8143912,37.3931517],[21.8138866,37.3926377],[21.813671,37.3922822],[21.8126702,37.391741],[21.8122774,37.3916527],[21.8121183,37.3916858],[21.811007,37.3914489],[21.811013,37.3912417],[21.8108274,37.391022],[21.8107035,37.3906232],[21.8105105,37.3902681],[21.8103871,37.3902388],[21.8100519,37.390503],[21.8098587,37.390932],[21.8096518,37.3910543],[21.8085712,37.3909261],[21.8079693,37.3910411],[21.8076612,37.3911729],[21.8060935,37.3918444],[21.8056642,37.3918455],[21.8054516,37.392166],[21.8049987,37.3925901],[21.8044844,37.3927969],[21.8042905,37.3927775],[21.8028728,37.391913],[21.8021374,37.3919534],[21.8018599,37.3921736],[21.8016819,37.3920802],[21.8016528,37.3919174],[21.8018279,37.3917224],[21.8018791,37.3915161],[21.8022892,37.3913975],[21.8023716,37.3912819],[21.8023162,37.3912448],[21.8016142,37.3913039],[21.8013632,37.3913893],[21.8012107,37.3915847],[21.8009269,37.3916335],[21.8007119,37.3916476],[21.8004433,37.3915615],[21.8003893,37.3914793],[21.8004444,37.3911379],[21.8007028,37.3908003],[21.8009104,37.3906509],[21.8012646,37.3905133],[21.8017611,37.390144],[21.8017401,37.3900896],[21.8011575,37.3903131],[21.8006028,37.3903568],[21.7997475,37.3902508],[21.7993621,37.3902977],[21.7989972,37.390417],[21.7980195,37.3910207],[21.7978635,37.3913332],[21.7978965,37.3917483],[21.7978387,37.3917923],[21.7975521,37.3915527],[21.7972912,37.3912054],[21.7968265,37.3908723],[21.7971539,37.3908784],[21.7980912,37.3898347],[21.7983525,37.3896751],[21.7990366,37.3894535],[21.7991978,37.3893483],[21.7998053,37.3894318],[21.7999644,37.3893987],[21.8003086,37.3892158],[21.8008853,37.3891905],[21.8013448,37.3889287],[21.8016462,37.3886639],[21.8021712,37.3884754],[21.8024765,37.3884631],[21.802785,37.3883426],[21.8031425,37.3884755],[21.8034269,37.3884087],[21.8039199,37.3881565],[21.8040401,37.3879064],[21.8043297,37.3876594],[21.8050901,37.3874843],[21.8052769,37.3873481],[21.8052714,37.3871497],[21.8049876,37.386811],[21.8047427,37.3863017],[21.8047671,37.3862391],[21.8051703,37.3863547],[21.8057339,37.3863922],[21.8060687,37.3865336],[21.8062616,37.3865012],[21.8064364,37.3863152],[21.8068816,37.3849896],[21.8069281,37.3845579],[21.8067428,37.3839417],[21.8064821,37.3835854],[21.8065926,37.383281],[21.8065446,37.3829917],[21.8063755,37.3825921],[21.8060188,37.3820447],[21.8063569,37.382069],[21.8078137,37.381294],[21.8083623,37.3810698],[21.8086503,37.3808769],[21.8088773,37.3804485],[21.8094548,37.3803961],[21.8094377,37.3802066],[21.8088799,37.3795834],[21.8087568,37.3791576],[21.8084528,37.3787374],[21.8083909,37.378538],[21.8084423,37.3783226],[21.8085373,37.3781622],[21.8087683,37.3779862],[21.8091163,37.3772807],[21.8091699,37.3769325],[21.8088111,37.3768447],[21.8091824,37.376428],[21.8092609,37.3764475],[21.8094087,37.3768017],[21.8095459,37.3768764]]},{"id":18583,"author":"AnaDigit","name_GR":"\u039a\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u039d\u03ad\u03b4\u03b1\u03c2: \u039a\u03cd\u03ba\u03bb\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a6\u03b9\u03b3\u03ac\u03bb\u03b5\u03b9\u03b1 \u03c3\u03c4\u03b7 \u039d\u03ad\u03b4\u03b1","description_GR":"\u039c\u03af\u03b1 \u03c9\u03c1\u03b1\u03af\u03b1 \u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03b9\u03c0\u03ad\u03c4\u03b5\u03b9\u03b1 \u03bc\u03b5 \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03b3\u03bd\u03c9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf","path":"PELOPONNESE\/Pelop_Figaleia_short_loop","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":5,"length":6946,"name_EN":"Neda Valley: A loop from Figaleia to Neda river","description_EN":"A short refreshing loop","ascent_time":190,"descent_time":180,"marker":"Red_dots","level":11,"ascent":393,"descent":393,"maxelev":518,"minelev":189,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.82208 37.39166,21.84549 37.40128)","views":98,"millestones":"0,21.8418897,37.3996523#1,21.8319806,37.3991982#2,21.8240326,37.3992729#3,21.8237056,37.3934121#4,21.8333317,37.3928953#5,21.8439345,37.3926144#6,21.8423682,37.3964424#6.9,21.8418907,37.3996523","x":21.8240115,"y":37.3929192,"coor":[[21.8418897,37.3996523],[21.8407997,37.3994521],[21.8396623,37.3989357],[21.839233,37.3989368],[21.8389125,37.3990819],[21.8387138,37.3983709],[21.8380828,37.3983143],[21.8376354,37.3981619],[21.8371504,37.398135],[21.8366497,37.398261],[21.8364875,37.3984022],[21.8361583,37.3984593],[21.8357788,37.3986957],[21.834932,37.3986801],[21.8339184,37.398968],[21.8332081,37.3989189],[21.8324762,37.3992299],[21.8319915,37.399194],[21.8293872,37.4001916],[21.8283677,37.4007654],[21.8282727,37.4009259],[21.827426,37.4009103],[21.8268192,37.4011876],[21.8260237,37.4013532],[21.825361,37.4012238],[21.8252832,37.4011773],[21.8254085,37.4011436],[21.8252887,37.4009882],[21.8253811,37.4009178],[21.8252944,37.40079],[21.8255313,37.4008034],[21.8255241,37.4006591],[21.8256804,37.400725],[21.8256496,37.4006163],[21.8253437,37.4002592],[21.8247423,37.3999598],[21.8243176,37.3994112],[21.823705,37.3991116],[21.8233009,37.399023],[21.8231691,37.3988944],[21.8230269,37.3983421],[21.822743,37.3980034],[21.8226379,37.3977311],[21.8226961,37.3972816],[21.8225176,37.3972062],[21.8224026,37.3972762],[21.822406,37.3971591],[21.8225451,37.3970355],[21.8222046,37.3970923],[21.8222214,37.3969033],[21.8223589,37.3968338],[21.8224365,37.3967991],[21.8228235,37.3966981],[21.8231973,37.3962724],[21.8231466,37.3960732],[21.8230762,37.3961621],[21.8229922,37.3959442],[21.8229318,37.3960783],[21.8227887,37.3959495],[21.8224887,37.3949977],[21.8227829,37.3945886],[21.8230806,37.3944498],[21.8229359,37.3943751],[21.8227083,37.394434],[21.8226504,37.394336],[21.822794,37.3940593],[21.8233045,37.3935911],[21.8235188,37.393604],[21.8235211,37.393523],[21.8236794,37.3935169],[21.8237049,37.3934182],[21.8237332,37.3931686],[21.8240115,37.3929192],[21.8243733,37.3929078],[21.8246259,37.3927683],[21.8246626,37.3926698],[21.8248558,37.3926283],[21.8250881,37.3924073],[21.8256982,37.3924005],[21.8261897,37.3925897],[21.8266099,37.3929039],[21.8269699,37.3933431],[21.8272824,37.393475],[21.8280661,37.3937147],[21.8284649,37.3935959],[21.8288796,37.3933151],[21.8292796,37.3935477],[21.8295046,37.3935789],[21.8311052,37.3933019],[21.8321411,37.3930235],[21.8335461,37.392869],[21.8346859,37.3928313],[21.8369945,37.3927519],[21.8381207,37.3924751],[21.8392572,37.391838],[21.8401565,37.3915931],[21.8406089,37.3915743],[21.8423478,37.3923811],[21.8429538,37.3925184],[21.8435521,37.3925293],[21.8438654,37.3926341],[21.8442867,37.3925156],[21.8448764,37.3920397],[21.845302,37.3921646],[21.8451971,37.3923272],[21.8448289,37.3925638],[21.8450636,37.3926492],[21.8449181,37.3929124],[21.8446979,37.3931067],[21.8443792,37.393191],[21.8438578,37.3936501],[21.8442315,37.3937403],[21.843816,37.3940481],[21.843397,37.3940855],[21.8428099,37.3944714],[21.8426051,37.3945217],[21.8425923,37.3945755],[21.8430862,37.3946837],[21.8431626,37.3947752],[21.8426936,37.3949829],[21.8424677,37.3957336],[21.8422523,37.395635],[21.8420882,37.3954518],[21.8418379,37.3963754],[21.8419489,37.3963685],[21.8422055,37.3964813],[21.842375,37.3964416],[21.8427311,37.3966283],[21.8427511,37.3967188],[21.842519,37.3973274],[21.8427245,37.3976466],[21.8426372,37.3979333],[21.8427029,37.3980066],[21.8432078,37.398124],[21.8435196,37.3982829],[21.8437956,37.3985042],[21.8439151,37.3990652],[21.8448775,37.3993801],[21.8452619,37.3997656],[21.8441695,37.3996466],[21.8439299,37.3997323],[21.8435719,37.4000052],[21.843265,37.4000717],[21.8425777,37.3998856],[21.8418907,37.3996523]]},{"id":19745,"author":"AnaDigit","name_GR":"O32: \u039a\u03b1\u03c1\u03cd\u03c4\u03b1\u03b9\u03bd\u03b1-\u039b\u03c5\u03ba\u03cc\u03c3\u03bf\u03c5\u03c1\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_O32_04_Karytena_Lykosoura","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":2606,"name_EN":"O32: Karytena-Lykosoura","description_EN":"","ascent_time":320,"descent_time":315,"marker":"O32","level":10,"ascent":555,"descent":486,"maxelev":707,"minelev":320,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.03356 37.39428,22.0569 37.48182)","views":2,"millestones":"0,22.0427733,37.4819690#1,22.0507518,37.4781737#2,22.0468778,37.4712852#3,22.0405181,37.4644110#4,22.0388645,37.4576160#5,22.0362191,37.4500223#6,22.0405733,37.4428434#7,22.0427783,37.4363705#8,22.0448728,37.4286139#9,22.0510046,37.4217373#10,22.0546718,37.4159075#11,22.0502373,37.4087182#12,22.0463443,37.4016072#13,22.0419930,37.3966556#2.6,22.0371881,37.3939588","x":22.0431369,"y":37.4382225,"coor":[[22.0427733,37.481969],[22.0431376,37.481743],[22.0435027,37.481535],[22.0438563,37.4814214],[22.0441746,37.4813997],[22.0448751,37.4809494],[22.0455853,37.4806006],[22.0461093,37.4804967],[22.0462591,37.4805262],[22.0462535,37.4803458],[22.0464333,37.4803916],[22.0467877,37.480242],[22.0475007,37.4801254],[22.0476788,37.4800179],[22.0481197,37.4800252],[22.0483986,37.4797369],[22.0487749,37.4796147],[22.0496482,37.4796539],[22.0498572,37.4794861],[22.0500093,37.4792498],[22.0503718,37.4792648],[22.0506026,37.4790884],[22.0507829,37.4790733],[22.0510891,37.478959],[22.0509886,37.4788537],[22.0508315,37.4788083],[22.0506519,37.4786341],[22.0510126,37.4784598],[22.0508155,37.4782943],[22.0507391,37.4781466],[22.0507542,37.4780432],[22.0509731,37.4778846],[22.0507682,37.4775027],[22.0507607,37.4773133],[22.0501902,37.4773737],[22.0498004,37.4761912],[22.0486055,37.4751396],[22.0478388,37.4750503],[22.0476172,37.4748754],[22.0473713,37.4743306],[22.047287,37.4737028],[22.0468567,37.4728553],[22.0470558,37.4725928],[22.0474951,37.4722215],[22.0475661,37.4720605],[22.0472129,37.4717707],[22.0467332,37.4710846],[22.0463799,37.4707543],[22.0458674,37.4705048],[22.0450349,37.4699075],[22.0453215,37.4694999],[22.0452832,37.4692334],[22.045077,37.4688605],[22.0448953,37.4685398],[22.0442963,37.4680928],[22.0442751,37.4679978],[22.0441963,37.46785],[22.0440237,37.4676241],[22.0436444,37.4674286],[22.0434437,37.4672788],[22.0429745,37.4669263],[22.0424072,37.4660946],[22.0412396,37.4649509],[22.0404525,37.4643521],[22.0396215,37.4641332],[22.0391346,37.4637309],[22.0390248,37.4631703],[22.0384221,37.4633067],[22.0381808,37.4632757],[22.037282,37.4626682],[22.0371612,37.462531],[22.0371322,37.4623413],[22.0375998,37.4617565],[22.0376015,37.4612586],[22.0379568,37.4610752],[22.0381081,37.4609065],[22.0380718,37.4605274],[22.0382024,37.4598536],[22.0386003,37.4590018],[22.0388627,37.4580441],[22.0388591,37.4573141],[22.0386495,37.4566842],[22.0384762,37.4563389],[22.0382191,37.4561453],[22.0377582,37.4559124],[22.0368261,37.455203],[22.0367098,37.4548923],[22.0367068,37.4546174],[22.0365439,37.4543218],[22.0367506,37.45394],[22.0367452,37.4537146],[22.0364587,37.453471],[22.0367387,37.4531399],[22.0367928,37.4527984],[22.0369569,37.4527921],[22.0370611,37.4526992],[22.037063,37.4523297],[22.0368369,37.4518956],[22.0366381,37.4516783],[22.0364412,37.4512897],[22.0360299,37.4505529],[22.0358295,37.4503941],[22.0360737,37.4501751],[22.0364864,37.4497358],[22.0366051,37.4499519],[22.0366842,37.4499532],[22.036893,37.4488842],[22.0370548,37.4487922],[22.0372353,37.4483739],[22.0376231,37.4482001],[22.0377066,37.4480731],[22.0378951,37.4476999],[22.0378701,37.447303],[22.0381776,37.4468372],[22.0383266,37.4467022],[22.0388057,37.4465389],[22.039084,37.4462687],[22.0388529,37.44599],[22.0388225,37.445852],[22.0390575,37.4455135],[22.0393082,37.4446074],[22.0394486,37.4443867],[22.0395651,37.4438208],[22.0398186,37.4436358],[22.0400788,37.443194],[22.0405272,37.4429017],[22.0409483,37.442359],[22.0417256,37.4416329],[22.0418114,37.4409403],[22.0416182,37.4405496],[22.0417519,37.4401485],[22.0426879,37.4389699],[22.0431718,37.4385746],[22.0435506,37.4383916],[22.0443581,37.4381999],[22.0438732,37.4381559],[22.0431369,37.4382225],[22.0431282,37.4372513],[22.0432557,37.4370484],[22.0431565,37.4369949],[22.0429227,37.436777],[22.0427648,37.4363283],[22.0424317,37.4360997],[22.0423647,37.4356345],[22.042778,37.4349541],[22.0433394,37.4346638],[22.0436637,37.4343605],[22.0438564,37.4341226],[22.0438987,37.4338822],[22.0436331,37.4336638],[22.0435295,37.4333443],[22.0436051,37.4330459],[22.04343,37.4323896],[22.0433206,37.4322527],[22.0433416,37.4319353],[22.0432276,37.4315391],[22.043291,37.4312743],[22.0432332,37.430834],[22.0432895,37.4304069],[22.0434208,37.430195],[22.044552,37.4292854],[22.0449504,37.4288189],[22.0448138,37.4284651],[22.0454803,37.4280391],[22.0459737,37.427849],[22.0464845,37.4277628],[22.0465717,37.4274893],[22.0471351,37.426683],[22.0474265,37.4263026],[22.0481908,37.4260651],[22.0486987,37.4256544],[22.0489624,37.425073],[22.0494794,37.4243109],[22.0495929,37.4238577],[22.0498796,37.4232608],[22.0506771,37.4226138],[22.0508183,37.4223571],[22.0508662,37.4218599],[22.0509935,37.4217426],[22.0515919,37.4214618],[22.0522681,37.4206574],[22.0525546,37.4203692],[22.0526616,37.4201637],[22.0527192,37.4196847],[22.0526249,37.419005],[22.0527445,37.4187073],[22.0530098,37.4184976],[22.0538295,37.4182633],[22.0544569,37.4176382],[22.055177,37.4175374],[22.0558772,37.4175489],[22.0562969,37.4174882],[22.0562265,37.4171086],[22.05614,37.4169607],[22.0558399,37.4167665],[22.0554475,37.4166496],[22.0545423,37.4157831],[22.0541832,37.4157276],[22.054001,37.4153461],[22.0536046,37.4149453],[22.0534982,37.4146506],[22.0531412,37.4145163],[22.0525307,37.4140939],[22.0514032,37.4130885],[22.0513307,37.4128732],[22.0510212,37.4125685],[22.0506184,37.4124582],[22.0505114,37.4122672],[22.0502853,37.4118353],[22.0504205,37.4111166],[22.0503772,37.4105661],[22.05004,37.4100626],[22.0503266,37.4099051],[22.0505266,37.4095975],[22.0502889,37.4091227],[22.0502146,37.4085018],[22.0497922,37.408238],[22.0497315,37.4079621],[22.0493461,37.4075345],[22.0491188,37.4067151],[22.0488239,37.4063249],[22.048114,37.4049478],[22.0479015,37.4048249],[22.0473963,37.4042668],[22.0463348,37.403855],[22.0459138,37.4034965],[22.0454358,37.4032385],[22.0454651,37.4029394],[22.0457102,37.4026776],[22.0461696,37.4023855],[22.0465103,37.4018842],[22.0463927,37.4016254],[22.0462697,37.4015783],[22.0459743,37.4016432],[22.0456532,37.4014306],[22.045603,37.4011482],[22.0456675,37.4008834],[22.0448725,37.400174],[22.0448307,37.4000449],[22.0446963,37.3999999],[22.0444961,37.399404],[22.0446172,37.3991311],[22.0448728,37.3988605],[22.0452913,37.3988404],[22.0457141,37.3986513],[22.0454072,37.3983466],[22.044859,37.3980874],[22.0443148,37.3982159],[22.0439433,37.3981669],[22.0441314,37.3978861],[22.0440056,37.3975078],[22.0436276,37.3972762],[22.0433134,37.3971944],[22.0434648,37.3969649],[22.0432341,37.3966343],[22.0422513,37.3965933],[22.0414556,37.3967851],[22.0411739,37.3967985],[22.0409153,37.3967514],[22.0406177,37.3965482],[22.0402939,37.3961485],[22.0398611,37.3958485],[22.0395133,37.3957571],[22.0388367,37.395712],[22.0382709,37.3953174],[22.037652,37.3952282],[22.0360725,37.3947221],[22.0358739,37.3946332],[22.0358499,37.3944187],[22.036011,37.3943043],[22.0367397,37.394082],[22.0371133,37.3940522],[22.0371881,37.3939588]]},{"id":19818,"author":"AnaDigit","name_GR":"O32: \u039b\u03c5\u03ba\u03cc\u03c3\u03bf\u03c5\u03c1\u03b1-\u03a4\u03c1\u03b9\u03c0\u03cc\u03c4\u03b1\u03bc\u03bf","description_GR":"","path":"PELOPONNESE\/Pelop_O32_05_Lykosoura_Tripotamo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":2,"length":502,"name_EN":"O32: Lykosoura-Tripotamo","description_EN":"","ascent_time":275,"descent_time":275,"marker":"O32","level":10,"ascent":243,"descent":322,"maxelev":560,"minelev":377,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.03232 37.35592,22.09966 37.39388)","views":4,"millestones":"0,22.0371877,37.3939588#1,22.0352892,37.3887439#2,22.0338632,37.3859218#3,22.0346843,37.3789491#4,22.0414294,37.3758911#5,22.0496405,37.3714572#6,22.0491985,37.3637331#7,22.0580925,37.3602107#8,22.0680245,37.3567124#9,22.0760322,37.3590869#10,22.0856568,37.3617634#11,22.0917668,37.3604489#0.5,22.0994971,37.3624239","x":22.0484781,"y":37.3728178,"coor":[[22.0371877,37.3939588],[22.037454,37.3939677],[22.0374775,37.3939321],[22.0374239,37.393823],[22.0371677,37.3936836],[22.0371597,37.3935573],[22.0378144,37.3935772],[22.0380533,37.393509],[22.0381225,37.3934561],[22.0380971,37.3931312],[22.0381444,37.3930509],[22.0383213,37.3930201],[22.0381799,37.3928104],[22.0383048,37.3923529],[22.0382611,37.3922981],[22.038171,37.3922876],[22.037446,37.3927982],[22.0373865,37.3924818],[22.03741,37.3920136],[22.0373457,37.3914492],[22.0370639,37.3909939],[22.0368651,37.3903868],[22.0363965,37.3897301],[22.0358308,37.3893332],[22.0357829,37.3890079],[22.0358807,37.3887212],[22.0357932,37.3886116],[22.0357248,37.3886375],[22.0355937,37.3888967],[22.0354797,37.3889398],[22.0352158,37.3886651],[22.0350584,37.3886354],[22.0340616,37.3896102],[22.0337511,37.3898213],[22.033216,37.3904163],[22.0328402,37.3904123],[22.0326221,37.3901112],[22.0328623,37.3899981],[22.0330451,37.3894874],[22.0332572,37.3891485],[22.0332692,37.388689],[22.0336126,37.3880819],[22.0336576,37.3876591],[22.0342879,37.387309],[22.0344293,37.3870861],[22.0343222,37.3869041],[22.0339781,37.386673],[22.0336612,37.3866948],[22.033386,37.3868524],[22.0332847,37.3868417],[22.033383,37.386537],[22.0336579,37.3863883],[22.0339157,37.3860321],[22.0338515,37.3858959],[22.0336631,37.3857575],[22.0331264,37.3855909],[22.0331893,37.3853035],[22.033072,37.3850402],[22.0326124,37.3849064],[22.0325585,37.3848064],[22.0326507,37.3847358],[22.0332166,37.3846912],[22.0333196,37.3846388],[22.033346,37.384495],[22.0331988,37.384078],[22.0333352,37.3836116],[22.0336913,37.3833832],[22.03362,37.3830846],[22.0332773,37.3828807],[22.0332037,37.3826722],[22.0334253,37.3824055],[22.0339037,37.3822512],[22.0342212,37.3817698],[22.0344827,37.3812695],[22.0344371,37.3804756],[22.034177,37.3800567],[22.0343907,37.3796547],[22.0343421,37.3793565],[22.03453,37.3790802],[22.0347609,37.3788858],[22.034835,37.3786437],[22.0349997,37.3785113],[22.0349348,37.378402],[22.03485,37.3781888],[22.034918,37.3777484],[22.0348987,37.3776241],[22.0346531,37.3775119],[22.0345238,37.3772754],[22.0348098,37.377136],[22.0351044,37.3770958],[22.0356199,37.3772486],[22.0360531,37.3770935],[22.0366862,37.377068],[22.0372892,37.3768978],[22.0381103,37.3768483],[22.0384367,37.3764572],[22.038912,37.37642],[22.0399886,37.3770192],[22.0411177,37.3770289],[22.0409112,37.376719],[22.0410953,37.3762737],[22.0412706,37.3760085],[22.0418923,37.3755501],[22.0423838,37.3753239],[22.0425815,37.3751019],[22.0427147,37.3749329],[22.0429894,37.3747932],[22.0433732,37.3747185],[22.0443554,37.3742931],[22.0448427,37.3742291],[22.0452527,37.3736591],[22.0457365,37.3737301],[22.0474129,37.3735325],[22.0481529,37.373164],[22.0484781,37.3728178],[22.0492713,37.3726304],[22.0497851,37.3724136],[22.0499358,37.3722629],[22.0499188,37.3720463],[22.0496342,37.3716991],[22.0496412,37.3714288],[22.0494,37.3707129],[22.0497091,37.3701142],[22.0500352,37.369732],[22.0501167,37.3692016],[22.0503125,37.3690516],[22.0503972,37.3688367],[22.0500419,37.3681639],[22.0500014,37.3675504],[22.0494873,37.3673437],[22.0493165,37.3672214],[22.0489167,37.3669625],[22.0488304,37.3668079],[22.0489947,37.3665244],[22.0491674,37.3659595],[22.0492435,37.3652037],[22.0491901,37.3650857],[22.0488637,37.3650442],[22.0487645,37.3649525],[22.0487067,37.3641314],[22.0488134,37.3639349],[22.0491758,37.3637155],[22.0493131,37.3638237],[22.0496065,37.3638285],[22.0501455,37.3639456],[22.0502758,37.364146],[22.0508709,37.3636624],[22.0519805,37.3634463],[22.0522372,37.3631261],[22.0527379,37.3627558],[22.0529089,37.3626956],[22.053236,37.3626244],[22.0536671,37.3624647],[22.0540692,37.3625367],[22.0543671,37.3623703],[22.0549692,37.362227],[22.0551889,37.3620279],[22.0553308,37.3617779],[22.055287,37.3612905],[22.0554031,37.3611662],[22.0563012,37.3609286],[22.0568729,37.3606496],[22.0580355,37.3602271],[22.0597305,37.3597322],[22.0603761,37.3596527],[22.0613458,37.3597046],[22.0622528,37.3595573],[22.0631737,37.359311],[22.0638801,37.3590612],[22.064392,37.3584747],[22.0654028,37.3579415],[22.0660205,37.3576272],[22.0668025,37.3575138],[22.06766,37.3570952],[22.0679718,37.3568209],[22.0681748,37.3563916],[22.0688259,37.3556542],[22.0691447,37.3555513],[22.0698136,37.3555239],[22.070809,37.35545],[22.0716439,37.3554727],[22.072623,37.3555968],[22.0731485,37.3557946],[22.0736128,37.3561807],[22.0739698,37.3567903],[22.0749054,37.3572922],[22.0752582,37.3576224],[22.0755386,37.3581407],[22.075502,37.3586899],[22.0760669,37.3591136],[22.0764102,37.3598222],[22.0769653,37.3601917],[22.0771449,37.3602307],[22.0778909,37.3601978],[22.078599,37.3603264],[22.0789113,37.3604757],[22.0793416,37.3608702],[22.0802242,37.3612361],[22.0807623,37.361389],[22.0818205,37.3615143],[22.0834715,37.3614149],[22.0841187,37.3617138],[22.0843323,37.3617533],[22.0844808,37.3616836],[22.0846563,37.3614431],[22.084815,37.3614187],[22.0858654,37.3618502],[22.0875724,37.3617697],[22.0879326,37.3618116],[22.0882445,37.3619788],[22.0885184,37.3623077],[22.088689,37.362707],[22.088884,37.3634762],[22.0890402,37.3635509],[22.089261,37.3621079],[22.0894686,37.3614894],[22.0898439,37.3609367],[22.0909548,37.359774],[22.0939451,37.3622984],[22.0942895,37.3622139],[22.0951779,37.3614621],[22.0955561,37.3613263],[22.0964276,37.3612412],[22.0966299,37.3612805],[22.0967097,37.3616963],[22.0968613,37.3619511],[22.0982429,37.3626853],[22.0985374,37.3627036],[22.0994971,37.3624239]]},{"id":19942,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 8 \u038a\u03c3\u03c9\u03bc\u03b1 \u039a\u03b1\u03c1\u03c5\u03ce\u03bd-\u039a\u03b1\u03c1\u03cd\u03c4\u03b1\u03b9\u03bd\u03b1","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 8","path":"PELOPONNESE\/Pelop_ArcadianTrails_08_IsomaKaryon_Karytena","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10678,"name_EN":"Arcadian Trails: Isoma Karyon-Karytena","description_EN":"Section 8","ascent_time":255,"descent_time":250,"marker":"Yellow_square","level":10,"ascent":358,"descent":327,"maxelev":499,"minelev":320,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.04109 37.42822,22.06791 37.48505)","views":0,"millestones":"0,22.0459767,37.4278558#1,22.0526885,37.4311021#2,22.0596984,37.4347559#3,22.0613876,37.4413808#4,22.0645041,37.4469009#5,22.0625877,37.4550633#6,22.0622849,37.4613290#7,22.0656779,37.4680940#8,22.0618890,37.4743153#9,22.0545223,37.4787268#10,22.0444786,37.4811996#10.7,22.0410911,37.4850526","x":22.059551,"y":37.4579712,"coor":[[22.0459767,37.4278558],[22.0461551,37.4283814],[22.046071,37.4285355],[22.0464256,37.4288027],[22.0470516,37.4288108],[22.047458,37.4288265],[22.0483098,37.4287054],[22.0483712,37.4289498],[22.0483221,37.4291022],[22.0480875,37.4294318],[22.0475359,37.4297831],[22.0474515,37.429989],[22.0480448,37.4302061],[22.0480879,37.4302879],[22.0482343,37.4303084],[22.0482981,37.4304626],[22.0485212,37.4305745],[22.0485167,37.4307456],[22.0487973,37.4308224],[22.0492487,37.4308479],[22.0497053,37.4311077],[22.0501327,37.4311463],[22.0511329,37.4313611],[22.0518299,37.4310662],[22.0522841,37.4309835],[22.0528561,37.4311552],[22.0535889,37.4312213],[22.0539316,37.4311639],[22.0557461,37.431356],[22.05617,37.4315702],[22.0565857,37.4316672],[22.0572316,37.4320383],[22.0576915,37.4321721],[22.0583262,37.4321014],[22.0585608,37.4321232],[22.0586679,37.4321363],[22.059101,37.4324318],[22.059699,37.4326331],[22.0593646,37.432889],[22.0595519,37.4335139],[22.0593774,37.4337093],[22.0595073,37.4339278],[22.0598633,37.4341499],[22.0598835,37.4342403],[22.0602107,37.4342637],[22.0602983,37.4343733],[22.0602053,37.4344709],[22.0602258,37.4345524],[22.0595511,37.4348184],[22.0582957,37.4357261],[22.0584526,37.4362153],[22.0584083,37.4366202],[22.0582786,37.4368253],[22.0577831,37.4371957],[22.0574392,37.4382535],[22.0574068,37.4385526],[22.0575043,37.4387165],[22.0578889,37.4388827],[22.0581518,37.4393692],[22.058536,37.4398081],[22.0593084,37.4401002],[22.0599938,37.4402557],[22.0605083,37.4407801],[22.061128,37.4412949],[22.0613519,37.4413797],[22.0620182,37.4413997],[22.0632089,37.4412479],[22.0636371,37.4413],[22.0641727,37.4415702],[22.0645353,37.4420537],[22.0643854,37.4421685],[22.0644382,37.4423135],[22.0642219,37.4423731],[22.0641422,37.443273],[22.0643213,37.4437806],[22.0647378,37.4442043],[22.0650399,37.4442813],[22.0652252,37.4447688],[22.0652369,37.4449717],[22.064964,37.4450777],[22.0647017,37.4452468],[22.0644779,37.4451621],[22.0643445,37.4456916],[22.0641375,37.4458257],[22.0646768,37.4463933],[22.0644327,37.4470922],[22.0645053,37.4474269],[22.0648147,37.4477023],[22.0649192,37.4479519],[22.0650316,37.4480596],[22.0646384,37.4488417],[22.0644949,37.4495874],[22.0643429,37.4497832],[22.0639971,37.4500389],[22.0636113,37.4505373],[22.0635635,37.4506356],[22.0636506,37.4507632],[22.0634862,37.4510039],[22.0635337,37.4511353],[22.0633191,37.4515644],[22.0630111,37.4525507],[22.0627043,37.4530504],[22.0627637,37.4533758],[22.0628129,37.4534397],[22.0625791,37.4541748],[22.0628251,37.4547196],[22.0627547,37.4548176],[22.0628096,37.4548816],[22.0627727,37.4549981],[22.0621509,37.45522],[22.0622146,37.4557325],[22.0619691,37.4559673],[22.0618684,37.4563622],[22.0616888,37.4563525],[22.0613413,37.4564572],[22.0616378,37.4567955],[22.0611078,37.4571834],[22.0608907,37.4572699],[22.0603442,37.457324],[22.0601914,37.4572517],[22.0599432,37.4572296],[22.0598067,37.4574819],[22.0598202,37.4576151],[22.0595898,37.4577825],[22.059551,37.4579712],[22.0596329,37.4580807],[22.0599656,37.4587711],[22.0601959,37.4590452],[22.0608964,37.4594983],[22.061101,37.4603308],[22.0612205,37.460522],[22.0614284,37.4607462],[22.0616404,37.4608579],[22.0617962,37.4609505],[22.0624611,37.4614729],[22.0625469,37.4617357],[22.0631112,37.4622136],[22.0645325,37.4627776],[22.0647352,37.462808],[22.0650622,37.4632819],[22.0653749,37.4634313],[22.0658055,37.4638349],[22.0659842,37.4639189],[22.0661995,37.464337],[22.0667996,37.4647434],[22.0668647,37.4648526],[22.0667655,37.4651889],[22.066925,37.4664623],[22.066748,37.4667478],[22.0667574,37.4669574],[22.0664267,37.4670692],[22.0664103,37.4672672],[22.0661916,37.4674168],[22.0659733,37.46799],[22.0656081,37.4681192],[22.0658578,37.4684275],[22.0654735,37.4685181],[22.0651752,37.4686844],[22.0645058,37.46939],[22.0644942,37.4694844],[22.0641514,37.469623],[22.0637805,37.4700134],[22.0635969,37.4701186],[22.0631561,37.4701113],[22.0626342,37.4706165],[22.062831,37.4709216],[22.0629031,37.4710693],[22.063443,37.4716189],[22.0634623,37.4717453],[22.0638558,37.4722745],[22.0640668,37.4724222],[22.0639263,37.4726091],[22.0639456,37.4727356],[22.0638312,37.4727878],[22.0635972,37.4730904],[22.0635064,37.4731069],[22.0634189,37.4734299],[22.0630643,37.4735863],[22.062852,37.4739253],[22.0626711,37.4739224],[22.0625412,37.4741365],[22.0622991,37.4742227],[22.0616407,37.4743741],[22.0614896,37.4745338],[22.0611288,37.4744919],[22.0610923,37.4745904],[22.0608409,37.4746944],[22.0601619,37.4751519],[22.0601403,37.475672],[22.0601286,37.4759062],[22.0602542,37.4762957],[22.0601553,37.4770602],[22.0602929,37.4774229],[22.0599896,37.4773458],[22.0585203,37.4777543],[22.0582,37.4778932],[22.0578623,37.4778336],[22.0576064,37.4781088],[22.0574581,37.4781604],[22.0568562,37.4782586],[22.056201,37.4782298],[22.0553431,37.4784861],[22.0545372,37.4787252],[22.0534939,37.4788342],[22.052195,37.4787767],[22.0518042,37.4788018],[22.0517578,37.4788438],[22.0514534,37.4789853],[22.0507805,37.479071],[22.0505991,37.4790861],[22.0503684,37.4792625],[22.0500069,37.4792475],[22.0498538,37.4794793],[22.0496457,37.4796561],[22.0487728,37.4796147],[22.0483965,37.4797346],[22.0481177,37.4800184],[22.0476769,37.4800111],[22.0474987,37.4801231],[22.0467853,37.480242],[22.0464308,37.4803893],[22.0462511,37.4803435],[22.0462567,37.4805239],[22.0461068,37.4804989],[22.0455829,37.4805983],[22.0448727,37.4809471],[22.0441711,37.4813951],[22.0438539,37.4814169],[22.0435004,37.4815282],[22.0431339,37.4817474],[22.0427697,37.4819712],[22.0426906,37.4819699],[22.0425893,37.4819502],[22.0423934,37.4820911],[22.042282,37.4820262],[22.0422685,37.4823684],[22.0421199,37.4824291],[22.0420975,37.4827712],[22.0420113,37.4830401],[22.0420942,37.4833299],[22.0420196,37.48359],[22.0419045,37.4834889],[22.0418231,37.4840103],[22.0415807,37.4841955],[22.0415552,37.4844835],[22.041221,37.4847213],[22.0411366,37.4848281],[22.0410911,37.4850526]]},{"id":19943,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 7 \u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03bf\u03c7\u03ce\u03c1\u03b9-\u038a\u03c3\u03c9\u03bc\u03b1 \u039a\u03b1\u03c1\u03c5\u03ce\u03bd","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 7","path":"PELOPONNESE\/Pelop_ArcadianTrails_07_Kastanochori_IsomaKaryon","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6548,"name_EN":"Arcadian Trails: Kastanochori-Isoma Karyon","description_EN":"Section 7","ascent_time":145,"descent_time":155,"marker":"Yellow_square","level":10,"ascent":198,"descent":471,"maxelev":740,"minelev":462,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.01895 37.41623,22.04628 37.43607)","views":1,"millestones":"0,22.0198133,37.4167114#1,22.0237018,37.4187107#2,22.0194687,37.4239725#3,22.0221561,37.4303475#4,22.0273401,37.4355793#5,22.0354735,37.4305394#6,22.0413580,37.4300189#6.5,22.0459767,37.4278558","x":22.0221003,"y":37.4285896,"coor":[[22.0198133,37.4167114],[22.0199563,37.4168579],[22.0200494,37.417184],[22.0201955,37.4172134],[22.0203079,37.4170891],[22.0203042,37.4168007],[22.0204398,37.4163704],[22.0205588,37.4162507],[22.0205661,37.416404],[22.0206572,37.4164168],[22.0209331,37.4158086],[22.0211028,37.4160413],[22.0212185,37.4163676],[22.0216156,37.4167348],[22.0221275,37.4170317],[22.0221294,37.4169597],[22.0217191,37.4166644],[22.021511,37.4164176],[22.0218946,37.4165164],[22.0218862,37.4164081],[22.0226036,37.4166274],[22.0226074,37.4164833],[22.0229076,37.4166685],[22.0232691,37.4170982],[22.0234674,37.4177233],[22.0235589,37.4176798],[22.0236073,37.417987],[22.0237676,37.4179086],[22.0237254,37.4182233],[22.0237708,37.4182151],[22.0237689,37.4182871],[22.0236469,37.4190602],[22.0238276,37.4190632],[22.0239397,37.4186685],[22.0242548,37.4187188],[22.0242966,37.4188457],[22.0244634,37.4189476],[22.0246997,37.4198325],[22.0246418,37.4203182],[22.0247111,37.4204613],[22.0241669,37.4214842],[22.0237758,37.421748],[22.0234385,37.4221118],[22.0230175,37.422222],[22.0224431,37.4221493],[22.0223036,37.4223001],[22.0221473,37.4222254],[22.0219167,37.4224018],[22.0213258,37.4225271],[22.0210264,37.4227384],[22.0208023,37.4227865],[22.0202201,37.4233467],[22.0199335,37.4235042],[22.0199321,37.4236371],[22.0195678,37.423872],[22.0192661,37.4241734],[22.0193103,37.4242102],[22.0196172,37.4241432],[22.0199146,37.4241685],[22.0200633,37.4240989],[22.0202666,37.4241023],[22.0204438,37.4242404],[22.020613,37.4242523],[22.0208666,37.4244909],[22.0209291,37.4246902],[22.0207475,37.4255794],[22.020763,37.42585],[22.0209378,37.4260782],[22.0209396,37.4264387],[22.0210643,37.4264228],[22.0212385,37.4262455],[22.0212458,37.4263988],[22.0213583,37.4264187],[22.0213331,37.4265174],[22.0214116,37.4265368],[22.0213862,37.4266445],[22.0214944,37.4268266],[22.0214445,37.427006],[22.0215688,37.427008],[22.021596,37.4272608],[22.0216616,37.4273431],[22.0219424,37.4274108],[22.0221713,37.4277301],[22.0221195,37.4279681],[22.0220241,37.4280746],[22.0221081,37.4282923],[22.0221003,37.4285896],[22.0223217,37.4287645],[22.0221489,37.4288878],[22.0221901,37.4290417],[22.0223341,37.4291523],[22.0222296,37.4292587],[22.0223736,37.4293692],[22.0224265,37.4295053],[22.0223192,37.4297198],[22.022321,37.4300803],[22.0221322,37.4303836],[22.0221243,37.4307755],[22.0220904,37.4312075],[22.0222301,37.4314802],[22.0224799,37.4316376],[22.0227604,37.4317144],[22.0228371,37.4318058],[22.0233628,37.4320129],[22.0236144,37.4323325],[22.0237133,37.4328659],[22.0234379,37.4334561],[22.0234077,37.433744],[22.0234924,37.4339617],[22.0233255,37.4342924],[22.0233654,37.4344913],[22.0238055,37.4349493],[22.0241641,37.4350634],[22.0243194,37.4351742],[22.0250598,37.4354817],[22.025368,37.4357933],[22.0257729,37.4361515],[22.0266386,37.436202],[22.0268775,37.4361429],[22.0277763,37.4350584],[22.0285142,37.434503],[22.0292514,37.4335419],[22.0294912,37.4334468],[22.0302105,37.4331704],[22.0304407,37.4330233],[22.0308947,37.4325171],[22.0313544,37.4324978],[22.0321875,37.4326198],[22.0327083,37.4325834],[22.0328681,37.432523],[22.0333589,37.4322833],[22.0335176,37.4322679],[22.0338852,37.4320397],[22.0339946,37.4317441],[22.0342634,37.4314061],[22.0347263,37.4309902],[22.034801,37.4307662],[22.035167,37.430601],[22.0352953,37.43045],[22.0356968,37.4306549],[22.035894,37.4308925],[22.0363924,37.4308467],[22.0366023,37.4307736],[22.0365605,37.4310793],[22.0366376,37.4315853],[22.0370893,37.4320344],[22.0374291,37.432004],[22.0373766,37.4317958],[22.0371015,37.4315119],[22.0371064,37.4313227],[22.0382857,37.4307385],[22.0388105,37.4305489],[22.0390299,37.4303723],[22.0391431,37.4301061],[22.0387892,37.4298118],[22.0389031,37.4296154],[22.0391624,37.4296377],[22.039306,37.4297663],[22.0397034,37.4296918],[22.0402834,37.429769],[22.0408877,37.4296754],[22.0410212,37.4297407],[22.0411406,37.4299319],[22.0408965,37.4302298],[22.0420048,37.4297142],[22.0422796,37.4295745],[22.0427776,37.4295467],[22.0430054,37.4294784],[22.0437669,37.4288782],[22.0443166,37.4285989],[22.0448169,37.4284674],[22.0454833,37.4280459],[22.0459767,37.4278558]]},{"id":19944,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 6 \u038a\u03c3\u03b1\u03c1\u03b7\u03c2-\u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03bf\u03c7\u03ce\u03c1\u03b9","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 6","path":"PELOPONNESE\/Pelop_ArcadianTrails_06_Isaris_Kastanochori","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":12044,"name_EN":"Arcadian Trails: 6 Isaris-Kastanochori","description_EN":"Section 6","ascent_time":275,"descent_time":275,"marker":"Yellow_square","level":10,"ascent":549,"descent":618,"maxelev":822,"minelev":487,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.01208 37.36382,22.03177 37.41658)","views":0,"millestones":"0,22.0134781,37.3636056#1,22.0189323,37.3699308#2,22.0283645,37.3725513#3,22.0283430,37.3758515#4,22.0237924,37.3803915#5,22.0226824,37.3841324#6,22.0241576,37.3896420#7,22.0216153,37.3927005#8,22.0262750,37.3964940#9,22.0216017,37.4022911#10,22.0172640,37.4083394#11,22.0228704,37.4134326#12,22.0198168,37.4167137","x":22.0260295,"y":37.3881538,"coor":[[22.0134781,37.3636056],[22.0137086,37.3635509],[22.0138068,37.3635188],[22.0140746,37.3636404],[22.0140747,37.3637148],[22.0140764,37.3640009],[22.0141199,37.3642247],[22.0141619,37.3644395],[22.014259,37.3646912],[22.0142673,37.3650158],[22.0141629,37.3651222],[22.0141037,37.3656529],[22.0141561,37.365807],[22.0147243,37.3659247],[22.0150211,37.3658035],[22.015383,37.3657825],[22.0155173,37.3658794],[22.0157819,37.3660686],[22.0159429,37.3663868],[22.0158119,37.3664837],[22.016367,37.3667904],[22.0168254,37.3673929],[22.0172562,37.3681842],[22.0177071,37.3686424],[22.0179209,37.3687677],[22.0185813,37.3694186],[22.0188734,37.3699012],[22.0191855,37.3700596],[22.019253,37.3702432],[22.0196999,37.370422],[22.0202634,37.3704674],[22.0208183,37.3704046],[22.0212412,37.3702134],[22.0213427,37.3702151],[22.0219625,37.3706942],[22.0224572,37.3712071],[22.0234371,37.3714668],[22.0235901,37.3716587],[22.0242424,37.3717597],[22.0253372,37.3722106],[22.02542,37.3723381],[22.0256782,37.3723965],[22.0257488,37.3722895],[22.0259613,37.3723652],[22.0260768,37.372268],[22.0264138,37.3723367],[22.026854,37.372344],[22.0273577,37.3720821],[22.0273876,37.3722358],[22.0279378,37.3723531],[22.0285516,37.3726337],[22.0291681,37.3728062],[22.0294395,37.3727927],[22.0300006,37.3729282],[22.0301995,37.3730938],[22.0303274,37.3733843],[22.0309575,37.3735142],[22.0313766,37.3734671],[22.0315185,37.3735191],[22.0310933,37.3738004],[22.0308212,37.3738409],[22.0305376,37.3743228],[22.0303717,37.3744463],[22.0302258,37.3746782],[22.0301492,37.3750193],[22.030216,37.3750565],[22.030525,37.3748994],[22.0305567,37.3749811],[22.0303206,37.3753737],[22.0300311,37.3756482],[22.0297407,37.3755262],[22.0294484,37.3750437],[22.029336,37.3750238],[22.0291979,37.3751207],[22.0290625,37.3751184],[22.0286827,37.3749589],[22.0286116,37.3750838],[22.0283842,37.3751431],[22.0284063,37.3755941],[22.0285493,37.3757407],[22.0284573,37.3758023],[22.0286144,37.3758409],[22.0283205,37.3758541],[22.0280108,37.3756056],[22.0279131,37.3758833],[22.0278099,37.3759447],[22.0278303,37.3760261],[22.0279757,37.3760826],[22.0280951,37.3762649],[22.028295,37.3763944],[22.0281445,37.3765361],[22.0281064,37.3766976],[22.0283127,37.3771742],[22.0280825,37.3773416],[22.0280335,37.3774467],[22.0281186,37.3776464],[22.0283425,37.3777222],[22.0286508,37.3775922],[22.0289321,37.3776329],[22.028964,37.3777056],[22.0288944,37.3777765],[22.0289601,37.3779511],[22.0285955,37.3785038],[22.0275574,37.378901],[22.0269774,37.3794862],[22.0265461,37.3795691],[22.0259699,37.3795775],[22.0257408,37.3796999],[22.0255079,37.3799663],[22.0245394,37.3802926],[22.0241655,37.3803405],[22.0240041,37.3804639],[22.0232652,37.3802173],[22.0225873,37.3798004],[22.0216565,37.3795505],[22.0213832,37.379636],[22.0213683,37.379771],[22.0217599,37.3799127],[22.0219228,37.3801588],[22.0223689,37.3803735],[22.0227341,37.380659],[22.0227313,37.3807671],[22.0225229,37.3809619],[22.0224852,37.3811054],[22.0226051,37.3812697],[22.0225872,37.3815217],[22.0226613,37.3817122],[22.023134,37.3817742],[22.0232661,37.3819026],[22.0232497,37.3821006],[22.0229933,37.3824027],[22.0230332,37.3826017],[22.0232204,37.382785],[22.0229654,37.3828168],[22.0226014,37.3824863],[22.0223636,37.3825093],[22.0224581,37.3827813],[22.0223562,37.3832212],[22.0224921,37.383638],[22.0224163,37.3838486],[22.0228527,37.3843155],[22.0232991,37.3840886],[22.0235686,37.3841472],[22.0236342,37.3842294],[22.0236772,37.3846492],[22.0238221,37.3847237],[22.0243348,37.3845521],[22.0248771,37.3845859],[22.0249956,37.3852368],[22.0248008,37.3857743],[22.0246135,37.3860235],[22.0250047,37.3863162],[22.0250696,37.3864254],[22.0250314,37.386587],[22.0246535,37.386788],[22.024628,37.3868957],[22.0248919,37.3871705],[22.0251718,37.3872653],[22.0253145,37.3874209],[22.0256155,37.3880027],[22.0260295,37.3881538],[22.0256578,37.3885441],[22.0251779,37.3887524],[22.0250461,37.3888674],[22.024282,37.3895756],[22.0235029,37.3899952],[22.0230085,37.3903294],[22.0223955,37.3904453],[22.0216417,37.3903335],[22.0207263,37.3899217],[22.0205992,37.3900277],[22.020555,37.3903829],[22.0208087,37.3908265],[22.0207766,37.3910153],[22.0209241,37.391029],[22.0209549,37.3911467],[22.0213776,37.3913971],[22.0216847,37.3917447],[22.0218202,37.391747],[22.022018,37.3919575],[22.0220142,37.3921017],[22.0222929,37.3922415],[22.0224721,37.3925149],[22.0220945,37.3924815],[22.0215898,37.3923469],[22.0206419,37.392313],[22.0205026,37.3923738],[22.021676,37.3927179],[22.0229772,37.3930641],[22.0232397,37.3930572],[22.0233948,37.393213],[22.0235411,37.3932335],[22.0236062,37.3933337],[22.0236867,37.393281],[22.0239918,37.3932771],[22.0241644,37.3931538],[22.0244569,37.3930663],[22.024677,37.3932863],[22.0250108,37.3934811],[22.0254568,37.3932723],[22.0256948,37.3932402],[22.0259277,37.3934063],[22.0258126,37.3935801],[22.0255179,37.3936203],[22.0253443,37.3937796],[22.0249378,37.3937728],[22.0244598,37.393909],[22.024664,37.3942661],[22.0248409,37.3944133],[22.0250025,37.3944949],[22.0251827,37.3949485],[22.0255745,37.3950812],[22.0256811,37.3953263],[22.0260461,37.3956208],[22.0266302,37.3957477],[22.0267194,37.3960444],[22.0265418,37.3963568],[22.0261181,37.3965751],[22.0258277,37.3966243],[22.0256157,37.3966861],[22.0258138,37.3967232],[22.0264979,37.3969149],[22.0267105,37.3970333],[22.0267187,37.3971506],[22.0260461,37.3975044],[22.0250525,37.3982268],[22.0247807,37.3985873],[22.0247285,37.3986946],[22.0239516,37.3994566],[22.0235422,37.3995624],[22.0234767,37.3999038],[22.02336,37.4000461],[22.0232379,37.4003955],[22.0229221,37.4008048],[22.0228218,37.4011816],[22.0225797,37.4013668],[22.022599,37.4014933],[22.0228309,37.4016955],[22.0228822,37.4018946],[22.0224678,37.4021851],[22.0222948,37.4022273],[22.0219015,37.4021486],[22.0215697,37.4023052],[22.02135,37.4024998],[22.021301,37.4026432],[22.0214882,37.4028266],[22.0214811,37.4030969],[22.0213729,37.4033474],[22.021155,37.4034699],[22.0208713,37.4035192],[22.0201157,37.4034705],[22.0196032,37.4036242],[22.0192339,37.4034918],[22.0187071,37.4037624],[22.0185061,37.4041015],[22.0184407,37.4044428],[22.0181555,37.4045462],[22.0180623,37.4046528],[22.0181535,37.4050509],[22.0178937,37.4054791],[22.0178974,37.4057675],[22.0174948,37.4060402],[22.0171327,37.4060611],[22.0170395,37.4061677],[22.0170348,37.4063479],[22.0173018,37.4065056],[22.0172283,37.4067206],[22.0173985,37.4069466],[22.0175173,37.4072505],[22.0175616,37.4074022],[22.0173972,37.4080663],[22.0173156,37.4081641],[22.0171298,37.4087828],[22.0171316,37.4091433],[22.0172588,37.4094609],[22.0172742,37.409869],[22.0171795,37.4100296],[22.017194,37.410298],[22.017436,37.4104124],[22.0174924,37.410846],[22.0175799,37.4109556],[22.0175547,37.4110543],[22.0176511,37.4112542],[22.0176153,37.4113257],[22.0177026,37.4114443],[22.0175806,37.4117847],[22.0176095,37.4119745],[22.0175168,37.4123154],[22.0177032,37.4123163],[22.0178844,37.4123013],[22.0181705,37.4121619],[22.0183399,37.4121647],[22.0188996,37.4123634],[22.0192318,37.4126213],[22.0202106,37.4123493],[22.0204141,37.4123437],[22.0210517,37.4125887],[22.0218088,37.4130159],[22.0233406,37.4136273],[22.0236478,37.4137226],[22.024067,37.4138513],[22.0237426,37.4139022],[22.0228447,37.4136731],[22.021079,37.4133642],[22.020966,37.4133623],[22.0208894,37.4134421],[22.0205108,37.4136611],[22.0199183,37.4138494],[22.0196581,37.4138631],[22.019276,37.4137846],[22.0191504,37.4138366],[22.0194262,37.4145171],[22.0193537,37.4146962],[22.0193569,37.4150026],[22.0191458,37.4152965],[22.0190478,37.4155832],[22.0191205,37.4158278],[22.019331,37.4159845],[22.0195239,37.4162491],[22.0198168,37.4167137]]},{"id":19945,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 5 \u0392\u03ac\u03c3\u03c4\u03b1\u03c2-\u038a\u03c3\u03b1\u03c1\u03b7\u03c2","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 5","path":"PELOPONNESE\/Pelop_ArcadianTrails_05_Vastas_Isaris","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10434,"name_EN":"Arcadian Trails: 5 Vastas-Isaris","description_EN":"Section 5","ascent_time":245,"descent_time":230,"marker":"Yellow_square","level":10,"ascent":521,"descent":536,"maxelev":825,"minelev":414,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.97835 37.34189,22.01405 37.36555)","views":0,"millestones":"0,21.9862809,37.3656848#1,21.9830558,37.3597885#2,21.9787275,37.3534068#3,21.9831374,37.3480052#4,21.9891382,37.3428947#5,21.9989168,37.3418012#6,22.0014656,37.3447874#7,22.0038209,37.3509306#8,22.0014534,37.3583221#9,22.0002010,37.3635011#10,22.0100957,37.3630870#10.4,22.0134792,37.3636056","x":21.9963161,"y":37.3418823,"coor":[[21.9862809,37.3656848],[21.9862449,37.3656324],[21.9862197,37.3653075],[21.9860182,37.365241],[21.9861938,37.3650096],[21.9864766,37.3649108],[21.986435,37.3647749],[21.9868092,37.3647182],[21.9866984,37.3643874],[21.9865054,37.3640056],[21.9863027,37.3639841],[21.9866358,37.3637734],[21.9864379,37.3635718],[21.9862009,37.3635678],[21.9860693,37.3634213],[21.9861275,37.3633592],[21.986006,37.3628345],[21.9858444,37.3625433],[21.9860382,37.3624745],[21.9858605,37.3623633],[21.9861201,37.3623678],[21.9859431,37.3622296],[21.9860351,37.362168],[21.9858685,37.3620661],[21.9856295,37.3621341],[21.9855681,37.3618987],[21.9855088,37.3620059],[21.9853381,37.3616334],[21.9849623,37.3613296],[21.9847978,37.3611466],[21.9847688,37.3609658],[21.9844259,37.3606986],[21.9842305,37.3604069],[21.984019,37.3602952],[21.9838158,37.3602917],[21.9831935,37.3599206],[21.9828852,37.3596269],[21.9827892,37.359418],[21.9827073,37.3595248],[21.9824809,37.3591244],[21.9824027,37.359096],[21.9824678,37.3587726],[21.9822656,37.3587331],[21.982128,37.3588119],[21.9818286,37.3586085],[21.9816229,37.3582806],[21.9816787,37.357885],[21.9815569,37.3577928],[21.981495,37.3575754],[21.9815611,37.3572161],[21.9814166,37.3571325],[21.9813316,37.3569328],[21.9809655,37.3566922],[21.9809122,37.3565741],[21.9806511,37.356457],[21.9802073,37.3565846],[21.9799188,37.3559759],[21.9796092,37.3556957],[21.9795232,37.355532],[21.9796902,37.3552014],[21.9799874,37.3550623],[21.9799369,37.3548023],[21.9798354,37.354377],[21.979738,37.3543393],[21.9792372,37.3536458],[21.9786747,37.3535731],[21.9787956,37.3531966],[21.9791668,37.3528245],[21.9791205,37.3524451],[21.9792036,37.3522934],[21.9794692,37.3520726],[21.9801862,37.3518595],[21.9803615,37.351635],[21.9805736,37.3513051],[21.9811378,37.3508912],[21.9811864,37.3506329],[21.981615,37.3498021],[21.9815723,37.3497112],[21.9814597,37.349529],[21.9808125,37.3492476],[21.9806157,37.3490099],[21.9803823,37.3488708],[21.9803852,37.3487627],[21.9806231,37.3487307],[21.980814,37.34877],[21.9813584,37.3490947],[21.9817762,37.3490928],[21.98218,37.3487663],[21.9822343,37.3484247],[21.9824444,37.348167],[21.9828967,37.3481386],[21.9833781,37.3478674],[21.9840516,37.3475905],[21.9840701,37.3473205],[21.9838425,37.3469651],[21.9838567,37.3468572],[21.9843174,37.3469372],[21.9851519,37.3469694],[21.9852883,37.3469357],[21.9854856,37.3467858],[21.9857369,37.3466729],[21.9857984,37.3464847],[21.9861112,37.3461836],[21.986408,37.3460625],[21.9867988,37.3457988],[21.9870091,37.345532],[21.987069,37.3449833],[21.9870222,37.344622],[21.9876043,37.3442894],[21.9876285,37.3442267],[21.9878105,37.3441758],[21.9880294,37.3440083],[21.9883225,37.3440223],[21.9888461,37.3438599],[21.9887919,37.3437779],[21.9886906,37.3437672],[21.9885929,37.3436213],[21.9884246,37.3435824],[21.9884431,37.3433123],[21.9887681,37.3429754],[21.989163,37.3429821],[21.9891063,37.3427829],[21.9894597,37.3427438],[21.9894938,37.3426813],[21.989531,37.3425558],[21.9899394,37.342058],[21.990143,37.3420434],[21.9902601,37.3418832],[21.990526,37.3417796],[21.9910249,37.3418286],[21.9913842,37.3417266],[21.9917122,37.3418223],[21.9923248,37.3417065],[21.9928854,37.3418512],[21.9933038,37.3418222],[21.9934831,37.3418703],[21.9935705,37.34198],[21.993945,37.3419052],[21.9943233,37.3421099],[21.994537,37.3421406],[21.995582,37.3418969],[21.9958283,37.3419732],[21.9963161,37.3418823],[21.9968276,37.3421704],[21.9974684,37.3422714],[21.9979922,37.3421],[21.9982346,37.3418968],[21.9987423,37.3419054],[21.9990061,37.3417476],[21.9993004,37.3417166],[21.9995969,37.342028],[21.999622,37.3423619],[21.9997108,37.3424175],[21.9999124,37.3420514],[21.9998348,37.341996],[21.9998652,37.3419154],[22.0000592,37.3418375],[22.0004195,37.3418707],[22.000762,37.3417232],[22.0012261,37.341677],[22.0013706,37.3417606],[22.0013551,37.3421839],[22.001347,37.3424902],[22.0015931,37.3425754],[22.0017475,37.3427132],[22.001831,37.342967],[22.0020195,37.3430964],[22.0020474,37.3433221],[22.0019454,37.3433384],[22.0018124,37.3432461],[22.0015653,37.3431968],[22.0014784,37.3430692],[22.0012107,37.3429475],[22.0006941,37.3428486],[22.0005489,37.3429498],[22.0006764,37.3429565],[22.0008306,37.3431033],[22.000513,37.3435846],[22.0004781,37.3439693],[22.0003135,37.3442189],[22.000344,37.3443455],[22.0004972,37.3445284],[22.0009629,37.3444191],[22.0013854,37.3446606],[22.0016236,37.3450431],[22.0012707,37.3451543],[22.0015905,37.3452679],[22.0018772,37.3455251],[22.0023057,37.3455413],[22.0024733,37.3456072],[22.0026049,37.3457536],[22.0026781,37.3459712],[22.0028666,37.3461005],[22.0028445,37.3461632],[22.0026096,37.3462156],[22.0027921,37.3463156],[22.0026016,37.3465962],[22.0020857,37.346894],[22.0017043,37.34723],[22.0012364,37.3474203],[22.0011437,37.3476035],[22.0013795,37.3480762],[22.0017377,37.3481904],[22.0022019,37.3485677],[22.002086,37.3491065],[22.002262,37.3492807],[22.0024959,37.3498254],[22.003015,37.3502578],[22.0033752,37.3502999],[22.0036192,37.3508898],[22.0039224,37.350949],[22.0041664,37.3511153],[22.004625,37.3512763],[22.0050667,37.3520768],[22.0051453,37.3525198],[22.0044764,37.3530492],[22.0042663,37.3541632],[22.0041501,37.3542874],[22.0040172,37.3546186],[22.0037375,37.3549474],[22.0034721,37.3560154],[22.0032683,37.3564626],[22.0025248,37.3568285],[22.0020028,37.3569279],[22.0019054,37.3571966],[22.001696,37.3574274],[22.0014335,37.3583872],[22.0010695,37.3584892],[22.0009516,37.3586765],[22.0007674,37.3588086],[22.0002899,37.3589357],[22.0003022,37.3593234],[22.0001841,37.3595197],[21.9999075,37.3597313],[21.999944,37.3600564],[21.999622,37.3602763],[21.9995226,37.360617],[21.9992811,37.3607842],[21.9989293,37.3608503],[21.9990309,37.3612756],[21.9989558,37.3615538],[21.9987361,37.3617483],[21.998301,37.3619753],[21.9977363,37.3619837],[21.9976765,37.3621089],[21.9979853,37.3623845],[21.9985667,37.3626016],[21.9988892,37.3627873],[21.9989827,37.3635189],[21.9991121,37.3637464],[21.9992567,37.36383],[21.9996087,37.3637548],[21.9998536,37.3638851],[21.999967,37.363869],[22.0000649,37.3635823],[22.0004205,37.363372],[22.000907,37.3629116],[22.0019403,37.3631183],[22.00225,37.3629343],[22.0026452,37.3629319],[22.0028301,37.3627728],[22.0034802,37.3629551],[22.0036401,37.3628857],[22.0038165,37.3626183],[22.0039877,37.3625491],[22.004208,37.3627601],[22.0045333,37.3628376],[22.0049786,37.3630795],[22.0057165,37.3633533],[22.0061233,37.3633421],[22.0071251,37.3630346],[22.0076541,37.3628835],[22.0079931,37.3628712],[22.008745,37.3627397],[22.0091647,37.3626656],[22.0095237,37.3627528],[22.0104354,37.3632908],[22.0113272,37.363432],[22.0119954,37.3633531],[22.0126184,37.3633591],[22.0127284,37.363388],[22.0129638,37.3635361],[22.0131145,37.3636018],[22.0134792,37.3636056]]},{"id":19946,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 4 \u039b\u03cd\u03ba\u03b1\u03b9\u03bf-\u0392\u03ac\u03c3\u03c4\u03b1\u03c2","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 4","path":"PELOPONNESE\/Pelop_ArcadianTrails_04_Lykeo_Vastas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8949,"name_EN":"Arcadian Trails: 4 Lykeo-Vastas","description_EN":"Section 4","ascent_time":210,"descent_time":205,"marker":"Yellow_square","level":10,"ascent":475,"descent":455,"maxelev":1151,"minelev":785,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.975 37.36581,22.00336 37.41302)","views":0,"millestones":"0,22.0020926,37.4134774#1,21.9978686,37.4061972#2,21.9933396,37.4025686#3,21.9841197,37.4008176#4,21.9803705,37.3948211#5,21.9764577,37.3884252#6,21.9759659,37.3813972#7,21.9816214,37.3754342#8,21.9852989,37.3693761#8.9,21.9862809,37.3656848","x":21.9766096,"y":37.3885935,"coor":[[22.0020926,37.4134774],[22.0013178,37.4129911],[22.0010833,37.4127663],[22.0005373,37.4124777],[22.0004763,37.4122243],[22.0005541,37.4118471],[22.0005039,37.411612],[22.0000209,37.4110811],[21.9996201,37.410858],[21.9993794,37.4101645],[21.9993409,37.4099115],[21.9994168,37.4096064],[21.9994316,37.4094759],[21.9993547,37.4093935],[21.9994897,37.4089903],[21.9994217,37.4089981],[21.9993021,37.4087009],[21.9993108,37.4083766],[21.9991245,37.4081572],[21.9989993,37.4077675],[21.9988902,37.4076215],[21.9989548,37.4073162],[21.9988611,37.4070172],[21.9989197,37.4069371],[21.9988618,37.4065666],[21.9986272,37.4063486],[21.9983211,37.4063749],[21.9976839,37.4061208],[21.9968507,37.4060166],[21.9956859,37.4060599],[21.9950035,37.4062286],[21.9942847,37.4060722],[21.9942217,37.4058909],[21.9944858,37.4057331],[21.9946631,37.4054387],[21.994635,37.4052219],[21.9944036,37.4050017],[21.994387,37.4047761],[21.9947736,37.40426],[21.9945858,37.4039549],[21.9945742,37.4035401],[21.9951237,37.4028465],[21.9954314,37.40232],[21.9953534,37.4022826],[21.995171,37.4023426],[21.9946881,37.4026588],[21.9942694,37.4026315],[21.993412,37.4025899],[21.9932215,37.4025326],[21.9930508,37.4025657],[21.9930443,37.4023854],[21.9929362,37.4022033],[21.9921729,37.4015955],[21.991923,37.4016453],[21.991506,37.4016112],[21.9910274,37.4017653],[21.9906442,37.4017317],[21.9905126,37.4015853],[21.9904554,37.4011878],[21.989844,37.4008169],[21.989191,37.4011573],[21.988367,37.4007107],[21.988052,37.4006602],[21.98754,37.4007957],[21.9868042,37.4004317],[21.9858146,37.4002617],[21.9853022,37.4004151],[21.9844339,37.4007789],[21.9839013,37.4008419],[21.9836824,37.4010004],[21.9836003,37.4007691],[21.9834456,37.4006403],[21.9833433,37.4004809],[21.9835654,37.3997817],[21.9835352,37.3992224],[21.9834605,37.3990589],[21.9831976,37.3989102],[21.9830346,37.3982496],[21.9833058,37.3978216],[21.9832513,37.3977486],[21.9833215,37.3976596],[21.9832321,37.3976221],[21.9831841,37.3973058],[21.9830705,37.3973309],[21.9829934,37.3972575],[21.983009,37.3970956],[21.9831267,37.3969173],[21.9829183,37.3966885],[21.9833157,37.3961905],[21.9830687,37.3961323],[21.9829244,37.3960397],[21.9827551,37.3956132],[21.9825307,37.3955553],[21.9823762,37.3954175],[21.9820171,37.3953302],[21.981885,37.3952018],[21.9817171,37.3951449],[21.9814243,37.3951128],[21.9809339,37.3952847],[21.9805438,37.3950888],[21.9803815,37.3948247],[21.9801463,37.3947485],[21.979702,37.3944706],[21.9792282,37.3944444],[21.9781831,37.3942463],[21.9778819,37.394106],[21.9776143,37.3940811],[21.9774839,37.3938896],[21.9769943,37.3936109],[21.9773153,37.3934361],[21.9773098,37.3932198],[21.977232,37.3931734],[21.977283,37.3929579],[21.9770063,37.3927459],[21.9768882,37.3925186],[21.976974,37.3922677],[21.9771133,37.3921259],[21.9765446,37.3914312],[21.9765414,37.3911338],[21.9767812,37.3906152],[21.9768377,37.3901926],[21.9771152,37.389954],[21.9771638,37.3898286],[21.9767356,37.3893707],[21.9766096,37.3885935],[21.9761601,37.3880901],[21.9761522,37.3879638],[21.9761947,37.387737],[21.9764991,37.3873366],[21.9767047,37.38725],[21.9768023,37.3869813],[21.9764306,37.3865243],[21.9761844,37.386439],[21.975974,37.3862822],[21.975946,37.3856419],[21.976065,37.3854434],[21.9758631,37.3851155],[21.975954,37.3846754],[21.975924,37.3845307],[21.9762613,37.384167],[21.9764446,37.384071],[21.9764605,37.3839],[21.9763642,37.3837001],[21.9764933,37.3835221],[21.9765088,37.3829455],[21.9768336,37.3826267],[21.976671,37.3823715],[21.9768599,37.3820683],[21.9767893,37.3817517],[21.9768943,37.3814831],[21.9770867,37.3814008],[21.9758513,37.3813932],[21.9760234,37.3812159],[21.9764012,37.3810241],[21.9768769,37.3805546],[21.9771886,37.3803954],[21.9773419,37.3801547],[21.9773835,37.379867],[21.9775826,37.3796001],[21.978185,37.3794572],[21.9781608,37.3790963],[21.9783006,37.3789364],[21.9782289,37.3786648],[21.9782765,37.3785755],[21.9786026,37.3786262],[21.9789326,37.3785327],[21.97918,37.3785729],[21.9794754,37.3785059],[21.9796997,37.3785638],[21.9798369,37.3785031],[21.9799313,37.3783515],[21.9801703,37.3782834],[21.9802099,37.3780678],[21.9803985,37.3777736],[21.9806709,37.3777242],[21.9812832,37.3774463],[21.981322,37.377145],[21.9813906,37.37702],[21.9813407,37.3767758],[21.9814621,37.3764625],[21.9812822,37.3760088],[21.9816373,37.375402],[21.9816098,37.3752033],[21.9814372,37.3749029],[21.9816677,37.3747266],[21.9816234,37.3745118],[21.9813567,37.3739305],[21.9813641,37.3736512],[21.9821229,37.3727269],[21.9823019,37.3723694],[21.982597,37.3720883],[21.9829263,37.3715983],[21.9832085,37.3716031],[21.9833702,37.3714707],[21.983777,37.3714596],[21.9839953,37.371238],[21.9845002,37.3709402],[21.9846167,37.370807],[21.9846813,37.3705017],[21.9846044,37.3704192],[21.9844749,37.3704058],[21.9845709,37.3703398],[21.9852148,37.3703328],[21.9856397,37.3702657],[21.98591,37.3700923],[21.9861207,37.3698165],[21.985648,37.3697543],[21.9856617,37.3696645],[21.9854713,37.3696071],[21.9852643,37.3693242],[21.9852134,37.3691161],[21.9850672,37.3690956],[21.9846559,37.3688542],[21.9845761,37.3688799],[21.9845783,37.3687988],[21.9844095,37.3687779],[21.9843689,37.368606],[21.9838882,37.3683072],[21.9838024,37.3682967],[21.9838494,37.3682254],[21.9839486,37.3682113],[21.9840655,37.3682877],[21.9842322,37.3678354],[21.9842048,37.3676975],[21.9839798,37.3676666],[21.9840026,37.3675656],[21.9841873,37.3674155],[21.984201,37.3673256],[21.9837452,37.3674801],[21.9840963,37.3670174],[21.9843353,37.3669494],[21.9842154,37.3667851],[21.9843062,37.3667687],[21.9842635,37.3666778],[21.984366,37.3666435],[21.9844343,37.366505],[21.9841375,37.3664278],[21.9841713,37.3662977],[21.9843426,37.3662285],[21.9844151,37.3660495],[21.9845176,37.3660152],[21.9848896,37.3660396],[21.9852241,37.3661985],[21.9853579,37.3661692],[21.9856638,37.3656833],[21.9861762,37.3655208],[21.9862449,37.3656324],[21.9862809,37.3656848]]},{"id":19947,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 3 \u0386\u03bd\u03c9 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2-\u039b\u03cd\u03ba\u03b1\u03b9\u03bf","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 3","path":"PELOPONNESE\/Pelop_ArcadianTrails_03_AnoKaryes_Lykeo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3743,"name_EN":"Arcadian Trails: 3 Ano Karyes-Lykeo","description_EN":"Section 3","ascent_time":85,"descent_time":85,"marker":"Yellow_square","level":10,"ascent":71,"descent":212,"maxelev":1011,"minelev":809,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.9939 37.41351,22.00409 37.4378)","views":0,"millestones":"0,22.0034505,37.4376870#1,21.9980131,37.4312739#2,21.9947269,37.4245075#3,21.9997888,37.4177829#3.7,22.0020926,37.4134774","x":21.9942897,"y":37.4254081,"coor":[[22.0034505,37.437687],[22.0030085,37.4379297],[22.002798,37.4379464],[22.0025172,37.4376127],[22.0027035,37.4374086],[22.0026763,37.4371558],[22.0025772,37.4370549],[22.0024277,37.4369938],[22.0021926,37.4369088],[22.0022892,37.4366761],[22.0020886,37.4363032],[22.001865,37.4361597],[22.0016643,37.4360572],[22.001248,37.435987],[22.0010778,37.4355876],[22.0008701,37.4353228],[22.0003144,37.4349709],[21.9999415,37.434541],[21.9997404,37.4344565],[21.9992762,37.4340611],[21.998663,37.4333207],[21.9986632,37.432611],[21.9984445,37.4323369],[21.9983503,37.432056],[21.9980205,37.4317079],[21.9980101,37.4312481],[21.9978253,37.430551],[21.9976395,37.4303136],[21.9973684,37.430309],[21.9970619,37.4295107],[21.9970343,37.4292759],[21.9969254,37.4291208],[21.9966248,37.4289535],[21.9961873,37.428829],[21.9957312,37.4289834],[21.995482,37.4290062],[21.9952498,37.4288131],[21.9954,37.4286894],[21.9947412,37.4283899],[21.9945504,37.427918],[21.9946437,37.4278114],[21.9944622,37.4274118],[21.9945014,37.4272142],[21.9942003,37.4266413],[21.9942046,37.4264792],[21.9943072,37.4264449],[21.9945547,37.4260615],[21.9944452,37.4259335],[21.9942897,37.4254081],[21.9944762,37.425195],[21.9947321,37.4244964],[21.9950801,37.4241598],[21.995001,37.4233113],[21.9955922,37.4231772],[21.9955369,37.4231312],[21.9957112,37.4229539],[21.9966957,37.4224749],[21.9967914,37.4222782],[21.9970002,37.4220745],[21.997421,37.4219735],[21.9973095,37.4219175],[21.9976,37.421616],[21.9975884,37.4212013],[21.997673,37.4209954],[21.9976159,37.4205033],[21.9977375,37.4201809],[21.9977521,37.4196314],[21.9979104,37.4192015],[21.9983497,37.4188304],[21.998539,37.4185092],[21.9986022,37.4182579],[21.9987769,37.4180626],[21.9994692,37.4179481],[21.9997893,37.4178094],[21.9997782,37.4172955],[21.9999162,37.4172189],[21.9998405,37.4170915],[21.9998799,37.4164613],[21.9996645,37.4160611],[21.9998608,37.4159022],[21.9996095,37.4155825],[21.9994513,37.4151563],[21.9995091,37.4150536],[21.9999054,37.4150243],[22.0005544,37.414837],[22.0009617,37.4147492],[22.0011087,37.4146909],[22.0012726,37.4144774],[22.0014236,37.4144822],[22.001679,37.4146239],[22.0019991,37.4146293],[22.0021114,37.4145772],[22.0020196,37.4142174],[22.0019417,37.4140516],[22.0018571,37.4138339],[22.0020926,37.4134774]]},{"id":19948,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 2 \u039a\u03bf\u03c4\u03cd\u03bb\u03b9\u03bf-\u0386\u03bd\u03c9 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 2","path":"PELOPONNESE\/Pelop_ArcadianTrails_02_Kotylio_AnoKaryes","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8348,"name_EN":"Arcadian Trails: 2 Kotylio-Ano Karyes","description_EN":"Section 2","ascent_time":210,"descent_time":205,"marker":"Yellow_square","level":10,"ascent":637,"descent":495,"maxelev":1362,"minelev":809,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.98358 37.43769,22.00359 37.47324)","views":2,"millestones":"0,21.9950091,37.4732867#1,21.9909398,37.4679927#2,21.9925402,37.4607293#3,21.9872269,37.4552584#4,21.9846091,37.4499230#5,21.9896087,37.4461688#6,21.9956104,37.4483402#7,22.0024458,37.4460420#8.3,22.0034505,37.4376870","x":21.9841537,"y":37.4522814,"coor":[[21.9950091,37.4732867],[21.9947781,37.4732444],[21.9944114,37.4734275],[21.9936481,37.4732162],[21.9932448,37.4726506],[21.9933809,37.4725989],[21.9934267,37.4725118],[21.9931273,37.4722904],[21.9929924,37.4722611],[21.9931201,37.4721371],[21.9928964,37.4720432],[21.9930001,37.4719728],[21.9928669,37.4718804],[21.9929592,37.4718099],[21.9925298,37.4714309],[21.9928293,37.4714359],[21.9929442,37.4713658],[21.9929471,37.4712577],[21.99252,37.4711603],[21.9917874,37.4706522],[21.9916563,37.4704787],[21.991722,37.4701374],[21.9919747,37.4697249],[21.9920095,37.4695227],[21.9922172,37.469364],[21.9922781,37.4692028],[21.9917756,37.4690974],[21.9915265,37.4691112],[21.9914414,37.4689115],[21.9910338,37.468508],[21.9908875,37.4681653],[21.9908197,37.4681641],[21.9910148,37.4680593],[21.9910393,37.4679876],[21.9909484,37.4680041],[21.9908719,37.4679037],[21.9906695,37.4678642],[21.9908847,37.4674262],[21.9909278,37.4670845],[21.9908518,37.4669661],[21.9905358,37.4669427],[21.9902911,37.4667943],[21.9903853,37.4666517],[21.990546,37.4665643],[21.9905147,37.4664647],[21.9906311,37.4663405],[21.9906663,37.4658724],[21.990849,37.4653799],[21.9908919,37.4650471],[21.9910561,37.4644011],[21.9913017,37.4640988],[21.9915367,37.463659],[21.9913105,37.4635695],[21.9912357,37.4634466],[21.9915228,37.4632802],[21.9915152,37.4631449],[21.9916763,37.4630395],[21.9916806,37.4628773],[21.9915794,37.4626571],[21.9919493,37.4625394],[21.9917974,37.4623025],[21.9919796,37.4622516],[21.9919719,37.4621163],[21.9921333,37.4620018],[21.9921432,37.4618939],[21.9922487,37.4615194],[21.992241,37.4613841],[21.9923884,37.4613686],[21.9924713,37.4612258],[21.9923629,37.4610527],[21.9925451,37.4610017],[21.9926038,37.4609216],[21.9925202,37.4606678],[21.992921,37.4604764],[21.992858,37.4602951],[21.9929866,37.460268],[21.9930114,37.4601873],[21.9931364,37.4601624],[21.9929947,37.4598085],[21.9926586,37.4597442],[21.992179,37.4595017],[21.9917775,37.4592966],[21.9915452,37.4591034],[21.9912474,37.4584044],[21.9908257,37.4581088],[21.9908668,37.4578392],[21.9905865,37.4577533],[21.9904903,37.4575444],[21.9904951,37.4573642],[21.9902485,37.4568644],[21.9900062,37.4566259],[21.9899682,37.4563549],[21.9897776,37.4562976],[21.9898487,37.4561726],[21.9896583,37.4561063],[21.9896502,37.455989],[21.9895607,37.4559514],[21.9894326,37.4556699],[21.9887132,37.455937],[21.9884307,37.4559322],[21.9881735,37.4558287],[21.987779,37.4557859],[21.9874676,37.4555914],[21.9874484,37.4554649],[21.9872575,37.4554165],[21.9871977,37.4551181],[21.987003,37.4552139],[21.9866991,37.4551637],[21.9863411,37.455446],[21.9862509,37.4554354],[21.9861586,37.455506],[21.9860136,37.4554314],[21.9857781,37.4549407],[21.9857942,37.4547607],[21.9855288,37.4545399],[21.9857015,37.4540021],[21.9858051,37.4539318],[21.9857559,37.4536606],[21.9856547,37.4536408],[21.9856367,37.4534693],[21.9857776,37.4532734],[21.9857468,37.4531558],[21.9858769,37.4529417],[21.9856764,37.4528301],[21.9855629,37.4528462],[21.9853872,37.452654],[21.9851641,37.452542],[21.9850473,37.4522606],[21.9849137,37.4521863],[21.9849274,37.4520964],[21.9845624,37.4522163],[21.9843608,37.4521498],[21.9842206,37.4523186],[21.9841537,37.4522814],[21.9843076,37.4520227],[21.9845829,37.4518742],[21.9846536,37.4517673],[21.984545,37.4516032],[21.9845623,37.4513782],[21.9846556,37.4512716],[21.9845696,37.4511079],[21.9845944,37.4510272],[21.9844605,37.4509619],[21.9842907,37.450968],[21.9843393,37.4508426],[21.9841848,37.4507048],[21.9843255,37.4506081],[21.9845475,37.4501951],[21.9845859,37.4499456],[21.9848995,37.4496355],[21.9849598,37.4494924],[21.9848722,37.4489682],[21.9849107,37.448374],[21.9848235,37.4478318],[21.9850198,37.4472584],[21.985021,37.4467898],[21.9858623,37.4462701],[21.9858647,37.44618],[21.9856777,37.4459876],[21.9856782,37.445546],[21.9858155,37.4454853],[21.9862345,37.4454564],[21.9866237,37.4452737],[21.9867183,37.4451176],[21.9869419,37.4452116],[21.9870664,37.4452047],[21.9872198,37.444964],[21.9873892,37.4449668],[21.9875231,37.4450322],[21.9876976,37.4452695],[21.9878558,37.4452722],[21.9880757,37.4455012],[21.9886,37.4457625],[21.9887053,37.4457598],[21.9889033,37.4460448],[21.9892463,37.446321],[21.9896979,37.4461282],[21.9897256,37.4459394],[21.9897987,37.4457671],[21.989924,37.4457332],[21.9901692,37.4458636],[21.9902891,37.4460278],[21.9903182,37.4462086],[21.9905886,37.4462402],[21.9912156,37.4464672],[21.9917579,37.4464764],[21.9920949,37.4465542],[21.9923223,37.446504],[21.9924286,37.4463346],[21.992775,37.4464846],[21.9928103,37.4464312],[21.9928889,37.4464505],[21.9929478,37.4463614],[21.993426,37.4462343],[21.993845,37.4462054],[21.9942834,37.4467175],[21.9950452,37.4469738],[21.9953215,37.4472128],[21.9958236,37.4474556],[21.9961631,37.4474434],[21.9958777,37.4475467],[21.9952928,37.4474376],[21.994738,37.4474733],[21.9947024,37.4475358],[21.9949272,37.4475846],[21.9950488,37.4477805],[21.9954643,37.4482381],[21.9956741,37.4483859],[21.9958667,37.4487023],[21.9956838,37.4491341],[21.9955958,37.449466],[21.9956338,37.449737],[21.9957583,37.4497707],[21.9959018,37.4494757],[21.9966555,37.4487675],[21.9971904,37.4486324],[21.9973969,37.4485187],[21.9975827,37.4478685],[21.997467,37.4474925],[21.9977759,37.4473536],[21.9983281,37.4469934],[21.998631,37.4466561],[21.9987896,37.4466407],[21.9990759,37.4465014],[21.9997214,37.4464583],[21.9999045,37.4463712],[22.0010377,37.4462642],[22.0012166,37.4463394],[22.0014656,37.4463256],[22.0021935,37.4461576],[22.0022176,37.446104],[22.0024681,37.4460361],[22.0029722,37.4462068],[22.0033248,37.4462714],[22.0033606,37.4461999],[22.0032175,37.4460533],[22.0030475,37.4456448],[22.0027859,37.4454016],[22.00265,37.445183],[22.0023822,37.4450523],[22.0028034,37.4445187],[22.0028118,37.4443859],[22.0026477,37.4441037],[22.002531,37.4429662],[22.0020283,37.4423178],[22.0018997,37.4420543],[22.0016427,37.4419418],[22.0015792,37.4417785],[22.0015854,37.4415443],[22.0018404,37.4408817],[22.0018368,37.4405933],[22.0019741,37.4403703],[22.0020474,37.4401642],[22.0020452,37.4398217],[22.0019356,37.4392701],[22.0018274,37.4390881],[22.0018608,37.4389354],[22.0020343,37.4387851],[22.0021657,37.438517],[22.0024167,37.4384311],[22.0026725,37.4383476],[22.0025672,37.4382286],[22.0028407,37.4380372],[22.002798,37.4379464],[22.0030085,37.4379297],[22.0034505,37.437687]]},{"id":19949,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: 1 \u039a\u03b1\u03c1\u03cd\u03c4\u03b1\u03b9\u03bd\u03b1-\u039a\u03bf\u03c4\u03cd\u03bb\u03b9\u03bf","description_GR":"\u03a3\u03ba\u03ad\u03bb\u03bf\u03c2 1","path":"PELOPONNESE\/Pelop_ArcadianTrails_01_Karytena_Kotylio","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10579,"name_EN":"Arcadian Trails: 1 Karytena-Kotylio","description_EN":"Section 1","ascent_time":250,"descent_time":230,"marker":"Yellow_square","level":10,"ascent":817,"descent":506,"maxelev":812,"minelev":228,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.99434 37.47149,22.04149 37.49283)","views":0,"millestones":"0,22.0410947,37.4850504#1,22.0376209,37.4924707#2,22.0337297,37.4886474#3,22.0310546,37.4868114#4,22.0292733,37.4844440#5,22.0257604,37.4835279#6,22.0178099,37.4804993#7,22.0154527,37.4745438#8,22.0094581,37.4715553#9,22.0037836,37.4719648#10,21.9964896,37.4707788#10.6,21.9950045,37.4732866","x":22.0195965,"y":37.4814114,"coor":[[22.0410947,37.4850504],[22.0411401,37.4848281],[22.0410366,37.4847611],[22.0406812,37.485377],[22.0406228,37.4858807],[22.0405396,37.4860326],[22.0404825,37.4862704],[22.0406354,37.4869128],[22.0405056,37.4872532],[22.0401491,37.4874816],[22.0401289,37.4876051],[22.0400065,37.4875693],[22.0399024,37.4876577],[22.0396779,37.4880235],[22.0396836,37.4882399],[22.0394923,37.4886332],[22.0386828,37.4897463],[22.0387539,37.4900539],[22.0386854,37.4905124],[22.0387504,37.4906216],[22.0385535,37.4907986],[22.0385799,37.4910874],[22.0380429,37.4917274],[22.0380259,37.4919434],[22.0378172,37.4921382],[22.0374027,37.4928523],[22.037335,37.4932748],[22.0369836,37.493305],[22.036896,37.4931954],[22.036871,37.4932851],[22.0367156,37.4931743],[22.0369999,37.4935486],[22.0365856,37.4933885],[22.0362426,37.4930944],[22.0361625,37.4931291],[22.0360403,37.493046],[22.0359828,37.4930811],[22.0356187,37.4927325],[22.0355603,37.4928037],[22.0354673,37.4924687],[22.0353698,37.4923048],[22.035301,37.4923397],[22.0351696,37.4921753],[22.0350759,37.4918673],[22.0347977,37.4916915],[22.0347492,37.4918168],[22.0345871,37.4915258],[22.0343872,37.4913872],[22.0341931,37.4910235],[22.0341034,37.490995],[22.0341444,37.4911579],[22.0340871,37.491184],[22.0335671,37.4907427],[22.0338547,37.4901257],[22.0337931,37.4898903],[22.0338336,37.4892061],[22.0337597,37.4890066],[22.0337296,37.4886456],[22.0339197,37.4882973],[22.0337553,37.4880963],[22.0335843,37.4881475],[22.0334886,37.4883442],[22.0333063,37.4883952],[22.0333581,37.4885763],[22.0330236,37.4896883],[22.0329189,37.4897609],[22.0326479,37.4897834],[22.0327893,37.4891369],[22.0324944,37.489168],[22.032077,37.489125],[22.0317695,37.4887774],[22.0318724,37.4883015],[22.0321513,37.4880177],[22.0321319,37.4870351],[22.0320391,37.4866911],[22.031948,37.4867166],[22.0317701,37.487029],[22.0310717,37.4877834],[22.0310702,37.4869813],[22.031131,37.4868201],[22.0310407,37.4868096],[22.0306323,37.487722],[22.0299075,37.4886202],[22.0298287,37.4890334],[22.0294901,37.4890098],[22.0292791,37.4888621],[22.0290408,37.4884615],[22.0289571,37.4880253],[22.0287287,37.4876002],[22.0285038,37.4875513],[22.0283467,37.4875825],[22.0285164,37.4871528],[22.0289712,37.4870612],[22.0293088,37.4870443],[22.0294471,37.4869475],[22.02947,37.4868938],[22.0293721,37.486748],[22.0293992,37.4865772],[22.0293222,37.4864948],[22.0292445,37.4860068],[22.0289534,37.4858938],[22.0287662,37.4857015],[22.028543,37.485157],[22.0284005,37.4850667],[22.0290935,37.4845196],[22.0295019,37.4843506],[22.0296899,37.4841217],[22.0298348,37.4837726],[22.0303579,37.4825444],[22.0311302,37.4819895],[22.0308105,37.4817544],[22.0306506,37.4813822],[22.0303405,37.4811337],[22.030169,37.4816356],[22.0300678,37.4816158],[22.0296631,37.4819516],[22.0295237,37.4820934],[22.0294971,37.4822462],[22.0290274,37.4824727],[22.028864,37.4826682],[22.0284276,37.4829223],[22.0281374,37.4832058],[22.0279789,37.4832122],[22.0275441,37.4834032],[22.0271588,37.4834328],[22.02697,37.4833035],[22.0265981,37.4832522],[22.0263348,37.483374],[22.0260065,37.4833865],[22.025306,37.4837894],[22.0250508,37.4836049],[22.024835,37.4836373],[22.0246219,37.4835707],[22.0243261,37.4836378],[22.0239523,37.4835797],[22.0238893,37.483475],[22.023266,37.4835277],[22.0225677,37.4834169],[22.0220753,37.4832194],[22.0218064,37.4829896],[22.0213533,37.4830698],[22.0207307,37.4830955],[22.0205503,37.4830744],[22.0205072,37.4829926],[22.0200897,37.4828617],[22.0189567,37.4820856],[22.018985,37.4818698],[22.0195927,37.4815556],[22.0195965,37.4814114],[22.0185043,37.4812309],[22.0181798,37.4810993],[22.0179703,37.4808975],[22.0177326,37.4803032],[22.0171973,37.4795913],[22.0172007,37.4794652],[22.0173177,37.4793139],[22.0173974,37.4792161],[22.0173654,37.4791435],[22.01665,37.4788251],[22.0163789,37.4783879],[22.016346,37.4779187],[22.0164212,37.4776406],[22.016411,37.4771718],[22.0165495,37.477066],[22.0168453,37.4769988],[22.0169525,37.4767934],[22.0168353,37.476521],[22.0167451,37.4765105],[22.0170127,37.4762266],[22.016765,37.4761864],[22.0166167,37.4761974],[22.0165724,37.4761606],[22.0168099,37.475732],[22.0167928,37.4755245],[22.0167038,37.4754689],[22.0165499,37.4757277],[22.0164819,37.4757355],[22.0164538,37.4750862],[22.0163147,37.4747864],[22.0160499,37.4745387],[22.0160373,37.4741599],[22.0158553,37.4741997],[22.0155536,37.474492],[22.0152097,37.4746665],[22.0151458,37.4747736],[22.0149161,37.4749049],[22.0146899,37.4753337],[22.0144133,37.4754529],[22.0143044,37.4752416],[22.014225,37.4749969],[22.0144146,37.4746666],[22.0142191,37.474366],[22.0136714,37.4741224],[22.0132328,37.4740339],[22.0130519,37.4740309],[22.0129471,37.4741463],[22.0123024,37.4741535],[22.0123219,37.4728673],[22.012423,37.4725085],[22.0122853,37.4721547],[22.0123036,37.4718937],[22.012167,37.4719274],[22.0122028,37.4718559],[22.0119377,37.4716172],[22.0115636,37.4716559],[22.011485,37.4715397],[22.0114197,37.4715386],[22.0106823,37.4714563],[22.0102429,37.4713949],[22.0098536,37.4715009],[22.0093657,37.4715648],[22.0095419,37.471739],[22.0097435,37.4718145],[22.0098998,37.4718892],[22.0097665,37.472653],[22.0093243,37.4731232],[22.0091855,37.473362],[22.0085731,37.47364],[22.0085017,37.473774],[22.0085365,37.4739549],[22.0083663,37.4737627],[22.0082917,37.4731667],[22.0079249,37.472809],[22.0077645,37.4727522],[22.0075664,37.4725484],[22.0068259,37.4723286],[22.006325,37.4720317],[22.0060646,37.4716578],[22.0059278,37.4717006],[22.0056919,37.4716425],[22.0053245,37.4718526],[22.0048801,37.4719803],[22.005021,37.472208],[22.0049972,37.4722527],[22.0046819,37.4722023],[22.0046331,37.4723366],[22.0044521,37.4723426],[22.0042493,37.4723121],[22.0041837,37.4722299],[22.004036,37.4722544],[22.0037673,37.4719435],[22.0036319,37.4719322],[22.003542,37.472005],[22.0034996,37.4718962],[22.0037437,37.4716479],[22.003722,37.4716115],[22.0035746,37.4716271],[22.003602,37.4714473],[22.0027036,37.4716394],[22.0027996,37.4714337],[22.0025533,37.4713394],[22.0017725,37.4713623],[22.0016919,37.471415],[22.0015804,37.471359],[22.0012728,37.4714439],[22.001133,37.4714641],[22.0009503,37.4715331],[22.0008038,37.4715126],[22.0007654,37.4716832],[22.0004448,37.471831],[22.0002563,37.4716926],[21.999682,37.4716018],[21.9995522,37.4713833],[21.9994406,37.4713273],[21.9991472,37.4713043],[21.9992018,37.4713773],[21.9991443,37.4714124],[21.9992239,37.4713957],[21.9992328,37.471486],[21.998857,37.4715878],[21.9988144,37.4714879],[21.9988863,37.4713359],[21.9988351,37.4711368],[21.9986699,37.4709718],[21.9985342,37.4709695],[21.9983229,37.4708397],[21.9980254,37.4709699],[21.9977804,37.4708305],[21.9975791,37.4711696],[21.9974081,37.4712208],[21.9973021,37.4709576],[21.9970356,37.4707728],[21.996357,37.4707794],[21.9963443,37.4708332],[21.9958946,37.4707355],[21.9958018,37.470824],[21.995632,37.4708301],[21.9953626,37.4707174],[21.9954362,37.470926],[21.9953289,37.4711314],[21.9952822,37.4716083],[21.9949442,37.472105],[21.994892,37.4722866],[21.995,37.4729012],[21.9950025,37.4731514],[21.9950045,37.4732866]]},{"id":19976,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bd\u03b4\u03c1\u03af\u03c4\u03c3\u03b1\u03b9\u03bd\u03b1-\u03bd\u03b1\u03cc\u03c2 \u0395\u03c0\u03b9\u03ba\u03bf\u03cd\u03c1\u03b9\u03bf\u03c5 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Andritsena_Epikourios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9914,"name_EN":"Apollo Trails: Andritsena-temple of Epikourios Apollo","description_EN":"","ascent_time":235,"descent_time":230,"marker":"Red_stripe","level":10,"ascent":712,"descent":361,"maxelev":1228,"minelev":758,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.89022 37.42916,21.90664 37.48344)","views":0,"millestones":"0,21.9043133,37.4836872#1,21.9012025,37.4785964#2,21.9042929,37.4721539#3,21.9009005,37.4642808#4,21.8978558,37.4615101#5,21.8951870,37.4569093#6,21.8942433,37.4493332#7,21.8958608,37.4474217#8,21.9018285,37.4434303#9,21.9012404,37.4348185#9.9,21.9009305,37.4295950","x":21.8949968,"y":37.4589005,"coor":[[21.9043133,37.4836872],[21.9045188,37.4836187],[21.9046145,37.4835077],[21.9043742,37.4833278],[21.9040404,37.4831326],[21.9038025,37.4827791],[21.9036815,37.4822543],[21.9039069,37.4822808],[21.9042381,37.4822033],[21.9041974,37.4824459],[21.9042544,37.4824289],[21.9042745,37.4825194],[21.9043213,37.4824662],[21.9045127,37.4824966],[21.9046508,37.4824089],[21.9047864,37.4824113],[21.9049874,37.4823924],[21.9051602,37.4822783],[21.9050745,37.4821055],[21.9048306,37.48193],[21.9044016,37.4819043],[21.9042562,37.4818477],[21.9042281,37.4816399],[21.9040397,37.4815014],[21.9036092,37.4815275],[21.9033789,37.4812711],[21.9027123,37.4808447],[21.9020612,37.4803442],[21.9019974,37.4801989],[21.9020834,37.4799571],[21.9020628,37.4794791],[21.9015926,37.4793085],[21.9015377,37.478848],[21.9011943,37.4785895],[21.900847,37.4780697],[21.9007749,37.4776921],[21.9002621,37.4774307],[21.8999451,37.4770375],[21.8999722,37.4769298],[21.8997294,37.4763127],[21.899586,37.476184],[21.8996962,37.4760823],[21.9004914,37.4759523],[21.9012678,37.4756867],[21.9022124,37.4750659],[21.9024394,37.4750338],[21.9028509,37.4744734],[21.9033791,37.4741854],[21.9036481,37.4738657],[21.9043435,37.4732562],[21.9044408,37.4730146],[21.9041924,37.4725956],[21.9043738,37.4717698],[21.9037213,37.4708389],[21.9035855,37.47044],[21.902863,37.4699946],[21.902469,37.469528],[21.9017352,37.4690824],[21.9013414,37.4686067],[21.9010074,37.4684206],[21.9008965,37.467941],[21.9007225,37.4676945],[21.9006048,37.466647],[21.9007171,37.4662705],[21.9006774,37.4660716],[21.9007834,37.4655147],[21.9007581,37.4648023],[21.9009089,37.4642642],[21.9008521,37.4638667],[21.9011028,37.4633935],[21.9012269,37.4629992],[21.9011456,37.4626733],[21.9008121,37.4624691],[21.9005545,37.4619779],[21.9007007,37.461602],[21.9007321,37.4612871],[21.9009468,37.4608854],[21.9011098,37.4603115],[21.9005259,37.4593639],[21.9002901,37.4593056],[21.9002035,37.4594821],[21.9001378,37.4594944],[21.9000715,37.4594392],[21.8998967,37.4593752],[21.8996466,37.4594248],[21.8994397,37.4595473],[21.8991363,37.4598844],[21.8985449,37.4600091],[21.8985185,37.4601438],[21.8986031,37.4603526],[21.898139,37.4607769],[21.8978527,37.4613125],[21.8978617,37.4617993],[21.8981361,37.4620926],[21.8977569,37.4619056],[21.8975438,37.4614422],[21.8972551,37.4612568],[21.8971461,37.4611107],[21.8971901,37.460751],[21.8973872,37.4605742],[21.8971537,37.4604349],[21.8970902,37.4602806],[21.8973495,37.4595011],[21.8971132,37.4594609],[21.8966659,37.4596872],[21.8961903,37.4597148],[21.8958479,37.4595916],[21.8954507,37.459242],[21.8950457,37.4591717],[21.8949968,37.4589005],[21.895055,37.4588384],[21.8951835,37.4588565],[21.8952373,37.458551],[21.8953787,37.4583463],[21.8956431,37.4581888],[21.8958334,37.4582553],[21.8960378,37.4582228],[21.8956198,37.4578865],[21.8956281,37.4575892],[21.8953282,37.4569981],[21.8950505,37.4568219],[21.8950103,37.4566409],[21.8951088,37.4563543],[21.894783,37.4558799],[21.8948576,37.4556379],[21.8954058,37.4550348],[21.8946875,37.4544452],[21.8946705,37.4542467],[21.8947679,37.4539961],[21.894605,37.4537589],[21.8944409,37.4531611],[21.8945595,37.452965],[21.8945901,37.4526771],[21.8953319,37.4520235],[21.894819,37.451771],[21.8949836,37.4511431],[21.8944692,37.4509447],[21.8943484,37.4508163],[21.8943099,37.4501758],[21.8941854,37.449777],[21.8943645,37.4494378],[21.8941549,37.4492538],[21.8940322,37.448792],[21.8939104,37.4486997],[21.8936699,37.4488126],[21.8934255,37.4490606],[21.8928887,37.4492583],[21.8925989,37.4495144],[21.8923129,37.4496355],[21.8921548,37.4496327],[21.8920109,37.449522],[21.8913794,37.4486636],[21.8912064,37.4482324],[21.891405,37.4480016],[21.8922429,37.447548],[21.8923996,37.4476048],[21.8927613,37.4480078],[21.8928319,37.4479099],[21.8932098,37.4477364],[21.8936836,37.4473664],[21.8941087,37.4471216],[21.8944521,37.4473192],[21.8946992,37.4473777],[21.8950883,37.4472044],[21.8957482,37.4470539],[21.8958829,37.4474889],[21.8960788,37.4473572],[21.8960983,37.4474657],[21.8963712,37.4474075],[21.8971156,37.4474658],[21.8974591,37.4473097],[21.8975947,37.4473121],[21.8979102,37.4477503],[21.8981671,37.447863],[21.8989647,37.4476339],[21.8995708,37.4473833],[21.8997978,37.4473513],[21.9001762,37.4471598],[21.9005819,37.4467975],[21.90084,37.4468651],[21.9013512,37.4467751],[21.901656,37.4467895],[21.9019879,37.4462367],[21.9021734,37.4460687],[21.9022716,37.4457911],[21.9021964,37.4448435],[21.9016331,37.4427517],[21.9012855,37.4418443],[21.9014118,37.4413689],[21.9017432,37.4412396],[21.9018956,37.441044],[21.9016356,37.4398318],[21.9017862,37.4392938],[21.9017592,37.4386444],[21.9018544,37.4372582],[21.9015045,37.4364319],[21.9014461,37.4357392],[21.9013931,37.4356549],[21.9014662,37.4353746],[21.9013739,37.4350395],[21.901212,37.4347662],[21.9009261,37.4344818],[21.9003799,37.4342107],[21.9001058,37.4335029],[21.8999196,37.4332923],[21.8998268,37.4317586],[21.8999386,37.4314001],[21.9001951,37.4311163],[21.9002429,37.4302159],[21.9001579,37.4299823],[21.8999354,37.4297824],[21.8999397,37.4296675],[21.8999464,37.4292982],[21.8999954,37.4291638],[21.9001571,37.4290405],[21.9003039,37.4290432],[21.9003999,37.429171],[21.9006178,37.4294633],[21.9009305,37.429595]]},{"id":19977,"author":"AnaDigit","name_GR":"Apollo Trails: \u03a3\u03ba\u03bb\u03b7\u03c1\u03cc\u03c2-\u03bd\u03b1\u03cc\u03c2 \u0395\u03c0\u03b9\u03ba\u03bf\u03cd\u03c1\u03b9\u03bf\u03c5 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Sklirou_Epikourios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3044,"name_EN":"Apollo Trails: Skliros-temple of Epikourios Apollo","description_EN":"","ascent_time":75,"descent_time":65,"marker":"Red_stripe","level":12,"ascent":234,"descent":22,"maxelev":1106,"minelev":886,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.90054 37.4299,21.918 37.4434)","views":1,"millestones":"0,21.9177010,37.4407176#1,21.9100620,37.4430326#2,21.9057677,37.4374324#3,21.9009302,37.4295950","x":21.9092232,"y":37.4430597,"coor":[[21.917701,37.4407176],[21.9175193,37.4409532],[21.917316,37.4413552],[21.9171413,37.4414535],[21.9170102,37.4414151],[21.9168177,37.4414298],[21.9166216,37.4415705],[21.9164552,37.4414594],[21.9163839,37.4415077],[21.916265,37.4416318],[21.9158364,37.4420433],[21.9158917,37.4424949],[21.9165377,37.4427248],[21.9163346,37.4427122],[21.916243,37.4427151],[21.9160461,37.4429279],[21.9157132,37.4431113],[21.9149661,37.4431522],[21.9143126,37.4434831],[21.9134063,37.4435573],[21.9131522,37.4436249],[21.9124746,37.4436039],[21.911962,37.4433425],[21.9113768,37.443251],[21.9110594,37.4432815],[21.9106356,37.4430757],[21.9102525,37.4430329],[21.9100916,37.4431292],[21.9099774,37.4427667],[21.9097547,37.4430511],[21.9096304,37.4430489],[21.9096329,37.4429588],[21.9093811,37.4430715],[21.9092232,37.4430597],[21.9091836,37.4428608],[21.9085052,37.4420557],[21.9083008,37.441277],[21.9083985,37.4410174],[21.9087893,37.440781],[21.9090577,37.4404793],[21.9092028,37.4401394],[21.9092849,37.4396272],[21.9092462,37.4393922],[21.9090396,37.4391002],[21.9087197,37.4388151],[21.9079847,37.4384236],[21.9073503,37.4376644],[21.9070511,37.4374518],[21.9066929,37.4373283],[21.9058858,37.4374942],[21.9056408,37.4373637],[21.9053714,37.4368903],[21.9049831,37.43582],[21.9047097,37.4354907],[21.9045629,37.4354881],[21.90434,37.435376],[21.903977,37.4350181],[21.9037489,37.4346896],[21.903593,37.4342002],[21.9034067,37.4339896],[21.9029984,37.4332343],[21.9026219,37.4321462],[21.9025572,37.4312258],[21.9023147,37.4305997],[21.9019485,37.4303588],[21.9013077,37.4302393],[21.9009302,37.429595]]},{"id":19978,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u03a3\u03ba\u03bb\u03b7\u03c1\u03cc\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Sklirou","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4268,"name_EN":"Apollo Trails: Abeliona-Skliros","description_EN":"","ascent_time":100,"descent_time":95,"marker":"Red_stripe","level":12,"ascent":266,"descent":194,"maxelev":1038,"minelev":797,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.91764 37.43327,21.9491 37.44297)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9431625,37.4343445#2,21.9336951,37.4360706#3,21.9274518,37.4411818#4.3,21.9177043,37.4407131","x":21.933604,"y":37.4368805,"coor":[[21.9490477,37.4352818],[21.9487222,37.4352784],[21.9484289,37.4352553],[21.9480652,37.4353323],[21.9477081,37.4351639],[21.9477288,37.4348218],[21.9475086,37.4346062],[21.9469077,37.4346768],[21.9463773,37.4346496],[21.9462422,37.4346292],[21.9460875,37.4345004],[21.9457103,37.434656],[21.9453056,37.4347076],[21.9455582,37.4345227],[21.9458848,37.4341904],[21.9463504,37.4341084],[21.9467082,37.4338352],[21.9466051,37.433473],[21.9464313,37.4332176],[21.9463406,37.433225],[21.9462326,37.4334575],[21.9461603,37.4334923],[21.9459093,37.433578],[21.9454606,37.4338676],[21.9449147,37.4339933],[21.9447224,37.433999],[21.9444219,37.4338315],[21.944094,37.4338349],[21.9435055,37.4338652],[21.9433761,37.4339373],[21.9432356,37.4341151],[21.9430381,37.4347245],[21.9426947,37.4348807],[21.9424565,37.4349126],[21.9419845,37.4352288],[21.9418597,37.4352447],[21.9414911,37.435085],[21.9413332,37.4350733],[21.940707,37.4352426],[21.9403561,37.4352635],[21.9401621,37.4353322],[21.9393776,37.4359134],[21.9387757,37.43602],[21.9383764,37.4357427],[21.9380506,37.4356739],[21.9373605,37.4356979],[21.9370697,37.4359993],[21.9370041,37.435917],[21.9365336,37.4357646],[21.9362536,37.4360841],[21.9359815,37.4361154],[21.9351484,37.4364073],[21.9344201,37.4361783],[21.9343214,37.4360684],[21.9341699,37.4361063],[21.9337986,37.4360458],[21.9336621,37.4360794],[21.9336797,37.43626],[21.9335869,37.4363485],[21.9335087,37.4367256],[21.933604,37.4368805],[21.9336957,37.437157],[21.9335755,37.4374162],[21.9335621,37.4379026],[21.9332939,37.4382922],[21.9329729,37.43837],[21.9326922,37.438302],[21.9324545,37.4383158],[21.9318645,37.4383956],[21.9317263,37.4384923],[21.9314428,37.4385234],[21.930715,37.4382764],[21.9301307,37.4382797],[21.9298536,37.4384911],[21.9295912,37.4389912],[21.9292898,37.4392653],[21.9290841,37.4393473],[21.9282761,37.4395494],[21.9282247,37.4397738],[21.9283179,37.4400819],[21.9281906,37.4401878],[21.9279286,37.4402643],[21.9278199,37.4405147],[21.9275996,37.4407181],[21.9274388,37.44122],[21.9274908,37.4413831],[21.9274411,37.4415445],[21.9272915,37.441641],[21.9270659,37.441628],[21.926971,37.4417886],[21.926846,37.4418134],[21.9267298,37.4419285],[21.9267831,37.4423778],[21.9265052,37.4426163],[21.9264757,37.4428681],[21.9260813,37.4428251],[21.9258764,37.4428756],[21.9250765,37.4427805],[21.9247258,37.4427923],[21.9242488,37.4428741],[21.9239725,37.4430585],[21.9236556,37.4430709],[21.92322,37.442883],[21.9226581,37.442765],[21.9222938,37.4424522],[21.9219149,37.4422563],[21.9215519,37.4418466],[21.9214184,37.4414477],[21.9211736,37.4413082],[21.9207792,37.4412652],[21.9205811,37.4410725],[21.9202869,37.4410853],[21.9201164,37.4407128],[21.9198232,37.4406896],[21.9195416,37.4405247],[21.9192805,37.4405652],[21.9189394,37.440807],[21.9181319,37.4411893],[21.9180546,37.4411249],[21.9179948,37.4408354],[21.9177043,37.4407131]]},{"id":19979,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u039d\u03ad\u03b4\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Neda","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2117,"name_EN":"Apollo Trails: Abeliona-Neda","description_EN":"","ascent_time":50,"descent_time":50,"marker":"Red_stripe","level":12,"ascent":76,"descent":98,"maxelev":817,"minelev":721,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.94866 37.42612,21.96263 37.43528)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9568037,37.4323374#2.1,21.9626267,37.4261169","x":21.9568264,"y":37.4323366,"coor":[[21.9490477,37.4352818],[21.9490237,37.4352025],[21.9491401,37.4350784],[21.9491158,37.4347265],[21.9488333,37.4344016],[21.948688,37.434345],[21.9487724,37.4341482],[21.948888,37.4339655],[21.9492561,37.4337285],[21.949539,37.4337154],[21.9498587,37.4335948],[21.9503641,37.4337117],[21.9506217,37.4333827],[21.9508366,37.4333774],[21.9511126,37.433202],[21.9511725,37.4330769],[21.9511082,37.4329496],[21.9512571,37.4327606],[21.9518248,37.4326623],[21.9521949,37.4323533],[21.9526448,37.4320164],[21.9530803,37.4321186],[21.9532173,37.4320669],[21.9536697,37.4320567],[21.954729,37.4321651],[21.9549233,37.4320874],[21.9552744,37.4320574],[21.9557204,37.4322814],[21.9559927,37.4322411],[21.95634,37.4323552],[21.9568264,37.4323366],[21.9573288,37.432147],[21.9576108,37.4321699],[21.9579656,37.4320048],[21.9583383,37.4320113],[21.9584535,37.4319322],[21.9586327,37.4315748],[21.959419,37.431336],[21.9598561,37.4310552],[21.9601026,37.4307169],[21.9604456,37.4305697],[21.9605315,37.4303188],[21.9609077,37.4301991],[21.9612989,37.4299445],[21.9610385,37.4295435],[21.9611485,37.429239],[21.961117,37.4287337],[21.9612444,37.4286188],[21.9613348,37.4286203],[21.9613437,37.42842],[21.9616134,37.4283075],[21.9621696,37.4279318],[21.962071,37.4276484],[21.9615256,37.4273416],[21.9612964,37.4270403],[21.9612813,37.4269341],[21.9614762,37.4268293],[21.9621923,37.4267538],[21.9625977,37.4263913],[21.9626267,37.4261169]]},{"id":19980,"author":"AnaDigit","name_GR":"Apollo Trails: \u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b9\u03c2 \u0386\u03bd\u03c9 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03b7\u03c2 \u03a1\u03ad\u03b1\u03c2","path":"PELOPONNESE\/Pelop_ApolloTrails_AnoKaryes_loop","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":3,"length":1395,"name_EN":"Apollo Trails: Ano Karyes loop trail","description_EN":"","ascent_time":35,"descent_time":30,"marker":"Red_stripe","level":12,"ascent":41,"descent":41,"maxelev":1022,"minelev":992,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.00196 37.43135,22.00635 37.43609)","views":0,"millestones":"0,22.0020907,37.4312834#1,22.0037241,37.4344276#1.4,22.0020907,37.4312834","x":22.00621,"y":37.4361047,"coor":[[22.0020907,37.4312834],[22.0022138,37.4320988],[22.0024915,37.4327073],[22.0027425,37.433045],[22.0028865,37.4335792],[22.0034843,37.4340489],[22.0037555,37.4344771],[22.0045488,37.4352047],[22.0049076,37.4353527],[22.0053929,37.4353789],[22.0060296,37.43566],[22.0061404,37.435743],[22.0062184,37.4359606],[22.0062246,37.4359787],[22.00621,37.4361047],[22.0060944,37.4361591],[22.0058594,37.436074],[22.0051782,37.4356299],[22.0051483,37.4356114],[22.0048241,37.4354797],[22.0045488,37.4352047],[22.0037555,37.4344771],[22.0034843,37.4340489],[22.0028865,37.4335792],[22.0027425,37.433045],[22.0024915,37.4327073],[22.0022138,37.4320988],[22.0020907,37.4312834]]},{"id":19981,"author":"AnaDigit","name_GR":"Apollo Trails: \u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03ce\u03c3\u03c4\u03b7\u03c2-\u0399\u03b5\u03c1\u03cc \u03a0\u03ac\u03bd\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_AgSostis_Pan_temple","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":3498,"name_EN":"Apollo Trails: Agios Sostis-temple of the Pan","description_EN":"","ascent_time":80,"descent_time":75,"marker":"Red_stripe","level":12,"ascent":181,"descent":109,"maxelev":959,"minelev":839,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.95565 37.43337,21.97301 37.44231)","views":1,"millestones":"0,21.9556502,37.4423108#1,21.9646119,37.4397404#2,21.9723388,37.4393529#3,21.9693933,37.4349898#3.5,21.9717377,37.4336367","x":21.9718874,"y":37.4402858,"coor":[[21.9556502,37.4423108],[21.9557494,37.4422359],[21.9557762,37.4420832],[21.9558325,37.4418048],[21.9561915,37.4414865],[21.9565587,37.4412856],[21.9569359,37.4407154],[21.957261,37.4403965],[21.9581623,37.4400877],[21.9584978,37.4398051],[21.9588293,37.4396666],[21.9594801,37.4394255],[21.9598318,37.4393775],[21.9609303,37.4392973],[21.9616273,37.4394355],[21.9627324,37.4391121],[21.9630244,37.4391803],[21.9638052,37.4395632],[21.9643475,37.4399871],[21.9645086,37.4398818],[21.9647669,37.4395257],[21.9650162,37.439503],[21.9654747,37.4392675],[21.9658941,37.4392207],[21.9663838,37.4390849],[21.9671873,37.4390447],[21.9684311,37.4394446],[21.9688207,37.4396676],[21.9689391,37.4398859],[21.9692926,37.4401894],[21.9694846,37.4401927],[21.9696737,37.4403041],[21.9697553,37.4402154],[21.9699925,37.4402194],[21.9701655,37.4405108],[21.9703015,37.4404951],[21.9704118,37.4405961],[21.9705147,37.4405528],[21.9706606,37.4405914],[21.9708556,37.4404866],[21.9710253,37.4404805],[21.971153,37.4403565],[21.9714834,37.4403892],[21.9715713,37.4404809],[21.9717088,37.4404517],[21.9718684,37.4404003],[21.9718874,37.4402858],[21.9722504,37.4402379],[21.9726657,37.4403442],[21.9728249,37.4403109],[21.97253,37.4399273],[21.9721424,37.4396323],[21.9722268,37.4394354],[21.9725267,37.4392153],[21.9720919,37.4389915],[21.9718313,37.4390141],[21.9714888,37.4391434],[21.9710278,37.4390544],[21.9709757,37.4388912],[21.9710846,37.4386227],[21.9712705,37.4384367],[21.9708807,37.4382227],[21.9707651,37.4381081],[21.9707806,37.4379551],[21.9713849,37.4377582],[21.9715995,37.4377619],[21.9716854,37.437511],[21.9718696,37.437388],[21.9717932,37.4372876],[21.9713805,37.4370822],[21.9712734,37.4368641],[21.9715427,37.4366344],[21.9719408,37.4365421],[21.9725016,37.4362814],[21.9714617,37.435867],[21.9708866,37.435821],[21.9704543,37.4355072],[21.9698693,37.435407],[21.9692646,37.4351984],[21.9693485,37.4350241],[21.9695677,37.4348566],[21.9703616,37.4347531],[21.9704763,37.434692],[21.9708126,37.4339587],[21.9711347,37.433748],[21.9710542,37.4335911],[21.9708083,37.4334878],[21.970626,37.4334666],[21.9701887,37.4334141],[21.9708838,37.4333359],[21.9710581,37.433447],[21.9716243,37.4336528],[21.9717377,37.4336367]]},{"id":19983,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u0386\u03bd\u03c9 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2-\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5 \u03a3\u03ba\u03bf\u03c1\u03c4\u03ce\u03bd","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_AnoKaryes_Skorta_castle","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3024,"name_EN":"Arcadian Trails: Ano Karyes-castle of Agios Georgios Skorton","description_EN":"","ascent_time":70,"descent_time":65,"marker":"No_marks","level":12,"ascent":161,"descent":106,"maxelev":1009,"minelev":873,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.0028 37.43798,22.0207 37.44452)","views":0,"millestones":"0,22.0034505,37.4376870#1,22.0079053,37.4416472#2,22.0138519,37.4434761#3,22.0194313,37.4422098","x":22.013425,"y":37.441388,"coor":[[22.0034505,37.437687],[22.0035375,37.4378147],[22.0034813,37.4382283],[22.0035701,37.438543],[22.0032291,37.4390419],[22.0029901,37.4391438],[22.002942,37.4392511],[22.0030754,37.4393345],[22.0032156,37.4395892],[22.0032211,37.4398056],[22.0037868,37.4402117],[22.003882,37.4404566],[22.0039747,37.4411025],[22.0048696,37.4417035],[22.0056718,37.441717],[22.0059054,37.4418561],[22.0060634,37.4418678],[22.0064104,37.4415672],[22.0059371,37.4415142],[22.0057828,37.4413674],[22.0057743,37.4412591],[22.006102,37.4412646],[22.0065916,37.4411287],[22.0069851,37.4412074],[22.0072746,37.4413745],[22.0076479,37.4417864],[22.0077609,37.4417883],[22.0081207,37.4414339],[22.0084749,37.4408631],[22.0096331,37.4398101],[22.0097929,37.4397497],[22.0103093,37.4398846],[22.0108402,37.4398935],[22.0113739,37.4398034],[22.0121045,37.4395273],[22.0123062,37.4395937],[22.0127935,37.4399714],[22.013198,37.440492],[22.0133882,37.4409908],[22.013425,37.441388],[22.0131056,37.4423559],[22.0132014,37.4430064],[22.0137142,37.4432764],[22.0140081,37.4437049],[22.014238,37.4439071],[22.0147439,37.4444383],[22.0149552,37.444568],[22.0152704,37.4446184],[22.0159043,37.4445839],[22.0165781,37.4447485],[22.0168274,37.4447256],[22.0170812,37.4445316],[22.0175887,37.4445762],[22.0179093,37.4444193],[22.0181929,37.444379],[22.0183883,37.4442561],[22.0188452,37.444212],[22.0188393,37.4441668],[22.0188661,37.4441402],[22.0188393,37.4441668],[22.0186972,37.4439842],[22.0186786,37.4438307],[22.0188356,37.4438784],[22.0190644,37.443774],[22.0191127,37.4436577],[22.0190367,37.4435393],[22.0190419,37.4433411],[22.0197517,37.4430015],[22.0200424,37.4426909],[22.0204344,37.4424001],[22.020587,37.4421864],[22.020588,37.442067],[22.0204084,37.4420189],[22.0203769,37.4419282],[22.0197635,37.4420441],[22.0195657,37.4422571],[22.0194751,37.4422646],[22.0194313,37.4422098]]},{"id":19984,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03bf\u03c7\u03ce\u03c1\u03b9-\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5 \u03a3\u03ba\u03bf\u03c1\u03c4\u03ce\u03bd","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Kastanochori_Skorta_castle","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3254,"name_EN":"Arcadian Trails: Kastanochori-castle of Agios Georgios Skorton","description_EN":"","ascent_time":170,"descent_time":155,"marker":"No_marks","level":12,"ascent":548,"descent":280,"maxelev":1009,"minelev":507,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.01305 37.41587,22.02483 37.44469)","views":0,"millestones":"0,22.0198133,37.4167114#1,22.0237026,37.4187103#2,22.0194706,37.4239720#3,22.0205752,37.4299949#4,22.0192769,37.4352088#5,22.0174226,37.4391861#6,22.0134900,37.4419508#7,22.0191936,37.4432699#3.3,22.0194331,37.4422098","x":22.0193594,"y":37.4316755,"coor":[[22.0198133,37.4167114],[22.0199563,37.4168579],[22.0200494,37.417184],[22.0201955,37.4172134],[22.0203086,37.4170892],[22.0203049,37.4168007],[22.0204405,37.4163704],[22.0205588,37.4162507],[22.0205661,37.416404],[22.0206572,37.4164168],[22.0209331,37.4158086],[22.0211031,37.4160413],[22.0212188,37.4163676],[22.0216159,37.4167348],[22.0221279,37.4170317],[22.0221298,37.4169597],[22.0217195,37.4166644],[22.0215113,37.4164176],[22.0218953,37.4165164],[22.0218869,37.4164081],[22.0226043,37.4166274],[22.0226081,37.4164833],[22.0229083,37.4166685],[22.0232698,37.4170982],[22.0234681,37.4177233],[22.0235596,37.4176798],[22.023608,37.417987],[22.0237683,37.4179086],[22.0237261,37.4182233],[22.0237715,37.4182151],[22.0237696,37.4182871],[22.0236476,37.4190602],[22.0238283,37.4190632],[22.0239404,37.4186685],[22.0242555,37.4187188],[22.0242973,37.4188457],[22.0244642,37.4189476],[22.0247008,37.4198326],[22.0246428,37.4203183],[22.0247125,37.4204614],[22.024168,37.4214842],[22.0237768,37.421748],[22.0234396,37.4221119],[22.0230186,37.422222],[22.0224442,37.4221493],[22.0223046,37.4223002],[22.0221484,37.4222254],[22.0219178,37.4224018],[22.0213269,37.4225271],[22.0210275,37.4227384],[22.0208038,37.4227865],[22.0202215,37.4233468],[22.0199349,37.4235042],[22.0199339,37.4236371],[22.0195692,37.4238721],[22.0192675,37.4241734],[22.0193117,37.4242102],[22.0196186,37.4241433],[22.0199163,37.4241685],[22.0200651,37.4240989],[22.0202684,37.4241023],[22.0204455,37.4242405],[22.0206147,37.4242523],[22.0208684,37.4244909],[22.0209309,37.4246902],[22.0207493,37.4255794],[22.0207648,37.42585],[22.0209396,37.4260783],[22.0209414,37.4264388],[22.0210661,37.4264228],[22.0212403,37.4262455],[22.0212475,37.4263988],[22.02136,37.4264188],[22.0213348,37.4265175],[22.0214134,37.4265368],[22.021388,37.4266445],[22.0214962,37.4268266],[22.0214463,37.427006],[22.0215705,37.4270081],[22.0215978,37.4272609],[22.0216634,37.4273431],[22.0219441,37.4274109],[22.0221731,37.4277301],[22.0221216,37.4279681],[22.0220263,37.4280747],[22.0217678,37.4284488],[22.0214802,37.4286423],[22.0216735,37.4290241],[22.0215836,37.4294371],[22.0212736,37.4296212],[22.0210281,37.4299325],[22.0204837,37.4300045],[22.0202974,37.4302943],[22.0202064,37.4307434],[22.0199757,37.4313523],[22.0198255,37.431476],[22.0194865,37.4315694],[22.0193594,37.4316755],[22.0192946,37.4319898],[22.018325,37.4336138],[22.0180451,37.4347987],[22.0182612,37.4347483],[22.0190135,37.434076],[22.0193694,37.4338656],[22.0196533,37.4338163],[22.01999,37.4339031],[22.0200333,37.4339759],[22.0197029,37.4340785],[22.0194261,37.4342902],[22.0192334,37.4347375],[22.019347,37.435145],[22.0191038,37.4353662],[22.0190619,37.4356719],[22.0187851,37.4358836],[22.0188226,37.4361726],[22.0186437,37.4365301],[22.0183219,37.436732],[22.0187074,37.4366844],[22.0194636,37.4367241],[22.0202709,37.4365394],[22.0210737,37.4365258],[22.0214215,37.4367051],[22.0217145,37.436737],[22.0217357,37.4367915],[22.0215293,37.4369052],[22.0209499,37.4374452],[22.0203815,37.4377466],[22.0198871,37.4380628],[22.0191912,37.438736],[22.0189968,37.4388229],[22.0184281,37.4389576],[22.0179825,37.4391394],[22.0175852,37.4392048],[22.0171345,37.4391522],[22.0168669,37.4390125],[22.0164828,37.439006],[22.0164569,37.4391318],[22.0168621,37.4396252],[22.0171633,37.4397745],[22.016368,37.4399324],[22.01593,37.4398259],[22.0154724,37.4400345],[22.0154128,37.4401507],[22.0154746,37.440377],[22.0152228,37.4409225],[22.0151823,37.4411742],[22.0150309,37.4413429],[22.0147548,37.4419511],[22.0148785,37.4424038],[22.0149008,37.4428457],[22.0149888,37.4429373],[22.0153818,37.4430341],[22.0153775,37.4431962],[22.0147004,37.4431578],[22.0143361,37.4428272],[22.0136644,37.4425816],[22.0135162,37.4422006],[22.0134268,37.441388],[22.0131073,37.442356],[22.0132032,37.4430065],[22.013716,37.4432764],[22.0140098,37.443705],[22.0142397,37.4439071],[22.0147456,37.4444383],[22.014957,37.444568],[22.0152721,37.4446184],[22.015906,37.444584],[22.0165799,37.4447485],[22.0168291,37.4447256],[22.0170829,37.4445316],[22.0175904,37.4445762],[22.017911,37.4444194],[22.0181947,37.4443791],[22.0183901,37.4442562],[22.0188466,37.444212],[22.018841,37.4441668],[22.0186989,37.4439842],[22.0186804,37.4438307],[22.0188374,37.4438784],[22.0190662,37.4437741],[22.0191144,37.4436577],[22.0190384,37.4435393],[22.0190437,37.4433411],[22.0197534,37.4430015],[22.0200442,37.442691],[22.0204362,37.4424001],[22.0205887,37.4421864],[22.0205897,37.442067],[22.0204102,37.4420189],[22.0203786,37.4419283],[22.0197652,37.4420442],[22.0195675,37.4422571],[22.0194769,37.4422646],[22.0194331,37.4422098]]},{"id":19985,"author":"AnaDigit","name_GR":"Apollo Trails: \u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03ce\u03c3\u03c4\u03b7\u03c2-\u0392\u03c9\u03bc\u03cc\u03c2 \u0394\u03b9\u03cc\u03c2 \u03c3\u03c4\u03bf \u039b\u03cd\u03ba\u03b1\u03b9\u03bf","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_AgSostis_Zeus_altar","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4993,"name_EN":"Apollo Trails: Agios Sostis-Zeus altar on Mt Lykeon","description_EN":"","ascent_time":125,"descent_time":105,"marker":"Red_stripe","level":12,"ascent":586,"descent":58,"maxelev":1375,"minelev":839,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.95525 37.44289,21.98934 37.45053)","views":1,"millestones":"0,21.9556502,37.4423108#1,21.9632698,37.4448926#2,21.9702657,37.4499841#3,21.9783715,37.4473404#4,21.9856801,37.4456222#5.0,21.9884437,37.4465597","x":21.9701427,"y":37.4507618,"coor":[[21.9556502,37.4423108],[21.9556766,37.4423811],[21.955512,37.4426126],[21.9554543,37.4428639],[21.9557779,37.4427704],[21.9557958,37.4428676],[21.9560101,37.4429997],[21.9561666,37.4429461],[21.9564469,37.4430321],[21.9566522,37.4432474],[21.9572331,37.4435008],[21.9574053,37.4438192],[21.9576271,37.4439762],[21.958055,37.4444522],[21.9583448,37.4446014],[21.9585182,37.4448748],[21.9587169,37.4446349],[21.9587961,37.4445912],[21.9588831,37.4447189],[21.9589742,37.4446934],[21.9591299,37.4447862],[21.9593072,37.4445009],[21.9595507,37.4446944],[21.9596663,37.4445972],[21.959766,37.4446711],[21.9598577,37.4446276],[21.9599682,37.4447196],[21.9602511,37.4447065],[21.9603965,37.4447631],[21.9612264,37.4445881],[21.9613367,37.4446892],[21.9618584,37.4446261],[21.9619701,37.444673],[21.9625242,37.4446646],[21.9624977,37.4448083],[21.9626456,37.4447748],[21.9626873,37.4449017],[21.9629042,37.4448243],[21.9629695,37.4449156],[21.9631714,37.4449731],[21.9633102,37.4448584],[21.9634806,37.4448253],[21.9634765,37.4449784],[21.9636123,37.4449717],[21.9636541,37.4450986],[21.9637798,37.4450467],[21.9646502,37.4450437],[21.9648502,37.4451733],[21.9650755,37.4456188],[21.9656999,37.445936],[21.9659495,37.4463188],[21.9663643,37.4465242],[21.9670803,37.4463022],[21.9680349,37.4469111],[21.9679721,37.4470115],[21.9679604,37.4474438],[21.9686216,37.4476535],[21.9688545,37.4478197],[21.9689737,37.448011],[21.9689438,37.4482809],[21.9690382,37.4485529],[21.9692234,37.4488084],[21.9693716,37.4491804],[21.9699136,37.4496223],[21.9702589,37.4498085],[21.9702651,37.4499979],[21.9703641,37.4500987],[21.9701005,37.4506529],[21.9701427,37.4507618],[21.9702889,37.4507914],[21.9706426,37.4506713],[21.9711404,37.4502382],[21.9714029,37.4501436],[21.9715686,37.449867],[21.9723372,37.4490331],[21.9727537,37.4486798],[21.9735676,37.4482611],[21.9740698,37.4480805],[21.9746239,37.448072],[21.9750901,37.4479718],[21.975645,37.4475127],[21.9761711,37.4472874],[21.977149,37.4470698],[21.9773923,37.4472722],[21.9779601,37.4471738],[21.9782971,37.4472517],[21.9786583,37.4476904],[21.9789963,37.4477323],[21.979111,37.4476711],[21.9792611,37.447133],[21.9794249,37.4469285],[21.9797795,37.4467723],[21.9801376,37.4469046],[21.9804439,37.4468648],[21.9805942,37.4467412],[21.9809704,37.4466215],[21.9811666,37.4464716],[21.9812279,37.4462924],[21.9814558,37.4462242],[21.9818363,37.4463659],[21.9824897,37.4464492],[21.9826416,37.4466861],[21.9831646,37.4469924],[21.9833012,37.4469587],[21.9833349,37.4465447],[21.9834383,37.4464834],[21.983596,37.4465041],[21.9838184,37.4462195],[21.9841205,37.4463328],[21.9843294,37.4465527],[21.9848659,37.4467781],[21.9850218,37.4467898],[21.9858629,37.4462724],[21.9858653,37.4461823],[21.9856783,37.4459899],[21.9856789,37.4455483],[21.9858161,37.4454875],[21.9862351,37.4454586],[21.9866243,37.445276],[21.986719,37.4451199],[21.9867716,37.4448414],[21.9866277,37.4443072],[21.9868965,37.4435548],[21.9872127,37.4431456],[21.9875825,37.4429762],[21.9878522,37.4430348],[21.9881589,37.4434005],[21.9881881,37.4439959],[21.9884306,37.4442253],[21.9886103,37.4455351],[21.988706,37.4457621],[21.988904,37.4460448],[21.989247,37.446321],[21.9890863,37.4466247],[21.9884983,37.4466327],[21.9884437,37.4465597]]},{"id":19986,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u0393\u03bf\u03cd\u03b2\u03b5\u03c2-\u03a0\u03ad\u03c4\u03c1\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Gouves_Petra","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4151,"name_EN":"Apollo Trails: Abeliona-Gouves-Petra","description_EN":"","ascent_time":95,"descent_time":95,"marker":"Red_stripe","level":12,"ascent":200,"descent":213,"maxelev":971,"minelev":796,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.93507 37.42296,21.94938 37.4351)","views":2,"millestones":"0,21.9490477,37.4352818#1,21.9449177,37.4331978#2,21.9361192,37.4316923#3,21.9407484,37.4267537#4.2,21.9490564,37.4232011","x":21.9372683,"y":37.4334095,"coor":[[21.9490477,37.4352818],[21.9487222,37.4352784],[21.9484289,37.4352553],[21.9480652,37.4353323],[21.9477081,37.4351639],[21.9477288,37.4348218],[21.9475086,37.4346062],[21.9469077,37.4346768],[21.9463773,37.4346496],[21.9462422,37.4346292],[21.9460875,37.4345004],[21.9457103,37.434656],[21.9453056,37.4347076],[21.9455582,37.4345227],[21.9458848,37.4341904],[21.9463504,37.4341084],[21.9467082,37.4338352],[21.9466051,37.433473],[21.9464313,37.4332176],[21.9463406,37.433225],[21.9462326,37.4334575],[21.9461603,37.4334923],[21.9459093,37.433578],[21.9454606,37.4338676],[21.9449147,37.4339933],[21.9447224,37.433999],[21.9444219,37.4338315],[21.944094,37.4338349],[21.9448475,37.4335596],[21.9449415,37.433426],[21.9449145,37.4331732],[21.9446218,37.4331321],[21.943893,37.4333357],[21.9433883,37.4331917],[21.9429021,37.4332013],[21.9427135,37.4330718],[21.9424439,37.4330131],[21.9420235,37.4330959],[21.9414061,37.4333555],[21.9410991,37.4334222],[21.9407327,37.4335961],[21.9399233,37.4338523],[21.9395151,37.4338993],[21.9386574,37.4338573],[21.9383374,37.4335723],[21.9379676,37.4334577],[21.9374912,37.4335215],[21.9372683,37.4334095],[21.9371608,37.4332093],[21.9362645,37.4329233],[21.9362597,37.4322744],[21.9364732,37.4319086],[21.9362181,37.4317329],[21.9355588,37.43146],[21.9354391,37.4314579],[21.9355588,37.43146],[21.9360144,37.4315356],[21.9363204,37.4315049],[21.9365523,37.4312926],[21.9365695,37.4310766],[21.9364045,37.4309115],[21.9356173,37.4307716],[21.9352382,37.4305847],[21.935196,37.4304759],[21.9353021,37.4303155],[21.9357581,37.4301703],[21.9361496,37.4299067],[21.9369374,37.4296141],[21.9379963,37.4289116],[21.9385631,37.4284348],[21.9393314,37.4276191],[21.9401457,37.4271827],[21.9417131,37.4260654],[21.9424776,37.4253848],[21.9432374,37.4244608],[21.9437936,37.4239568],[21.9444347,37.4236525],[21.9446586,37.4237285],[21.9449741,37.4240223],[21.94528,37.4239916],[21.9457225,37.4239272],[21.9462997,37.4243067],[21.9464704,37.4242647],[21.9466661,37.4240427],[21.9468367,37.4238857],[21.9475258,37.4238008],[21.9476952,37.4238038],[21.9475742,37.4236845],[21.9476098,37.423622],[21.9480876,37.4239187],[21.9478067,37.4234452],[21.9478947,37.4230435],[21.9481122,37.4229391],[21.948653,37.4230363],[21.9490564,37.4232011]]},{"id":19987,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03ce\u03c3\u03c4\u03b7\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_AgSostis","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1544,"name_EN":"Apollo Trails: Abeliona-Agios Sostis","description_EN":"","ascent_time":35,"descent_time":35,"marker":"Red_stripe","level":12,"ascent":67,"descent":50,"maxelev":883,"minelev":817,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.94884 37.4354,21.95594 37.44275)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9542703,37.4394514#1.5,21.9556523,37.4423109","x":21.9530106,"y":37.4379956,"coor":[[21.9490477,37.4352818],[21.9492607,37.4355153],[21.9495951,37.4356833],[21.9496954,37.4358135],[21.9498599,37.4359966],[21.9500298,37.4362834],[21.9500752,37.436728],[21.9498421,37.4369854],[21.9494278,37.4372575],[21.9494661,37.4373033],[21.9495171,37.4373785],[21.9497355,37.437371],[21.9497036,37.4374155],[21.949718,37.4374721],[21.9502288,37.4378054],[21.9503805,37.4380424],[21.9504699,37.43808],[21.9507477,37.4378415],[21.9511603,37.4376323],[21.9513528,37.4376176],[21.9517005,37.4377138],[21.9519859,37.4376106],[21.9522513,37.437658],[21.9524735,37.437797],[21.9529023,37.4378225],[21.9530106,37.4379956],[21.9534551,37.4378591],[21.9536587,37.4378536],[21.954158,37.4382858],[21.9541812,37.4383808],[21.9545589,37.4386217],[21.9542031,37.4386133],[21.9540302,37.4387365],[21.9542857,37.4393177],[21.9542263,37.4398394],[21.9543564,37.4400399],[21.9546435,37.4402882],[21.9547339,37.4407043],[21.9547276,37.4409385],[21.9545205,37.4414847],[21.9546099,37.4419368],[21.954521,37.4422214],[21.9545043,37.4424194],[21.9547459,37.4427548],[21.9550538,37.4428615],[21.955196,37.4426206],[21.9552341,37.4424681],[21.955408,37.4423089],[21.9557515,37.442236],[21.9556523,37.4423109]]},{"id":19988,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u0392\u03b1\u03c1\u03b9\u03ba\u03cc-\u03a0\u03ad\u03c4\u03c1\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Variko_Petra","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2180,"name_EN":"Apollo Trails: Abeliona-Variko-Petra","description_EN":"","ascent_time":50,"descent_time":50,"marker":"Red_stripe","level":12,"ascent":106,"descent":132,"maxelev":817,"minelev":717,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.94866 37.42323,21.95429 37.43528)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9533163,37.4300966#2.2,21.9490531,37.4232055","x":21.9531835,"y":37.4291215,"coor":[[21.9490477,37.4352818],[21.9490237,37.4352025],[21.9491401,37.4350784],[21.9491158,37.4347265],[21.9488333,37.4344016],[21.948688,37.434345],[21.9487724,37.4341482],[21.948888,37.4339655],[21.9492561,37.4337285],[21.949539,37.4337154],[21.9498587,37.4335948],[21.9503641,37.4337117],[21.9506217,37.4333827],[21.9508366,37.4333774],[21.9511126,37.433202],[21.9511725,37.4330769],[21.9511082,37.4329496],[21.9512571,37.4327606],[21.9518248,37.4326623],[21.9521949,37.4323533],[21.9526448,37.4320164],[21.9527959,37.4317712],[21.9529219,37.4317103],[21.9534398,37.4317823],[21.953928,37.4317007],[21.9540685,37.4315229],[21.9539119,37.4314233],[21.9536425,37.4314479],[21.9535504,37.4313787],[21.953743,37.4313235],[21.9538034,37.4311803],[21.9535475,37.4310317],[21.9533962,37.4308556],[21.9534244,37.4306488],[21.9533174,37.4304306],[21.9533679,37.4302332],[21.9532837,37.4300065],[21.9534266,37.4297386],[21.9534453,37.4294685],[21.9531835,37.4291215],[21.9531933,37.4287612],[21.9532665,37.4285642],[21.9534644,37.4283514],[21.9535992,37.4279662],[21.9535145,37.4277574],[21.9533806,37.427692],[21.9531258,37.4279219],[21.9527732,37.4280059],[21.9529036,37.4277423],[21.9528904,37.4275258],[21.9528791,37.4271111],[21.9529739,37.4269505],[21.9529447,37.4267787],[21.9530017,37.4267054],[21.9525386,37.4262828],[21.9519933,37.4261449],[21.9519618,37.4260543],[21.9520431,37.4259745],[21.9518524,37.4254711],[21.9517416,37.425388],[21.9515383,37.4253845],[21.9514876,37.4250952],[21.9512646,37.4249832],[21.9511531,37.4245127],[21.9511915,37.4243511],[21.9511148,37.4242597],[21.9510293,37.424159],[21.9509058,37.4240533],[21.9505311,37.4237043],[21.9505564,37.4236056],[21.9504098,37.423594],[21.9504019,37.4234677],[21.9499662,37.4234422],[21.9500192,37.4231547],[21.9498751,37.4233121],[21.9496338,37.4233665],[21.9493324,37.4232689],[21.9490531,37.4232055]]},{"id":19989,"author":"AnaDigit","name_GR":"Apollo Trails: \u03a3\u03ba\u03bb\u03b7\u03c1\u03cc\u03c2-\u039a\u03b1\u03ba\u03b1\u03bb\u03ad\u03c4\u03c1\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Sklirou_Kakaletri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8112,"name_EN":"Apollo Trails: Skliros-Kakaletri","description_EN":"","ascent_time":185,"descent_time":190,"marker":"Red_stripe","level":12,"ascent":281,"descent":553,"maxelev":886,"minelev":495,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.90502 37.40474,21.93266 37.44049)","views":1,"millestones":"0,21.9177029,37.4407154#1,21.9146960,37.4334618#2,21.9103716,37.4257274#3,21.9065933,37.4179100#4,21.9061152,37.4093723#5,21.9124577,37.4080697#6,21.9186936,37.4134622#7,21.9243905,37.4073419#8.1,21.9326567,37.4047444","x":21.9072441,"y":37.4070572,"coor":[[21.9177029,37.4407154],[21.9177862,37.4405231],[21.9179205,37.4402934],[21.9181047,37.4401705],[21.9181256,37.4400672],[21.9182822,37.4399235],[21.91831,37.4397347],[21.9185598,37.4396941],[21.9186247,37.4395961],[21.9186957,37.4394802],[21.9186143,37.4391543],[21.9185051,37.4390172],[21.9183832,37.439006],[21.9178372,37.4391316],[21.9178253,37.4387439],[21.9177203,37.4384536],[21.9177233,37.4383455],[21.9173021,37.4380497],[21.9172415,37.4377873],[21.9172628,37.4375939],[21.9166475,37.4357356],[21.9151175,37.4338521],[21.9146217,37.4333927],[21.914087,37.4331129],[21.9136038,37.4330143],[21.9134481,37.4329214],[21.9131699,37.4315466],[21.9130157,37.4309942],[21.9128543,37.4307029],[21.9122671,37.430278],[21.9117081,37.4296553],[21.9113978,37.429028],[21.9107125,37.4280696],[21.9106439,37.4276516],[21.9104155,37.4273321],[21.9102997,37.4262125],[21.910377,37.4258714],[21.9103486,37.4248616],[21.9102027,37.4236063],[21.9100134,37.4226927],[21.9102386,37.4222754],[21.9102549,37.4216899],[21.9099153,37.4213054],[21.9095707,37.421101],[21.9094181,37.4209001],[21.9093758,37.4207461],[21.9091315,37.420183],[21.9085824,37.4196145],[21.9083988,37.4192328],[21.908003,37.4188383],[21.9078324,37.4187519],[21.9073716,37.4183855],[21.9069462,37.4182428],[21.9065938,37.4179121],[21.9064728,37.4173872],[21.9061461,37.4169489],[21.9057719,37.4161852],[21.9059052,37.4157843],[21.9060929,37.4155353],[21.9061469,37.4152208],[21.9059057,37.4145496],[21.9058808,37.4142247],[21.9058741,37.4132513],[21.9061212,37.4124897],[21.9060289,37.4121546],[21.9061463,37.4119944],[21.9061624,37.4118235],[21.9058713,37.4109171],[21.905943,37.4103686],[21.905874,37.4100069],[21.905992,37.4098288],[21.9059787,37.4094951],[21.9060399,37.4093249],[21.906273,37.4094733],[21.9064196,37.4090793],[21.9065987,37.4091366],[21.9065982,37.408749],[21.9067099,37.4087961],[21.906734,37.4087424],[21.9067332,37.4083639],[21.9066592,37.4081824],[21.9068085,37.4080949],[21.9067548,37.4075892],[21.9068845,37.4073933],[21.9069246,37.4071687],[21.907151,37.4071547],[21.9072441,37.4070572],[21.9073547,37.4071403],[21.9076709,37.4071458],[21.9076742,37.4070287],[21.9077876,37.4070127],[21.9077798,37.4068864],[21.9087921,37.4074541],[21.909234,37.4078134],[21.9100473,37.4082243],[21.9107424,37.4084168],[21.9114794,37.4083217],[21.9118405,37.4083371],[21.9121025,37.4082967],[21.9122413,37.408182],[21.9118719,37.4080583],[21.9118629,37.4079387],[21.9121226,37.4079433],[21.9123901,37.4080742],[21.9132049,37.4080255],[21.9137761,37.4081144],[21.9146507,37.4087607],[21.914634,37.4088776],[21.9145927,37.4095528],[21.9148169,37.4100254],[21.914776,37.410277],[21.9148436,37.4106927],[21.915025,37.4110744],[21.9152383,37.41129],[21.9156981,37.4118208],[21.9161915,37.4119557],[21.9163552,37.4121659],[21.9166566,37.4122973],[21.9170217,37.4125741],[21.9176214,37.4127852],[21.9177652,37.4128959],[21.9178295,37.4130232],[21.9177731,37.4134278],[21.9178657,37.4137538],[21.9179995,37.4138193],[21.9185247,37.4136212],[21.9187335,37.4134267],[21.9192203,37.4133902],[21.91927,37.4132288],[21.919767,37.412823],[21.919817,37.4126527],[21.9200485,37.4124495],[21.9203808,37.4122841],[21.9208105,37.4117712],[21.9212393,37.4110645],[21.9217624,37.410533],[21.9220705,37.4104212],[21.9229476,37.4097517],[21.9233877,37.4093629],[21.9239609,37.408652],[21.9244088,37.4083895],[21.925339,37.4076759],[21.9253866,37.4076271],[21.9246001,37.4074691],[21.9243446,37.4073114],[21.9241919,37.4070744],[21.9241861,37.4068761],[21.9250127,37.4070505],[21.9253984,37.4069942],[21.92572,37.4068016],[21.9257044,37.406549],[21.9257628,37.4064779],[21.9271764,37.4060161],[21.9281724,37.4059524],[21.928666,37.4060782],[21.9290175,37.4060303],[21.9296512,37.4064019],[21.9297197,37.4063761],[21.9297119,37.4062497],[21.9297816,37.4061789],[21.9297394,37.40607],[21.9297233,37.4058354],[21.9298763,37.4056128],[21.9300604,37.4054898],[21.9305246,37.4054529],[21.9308932,37.405198],[21.9315356,37.4052543],[21.9316381,37.4052223],[21.9317289,37.4048882],[21.9321315,37.404947],[21.932459,37.4047838],[21.9326567,37.4047444]]},{"id":19990,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u039a\u03b1\u03ba\u03b1\u03bb\u03ad\u03c4\u03c1\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Kakaletri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":7319,"name_EN":"Apollo Trails: Abeliona-Kakaletri","description_EN":"","ascent_time":170,"descent_time":175,"marker":"Red_stripe","level":12,"ascent":348,"descent":550,"maxelev":1007,"minelev":495,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.92008 37.40504,21.94987 37.43484)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9449177,37.4331978#2,21.9361192,37.4316923#3,21.9360605,37.4242861#4,21.9317880,37.4183282#5,21.9231377,37.4142274#6,21.9245314,37.4082943#7.3,21.9326546,37.4047444","x":21.9354676,"y":37.4209232,"coor":[[21.9490477,37.4352818],[21.9487222,37.4352784],[21.9484289,37.4352553],[21.9480652,37.4353323],[21.9477081,37.4351639],[21.9477288,37.4348218],[21.9475086,37.4346062],[21.9469077,37.4346768],[21.9463773,37.4346496],[21.9462422,37.4346292],[21.9460875,37.4345004],[21.9457103,37.434656],[21.9453056,37.4347076],[21.9455582,37.4345227],[21.9458848,37.4341904],[21.9463504,37.4341084],[21.9467082,37.4338352],[21.9466051,37.433473],[21.9464313,37.4332176],[21.9463406,37.433225],[21.9462326,37.4334575],[21.9461603,37.4334923],[21.9459093,37.433578],[21.9454606,37.4338676],[21.9449147,37.4339933],[21.9447224,37.433999],[21.9444219,37.4338315],[21.944094,37.4338349],[21.9448475,37.4335596],[21.9449415,37.433426],[21.9449145,37.4331732],[21.9446218,37.4331321],[21.943893,37.4333357],[21.9433883,37.4331917],[21.9429021,37.4332013],[21.9427135,37.4330718],[21.9424439,37.4330131],[21.9420235,37.4330959],[21.9414061,37.4333555],[21.9410991,37.4334222],[21.9407327,37.4335961],[21.9399233,37.4338523],[21.9395151,37.4338993],[21.9386574,37.4338573],[21.9383374,37.4335723],[21.9379676,37.4334577],[21.9374912,37.4335215],[21.9372683,37.4334095],[21.9371608,37.4332093],[21.9362645,37.4329233],[21.9362597,37.4322744],[21.9364732,37.4319086],[21.9362181,37.4317329],[21.9355588,37.43146],[21.9354391,37.4314579],[21.9349533,37.4310439],[21.9347183,37.4309587],[21.9344946,37.4309638],[21.934305,37.4308703],[21.9342688,37.4305453],[21.9344189,37.4300162],[21.9347884,37.4293197],[21.9351204,37.4291633],[21.9352242,37.4286784],[21.9356913,37.4281278],[21.9358043,37.4277152],[21.9357852,37.4275887],[21.9355751,37.4274228],[21.9356099,37.4265673],[21.9355125,37.4263178],[21.9355867,37.4260847],[21.9355569,37.4258995],[21.9355687,37.4254671],[21.9357091,37.4248837],[21.9355883,37.4247555],[21.935676,37.4244416],[21.9357342,37.4243795],[21.9363152,37.4242094],[21.9363619,37.4241562],[21.9363668,37.423976],[21.936019,37.4234742],[21.9361168,37.4232056],[21.9360986,37.4230431],[21.9363948,37.4225435],[21.9364361,37.4222739],[21.9360216,37.422555],[21.9359716,37.4223199],[21.9360854,37.4218802],[21.9358566,37.4215698],[21.9358412,37.4213082],[21.9357023,37.4210174],[21.9354676,37.4209232],[21.9352589,37.4207032],[21.9347583,37.4204151],[21.9343737,37.4200209],[21.9340256,37.4199427],[21.9336652,37.4194858],[21.9327637,37.4193979],[21.9325629,37.4193043],[21.9324431,37.41914],[21.932577,37.4187908],[21.9324499,37.4184822],[21.9322714,37.418398],[21.931596,37.418305],[21.9313847,37.4181842],[21.9313314,37.4180661],[21.9313387,37.4177237],[21.9313442,37.4175256],[21.931193,37.4172706],[21.9312183,37.4171719],[21.9309858,37.4171137],[21.9308872,37.4170039],[21.9302911,37.4169033],[21.9300569,37.4167911],[21.9295251,37.4168178],[21.9285558,37.4167287],[21.9283094,37.4166523],[21.9279318,37.4164114],[21.927845,37.4162837],[21.9275885,37.416162],[21.9274815,37.4159438],[21.9265851,37.4152612],[21.9262663,37.4149402],[21.9257807,37.4149317],[21.9255114,37.4148639],[21.925049,37.4144232],[21.924712,37.4143542],[21.9243717,37.4144022],[21.9235932,37.4143615],[21.9229991,37.4141889],[21.9227347,37.4143172],[21.9225883,37.414425],[21.9222329,37.4145246],[21.922113,37.4144527],[21.9221735,37.4143095],[21.9220738,37.4142357],[21.9217338,37.4142748],[21.9216354,37.4141559],[21.9214336,37.4140983],[21.9212238,37.4139233],[21.9209003,37.4137735],[21.9209092,37.4134492],[21.9206925,37.4127064],[21.9207069,37.4121839],[21.9208087,37.4117711],[21.9212371,37.4110645],[21.9217602,37.4105329],[21.9220684,37.4104212],[21.9229455,37.4097517],[21.9233856,37.4093629],[21.9239588,37.408652],[21.9244066,37.4083895],[21.9253369,37.4076758],[21.9253844,37.4076271],[21.924598,37.4074691],[21.9243425,37.4073114],[21.9241898,37.4070744],[21.924184,37.406876],[21.9250106,37.4070505],[21.9253963,37.4069942],[21.9257179,37.4068016],[21.9257023,37.4065489],[21.9257607,37.4064779],[21.9271743,37.406016],[21.9281702,37.4059524],[21.9286639,37.4060782],[21.9290154,37.4060303],[21.9296491,37.4064019],[21.9297176,37.406376],[21.9297098,37.4062497],[21.9297795,37.4061788],[21.9297373,37.40607],[21.9297212,37.4058353],[21.9298742,37.4056127],[21.9300583,37.4054898],[21.9305225,37.4054528],[21.9308911,37.4051979],[21.9315334,37.4052542],[21.931636,37.4052222],[21.9317267,37.4048881],[21.9321294,37.404947],[21.9324572,37.4047838],[21.9326546,37.4047444]]},{"id":19991,"author":"AnaDigit","name_GR":"Apollo Trails: \u039a\u03b1\u03ba\u03b1\u03bb\u03ad\u03c4\u03c1\u03b9-\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u0395\u03af\u03c1\u03b1\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Kakaletri_Eira_acropolis","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1719,"name_EN":"Apollo Trails: Kakaletri-acropolis of Eira","description_EN":"","ascent_time":45,"descent_time":35,"marker":"Red_stripe","level":12,"ascent":240,"descent":1,"maxelev":870,"minelev":616,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.92693 37.39831,21.93283 37.40464)","views":3,"millestones":"0,21.9326532,37.4047444#1,21.9302051,37.4008917#1.7,21.9304645,37.3982713","x":21.9286677,"y":37.4012973,"coor":[[21.9326532,37.4047444],[21.9324654,37.4045879],[21.9310046,37.4041748],[21.9308521,37.4040212],[21.9309111,37.4039321],[21.9306195,37.4038549],[21.9303421,37.4036698],[21.9302239,37.4034514],[21.9301542,37.4031077],[21.9299545,37.4029781],[21.9297582,37.4027223],[21.9293311,37.4026427],[21.9289963,37.4024926],[21.9288115,37.402228],[21.9284579,37.4019425],[21.9274762,37.4014927],[21.9270279,37.4009531],[21.9277627,37.4013445],[21.9286677,37.4012973],[21.9294086,37.4010579],[21.9301924,37.4009004],[21.9309579,37.4003821],[21.9308951,37.4000723],[21.9307272,37.4000153],[21.9303983,37.4000636],[21.9299171,37.4003075],[21.9294215,37.4002538],[21.9293214,37.400198],[21.9296607,37.3997713],[21.9304569,37.3991634],[21.9305354,37.3990183],[21.9300366,37.3990817],[21.9298083,37.3991678],[21.9294549,37.3992856],[21.9299074,37.3988113],[21.9300913,37.3986974],[21.9304645,37.3982713]]},{"id":19992,"author":"AnaDigit","name_GR":"Apollo Trails: \u03a0\u03ad\u03c4\u03c1\u03b1-\u039a\u03b1\u03ba\u03b1\u03bb\u03ad\u03c4\u03c1\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Petra_Kakaletri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5671,"name_EN":"Apollo Trails: Petra-Kakaletri","description_EN":"","ascent_time":130,"descent_time":135,"marker":"Red_stripe","level":12,"ascent":158,"descent":328,"maxelev":787,"minelev":576,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.93215 37.40002,21.95892 37.423)","views":0,"millestones":"0,21.9498780,37.4233099#1,21.9541099,37.4174985#2,21.9568242,37.4118720#3,21.9551272,37.4056899#4,21.9480798,37.4002996#5,21.9391205,37.4033983#5.7,21.9326521,37.4047466","x":21.9569604,"y":37.406814,"coor":[[21.949878,37.4233099],[21.9498903,37.4229857],[21.9498785,37.4224989],[21.9498772,37.4223411],[21.9500039,37.4222532],[21.9500773,37.4220877],[21.9504047,37.4218906],[21.9505185,37.4215366],[21.9504448,37.4213371],[21.9505703,37.4212942],[21.9507702,37.4214238],[21.9509663,37.4216886],[21.9515058,37.4217971],[21.9517659,37.4217903],[21.9517208,37.4215778],[21.951779,37.4215157],[21.9518792,37.4215715],[21.9518607,37.421418],[21.9519717,37.421492],[21.9520987,37.421395],[21.9522899,37.4214254],[21.9523002,37.4210471],[21.9525186,37.420821],[21.9531421,37.4205006],[21.9534038,37.4201492],[21.9534794,37.4198621],[21.9537677,37.4196508],[21.9534961,37.4192496],[21.9537539,37.4189116],[21.9539075,37.4178328],[21.9541017,37.4176649],[21.9541227,37.4171538],[21.9543336,37.4168781],[21.9557771,37.416146],[21.9561772,37.4159254],[21.9559301,37.4159211],[21.9562463,37.4157982],[21.9564727,37.415784],[21.9568367,37.4157701],[21.9570872,37.4157023],[21.9573924,37.4156197],[21.9572799,37.4153924],[21.9575306,37.4153157],[21.9579602,37.4153051],[21.9583525,37.4150054],[21.9584035,37.41479],[21.9585188,37.414783],[21.9585223,37.4141995],[21.9583644,37.4137732],[21.9584385,37.4135402],[21.9584666,37.413428],[21.9584121,37.413355],[21.9578173,37.4132095],[21.9568227,37.4123902],[21.9567848,37.4121192],[21.9569639,37.4109327],[21.956657,37.4105849],[21.9560804,37.4101874],[21.9558737,37.4098008],[21.955473,37.4094627],[21.9553455,37.4091924],[21.9555003,37.4084583],[21.9557691,37.4081565],[21.9558741,37.407915],[21.9561109,37.407633],[21.9562923,37.4070638],[21.9567549,37.4068916],[21.9569604,37.406814],[21.9571008,37.4066362],[21.9571199,37.4063481],[21.9569595,37.4063521],[21.9567879,37.4064303],[21.9560102,37.4063628],[21.9555102,37.4064713],[21.9553487,37.4065946],[21.9550963,37.4063199],[21.9551262,37.4056355],[21.9550032,37.4051737],[21.9548316,37.4048373],[21.9546008,37.404599],[21.9540986,37.404374],[21.9531402,37.4043034],[21.9521085,37.4040241],[21.9517742,37.4038561],[21.951539,37.4033654],[21.9514303,37.4027957],[21.9509946,37.4015783],[21.9506652,37.4012301],[21.9497349,37.4009616],[21.9495448,37.4008502],[21.9490588,37.4007674],[21.948749,37.4008657],[21.9484697,37.4007527],[21.9485674,37.400484],[21.9483558,37.4003722],[21.9468649,37.3999881],[21.9463954,37.3998087],[21.9458861,37.3998426],[21.945565,37.4000173],[21.9456175,37.4001624],[21.9455248,37.4002509],[21.9448939,37.4001859],[21.9443829,37.4002851],[21.9442101,37.4004083],[21.9437459,37.4004453],[21.9435733,37.4005594],[21.9433588,37.4009703],[21.9431732,37.4011473],[21.9428408,37.4013217],[21.942047,37.4014341],[21.9416175,37.4017263],[21.9411171,37.4022583],[21.9408817,37.4026057],[21.9406524,37.4027278],[21.9402773,37.403226],[21.9401136,37.403311],[21.9398057,37.4034183],[21.939491,37.4033587],[21.9391399,37.4033887],[21.9381663,37.4038764],[21.9379393,37.4039175],[21.9376354,37.4038761],[21.9375057,37.4040721],[21.9373,37.4041587],[21.9365327,37.4041272],[21.9358492,37.4040364],[21.9354029,37.4042449],[21.9351827,37.4044484],[21.9349226,37.404588],[21.9346463,37.4045697],[21.9342263,37.4046435],[21.933877,37.4046103],[21.9334572,37.4046751],[21.9329845,37.4046488],[21.9326521,37.4047466]]},{"id":19993,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u03a3\u03c4\u03b1\u03c5\u03c1\u03bf\u03cd\u03bb\u03b9-\u0392\u03af\u03b3\u03bb\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Stavrouli_Vigla","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4121,"name_EN":"Apollo Trails: Abeliona-Stavrouli-Vigla","description_EN":"","ascent_time":105,"descent_time":90,"marker":"Red_stripe","level":12,"ascent":396,"descent":34,"maxelev":1181,"minelev":797,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.92574 37.4234,21.94937 37.43676)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9431625,37.4343445#2,21.9336951,37.4360706#3,21.9301140,37.4304524#4.1,21.9270915,37.4230071","x":21.9336797,"y":37.43626,"coor":[[21.9490477,37.4352818],[21.9487222,37.4352784],[21.9484289,37.4352553],[21.9480652,37.4353323],[21.9477081,37.4351639],[21.9477288,37.4348218],[21.9475086,37.4346062],[21.9469077,37.4346768],[21.9463773,37.4346496],[21.9462422,37.4346292],[21.9460875,37.4345004],[21.9457103,37.434656],[21.9453056,37.4347076],[21.9455582,37.4345227],[21.9458848,37.4341904],[21.9463504,37.4341084],[21.9467082,37.4338352],[21.9466051,37.433473],[21.9464313,37.4332176],[21.9463406,37.433225],[21.9462326,37.4334575],[21.9461603,37.4334923],[21.9459093,37.433578],[21.9454606,37.4338676],[21.9449147,37.4339933],[21.9447224,37.433999],[21.9444219,37.4338315],[21.944094,37.4338349],[21.9435055,37.4338652],[21.9433761,37.4339373],[21.9432356,37.4341151],[21.9430381,37.4347245],[21.9426947,37.4348807],[21.9424565,37.4349126],[21.9419845,37.4352288],[21.9418597,37.4352447],[21.9414911,37.435085],[21.9413332,37.4350733],[21.940707,37.4352426],[21.9403561,37.4352635],[21.9401621,37.4353322],[21.9393776,37.4359134],[21.9387757,37.43602],[21.9383764,37.4357427],[21.9380506,37.4356739],[21.9373605,37.4356979],[21.9370697,37.4359993],[21.9370041,37.435917],[21.9365336,37.4357646],[21.9362536,37.4360841],[21.9359815,37.4361154],[21.9351484,37.4364073],[21.9344201,37.4361783],[21.9343214,37.4360684],[21.9341699,37.4361063],[21.9337986,37.4360458],[21.9336621,37.4360794],[21.9336797,37.43626],[21.9335869,37.4363485],[21.9335087,37.4367256],[21.933604,37.4368805],[21.933199,37.4368914],[21.9327658,37.4366135],[21.9323943,37.4365619],[21.9321294,37.436368],[21.9321369,37.4360978],[21.932004,37.4359963],[21.9319134,37.4360038],[21.9318736,37.4356921],[21.9320428,37.434884],[21.9320109,37.4348114],[21.9319092,37.4348096],[21.9318558,37.4342859],[21.9316669,37.4337599],[21.9316974,37.4334721],[21.9316314,37.4334078],[21.9314732,37.4334051],[21.9314762,37.433297],[21.9313878,37.4332233],[21.9309972,37.4330452],[21.93098,37.4328467],[21.9308298,37.4325557],[21.9308955,37.4322234],[21.9308425,37.4320963],[21.9306953,37.4320148],[21.9306549,37.4318429],[21.9305902,37.4318553],[21.930519,37.4318135],[21.9304459,37.4315959],[21.9304227,37.431208],[21.9301917,37.4306564],[21.9301796,37.4304782],[21.9294082,37.4301763],[21.9291758,37.4299064],[21.9288789,37.4299057],[21.9286289,37.4299554],[21.9278854,37.4298702],[21.9276239,37.4295142],[21.9272107,37.4293357],[21.9266315,37.4286226],[21.9264782,37.4285208],[21.9266321,37.4278566],[21.9266342,37.42737],[21.9264062,37.4270325],[21.9265258,37.4263857],[21.9263112,37.4255618],[21.9261326,37.4252388],[21.926066,37.4249537],[21.9261321,37.4246034],[21.9263851,37.4244456],[21.9269614,37.4236266],[21.927002,37.423384],[21.9271422,37.4232152],[21.9270915,37.4230071]]},{"id":19994,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1-\u03a3\u03c4\u03b1\u03c5\u03c1\u03bf\u03cd\u03bb\u03b9-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03ac\u03ba\u03c9\u03b2\u03bf\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Abeliona_Stavrouli_AgIakovos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3304,"name_EN":"Apollo Trails: Abeliona-Stavrouli-Agios Iakovos","description_EN":"","ascent_time":85,"descent_time":75,"marker":"Red_stripe","level":12,"ascent":281,"descent":35,"maxelev":1068,"minelev":797,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.92614 37.43327,21.9491 37.4393)","views":0,"millestones":"0,21.9490477,37.4352818#1,21.9431625,37.4343445#2,21.9336951,37.4360706#3,21.9275080,37.4375394#3.3,21.9268803,37.4379839","x":21.9380506,"y":37.4356739,"coor":[[21.9490477,37.4352818],[21.9487222,37.4352784],[21.9484289,37.4352553],[21.9480652,37.4353323],[21.9477081,37.4351639],[21.9477288,37.4348218],[21.9475086,37.4346062],[21.9469077,37.4346768],[21.9463773,37.4346496],[21.9462422,37.4346292],[21.9460875,37.4345004],[21.9457103,37.434656],[21.9453056,37.4347076],[21.9455582,37.4345227],[21.9458848,37.4341904],[21.9463504,37.4341084],[21.9467082,37.4338352],[21.9466051,37.433473],[21.9464313,37.4332176],[21.9463406,37.433225],[21.9462326,37.4334575],[21.9461603,37.4334923],[21.9459093,37.433578],[21.9454606,37.4338676],[21.9449147,37.4339933],[21.9447224,37.433999],[21.9444219,37.4338315],[21.944094,37.4338349],[21.9435055,37.4338652],[21.9433761,37.4339373],[21.9432356,37.4341151],[21.9430381,37.4347245],[21.9426947,37.4348807],[21.9424565,37.4349126],[21.9419845,37.4352288],[21.9418597,37.4352447],[21.9414911,37.435085],[21.9413332,37.4350733],[21.940707,37.4352426],[21.9403561,37.4352635],[21.9401621,37.4353322],[21.9393776,37.4359134],[21.9387757,37.43602],[21.9383764,37.4357427],[21.9380506,37.4356739],[21.9373605,37.4356979],[21.9370697,37.4359993],[21.9370041,37.435917],[21.9365336,37.4357646],[21.9362536,37.4360841],[21.9359815,37.4361154],[21.9351484,37.4364073],[21.9344201,37.4361783],[21.9343214,37.4360684],[21.9341699,37.4361063],[21.9337986,37.4360458],[21.9336621,37.4360794],[21.9336797,37.43626],[21.9335869,37.4363485],[21.9335087,37.4367256],[21.933604,37.4368805],[21.9336957,37.437157],[21.9335755,37.4374162],[21.9335621,37.4379026],[21.9332939,37.4382922],[21.9329729,37.43837],[21.9326922,37.438302],[21.9324545,37.4383158],[21.9318645,37.4383956],[21.9317263,37.4384923],[21.9314428,37.4385234],[21.930715,37.4382764],[21.9301307,37.4382797],[21.9298536,37.4384911],[21.9295912,37.4389912],[21.9292898,37.4392653],[21.9290841,37.4393473],[21.929315,37.438761],[21.9291115,37.4383519],[21.9287648,37.4382197],[21.9286116,37.4380367],[21.9280289,37.4378553],[21.927473,37.4375211],[21.9265336,37.4371622],[21.926209,37.4369176],[21.9262593,37.4371438],[21.9265362,37.437347],[21.9268803,37.4379839]]},{"id":19995,"author":"AnaDigit","name_GR":"Apollo Trails: \u0391\u03bd\u03b4\u03c1\u03af\u03c4\u03c3\u03b1\u03b9\u03bd\u03b1-\u0391\u03bc\u03c0\u03b5\u03bb\u03b9\u03ce\u03bd\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Andritsena_Abeliona","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11457,"name_EN":"Apollo Trails: Andritsena-Abeliona","description_EN":"","ascent_time":270,"descent_time":270,"marker":"Red_stripe","level":12,"ascent":650,"descent":596,"maxelev":1180,"minelev":758,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.89938 37.43327,21.9491 37.4836)","views":0,"millestones":"0,21.9043133,37.4836872#1,21.9012008,37.4785960#2,21.9053498,37.4732631#3,21.9106619,37.4709598#4,21.9199961,37.4720631#5,21.9254506,37.4667122#6,21.9265419,37.4586915#7,21.9258492,37.4518714#8,21.9301323,37.4454091#9,21.9335607,37.4387633#10,21.9402100,37.4353170#11,21.9461324,37.4345384#11.5,21.9490477,37.4352818","x":21.9262481,"y":37.4606,"coor":[[21.9043133,37.4836872],[21.9045188,37.4836187],[21.9046148,37.4835078],[21.9043742,37.4833278],[21.9040404,37.4831326],[21.9038022,37.4827791],[21.9036812,37.4822543],[21.9039062,37.4822808],[21.9042371,37.4822033],[21.9041964,37.4824459],[21.9042534,37.4824289],[21.9042735,37.4825194],[21.9043202,37.4824661],[21.9045116,37.4824966],[21.9046497,37.4824089],[21.9047854,37.4824113],[21.9049859,37.4823923],[21.9051588,37.4822782],[21.9050731,37.4821055],[21.9048292,37.4819299],[21.9044002,37.4819043],[21.9042548,37.4818477],[21.9042267,37.4816399],[21.9040383,37.4815014],[21.9036082,37.4815275],[21.9033779,37.4812711],[21.9027113,37.4808447],[21.9020602,37.4803442],[21.9019964,37.4801989],[21.9020823,37.4799571],[21.9020618,37.4794791],[21.9015916,37.4793085],[21.9015366,37.4788479],[21.9011933,37.4785895],[21.900846,37.4780696],[21.9007735,37.4776921],[21.9002606,37.4774306],[21.8999437,37.4770375],[21.8999704,37.4769298],[21.8997276,37.4763127],[21.8995842,37.476184],[21.8996948,37.4760823],[21.90049,37.4759522],[21.9012664,37.4756867],[21.902211,37.4750658],[21.9023256,37.4754148],[21.9027659,37.4750351],[21.9038296,37.4746034],[21.9044894,37.4740564],[21.904704,37.4739881],[21.9050283,37.4737145],[21.9051699,37.4735007],[21.9052832,37.4734937],[21.9053342,37.4732873],[21.9056416,37.4728061],[21.9057791,37.4727815],[21.9058077,37.4725657],[21.9062088,37.4723746],[21.9064127,37.4723602],[21.9066611,37.471968],[21.9068794,37.4714402],[21.9068613,37.4712776],[21.9069306,37.4712248],[21.9068555,37.4710793],[21.906689,37.4709682],[21.9066812,37.4708419],[21.9068181,37.4707992],[21.9069346,37.4702696],[21.9071549,37.4700752],[21.9071187,37.4697501],[21.9072548,37.4697345],[21.907399,37.4698362],[21.9074673,37.4698194],[21.9074414,37.469125],[21.9075821,37.4689473],[21.9078202,37.4689244],[21.9079683,37.4692876],[21.9086592,37.4696513],[21.9088066,37.4696358],[21.9096166,37.4697854],[21.9097503,37.4699567],[21.9104133,37.4705092],[21.9106715,37.4709824],[21.9109563,37.4713118],[21.9114024,37.471536],[21.9118205,37.4715434],[21.9120225,37.471601],[21.9129327,37.4722119],[21.9132573,37.4723303],[21.9133979,37.4723305],[21.9135016,37.4722603],[21.9136252,37.471884],[21.9137759,37.4717514],[21.9142751,37.4716882],[21.9148605,37.4713741],[21.9152121,37.4713352],[21.9154989,37.4711871],[21.9162405,37.4709478],[21.9168711,37.4706345],[21.9174317,37.4708066],[21.9182696,37.4711728],[21.9186252,37.4713954],[21.9192858,37.4716323],[21.9201373,37.4721453],[21.9205612,37.4721234],[21.9208959,37.471877],[21.9211244,37.4717909],[21.9214937,37.4719326],[21.9219265,37.4720754],[21.922804,37.472235],[21.9229868,37.4721661],[21.9232532,37.4719365],[21.9235599,37.4718878],[21.9238007,37.4717659],[21.9242205,37.4713046],[21.9242993,37.4709095],[21.924108,37.470059],[21.9243325,37.4697114],[21.9246988,37.4695466],[21.9248384,37.4694049],[21.9248326,37.4692065],[21.9246924,37.4689607],[21.9248473,37.4686751],[21.9247887,37.4683406],[21.9251292,37.4678869],[21.9252533,37.467078],[21.9254559,37.4667031],[21.9258672,37.4665481],[21.9259287,37.4663689],[21.9262068,37.4661215],[21.9262934,37.4658526],[21.9265254,37.4656404],[21.9264656,37.465351],[21.926198,37.4648055],[21.9262315,37.4644096],[21.9260687,37.4641634],[21.926033,37.4638203],[21.9258857,37.4634212],[21.9257006,37.4631656],[21.925804,37.4626988],[21.9258102,37.4622934],[21.9258655,37.462033],[21.9257968,37.4616533],[21.9258392,37.4613476],[21.926039,37.4610469],[21.9258401,37.460906],[21.925869,37.4608187],[21.9262481,37.4606],[21.9261479,37.4605442],[21.9262757,37.4604203],[21.9261473,37.4601566],[21.9262221,37.4599056],[21.9263722,37.4597911],[21.9266156,37.4591645],[21.9265337,37.4588567],[21.9265554,37.4584785],[21.9260481,37.458019],[21.925613,37.4573986],[21.9256009,37.4570198],[21.9258484,37.4566547],[21.9261808,37.4564893],[21.9264486,37.4562056],[21.9263819,37.4553483],[21.9268362,37.4548606],[21.9269961,37.4548003],[21.9268474,37.4544552],[21.9266636,37.454229],[21.926518,37.4542061],[21.9259759,37.4541876],[21.9250912,37.4538837],[21.9251557,37.4535964],[21.9249909,37.4534223],[21.925248,37.4531204],[21.9256639,37.4527943],[21.9257035,37.4525877],[21.9255968,37.4523605],[21.9256209,37.4523068],[21.9257113,37.4523084],[21.9257275,37.4521285],[21.9258177,37.4521391],[21.9258779,37.4520049],[21.9258276,37.4517788],[21.9256963,37.4516232],[21.9255627,37.4515488],[21.9251567,37.4515146],[21.9250233,37.4514312],[21.9249148,37.4512671],[21.9250235,37.4510166],[21.9254854,37.4506643],[21.9255488,37.450413],[21.9255163,37.4499528],[21.9263251,37.4493182],[21.926563,37.4489551],[21.92707,37.4486193],[21.9280137,37.4475994],[21.928819,37.4470908],[21.9298725,37.4461901],[21.9300095,37.4461384],[21.9301744,37.4461683],[21.9301231,37.4459782],[21.9299225,37.4458755],[21.93006,37.4458058],[21.9300527,37.4456615],[21.930134,37.4455818],[21.9299994,37.4455434],[21.9301854,37.4453574],[21.9302019,37.4451685],[21.9304238,37.444911],[21.9304528,37.4446772],[21.9307332,37.4443486],[21.9309041,37.4442976],[21.9310459,37.4440747],[21.931703,37.4434667],[21.9322292,37.4432416],[21.9327584,37.4433139],[21.9329228,37.4430915],[21.9331414,37.4429511],[21.9321464,37.4421406],[21.9317216,37.441971],[21.9317064,37.4417003],[21.9317451,37.4415298],[21.9320003,37.4412909],[21.9322528,37.4411511],[21.9322695,37.4409532],[21.932926,37.4400995],[21.9329924,37.4397402],[21.9333311,37.4393405],[21.9333828,37.4391071],[21.9336265,37.4388771],[21.9332921,37.4382944],[21.93356,37.4379048],[21.9335733,37.4374184],[21.9336935,37.4371592],[21.9336022,37.4368827],[21.9335069,37.4367278],[21.933585,37.4363507],[21.9336779,37.4362622],[21.9336602,37.4360816],[21.9337968,37.436048],[21.9341681,37.4361085],[21.9343192,37.4360706],[21.9344179,37.4361805],[21.9351463,37.4364095],[21.9359793,37.4361177],[21.9362514,37.4360864],[21.9365314,37.4357668],[21.9370023,37.4359192],[21.9370678,37.4360015],[21.9373587,37.4357001],[21.9380487,37.4356761],[21.9383746,37.4357449],[21.9387739,37.4360222],[21.9393758,37.4359156],[21.9401602,37.4353345],[21.9403543,37.4352657],[21.9407052,37.4352448],[21.9413314,37.4350755],[21.9414893,37.4350873],[21.9418579,37.4352469],[21.9419827,37.435231],[21.9424547,37.4349148],[21.9426929,37.4348829],[21.9430362,37.4347267],[21.9432337,37.4341173],[21.9433742,37.4339395],[21.943504,37.4338674],[21.9440926,37.4338371],[21.9444204,37.4338338],[21.944721,37.4340012],[21.9449132,37.4339955],[21.9454591,37.4338699],[21.9459078,37.4335803],[21.9461588,37.4334945],[21.9462315,37.4334575],[21.9463396,37.433225],[21.9464302,37.4332176],[21.946604,37.4334729],[21.9467072,37.4338352],[21.9463493,37.4341084],[21.9458837,37.4341904],[21.9455571,37.4345227],[21.9453045,37.4347076],[21.9457096,37.434656],[21.9460868,37.4345004],[21.9462415,37.4346292],[21.9463766,37.4346496],[21.946907,37.4346768],[21.9475079,37.4346062],[21.9477281,37.4348218],[21.9477074,37.4351639],[21.9480645,37.4353323],[21.9484286,37.4352553],[21.9487218,37.4352784],[21.9490477,37.4352818]]},{"id":19996,"author":"AnaDigit","name_GR":"Apollo Trails: \u039d\u03ad\u03b4\u03b1-\u0392\u03c9\u03bc\u03cc\u03c2 \u0394\u03b9\u03cc\u03c2 \u03c3\u03c4\u03bf \u039b\u03cd\u03ba\u03b1\u03b9\u03bf","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Neda_Zeus_altar","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5574,"name_EN":"Apollo Trails: Neda-Zeus altar on Mt Lykeon","description_EN":"","ascent_time":135,"descent_time":115,"marker":"Red_stripe","level":12,"ascent":596,"descent":31,"maxelev":1375,"minelev":793,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.96208 37.42485,21.98982 37.44618)","views":2,"millestones":"0,21.9626274,37.4261170#1,21.9682872,37.4248373#2,21.9738478,37.4271733#3,21.9828708,37.4298536#4,21.9862657,37.4367978#5,21.9877576,37.4430121#5.6,21.9884431,37.4465574","x":21.9833135,"y":37.4300812,"coor":[[21.9626274,37.426117],[21.9629212,37.4262842],[21.9642779,37.4262626],[21.9648357,37.4261099],[21.9652623,37.4262164],[21.9651951,37.4266118],[21.9652721,37.4266244],[21.9653384,37.4264971],[21.9655441,37.4264105],[21.9661664,37.4264866],[21.9663724,37.426391],[21.9660831,37.4262238],[21.9660914,37.4259175],[21.9657442,37.4258034],[21.965456,37.4251766],[21.9650258,37.4252052],[21.9649254,37.4251584],[21.9649055,37.425059],[21.9652652,37.4247137],[21.9659617,37.4244463],[21.9659869,37.4247284],[21.966535,37.4249361],[21.967666,37.4249014],[21.9682106,37.4248207],[21.9684352,37.4248696],[21.9687052,37.4253339],[21.9691895,37.4258108],[21.969251,37.4260462],[21.9692162,37.4264962],[21.9695726,37.4266916],[21.9696441,37.4269722],[21.9698101,37.4271012],[21.9703905,37.426949],[21.971371,37.4270469],[21.9716399,37.4271327],[21.9718821,37.4273711],[21.9723438,37.4274331],[21.9728789,37.4277037],[21.9729919,37.4277056],[21.9726433,37.427222],[21.9717113,37.4265841],[21.9716791,37.4265205],[21.9717473,37.4265036],[21.9723058,37.4267475],[21.973372,37.4270182],[21.9747502,37.4274564],[21.9756213,37.4278408],[21.9764388,37.4281162],[21.9768396,37.4283393],[21.9775026,37.4289004],[21.9775718,37.4288475],[21.9773138,37.4283564],[21.9773283,37.4282395],[21.9774653,37.4281878],[21.9780733,37.4282703],[21.979519,37.4287186],[21.9806314,37.4293775],[21.981548,37.4297537],[21.9827672,37.4298015],[21.9833135,37.4300812],[21.9851005,37.4304744],[21.9851551,37.430784],[21.9855578,37.4309351],[21.9860661,37.4317909],[21.9861626,37.4324054],[21.9864928,37.4327355],[21.9866208,37.4334406],[21.9870339,37.4340515],[21.9871259,37.4344135],[21.9870824,37.4347733],[21.9872418,37.4351365],[21.9870534,37.4354216],[21.9868575,37.4355625],[21.9867916,37.4359129],[21.9865466,37.4361971],[21.9864101,37.4362308],[21.9863774,37.4366088],[21.9861644,37.4369656],[21.9863222,37.4374009],[21.9861236,37.4376408],[21.9859644,37.4376404],[21.9858942,37.4377293],[21.985967,37.4379649],[21.9862102,37.4381673],[21.9860311,37.4385247],[21.9858936,37.4385945],[21.9852703,37.4386559],[21.9850302,37.43876],[21.9851347,37.4390772],[21.9853661,37.4392974],[21.9855344,37.4393454],[21.9857841,37.4393046],[21.9860062,37.4394526],[21.9863559,37.4394765],[21.9864244,37.4398742],[21.9860414,37.4402462],[21.9859833,37.4406215],[21.9860588,37.440758],[21.9865725,37.440992],[21.9866467,37.4411735],[21.9865806,37.4415329],[21.9866401,37.4418403],[21.9865108,37.4420274],[21.9866038,37.4423534],[21.986566,37.442497],[21.9873864,37.4426732],[21.9874265,37.4428631],[21.9875818,37.4429739],[21.9878515,37.4430326],[21.9881582,37.4433983],[21.9881875,37.4439936],[21.98843,37.444223],[21.9886097,37.4455329],[21.9887053,37.4457598],[21.9889033,37.4460448],[21.9892463,37.446321],[21.9890856,37.4466224],[21.9884976,37.4466304],[21.9884431,37.4465574]]},{"id":19997,"author":"AnaDigit","name_GR":"Apollo Trails: \u039d\u03ad\u03b4\u03b1-\u0399\u03b5\u03c1\u03cc \u03a0\u03ac\u03bd\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Neda_Pan_temple","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":2488,"name_EN":"Apollo Trails: Neda-temple of the Pan","description_EN":"","ascent_time":55,"descent_time":50,"marker":"Red_stripe","level":12,"ascent":168,"descent":59,"maxelev":918,"minelev":793,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.96243 37.42628,21.97509 37.43349)","views":0,"millestones":"0,21.9626274,37.4261170#1,21.9695642,37.4286297#2,21.9725004,37.4321874#2.5,21.9717381,37.4336367","x":21.9715683,"y":37.4298779,"coor":[[21.9626274,37.426117],[21.9629212,37.4262842],[21.9642779,37.4262626],[21.9648357,37.4261099],[21.9652623,37.4262164],[21.9651951,37.4266118],[21.9652713,37.4266244],[21.9654106,37.4269062],[21.9658311,37.4272378],[21.9655773,37.4278463],[21.9656737,37.4284608],[21.965862,37.4285992],[21.9660526,37.4286566],[21.9664496,37.4286003],[21.9665424,37.4285118],[21.9665728,37.4282239],[21.9666789,37.4280635],[21.9674266,37.4279953],[21.9677821,37.4278031],[21.9680424,37.4277896],[21.968131,37.4278542],[21.9681154,37.4280161],[21.9682249,37.4281442],[21.9682731,37.4284514],[21.9685268,37.4286811],[21.9687066,37.4287202],[21.9692296,37.4286031],[21.9694653,37.4286612],[21.9697388,37.4285758],[21.9699856,37.4286431],[21.9700835,37.4292035],[21.9705461,37.4292295],[21.9706342,37.4297357],[21.9709019,37.4298665],[21.9711718,37.4299162],[21.9715683,37.4298779],[21.9719057,37.4299378],[21.9721213,37.4299054],[21.9723299,37.4301343],[21.9726594,37.4300679],[21.9729374,37.4302349],[21.973371,37.4300801],[21.9735061,37.4301004],[21.9735894,37.4303632],[21.9740196,37.4303345],[21.9741143,37.4305975],[21.9745144,37.4308477],[21.974887,37.4312777],[21.9749499,37.431459],[21.9747889,37.4315644],[21.9744659,37.4313876],[21.9740121,37.4314519],[21.973755,37.4313484],[21.9731521,37.4313741],[21.9726262,37.4315994],[21.9726287,37.4319239],[21.9724734,37.4322366],[21.972555,37.4325625],[21.9719505,37.4327684],[21.9714254,37.4325431],[21.971142,37.4325743],[21.9707298,37.4327745],[21.9705729,37.4331413],[21.9704006,37.4332465],[21.9701506,37.4332962],[21.9701261,37.4333679],[21.9701891,37.4334141],[21.9708841,37.4333359],[21.9710584,37.433447],[21.9716246,37.4336528],[21.9717381,37.4336367]]},{"id":19998,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u0386\u03bd\u03c9 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2-\u039d\u03ad\u03b4\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_AnoKaryes_Neda","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6951,"name_EN":"Arcadian Trails: Ano Karyes-Neda","description_EN":"","ascent_time":155,"descent_time":155,"marker":"No_marks","level":12,"ascent":243,"descent":394,"maxelev":1165,"minelev":793,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.96215 37.42509,22.00378 37.44369)","views":0,"millestones":"0,22.0034505,37.4376870#1,22.0019452,37.4437390#2,21.9964369,37.4367412#3,21.9880049,37.4357698#4,21.9817511,37.4297558#5,21.9727740,37.4268701#6,21.9671595,37.4249139#7.0,21.9626287,37.4261192","x":21.9875918,"y":37.4357192,"coor":[[22.0034505,37.437687],[22.0030089,37.4379297],[22.0027983,37.4379464],[22.0028411,37.4380372],[22.0025669,37.4382286],[22.0026721,37.4383476],[22.002417,37.4384311],[22.0021661,37.438517],[22.0020346,37.4387851],[22.0018611,37.4389354],[22.0018274,37.4390881],[22.0019356,37.4392701],[22.0020452,37.4398217],[22.0020474,37.4401642],[22.0019741,37.4403703],[22.0018371,37.4405933],[22.0018408,37.4408817],[22.0015858,37.4415443],[22.0015796,37.4417785],[22.001643,37.4419418],[22.0019,37.4420543],[22.0020286,37.4423179],[22.0025313,37.4429662],[22.002648,37.4441037],[22.0028125,37.4443859],[22.002182,37.4442941],[22.0020173,37.4441111],[22.001898,37.4434963],[22.0014473,37.44302],[22.0010795,37.4428245],[22.000773,37.4428734],[22.0004247,37.4427954],[22.0003097,37.4420184],[22.0001134,37.441792],[21.9998282,37.4410392],[21.9995128,37.4405742],[21.9994212,37.4401942],[21.9990525,37.4396111],[21.9988548,37.4393937],[21.9982534,37.4390591],[21.9981246,37.4388046],[21.9980058,37.4384241],[21.9978625,37.4382864],[21.9975015,37.4382623],[21.9971368,37.4379497],[21.9971404,37.437391],[21.9968669,37.4370529],[21.9965095,37.4368936],[21.9964196,37.4367006],[21.9960696,37.4360931],[21.9961438,37.435851],[21.996354,37.4355977],[21.9962579,37.4353888],[21.9956298,37.4352069],[21.9950616,37.4348999],[21.994809,37.4346252],[21.9942648,37.4342645],[21.9937825,37.4341302],[21.9931921,37.4342283],[21.9925706,37.4342268],[21.9918418,37.4344307],[21.9913198,37.4345119],[21.9909585,37.4344968],[21.9908415,37.434648],[21.9903353,37.4349818],[21.9897921,37.4350086],[21.9893683,37.4352177],[21.9887299,37.4354232],[21.9884056,37.435715],[21.9881321,37.4358005],[21.9880542,37.4357541],[21.9878148,37.4358312],[21.9875918,37.4357192],[21.9872871,37.4352814],[21.9872436,37.4351365],[21.9870838,37.4347733],[21.9871274,37.4344135],[21.9870353,37.4340515],[21.9866222,37.4334406],[21.9864942,37.4327355],[21.986164,37.4324054],[21.9860675,37.4317909],[21.9855593,37.4309351],[21.9851565,37.4307841],[21.9851015,37.4304744],[21.9833142,37.4300812],[21.9827679,37.4298015],[21.9815487,37.4297537],[21.9806321,37.4293775],[21.9795197,37.4287186],[21.978074,37.4282703],[21.977466,37.4281878],[21.977329,37.4282395],[21.9773145,37.4283565],[21.9775725,37.4288475],[21.9775033,37.4289004],[21.9768403,37.4283393],[21.9764395,37.4281162],[21.975622,37.4278408],[21.9747509,37.4274564],[21.9733727,37.4270182],[21.9723065,37.4267476],[21.971748,37.4265037],[21.9716798,37.4265205],[21.971712,37.4265842],[21.972644,37.427222],[21.9729926,37.4277056],[21.9728796,37.4277037],[21.9723445,37.4274331],[21.9718828,37.4273711],[21.9716407,37.4271327],[21.9713718,37.4270469],[21.9703912,37.426949],[21.9698108,37.4271013],[21.9696448,37.4269722],[21.9695733,37.4266916],[21.9692169,37.4264962],[21.9692517,37.4260462],[21.9691902,37.4258108],[21.9687059,37.4253339],[21.968436,37.4248696],[21.9682113,37.4248207],[21.9676667,37.4249015],[21.9665357,37.4249361],[21.9659876,37.4247284],[21.9659624,37.4244486],[21.9652658,37.4247159],[21.9649061,37.4250612],[21.9649261,37.4251607],[21.9650265,37.4252075],[21.9654567,37.4251789],[21.9657448,37.4258057],[21.966092,37.4259198],[21.9660838,37.4262261],[21.966373,37.4263933],[21.966167,37.4264888],[21.9655451,37.4264128],[21.9653394,37.4264994],[21.9652727,37.4266267],[21.9651964,37.4266141],[21.9652636,37.4262187],[21.9648371,37.4261122],[21.9642792,37.4262648],[21.9629226,37.4262865],[21.9626287,37.4261192]]},{"id":19999,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u039a\u03bf\u03c5\u03c1\u03bf\u03c5\u03bd\u03b9\u03bf\u03cd-\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5 \u03a3\u03ba\u03bf\u03c1\u03c4\u03ce\u03bd","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Kourouniou_Skorta_castle","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1319,"name_EN":"Arcadian Trails: Kourouniou-castle of Agios Georgios Skorton","description_EN":"","ascent_time":65,"descent_time":55,"marker":"No_marks","level":12,"ascent":341,"descent":37,"maxelev":1009,"minelev":675,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.01846 37.44219,22.03623 37.45205)","views":0,"millestones":"0,22.0359629,37.4523430#1,22.0280435,37.4485144#2,22.0211332,37.4449854#1.3,22.0194306,37.4422098","x":22.0237072,"y":37.445278,"coor":[[22.0359629,37.452343],[22.0356117,37.4521163],[22.0354657,37.4519427],[22.0350575,37.4518142],[22.03495,37.4516051],[22.0349608,37.4513665],[22.0345866,37.4511147],[22.0344915,37.4509419],[22.0344305,37.4507741],[22.0341435,37.4502962],[22.0339552,37.4501489],[22.0336531,37.4499749],[22.0329013,37.4493315],[22.0317749,37.4491775],[22.0313675,37.4489793],[22.0302851,37.4493037],[22.0297199,37.4493033],[22.02888,37.4494335],[22.0288091,37.4495494],[22.0285288,37.4496371],[22.0285349,37.4495403],[22.0282809,37.4493108],[22.0280228,37.4488108],[22.028043,37.4484687],[22.0278689,37.4482134],[22.0279195,37.448007],[22.0278428,37.4479156],[22.0272393,37.4476509],[22.0269928,37.4473539],[22.0265192,37.4473099],[22.0263655,37.4471361],[22.0260011,37.4472382],[22.0258453,37.4471455],[22.0256144,37.4471957],[22.0253397,37.4468937],[22.0250584,37.4468439],[22.0243215,37.4464982],[22.0242395,37.4464878],[22.0242277,37.4459806],[22.0243587,37.4455525],[22.0237072,37.445278],[22.0229798,37.4456015],[22.022715,37.4456106],[22.0221765,37.4454574],[22.0217241,37.4454679],[22.0217034,37.4453954],[22.0218105,37.4451899],[22.0217475,37.4450086],[22.021558,37.4449063],[22.021276,37.4448836],[22.0209882,37.4446534],[22.0209312,37.4446705],[22.0209519,37.444743],[22.0213233,37.4452358],[22.0210982,37.445196],[22.0207092,37.4449462],[22.0200522,37.4449982],[22.0198421,37.4448235],[22.0195957,37.4447383],[22.0194422,37.4445554],[22.0188654,37.4441402],[22.0188386,37.4441668],[22.0186964,37.4439842],[22.0186779,37.4438306],[22.0188349,37.4438783],[22.0190637,37.443774],[22.019112,37.4436577],[22.019036,37.4435392],[22.0190412,37.4433411],[22.0197509,37.4430015],[22.0200417,37.4426909],[22.0204337,37.4424001],[22.0205863,37.4421863],[22.0205873,37.442067],[22.0204077,37.4420189],[22.0203762,37.4419282],[22.0197628,37.4420441],[22.019565,37.4422571],[22.0194744,37.4422646],[22.0194306,37.4422098]]},{"id":20000,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u038a\u03c3\u03b1\u03c1\u03b7\u03c2-\u03a7\u03c1\u03bf\u03cd\u03c3\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Isaris_Chrousa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3575,"name_EN":"Arcadian Trails: Isaris-Chrousa","description_EN":"","ascent_time":85,"descent_time":85,"marker":"No_marks","level":12,"ascent":89,"descent":130,"maxelev":600,"minelev":472,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.03148 37.36239,22.05292 37.3751)","views":0,"millestones":"0,22.0315188,37.3735191#1,22.0398333,37.3743576#2,22.0498471,37.3723514#3,22.0487352,37.3645153#3.6,22.0527210,37.3623861","x":22.0484766,"y":37.3728201,"coor":[[22.0315188,37.3735191],[22.0318725,37.3735024],[22.0319301,37.373242],[22.0321819,37.3737103],[22.0323044,37.3737755],[22.0327557,37.373792],[22.0331187,37.3737259],[22.0330294,37.374121],[22.0332739,37.3742693],[22.033737,37.3747005],[22.0338007,37.3748548],[22.0336166,37.3749869],[22.0349103,37.3747831],[22.0351356,37.3748049],[22.0353174,37.3747629],[22.0359695,37.3751725],[22.0359309,37.3748249],[22.0364831,37.3748701],[22.0372633,37.374829],[22.0373779,37.3747678],[22.0376824,37.3747819],[22.039116,37.3743731],[22.0397173,37.3743605],[22.0401805,37.3743502],[22.0406403,37.3744749],[22.0408701,37.3744742],[22.0414265,37.3747899],[22.0418214,37.3748573],[22.0420476,37.374843],[22.0423326,37.3747395],[22.042989,37.3747955],[22.0433721,37.3747207],[22.0443543,37.3742953],[22.0448415,37.3742313],[22.0452516,37.3736613],[22.0457353,37.3737324],[22.0474118,37.3735348],[22.0481515,37.3731662],[22.0484766,37.3728201],[22.0492699,37.3726326],[22.0497836,37.3724158],[22.0499343,37.3722651],[22.0499174,37.3720485],[22.0496327,37.3717013],[22.0496397,37.3714311],[22.0493986,37.3707151],[22.0497077,37.3701164],[22.0500337,37.3697342],[22.0501152,37.3692038],[22.0503111,37.3690539],[22.0503957,37.3688389],[22.0500405,37.3681662],[22.0499999,37.3675527],[22.0494858,37.3673459],[22.0493147,37.3672237],[22.0489149,37.3669647],[22.0488285,37.3668101],[22.0489926,37.3665266],[22.0491653,37.3659617],[22.0492413,37.3652059],[22.0491879,37.3650879],[22.0488615,37.3650464],[22.0487623,37.3649547],[22.0487045,37.3641336],[22.0488112,37.3639371],[22.049174,37.3637178],[22.0493113,37.3638259],[22.0496047,37.3638308],[22.0501437,37.3639478],[22.050274,37.3641482],[22.050869,37.3636646],[22.0519783,37.3634486],[22.052235,37.3631283],[22.0527361,37.3627581],[22.052907,37.3626978],[22.0528999,37.3625355],[22.052721,37.3623861]]},{"id":20001,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u03a7\u03c1\u03ac\u03bd\u03bf\u03b9-\u0391\u03b3\u03af\u03b1 \u0398\u03b5\u03bf\u03b4\u03ce\u03c1\u03b1","description_GR":"9","path":"PELOPONNESE\/Pelop_ArcadianTrails_Chranoi_AgTheodora","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9676,"name_EN":"Arcadian Trails: Chranoi-Agia Theodora","description_EN":"","ascent_time":240,"descent_time":230,"marker":"No_marks","level":10,"ascent":412,"descent":440,"maxelev":524,"minelev":330,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.97867 37.32185,22.03327 37.35357)","views":0,"millestones":"0,22.0332711,37.3218506#1,22.0264073,37.3283715#2,22.0216629,37.3251836#3,22.0160480,37.3292184#4,22.0078207,37.3329807#5,22.0009117,37.3331496#6,22.0015072,37.3391910#7,21.9922878,37.3405631#8,21.9863224,37.3448704#9,21.9811642,37.3493965#9.7,21.9786734,37.3535708","x":21.9995682,"y":37.3329813,"coor":[[22.0332711,37.3218506],[22.0331831,37.3219415],[22.0330609,37.3223],[22.0328637,37.322504],[22.0328147,37.3226947],[22.0308719,37.3244919],[22.0289098,37.3263338],[22.0287444,37.3266194],[22.0285197,37.3274448],[22.0281688,37.3279167],[22.0276515,37.3282775],[22.0269816,37.3284286],[22.0264857,37.3284023],[22.026039,37.3282236],[22.0257067,37.3279837],[22.0254668,37.3276643],[22.0253453,37.3271305],[22.0255611,37.3262149],[22.0255478,37.3258632],[22.0253159,37.3252374],[22.0249293,37.3248209],[22.0242317,37.3240545],[22.0240763,37.3239144],[22.0240486,37.3236796],[22.0241525,37.3235912],[22.0239741,37.3235072],[22.023937,37.3232001],[22.0237829,37.3230533],[22.0236706,37.3230334],[22.0234069,37.3231913],[22.022937,37.3238954],[22.0221757,37.3246037],[22.0216876,37.3251453],[22.021405,37.3255911],[22.0209312,37.3260158],[22.0207593,37.3265447],[22.0205247,37.3268832],[22.020593,37.3272899],[22.0203601,37.3276195],[22.0201081,37.3277595],[22.0197817,37.327727],[22.0185611,37.3273641],[22.0182962,37.3275669],[22.0181716,37.3275828],[22.0178936,37.327425],[22.0175014,37.3273193],[22.0173595,37.3271366],[22.0166916,37.3272156],[22.0162419,37.3275775],[22.0162844,37.3276774],[22.0164623,37.3277795],[22.0165687,37.3280246],[22.0165433,37.3281323],[22.0161992,37.3283429],[22.0162868,37.3284435],[22.0162497,37.328569],[22.0163831,37.3286434],[22.0165699,37.3289191],[22.0163301,37.3290233],[22.0163047,37.329131],[22.0163819,37.329281],[22.0158653,37.3291822],[22.0152315,37.3292527],[22.0147767,37.3293802],[22.0131906,37.3300385],[22.0126676,37.330183],[22.0113686,37.3302242],[22.0101114,37.3303923],[22.0090035,37.3304638],[22.0084695,37.330599],[22.008229,37.3307302],[22.0077884,37.3311734],[22.0074799,37.331745],[22.007499,37.3323041],[22.0078628,37.3330582],[22.0079327,37.3334019],[22.007879,37.3337254],[22.0076542,37.3341182],[22.0070336,37.3345403],[22.0065449,37.3346673],[22.005891,37.3346382],[22.0055331,37.334515],[22.0052577,37.3343526],[22.005532,37.3342221],[22.0054336,37.3341033],[22.0055615,37.3339612],[22.0054323,37.3337247],[22.0051898,37.3335043],[22.0049045,37.3336257],[22.0044532,37.3336181],[22.0042557,37.3338311],[22.0041333,37.3341895],[22.0039716,37.334331],[22.0029778,37.3343502],[22.0018813,37.3339892],[22.0017581,37.3335275],[22.0015622,37.3332538],[22.0013954,37.3331609],[22.0011253,37.3331293],[22.0005821,37.3331832],[21.9995682,37.3329813],[21.9994825,37.3332322],[21.999207,37.3334078],[21.9991928,37.3335157],[22.0000625,37.3339179],[22.000233,37.3342993],[22.0006843,37.334307],[22.0008732,37.3344183],[22.0010146,37.334619],[22.0009369,37.3349962],[22.0015598,37.3353402],[22.0018132,37.3360024],[22.002191,37.336225],[22.002245,37.3363161],[22.0019816,37.3368884],[22.0016496,37.3370631],[22.0014468,37.3374742],[22.0012952,37.3380845],[22.0014229,37.338375],[22.0015145,37.3391787],[22.0013489,37.3394643],[22.0012357,37.339904],[22.0009673,37.3402329],[22.0004299,37.3404942],[22.0000245,37.3408839],[21.9978033,37.3412158],[21.9970488,37.3415725],[21.9969129,37.3415883],[21.9959484,37.3413556],[21.9947368,37.3414973],[21.9944632,37.3416008],[21.9938016,37.3414364],[21.9931573,37.3414705],[21.992583,37.3409921],[21.9921699,37.3403993],[21.9920136,37.3403336],[21.9918348,37.340691],[21.9913179,37.3410247],[21.9907877,37.3410157],[21.9903515,37.3412877],[21.9897504,37.3413946],[21.9896284,37.341735],[21.9890424,37.3421216],[21.9889183,37.3421195],[21.9885085,37.3418241],[21.987725,37.3415765],[21.9876544,37.3416834],[21.9876611,37.3418548],[21.9880116,37.3422573],[21.9880306,37.3423928],[21.9878791,37.3424894],[21.9876952,37.3426124],[21.9875421,37.3428531],[21.9874515,37.3433248],[21.9873848,37.3436706],[21.9872199,37.3439291],[21.9870019,37.3440606],[21.9864156,37.3440326],[21.9863244,37.3440671],[21.9864055,37.344411],[21.9863253,37.3448782],[21.9864084,37.34515],[21.9863906,37.3453931],[21.9857997,37.3459598],[21.9856127,37.3466235],[21.9854842,37.3467836],[21.9852873,37.3469334],[21.9851509,37.3469671],[21.9843164,37.3469349],[21.9838557,37.3468549],[21.9838415,37.3469628],[21.9840691,37.3473182],[21.9840506,37.3475883],[21.9833771,37.3478652],[21.9828958,37.3481363],[21.9824434,37.3481647],[21.9822333,37.3484225],[21.982179,37.348764],[21.9817752,37.3490906],[21.9813575,37.3490924],[21.980813,37.3487677],[21.9806221,37.3487284],[21.9803842,37.3487604],[21.9803813,37.3488685],[21.9806147,37.3490077],[21.9808115,37.3492454],[21.9814587,37.3495268],[21.981571,37.3497089],[21.9816137,37.3497998],[21.981185,37.3506306],[21.9811365,37.3508889],[21.9805722,37.3513028],[21.9803602,37.3516327],[21.9801848,37.3518572],[21.9794679,37.3520703],[21.9792023,37.3522911],[21.9791192,37.3524429],[21.9791655,37.3528222],[21.9787942,37.3531944],[21.9786734,37.3535708]]},{"id":20002,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u038a\u03c3\u03b1\u03c1\u03b7\u03c2-\u03a3\u03b9\u03b4\u03b7\u03c1. \u03c3\u03c4\u03b1\u03b8\u03bc\u03cc\u03c2 \u038a\u03c3\u03b1\u03c1\u03b7","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Isaris_IsarisRRStation","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":5357,"name_EN":"Arcadian Trails: Isaris-Isaris RR Station","description_EN":"","ascent_time":90,"descent_time":100,"marker":"No_marks","level":12,"ascent":35,"descent":392,"maxelev":808,"minelev":444,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.01296 37.3402,22.02497 37.36354)","views":0,"millestones":"0,22.0129623,37.3635361#1,22.0164227,37.3565970#2,22.0177771,37.3504884#3,22.0202664,37.3480408#4,22.0222090,37.3455145#5,22.0245205,37.3422676#5.4,22.0231174,37.3401704","x":22.0194924,"y":37.3508931,"coor":[[22.0129623,37.3635361],[22.0134951,37.3634189],[22.013734,37.3633508],[22.0136828,37.3631111],[22.0136477,37.3628897],[22.0137501,37.3624318],[22.0140791,37.3619417],[22.014354,37.3617931],[22.0142981,37.3616547],[22.0143703,37.3614847],[22.0142382,37.3613563],[22.0142086,37.3611935],[22.014365,37.3610835],[22.0145282,37.3610637],[22.0147421,37.3610853],[22.0150374,37.3610182],[22.0151201,37.3610556],[22.0151909,37.3610613],[22.0154021,37.3607585],[22.0155258,37.360346],[22.0156533,37.3601431],[22.0157556,37.3596852],[22.0164888,37.3587602],[22.0168371,37.3583154],[22.0169748,37.357804],[22.0169616,37.357583],[22.0162856,37.3570985],[22.0161994,37.3569438],[22.0164468,37.3565514],[22.016444,37.3562269],[22.016872,37.3558376],[22.0168462,37.3555307],[22.0170546,37.3553359],[22.0169262,37.3550634],[22.0169348,37.3547391],[22.0170413,37.3545516],[22.0168912,37.3542517],[22.0168567,37.3538456],[22.0170073,37.3532713],[22.0169787,37.3526399],[22.0174054,37.351872],[22.017565,37.3518116],[22.0178454,37.3518794],[22.0180079,37.3517109],[22.0179567,37.3515118],[22.0176371,37.351218],[22.0174864,37.3509361],[22.0175114,37.3508464],[22.0176355,37.3508485],[22.0179302,37.3512319],[22.0180431,37.3512338],[22.018067,37.3511801],[22.0177968,37.350725],[22.0174856,37.3505395],[22.0171926,37.3505166],[22.0171499,37.3504258],[22.0172526,37.3503824],[22.0178366,37.3505004],[22.0179814,37.3505749],[22.0181007,37.3507571],[22.0182362,37.3507594],[22.0182179,37.3505969],[22.0178906,37.3504156],[22.0179713,37.3503539],[22.0183279,37.3505311],[22.0187924,37.3508994],[22.0191503,37.3514552],[22.0192965,37.3514756],[22.0192989,37.3513855],[22.0190786,37.3511746],[22.0190754,37.3508681],[22.01898,37.3506322],[22.0190722,37.3505616],[22.0192849,37.3506283],[22.0194287,37.3511714],[22.0195862,37.3511921],[22.0196109,37.3511114],[22.0194924,37.3508931],[22.0196827,37.3505268],[22.0192704,37.3503216],[22.0196711,37.3496794],[22.0193884,37.3492691],[22.0196247,37.3488675],[22.0196079,37.3482183],[22.0199119,37.3478179],[22.0201282,37.3477494],[22.0203729,37.3478887],[22.02015,37.3482094],[22.0201932,37.3482822],[22.0203291,37.3482665],[22.0205906,37.3477662],[22.0203598,37.347528],[22.0199665,37.3474583],[22.0197514,37.3474817],[22.0192241,37.3477883],[22.0191228,37.3477776],[22.0191366,37.3476787],[22.0194571,37.3475129],[22.0197686,37.3472567],[22.0206521,37.3471453],[22.0208945,37.3469421],[22.0209472,37.3466546],[22.0215133,37.3461594],[22.0216487,37.3461616],[22.0217342,37.3463433],[22.0218356,37.346354],[22.0222418,37.3459282],[22.0229137,37.3457051],[22.0230352,37.3458063],[22.0229012,37.3461826],[22.0229092,37.3463089],[22.022999,37.3463284],[22.0233194,37.3457299],[22.0232903,37.3455492],[22.0231237,37.3454473],[22.0223893,37.345471],[22.0219802,37.3455723],[22.0215078,37.3455104],[22.0212567,37.3456143],[22.0211453,37.3455584],[22.0211824,37.3454328],[22.0219293,37.3453642],[22.0224761,37.3451751],[22.0237126,37.3449434],[22.0245224,37.3450561],[22.0245642,37.3451829],[22.0243427,37.3454496],[22.0243745,37.3455313],[22.0244986,37.3455333],[22.0248364,37.3451334],[22.0247866,37.3446662],[22.0243805,37.3442246],[22.0241332,37.3441844],[22.0235225,37.3442282],[22.0233457,37.3440811],[22.0234412,37.3438844],[22.0239104,37.3436399],[22.024051,37.343444],[22.024316,37.3432411],[22.0243922,37.3429179],[22.0246056,37.342525],[22.0245085,37.3422214],[22.0245633,37.3418528],[22.0244232,37.3415981],[22.024396,37.3413453],[22.0245359,37.3411764],[22.0245272,37.3410772],[22.0242691,37.3410188],[22.0239692,37.3408335],[22.0236967,37.340892],[22.0234612,37.340834],[22.02319,37.3404149],[22.0230791,37.340341],[22.0231174,37.3401704]]},{"id":20003,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u03a0\u03b1\u03bb\u03ac\u03c4\u03bf\u03c5-\u03a3\u03ba\u03bb\u03b7\u03c1\u03cc\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Palatou_Skliros","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11413,"name_EN":"Arcadian Trails: Palatou-Skliros","description_EN":"","ascent_time":270,"descent_time":265,"marker":"No_marks","level":11,"ascent":603,"descent":586,"maxelev":1205,"minelev":867,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.91247 37.44117,21.96808 37.46518)","views":0,"millestones":"0,21.9638965,37.4660809#1,21.9645576,37.4607910#2,21.9650060,37.4553473#3,21.9557008,37.4564634#4,21.9473285,37.4579580#5,21.9418205,37.4596725#6,21.9343182,37.4621793#7,21.9262841,37.4609725#8,21.9223338,37.4585330#9,21.9161766,37.4534716#10,21.9160844,37.4467937#11,21.9159805,37.4419031#11.4,21.9179184,37.4402933","x":21.9387454,"y":37.4606881,"coor":[[21.9638965,37.4660809],[21.9639756,37.4657962],[21.9640338,37.4658107],[21.9642424,37.465625],[21.9644468,37.4655925],[21.9645507,37.4655132],[21.9642133,37.4650297],[21.9641312,37.4647219],[21.9639206,37.4645651],[21.9636523,37.4640377],[21.9641351,37.462496],[21.9638216,37.4623824],[21.9636781,37.4622538],[21.9631804,37.4622632],[21.962845,37.4621605],[21.9630602,37.4621462],[21.9630276,37.4621006],[21.9630963,37.4620657],[21.9627834,37.4619342],[21.9626313,37.4617062],[21.9626796,37.4615899],[21.9628258,37.4616195],[21.9628425,37.4614215],[21.9630363,37.4613618],[21.9631918,37.461049],[21.9633475,37.4611418],[21.9633898,37.4612507],[21.9635269,37.461199],[21.9635352,37.4613073],[21.9636573,37.4613905],[21.9637703,37.4613924],[21.9637834,37.4613296],[21.9639622,37.4614048],[21.9641717,37.4611831],[21.964537,37.4610542],[21.9644252,37.4610072],[21.9643832,37.4608893],[21.9645301,37.4608918],[21.9645677,37.4607573],[21.9646684,37.4607951],[21.9647391,37.4606882],[21.965012,37.4606298],[21.9649929,37.4605033],[21.9651788,37.4603172],[21.9651871,37.4600109],[21.9653438,37.4600677],[21.9653753,37.4601584],[21.9658045,37.4601748],[21.9658516,37.4601035],[21.9656976,37.4599476],[21.9657572,37.4598315],[21.9658597,37.4598062],[21.9659142,37.4598793],[21.9660302,37.4597731],[21.9662886,37.4598316],[21.9666536,37.4597118],[21.9667823,37.4595517],[21.9667403,37.4594339],[21.9670695,37.4593855],[21.9675572,37.4589072],[21.9676044,37.4588359],[21.9675287,37.4587084],[21.9675723,37.4583487],[21.9674927,37.4579508],[21.9672629,37.4576675],[21.9672575,37.4574511],[21.9671371,37.4572643],[21.966993,37.4569914],[21.9668788,37.4567439],[21.9663604,37.4562663],[21.9663747,37.4561584],[21.96662,37.4558652],[21.9666112,37.4557749],[21.9658123,37.455635],[21.9651395,37.4554342],[21.9645951,37.4550823],[21.9640293,37.4550996],[21.963627,37.4549305],[21.9630218,37.4549831],[21.9621652,37.4548872],[21.9616541,37.4549776],[21.9612288,37.454817],[21.9610843,37.4547672],[21.9608656,37.4544931],[21.9606778,37.4547512],[21.9605781,37.4544656],[21.9604631,37.4547835],[21.9602652,37.4549964],[21.9599807,37.4550636],[21.9596985,37.4550497],[21.9592303,37.4550146],[21.9586422,37.4550224],[21.9577771,37.4552418],[21.9574342,37.4553801],[21.9571223,37.455627],[21.9568904,37.455632],[21.9565098,37.4558282],[21.9563119,37.4560411],[21.9560498,37.4561177],[21.9558628,37.4563397],[21.9556089,37.4565336],[21.955279,37.4570236],[21.9552141,37.4569526],[21.9549309,37.4569747],[21.9546664,37.4571414],[21.9545482,37.4573286],[21.9542944,37.4575134],[21.953955,37.4575256],[21.9538328,37.4574829],[21.9536762,37.457514],[21.9531975,37.457152],[21.9533413,37.456981],[21.9533563,37.4568461],[21.9530058,37.4564344],[21.9525768,37.4565397],[21.9516832,37.4565602],[21.9511934,37.4566959],[21.9510049,37.456972],[21.9498116,37.4576182],[21.9494731,37.4580089],[21.948627,37.4583547],[21.9482988,37.458367],[21.9479623,37.458271],[21.9474774,37.4582266],[21.9473256,37.4579896],[21.9473566,37.4576837],[21.9470043,37.4577497],[21.9467135,37.4576365],[21.9466827,37.4579334],[21.9459718,37.4582995],[21.9457463,37.4586922],[21.9454723,37.4587865],[21.9451377,37.459033],[21.9446803,37.4592234],[21.9440363,37.4590409],[21.9443235,37.4592892],[21.944164,37.4597461],[21.9437458,37.4601534],[21.9433351,37.4602904],[21.9426452,37.460711],[21.9421475,37.4607203],[21.9425182,37.4603933],[21.9427111,37.4599551],[21.9430011,37.4596898],[21.9427942,37.4593978],[21.9420624,37.4597005],[21.9404735,37.4595106],[21.9399335,37.4598256],[21.9392402,37.4603723],[21.9391456,37.4605238],[21.9387454,37.4606881],[21.9384993,37.4605936],[21.9381566,37.4603083],[21.9377061,37.4602464],[21.9373762,37.4603217],[21.936453,37.4601794],[21.9362035,37.4602111],[21.9346772,37.4610316],[21.9338353,37.4612241],[21.9336915,37.461519],[21.9337365,37.4616955],[21.934101,37.4620083],[21.9346301,37.4620897],[21.9346851,37.4621447],[21.9333023,37.4622737],[21.9330104,37.4621965],[21.9326375,37.46219],[21.9321264,37.4618656],[21.9315192,37.4617468],[21.9311615,37.4615964],[21.9307542,37.4616073],[21.9302171,37.4618142],[21.929809,37.4622666],[21.9292112,37.4626257],[21.9289372,37.46272],[21.9287929,37.4630351],[21.9286976,37.4634908],[21.9281789,37.462905],[21.9276085,37.4626787],[21.9274077,37.4621705],[21.9268522,37.4618182],[21.9266848,37.4613287],[21.9264218,37.4610266],[21.9262764,37.46097],[21.9260369,37.4610469],[21.9258377,37.4613498],[21.9257953,37.4616555],[21.925864,37.4620352],[21.9258091,37.4622956],[21.9252703,37.4625655],[21.9250144,37.4628224],[21.9248896,37.4628382],[21.9245131,37.4625522],[21.9243573,37.4620538],[21.9240381,37.4617418],[21.9237676,37.46171],[21.9231956,37.4619523],[21.9229124,37.4619743],[21.9222768,37.4616567],[21.9219151,37.4616504],[21.9217587,37.4615845],[21.9216944,37.4614572],[21.9218161,37.461144],[21.9217405,37.4610165],[21.9219138,37.4597849],[21.9222711,37.4595388],[21.922366,37.4593782],[21.9223233,37.4584673],[21.9224544,37.4582262],[21.9228136,37.4579081],[21.9228857,37.4577562],[21.9228225,37.4571783],[21.9222497,37.4570804],[21.9218356,37.4569289],[21.9214938,37.4566165],[21.9213106,37.4567034],[21.9199915,37.4563309],[21.9194114,37.4560503],[21.9188474,37.4559683],[21.918415,37.4560688],[21.9180647,37.4560627],[21.9176248,37.4558228],[21.9169882,37.4551357],[21.9167406,37.4550953],[21.9167443,37.4546335],[21.9166024,37.4544507],[21.9163786,37.4543657],[21.9162912,37.454256],[21.9164391,37.453817],[21.9161772,37.4534789],[21.9161357,37.4529375],[21.9159591,37.4527812],[21.9159659,37.452538],[21.9157906,37.4523366],[21.9157861,37.4520932],[21.9155465,37.4517645],[21.9152916,37.4515798],[21.9151984,37.4512717],[21.9153119,37.4508502],[21.9151579,37.4506942],[21.9151391,37.4505587],[21.9153814,37.4503828],[21.9154042,37.4499686],[21.9157187,37.4496317],[21.9154023,37.4492206],[21.9150144,37.4489434],[21.9149175,37.4487704],[21.9144818,37.4485825],[21.9144388,37.4484668],[21.9146848,37.4485252],[21.9148321,37.4484219],[21.9147985,37.4480947],[21.914685,37.4481107],[21.9148143,37.4479327],[21.9147309,37.4476789],[21.9148665,37.4476813],[21.915051,37.4475494],[21.9150424,37.4474501],[21.9152041,37.4473268],[21.9153266,37.4469865],[21.9152967,37.4468418],[21.9154596,37.4466734],[21.9156416,37.4466315],[21.9157634,37.4467238],[21.9161486,37.4468072],[21.9160336,37.4462284],[21.9156849,37.4461682],[21.9152172,37.4463221],[21.9149465,37.4462993],[21.9146387,37.4459875],[21.9145244,37.445625],[21.9143833,37.4454152],[21.91425,37.4453318],[21.9139115,37.4453078],[21.9137451,37.4451967],[21.9133405,37.4442973],[21.9133202,37.4440108],[21.9132098,37.4439954],[21.9130674,37.4438306],[21.9134063,37.4435573],[21.9143126,37.4434831],[21.9149661,37.4431522],[21.9157132,37.4431113],[21.9160461,37.4429279],[21.916243,37.4427151],[21.9163346,37.4427122],[21.9165377,37.4427248],[21.9158921,37.4424949],[21.9158368,37.4420433],[21.916265,37.4416318],[21.9163839,37.4415077],[21.9164552,37.4414594],[21.9166216,37.4415705],[21.9168177,37.4414298],[21.9170102,37.4414151],[21.9171417,37.4414512],[21.9173161,37.4413529],[21.9175194,37.440951],[21.9177011,37.4407153],[21.9177845,37.440523],[21.9179184,37.4402933]]},{"id":20004,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u039a\u03bf\u03c4\u03cd\u03bb\u03b9\u03bf-\u03a0\u03b1\u03bb\u03ac\u03c4\u03bf\u03c5","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Kotylio_Palatou","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3782,"name_EN":"Arcadian Trails: Kotylio-Palatou","description_EN":"","ascent_time":90,"descent_time":85,"marker":"No_marks","level":11,"ascent":200,"descent":150,"maxelev":867,"minelev":709,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.96355 37.46662,21.99519 37.47379)","views":2,"millestones":"0,21.9950091,37.4732867#1,21.9850566,37.4741141#2,21.9763109,37.4729197#3,21.9671722,37.4715064#3.8,21.9638961,37.4660809","x":21.9788186,"y":37.4735042,"coor":[[21.9950091,37.4732867],[21.9947785,37.4732445],[21.9944117,37.4734275],[21.9937206,37.4739024],[21.9930066,37.4739624],[21.9926151,37.4738025],[21.9922092,37.4737596],[21.9919187,37.4736285],[21.9911557,37.4729846],[21.9905242,37.4729198],[21.9899194,37.4731258],[21.9895569,37.4735703],[21.9890666,37.4737241],[21.9888417,37.4736752],[21.9886608,37.4737533],[21.9874518,37.4740639],[21.9870138,37.4740316],[21.986173,37.4741795],[21.985858,37.4741201],[21.9856012,37.4739985],[21.9854715,37.4739873],[21.985242,37.4741096],[21.9846663,37.4741245],[21.9846638,37.4739555],[21.985102,37.4736385],[21.9851035,37.4735845],[21.9848642,37.4736525],[21.9846615,37.473622],[21.9842522,37.4737052],[21.9841286,37.473676],[21.984085,37.4736122],[21.9841562,37.4734872],[21.9836061,37.4733427],[21.9834738,37.4732142],[21.9834455,37.4730065],[21.9808661,37.4730525],[21.9806944,37.4731307],[21.9804503,37.4733789],[21.9795486,37.4736879],[21.9793005,37.4736656],[21.9788186,37.4735042],[21.9774036,37.473561],[21.9771019,37.4734297],[21.9767371,37.473117],[21.9763349,37.4729389],[21.9754602,37.472248],[21.9751852,37.4719639],[21.9751323,37.4718278],[21.9749844,37.4718614],[21.9747653,37.4720198],[21.9740215,37.4727641],[21.9738732,37.4728156],[21.9738424,37.4726979],[21.9737402,37.4727142],[21.9735862,37.4729729],[21.9723735,37.4730783],[21.9721268,37.4730019],[21.9716413,37.4729756],[21.9715643,37.4728931],[21.9708781,37.4727642],[21.9699279,37.4723604],[21.969735,37.4723841],[21.9691048,37.4722741],[21.9688811,37.4721801],[21.9684845,37.4717948],[21.9679214,37.471713],[21.9676555,37.4715102],[21.9672582,37.4715664],[21.9669252,37.4713354],[21.9669,37.4712223],[21.9667329,37.471091],[21.9656779,37.4695498],[21.9650162,37.4693491],[21.9646037,37.4691347],[21.9642042,37.4688575],[21.9637763,37.468413],[21.9637085,37.4679973],[21.9637666,37.4675207],[21.9642002,37.4669604],[21.9639176,37.4665409],[21.9638961,37.4660809]]},{"id":20005,"author":"AnaDigit","name_GR":"\u03a4\u03b5\u03c4\u03c1\u03ac\u03b6\u03b9: \u039a\u03ac\u03c4\u03c9 \u039c\u03ad\u03bb\u03c0\u03b5\u03b9\u03b1 - \u0386\u03bd\u03c9 \u039c\u03ad\u03bb\u03c0\u03b5\u03b9\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_Tetrazi_KatoMelpeia_AnoMelpeia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4602,"name_EN":"Tetrazi: Kato Melpeia-Ano Melpeia","description_EN":"","ascent_time":115,"descent_time":95,"marker":"No_marks","level":12,"ascent":592,"descent":28,"maxelev":747,"minelev":176,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.93196 37.32766,21.9475 37.35197)","views":3,"millestones":"0,21.9326374,37.3273985#1,21.9368759,37.3314147#2,21.9391174,37.3369106#3,21.9411586,37.3434083#4,21.9432524,37.3512075#4.6,21.9468781,37.3506325","x":21.9400388,"y":37.33727,"coor":[[21.9326374,37.3273985],[21.9327207,37.3276523],[21.9329588,37.328026],[21.9330617,37.3283883],[21.9332368,37.3285896],[21.9336543,37.3284752],[21.9338272,37.3283431],[21.9337495,37.3290312],[21.9339323,37.3293588],[21.934564,37.3293698],[21.9349966,37.3296478],[21.935154,37.3300831],[21.9355993,37.3303072],[21.9356412,37.3304251],[21.9355977,37.3307758],[21.9357223,37.3307599],[21.9360147,37.3303865],[21.9358225,37.3299866],[21.9359134,37.3299612],[21.9363136,37.3301844],[21.9364346,37.3298892],[21.9365709,37.3298555],[21.9367276,37.3299033],[21.9368198,37.3302474],[21.9371081,37.3304326],[21.9371721,37.3305689],[21.9370264,37.3309449],[21.9367098,37.331381],[21.9370577,37.3314501],[21.9374557,37.3317545],[21.9375651,37.3318826],[21.9375702,37.332108],[21.9377586,37.3318229],[21.9379283,37.3318078],[21.9379255,37.3323214],[21.9380769,37.3321529],[21.9382483,37.3320747],[21.9382799,37.3321564],[21.9381536,37.3326499],[21.9382156,37.3328582],[21.9383068,37.3328238],[21.9383706,37.3325545],[21.9384638,37.332448],[21.9390245,37.3321694],[21.9386962,37.3326548],[21.9386567,37.3328614],[21.9388117,37.3333868],[21.9389756,37.3344081],[21.9388029,37.3353604],[21.9390701,37.3359058],[21.9390446,37.3364776],[21.939112,37.3369024],[21.9393072,37.3371942],[21.9400388,37.33727],[21.9405121,37.3377108],[21.9402714,37.3382564],[21.9406919,37.3398048],[21.9406605,37.3405433],[21.9409104,37.3408991],[21.9412312,37.341139],[21.9413685,37.3414839],[21.9416368,37.3415787],[21.9418575,37.3417628],[21.9418474,37.3421321],[21.9419556,37.3423052],[21.9419605,37.3425396],[21.9417022,37.3421949],[21.9415876,37.342256],[21.9416401,37.3424011],[21.9414978,37.342651],[21.9412967,37.3425754],[21.9411547,37.3428162],[21.9410654,37.3427786],[21.9412469,37.3431603],[21.9412086,37.3433219],[21.9411416,37.3432936],[21.9411799,37.3435467],[21.9411345,37.3435549],[21.9412916,37.3440939],[21.9417217,37.3448764],[21.9418551,37.3453654],[21.941828,37.3467708],[21.9416654,37.3473538],[21.9415613,37.3482712],[21.9413746,37.3489079],[21.9413765,37.3492504],[21.9421796,37.3491922],[21.9426716,37.349363],[21.9428605,37.349889],[21.9428862,37.3506015],[21.9434265,37.351485],[21.9440741,37.3521632],[21.9441752,37.352183],[21.9442115,37.3520935],[21.9441406,37.3517949],[21.9442395,37.3514293],[21.9444445,37.3513608],[21.9446182,37.3512016],[21.9450276,37.3510916],[21.9453421,37.3511511],[21.9454971,37.3512619],[21.9455283,37.3513616],[21.9458271,37.351502],[21.9460598,37.3513258],[21.9461432,37.351165],[21.9468781,37.3506325]]},{"id":20006,"author":"AnaDigit","name_GR":"Apollo Trails: \u039d\u03ad\u03b4\u03b1-\u039a\u03b1\u03ba\u03b1\u03bb\u03ad\u03c4\u03c1\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_ApolloTrails_Neda_Kakaletri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6155,"name_EN":"Apollo Trails: Neda-Kakaletri","description_EN":"","ascent_time":140,"descent_time":145,"marker":"Red_stripe","level":12,"ascent":159,"descent":335,"maxelev":794,"minelev":576,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.93208 37.40011,21.96401 37.42559)","views":0,"millestones":"0,21.9626274,37.4261170#1,21.9601362,37.4190348#2,21.9576290,37.4153133#3,21.9562202,37.4079958#4,21.9514456,37.4028743#5,21.9432807,37.4010423#6.2,21.9326532,37.4047444","x":21.9563355,"y":37.4077765,"coor":[[21.9626274,37.426117],[21.9626294,37.425975],[21.9624708,37.4255758],[21.9625694,37.4252711],[21.962531,37.4252051],[21.9624828,37.4248978],[21.9629107,37.4245244],[21.9631704,37.4241143],[21.9629451,37.4236688],[21.9627788,37.4235646],[21.963391,37.4231538],[21.9631918,37.4229972],[21.9630739,37.4227608],[21.9628536,37.4225498],[21.9625643,37.4223195],[21.9624017,37.4220643],[21.9619325,37.421867],[21.9619347,37.4217859],[21.9619733,37.4215613],[21.961759,37.4214156],[21.9613925,37.4212583],[21.9614396,37.4207725],[21.9607231,37.4205258],[21.9605272,37.4204436],[21.9604619,37.4203523],[21.9606504,37.4200672],[21.9603973,37.4198195],[21.9602864,37.4196103],[21.9601223,37.4189946],[21.9594666,37.4177576],[21.9595048,37.416767],[21.9598367,37.4166105],[21.9593096,37.4164662],[21.9596526,37.4163189],[21.9597581,37.4160481],[21.9597198,37.4159753],[21.9590304,37.4155669],[21.9586594,37.4156123],[21.958262,37.4161011],[21.9580145,37.4160608],[21.9572597,37.4160973],[21.9565973,37.4159417],[21.9561797,37.4159254],[21.9559319,37.4159211],[21.9562484,37.4157982],[21.9564748,37.4157841],[21.9568392,37.4157701],[21.9570896,37.4157023],[21.9573941,37.4156197],[21.957282,37.4153925],[21.9575327,37.4153157],[21.9579623,37.4153051],[21.9583546,37.4150055],[21.9584057,37.4147901],[21.9585206,37.414783],[21.9585244,37.4141996],[21.9583665,37.4137733],[21.9584406,37.4135402],[21.9584688,37.413428],[21.9584143,37.413355],[21.9578194,37.4132095],[21.9568248,37.4123903],[21.956787,37.4121192],[21.9569661,37.4109327],[21.9566592,37.410585],[21.9560825,37.4101875],[21.9558766,37.4098009],[21.9556264,37.4094451],[21.9556097,37.4092285],[21.9560419,37.4086006],[21.9561593,37.4084404],[21.9562294,37.4079369],[21.9563355,37.4077765],[21.956438,37.4075508],[21.9564721,37.4071278],[21.956757,37.4068916],[21.9569625,37.4068141],[21.9571029,37.4066362],[21.957122,37.4063482],[21.9569609,37.4063522],[21.9567893,37.4064303],[21.9560117,37.4063628],[21.9555116,37.4064713],[21.9553501,37.4065947],[21.9550977,37.4063199],[21.9551276,37.4056355],[21.9550046,37.4051738],[21.954833,37.4048373],[21.9546022,37.404599],[21.9541,37.404374],[21.9531417,37.4043034],[21.9521099,37.4040242],[21.9517756,37.4038561],[21.9515404,37.4033654],[21.9514317,37.4027957],[21.950996,37.4015783],[21.9506666,37.4012301],[21.9497363,37.4009616],[21.9495459,37.4008479],[21.9490603,37.4007652],[21.9487502,37.4008634],[21.9484708,37.4007504],[21.9485685,37.4004818],[21.9483569,37.4003699],[21.946866,37.3999858],[21.9463965,37.3998064],[21.9458869,37.3998404],[21.9455658,37.400015],[21.9456183,37.4001602],[21.9455255,37.4002487],[21.9448947,37.4001836],[21.9443836,37.4002829],[21.9442108,37.400406],[21.9437467,37.400443],[21.9435741,37.4005572],[21.9433595,37.400968],[21.9431739,37.401145],[21.9428416,37.4013195],[21.9420477,37.4014319],[21.9416186,37.401724],[21.9411183,37.4022561],[21.9408828,37.4026034],[21.9406535,37.4027256],[21.9402784,37.4032238],[21.9401144,37.4033088],[21.9398064,37.4034161],[21.9394917,37.4033565],[21.9391407,37.4033864],[21.9381671,37.4038741],[21.93794,37.4039152],[21.9376361,37.4038739],[21.9375065,37.4040699],[21.9373008,37.4041564],[21.9365334,37.404125],[21.9358507,37.4040342],[21.9354044,37.4042427],[21.9351842,37.4044462],[21.9349244,37.4045858],[21.9346481,37.4045675],[21.9342281,37.4046412],[21.9338788,37.4046081],[21.933459,37.4046728],[21.9329863,37.4046466],[21.9326532,37.4047444]]},{"id":20007,"author":"AnaDigit","name_GR":"\u0391\u03c1\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0394\u03b9\u03b1\u03c6\u03cc\u03c1\u03c4\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_ArcadianTrails_Lykeon_Diaforti","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":3302,"name_EN":"Arcadian Trails: Ascent to Diaforti peak","description_EN":"","ascent_time":85,"descent_time":70,"marker":"No_marks","level":11,"ascent":273,"descent":36,"maxelev":1414,"minelev":1167,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.97153 37.44772,21.99589 37.45628)","views":0,"millestones":"0,21.9955958,37.4494660#1,21.9884960,37.4491894#2,21.9797243,37.4493450#3,21.9719167,37.4542546#3.3,21.9725162,37.4563000","x":21.9823421,"y":37.449815,"coor":[[21.9955958,37.449466],[21.9956838,37.4491341],[21.9958667,37.4487023],[21.9956741,37.4483859],[21.9954643,37.4482381],[21.9950488,37.4477805],[21.994825,37.4476956],[21.9943348,37.4478495],[21.9938559,37.4484271],[21.99356,37.4485032],[21.9932001,37.448434],[21.9921462,37.4485333],[21.9915068,37.4483512],[21.9913485,37.448772],[21.9908088,37.4495109],[21.990422,37.4491799],[21.9900429,37.4489842],[21.989909,37.4487205],[21.9897302,37.4486454],[21.9891743,37.4491406],[21.9888649,37.4492976],[21.9886058,37.4492661],[21.9882618,37.4490259],[21.9881036,37.4490232],[21.987729,37.4495035],[21.9873835,37.449741],[21.9861777,37.4496033],[21.9859693,37.4493654],[21.9854635,37.4492576],[21.9851805,37.4496944],[21.9847679,37.4499037],[21.9845475,37.4501951],[21.9842583,37.4500189],[21.9839511,37.4496712],[21.9834029,37.4498781],[21.9830946,37.4495755],[21.9829373,37.4495367],[21.9823421,37.449815],[21.9821926,37.449488],[21.9820366,37.4494042],[21.9816068,37.4494149],[21.9809993,37.4493054],[21.9805007,37.4493509],[21.980156,37.4491377],[21.9800096,37.4491172],[21.9797451,37.4492839],[21.9796104,37.4496691],[21.9791993,37.4498243],[21.97825,37.4506552],[21.9778624,37.4507748],[21.9776273,37.4506896],[21.9775247,37.4507239],[21.9773623,37.4508383],[21.9765886,37.4510233],[21.9761837,37.4513679],[21.975842,37.4514612],[21.9755317,37.451377],[21.9750532,37.451513],[21.9745909,37.451469],[21.9730704,37.4522337],[21.9731299,37.4524083],[21.9728122,37.4528714],[21.9727912,37.4532316],[21.9724204,37.4535677],[21.9725326,37.4535966],[21.9725182,37.4537135],[21.9723595,37.4537288],[21.9722527,37.4539163],[21.9719059,37.4541987],[21.9719554,37.4544609],[21.9716774,37.4547085],[21.9715691,37.4549499],[21.9716631,37.4556545],[21.9719703,37.4560022],[21.9725162,37.4563]]}],{"extent":[21.79588,37.32185,22.09966,37.49791],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":5,"action":{"type":"redirect"},"sort":{"type":"byname"}},"PELOPONNESE\/Pelop_Abeliona_Trail_1":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_2":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1c":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1a":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1b":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"Car_touring\/CAR_Rodos_Attavyros_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Attavyros_summit":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_36km_Lindos_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Kattavia_Skiadeni_loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"Car_touring\/CAR_Rodos_Lindos_Sport":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MACEDONIA\/Makedonia_Falakro_refuge_Chionotripa":{"url":null,"color":"#bb0707","width":6,"exclude":false,"useStyle":true},"MACEDONIA\/Makedonia_Falakro_refuge_ProfitisIlias":{"url":null,"color":"#b11f0b","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":"Menalon_Trail_Lousios.php","color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#248036","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#108b1a","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#fbfb00","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#e70404","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_1":{"url":null,"color":"#ec0a0a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_9":{"url":null,"color":"#f60606","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_10":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_11":{"url":null,"color":"#2fb4ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_12":{"url":null,"color":"#069f24","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_13":{"url":null,"color":"#f60404","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Merovigli_Skaros":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Oia_Amoudi":{"url":null,"color":"#2fffff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_2":{"url":null,"color":"#06b12f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_3":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_4":{"url":null,"color":"#f4ff00","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_5":{"url":null,"color":"#04b427","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_6":{"url":null,"color":"#ff2fd5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_7":{"url":null,"color":"#2abc0e","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_8":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Koukouli_Dilofo":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Vikos_Elafotopos":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_AnoPedina_Monodendri":{"url":null,"color":"#0dcb15","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_AKlidonia_Papigo":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_AstrakaRef_Gamila":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Astraka_Drakolimni":{"url":null,"color":"#2facff","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Konitsa_Astraka":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Konitsa_Stomio_Ast":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_O31_Astraka_Vrisoc":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_O31_Papigo_Astraka":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Voidomatis_bridges":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Stouros":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Vradeto_Beloi":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Kapesovo_Kipi":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_KKlidonia_AKlidonia":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Monodentri_Vitsa":{"url":null,"color":"#2fffee","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Elafotopos_AnoPedina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Skala_Vradetou":{"url":null,"color":"#e91c13","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Vradeto_Astraka":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Vitsa_Koukouli":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Tsepelovo_Astraka":{"url":null,"color":"#fbf100","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Papigo_Vikos":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Papigo_Loop":{"url":null,"color":"#f50000","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Monodendri_Vikos":{"url":null,"color":"#2f37ff","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Pelop_Lagadia_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Arvitsa":{"url":null,"color":"#0bbd13","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_2":{"url":null,"color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_1":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_3":{"url":null,"color":"#2fff8b","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Keresova":{"url":null,"color":"#f40404","width":6,"exclude":false,"useStyle":true},"ATTIKI\/Attiki_Imittos_Sfittia_Odos":{"url":null,"color":"#34bb0a","width":3,"exclude":false,"useStyle":true},"ATTIKI\/Attiki_Imittos_Papagou_Trail_2":{"url":null,"color":"#0a820a","width":6,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Trail10":{"url":null,"color":"#2f40ff","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Katechaki_GlykaNera":{"url":null,"color":"#ffd82f","width":3,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Ilioupoli_Sfittos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Kareas_Michailidis":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Katechaki_Summit":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Taxiarches_sum_road":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Anthousa_tower":{"url":null,"color":"#2f3dff","width":6,"exclude":false,"useStyle":true},"MTB_Roadbike\/MTB_Imittos_Liondari_cave":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Megalos_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Quarries":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Korakovouni_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Papagou_Asteriou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop3":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_OmvriosZefs":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kalopoula":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_roman_quarry":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_PrfIlias_Terpsithea":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop4":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_PrfIlias":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_Mnimeio_Michailidi":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Gyros_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Mikros_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Hard_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Anthousa_training":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Oreinos_Agonas_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Trail10_short_version":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_1":{"url":null,"color":"#1d7a10","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_2":{"url":null,"color":"#2f50ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_3":{"url":null,"color":"#eb0707","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_4":{"url":null,"color":"#f72fff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_5":{"url":null,"color":"#13930e","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6a":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6b":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_7":{"url":null,"color":"#ffff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_8":{"url":null,"color":"#e110d0","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_9":{"url":null,"color":"#51be14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Chora_loop1":{"url":null,"color":"#2fcdff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Chora_loop2":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Zogaki":{"url":null,"color":"#11a2b6","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala":{"url":null,"color":"#ffad00","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala2":{"url":null,"color":"#22d112","width":5,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_07_Lykosoura_IsomaKaryon":{"url":null,"color":"#2f32ff","width":5,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_01_Karytena_Kotylio":{"url":null,"color":"#2f32ff","width":5,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_03_Sklirou_Neda":{"url":null,"color":"#2f32ff","width":5,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_05_Vasta_Isari":{"url":null,"color":"#2f32ff","width":5,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_02_Kotylio_Sklirou":{"url":null,"color":"#50b52e","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_04_Neda_Vasta":{"url":null,"color":"#50b52e","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_06_Isari_Lykosoura":{"url":null,"color":"#50b52e","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Parrhasian_08_IsomaKaryon_Karytena":{"url":null,"color":"#50b52e","width":6,"exclude":false,"useStyle":true}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_arcadian_trails = new getPoiCollection("arcadian_trails",[{"name":"\u0391\u03a1\u039a\u0391\u0394\u0399\u0391
\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c4\u03b7\u03c2 \u039a\u03b1\u03c1\u03af\u03c4\u03b1\u03b9\u03bd\u03b1\u03c2","owner":"AnaDigit","x":22.049685239792,"y":37.479216550528,"photo":"Arkadia_Gefira_Karytenas","type":9,"zoom_level":14,"id":420,"hlink_GR":"","hlink_EN":"","description":"","height":271,"width":512},{"name":"\u0391\u03a1\u039a\u0391\u0394\u0399\u0391
\u039f\u03b9 \u03ba\u03bf\u03c1\u03c6\u03ad\u03c2 \u03c4\u03bf\u03c5 \u039b\u03cd\u03ba\u03b1\u03b9\u03bf\u03c5 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf \u03c4\u03c9\u03bd \u03a3\u03ba\u03bf\u03c1\u03c4\u03ce\u03bd","owner":"AnaDigit","x":22.014365911485,"y":37.447775784461,"photo":"Arkadia_Korfes_Lykaiou_Apo_kastro_Agiorghi_Skorton","type":0,"zoom_level":14,"id":423,"hlink_GR":"","hlink_EN":"","description":"","height":242,"width":512},{"name":"\u0391\u03a1\u039a\u0391\u0394\u0399\u0391
\u039b\u03c5\u03ba\u03cc\u03c3\u03bf\u03c5\u03c1\u03b1
\u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae","owner":"AnaDigit","x":22.033302307128,"y":37.392790829128,"photo":"Arkadia_Likosoura_arxea_dexameni","type":10,"zoom_level":15,"id":426,"hlink_GR":"","hlink_EN":"","description":"","height":349,"width":512},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03bf \u039a\u03c9\u03c4\u03af\u03bb\u03b9\u03bf","owner":"AnaDigit","x":21.99214137302,"y":37.46939227433,"photo":"Parasio_chu_21","type":9,"zoom_level":15,"id":3872,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u0394\u03ac\u03c3\u03bf\u03c2 \u039a\u03c5\u03c0\u03c1\u03af\u03c9\u03bd \u0394\u03b1\u03c3\u03bf\u03c0\u03c5\u03c1\u03bf\u03c3\u03b2\u03b5\u03c3\u03c4\u03ce\u03bd","owner":"AnaDigit","x":21.991604,"y":37.462774,"photo":"Parasio_Dasos_Kyprion1","type":450,"zoom_level":16,"id":3873,"hlink_GR":"","hlink_EN":"","description":"","height":999,"width":1000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u0392\u03c1\u03cd\u03c3\u03b7 \u039a\u03c5\u03c0\u03c1\u03af\u03c9\u03bd \u0394\u03b1\u03c3\u03bf\u03c0\u03c5\u03c1\u03bf\u03c3\u03b2\u03b5\u03c3\u03c4\u03ce\u03bd","owner":"AnaDigit","x":21.991705,"y":37.462902,"photo":"Parasio_fnt11","type":1001,"zoom_level":15,"id":3874,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u039a\u03c1\u03c5\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","owner":"AnaDigit","x":21.989393,"y":37.461154,"photo":"Parasio_Kryovrysi1","type":1001,"zoom_level":15,"id":3875,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c7\u03ce\u03c1\u03bf\u03c5","owner":"AnaDigit","x":21.995595,"y":37.449485,"photo":"Lykeo_arxea_11","type":450,"zoom_level":16,"id":3887,"hlink_GR":"","hlink_EN":"","description":"","height":748,"width":1000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u039f \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03c7\u03ce\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039b\u03c5\u03ba\u03b1\u03af\u03bf\u03c5","owner":"AnaDigit","x":21.995418,"y":37.448516,"photo":"Lykeo_arxea_31","type":10,"zoom_level":15,"id":3888,"hlink_GR":"","hlink_EN":"","description":"","height":808,"width":2000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u039f \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03c7\u03ce\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039b\u03c5\u03ba\u03b1\u03af\u03bf\u03c5","owner":"AnaDigit","x":21.991521923252,"y":37.450294385507,"photo":"Lykeo_arxea_41","type":10,"zoom_level":13,"id":3889,"hlink_GR":"","hlink_EN":"","description":"","height":794,"width":2000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u039f \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03c7\u03ce\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039b\u03c5\u03ba\u03b1\u03af\u03bf\u03c5","owner":"AnaDigit","x":21.994107235446,"y":37.449252747876,"photo":"Lykeo_arxea_51","type":10,"zoom_level":15,"id":3890,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u0398\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u039c\u03b1\u03af\u03bd\u03b1\u03bb\u03bf","owner":"AnaDigit","x":21.992435,"y":37.449093,"photo":"DSC081981","type":0,"zoom_level":12,"id":3891,"hlink_GR":"","hlink_EN":"","description":"","height":504,"width":2000},{"name":"\u039b\u03a5\u039a\u0391\u0399\u039f
\u039a\u03b1\u03bb\u03cd\u03b2\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03bb\u03ce\u03bd\u03b9","owner":"AnaDigit","x":21.984125,"y":37.450831,"photo":"Lykeo_hut11","type":9,"zoom_level":15,"id":3898,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0391\u03a1\u039a\u0391\u0394\u0399\u0391
\u0397 \u039a\u03b1\u03c1\u03cd\u03c4\u03b1\u03b9\u03bd\u03b1","owner":"AnaDigit","x":22.045221269836,"y":37.484651924128,"photo":"Karytena_11","type":0,"zoom_level":13,"id":3919,"hlink_GR":"","hlink_EN":"","description":"","height":603,"width":1400},{"name":"\u0391\u03a1\u039a\u0391\u0394\u0399\u0391
\u03a4\u03bf \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf \u03c4\u03b7\u03c2 \u039a\u03b1\u03c1\u03cd\u03c4\u03b1\u03b9\u03bd\u03b1\u03c2","owner":"AnaDigit","x":22.040625716892,"y":37.482758206629,"photo":"Karytena_21","type":10,"zoom_level":14,"id":3920,"hlink_GR":"","hlink_EN":"","description":"","height":585,"width":1400},{"name":"\u0391\u03a1\u039a\u0391\u0394\u0399\u0391
\u0397 \u03b5\u03bd\u03bf\u03c1\u03b9\u03b1\u03ba\u03ae \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u039a\u03b1\u03c1\u03cd\u03c4\u03b1\u03b9\u03bd\u03b1\u03c2","owner":"AnaDigit","x":22.041392,"y":37.485212,"photo":"Karytena_31","type":9,"zoom_level":16,"id":3921,"hlink_GR":"","hlink_EN":"","description":"","height":791,"width":1000},{"name":"\u039a\u0391\u03a4\u03a9 \u039a\u03a9\u03a4\u03a5\u039b\u0399\u039f
\u039f \u03b1\u03bd\u03b1\u03c3\u03c4\u03b7\u03bb\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u039c\u03b9\u03c7\u03b5\u03bb\u03ae","owner":"AnaDigit","x":22.01666,"y":37.476175,"photo":"K3II85261","type":9,"zoom_level":15,"id":4180,"hlink_GR":"","hlink_EN":"","description":"","height":550,"width":800},{"name":"\u039a\u0391\u03a4\u03a9 \u039a\u03a9\u03a4\u03a5\u039b\u0399\u039f
\u03a4\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c4\u03bf\u03c5 \u039c\u03cd\u03bb\u03bf\u03c5","owner":"AnaDigit","x":22.01665,"y":37.476177,"photo":"K3II85232","type":9,"zoom_level":14,"id":4181,"hlink_GR":"","hlink_EN":"","description":"","height":840,"width":800},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u03a4\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0391\u03bb\u03c6\u03b5\u03b9\u03bf\u03cd \u03c3\u03c4\u03b7\u03bd \u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.033553,"y":37.488922,"photo":"K3II85221","type":0,"zoom_level":14,"id":4182,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u039f \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.0337499,"y":37.490217,"photo":"K3II85171","type":9,"zoom_level":15,"id":4184,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ac \u03c3\u03c4\u03b7\u03bd \u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.034699,"y":37.490651,"photo":"K3II85153","type":73,"zoom_level":15,"id":4185,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03b2\u03c1\u03cd\u03c3\u03b7","owner":"AnaDigit","x":22.040363,"y":37.488163,"photo":"DSC005561","type":1001,"zoom_level":15,"id":4186,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03bf\u03cd \u039a\u03b1\u03c1\u03af\u03c4\u03b5\u03bd\u03b1-\u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.034728,"y":37.491435,"photo":"DSC005601","type":450,"zoom_level":16,"id":4187,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":745},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03bf\u03cd \u039a\u03b1\u03c1\u03af\u03c4\u03b5\u03bd\u03b1-\u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.033398,"y":37.490258,"photo":"DSC005621","type":450,"zoom_level":17,"id":4188,"hlink_GR":"","hlink_EN":"","description":"","height":574,"width":800},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03bf\u03cd \u039a\u03b1\u03c1\u03af\u03c4\u03b5\u03bd\u03b1-\u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.033415,"y":37.490318,"photo":"DSC005671","type":450,"zoom_level":17,"id":4189,"hlink_GR":"","hlink_EN":"","description":"","height":538,"width":800},{"name":"\u039a\u0391\u03a1\u0399\u03a4\u0395\u039d\u0391
\u03a4\u03bf \u03ba\u03c4\u03af\u03c1\u03b9\u03bf \u03c3\u03c4\u03b7\u03bd \u039a\u03ac\u03b2\u03b9\u03b1","owner":"AnaDigit","x":22.03335,"y":37.490423,"photo":"DSC005651","type":9,"zoom_level":15,"id":4190,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a7\u0391\u039d\u0399 \u03a0\u0391\u0393\u0391\u039d\u039f\u03a5
\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0395\u03c5\u03c3\u03c4\u03b1\u03b8\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.014932,"y":37.405627,"photo":"AgEfstathios_Chani_Paganou1","type":9,"zoom_level":14,"id":4191,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0392\u0391\u03a3\u03a4\u0391\u03a3
\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u0398\u03b5\u03bf\u03b4\u03ce\u03c1\u03b1\u03c2","owner":"AnaDigit","x":21.97881,"y":37.353665,"photo":"K3II85311","type":9,"zoom_level":13,"id":4192,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b7 \u03c3\u03c4\u03ad\u03b3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c1\u03b9\u03b6\u03ce\u03c3\u03b5\u03b9 17 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b1 \u03c0\u03bf\u03c5\u03c1\u03bd\u03ac\u03c1\u03b9\u03b1","height":800,"width":747},{"name":"\u039a\u0391\u03a3\u03a4\u0391\u039d\u039f\u03a7\u03a9\u03a1\u0399
\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u039a\u03c9\u03bd\u03c3\u03c4\u03b1\u03bd\u03c4\u03af\u03bd\u03bf\u03c5","owner":"AnaDigit","x":22.020622,"y":37.424682,"photo":"K3II85391","type":9,"zoom_level":15,"id":4193,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u039a\u0391\u03a3\u03a4\u0391\u039d\u039f\u03a7\u03a9\u03a1\u0399
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b1\u03c8\u03bf\u03c7\u03b5\u03c1\u03bf\u03b2\u03bf\u03bb\u03bf\u03cd","owner":"AnaDigit","x":22.022187,"y":37.423978,"photo":"K3II85401","type":9,"zoom_level":14,"id":4194,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0394\u0391\u03a3\u039f\u03a7\u03a9\u03a1\u0399
\u039c\u03b9\u03ba\u03c1\u03cc \u03c0\u03ad\u03c4\u03c1\u03b9\u03bd\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c3\u03c4\u03bf \u03c1\u03ad\u03bc\u03b1 \u03a7\u03ac\u03c1\u03b1\u03b4\u03c1\u03bf\u03c2","owner":"AnaDigit","x":21.989532,"y":37.342702,"photo":"K3II85351","type":9,"zoom_level":15,"id":4195,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":742},{"name":"\u0394\u0391\u03a3\u039f\u03a7\u03a9\u03a1\u0399
\u03a3\u03c4\u03bf \u03c1\u03ad\u03bc\u03b1 \u03a7\u03ac\u03c1\u03b1\u03b4\u03c1\u03bf\u03c2","owner":"AnaDigit","x":21.990522,"y":37.342292,"photo":"K3II85361","type":0,"zoom_level":15,"id":4196,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":726},{"name":"\u0391\u039d\u03a9 \u039a\u03a9\u03a4\u03a5\u039b\u0399\u039f
\u0391\u03bb\u03ce\u03bd\u03b9","owner":"AnaDigit","x":21.995263,"y":37.470566,"photo":"DSC005711","type":9,"zoom_level":16,"id":4197,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u039d\u03a9 \u039a\u03a9\u03a4\u03a5\u039b\u0399\u039f
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u039a\u03ac\u03c4\u03c9 \u039a\u03c9\u03c4\u03cd\u03bb\u03b9\u03bf","owner":"AnaDigit","x":21.999226,"y":37.47096,"photo":"DSC005741","type":0,"zoom_level":15,"id":4198,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u039d\u03a9 \u039a\u03a9\u03a4\u03a5\u039b\u0399\u039f
\u0397 \u03c0\u03b7\u03b3\u03ae \u0392\u03c1\u03c9\u03bc\u03cc\u03bd\u03b5\u03c1\u03bf","owner":"AnaDigit","x":22.002413,"y":37.471468,"photo":"DSC005751","type":1001,"zoom_level":15,"id":4199,"hlink_GR":"","hlink_EN":"","description":"","height":601,"width":800},{"name":"\u0394\u0391\u03a3\u039f\u03a7\u03a9\u03a1\u0399","owner":"AnaDigit","x":21.977272,"y":37.342727,"photo":"DSC005981","type":0,"zoom_level":14,"id":4205,"hlink_GR":"","hlink_EN":"","description":"","height":570,"width":800},{"name":"\u039d\u0395\u0394\u0391
\u0391\u03bb\u03ce\u03bd\u03b9","owner":"AnaDigit","x":21.981337,"y":37.407757,"photo":"K3II85501","type":0,"zoom_level":14,"id":4206,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0399\u03a3\u0391\u03a1\u0397
\u039a\u03c1\u03cd\u03b1 \u0392\u03c1\u03cd\u03c3\u03b7","owner":"AnaDigit","x":22.021193,"y":37.368957,"photo":"K3II85521","type":1001,"zoom_level":14,"id":4207,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0399\u03a3\u0391\u03a1\u0397
\u03a0\u03c1\u03bf\u03c3\u03ba\u03c5\u03bd\u03b7\u03c4\u03ac\u03c1\u03b9 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.02074,"y":37.368962,"photo":"K3II85601","type":9,"zoom_level":17,"id":4208,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0392\u0391\u03a3\u03a4\u0391\u03a3
\u03a3\u03c4\u03bf\u03c5 \u039b\u03ac\u03c3\u03b7 \u03a4\u03b7 \u0392\u03c1\u03cd\u03c3\u03b7","owner":"AnaDigit","x":21.9770859,"y":37.3802469,"photo":"DSC006151","type":1001,"zoom_level":15,"id":4209,"hlink_GR":"","hlink_EN":"","description":"","height":455,"width":1000},{"name":"\u0392\u0391\u03a3\u03a4\u0391\u03a3
\u0392\u03c1\u03cd\u03c3\u03b7 \u03a0\u03bf\u03c5\u03c1\u03bd\u03ac\u03c1\u03b9","owner":"AnaDigit","x":21.981255,"y":37.377469,"photo":"DSC006181","type":1001,"zoom_level":15,"id":4210,"hlink_GR":"","hlink_EN":"","description":"","height":622,"width":800},{"name":"\u0399\u03a3\u0391\u03a1\u0397
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03a0\u03b5\u03c4\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9","owner":"AnaDigit","x":22.023206,"y":37.371405,"photo":"DSC006251","type":0,"zoom_level":15,"id":4211,"hlink_GR":"","hlink_EN":"","description":"","height":614,"width":800},{"name":"\u0399\u03a3\u0391\u03a1\u0397
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03a0\u03b5\u03c4\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9","owner":"AnaDigit","x":22.02615,"y":37.372256,"photo":"DSC006281","type":0,"zoom_level":15,"id":4212,"hlink_GR":"","hlink_EN":"","description":"","height":601,"width":800},{"name":"\u03a0\u03b5\u03c4\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9
\u039e\u03c9\u03ba\u03bb\u03ae\u03c3\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.021558,"y":37.379536,"photo":"DSC006391","type":9,"zoom_level":15,"id":4213,"hlink_GR":"","hlink_EN":"","description":"","height":571,"width":800}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
Αμπελιώνα-Άγιος Σώστης
Αμπελιώνα-Γούβες-Πέτρα
Αμπελιώνα-Κακαλέτρι
Αμπελιώνα-Νέδα
Αμπελιώνα-Σκληρός
Αμπελιώνα-Σταυρούλι-Άγιος Ιάκωβος
Αμπελιώνα-Σταυρούλι-Βίγλα
Αμπελιώνα-Βαρικό-Πέτρα
Άγιος Σώστης-Ιερό Πάνα
Άγιος Σώστης-Βωμός Διός στο Λύκαιο
Ανδρίτσαινα-Αμπελιώνα
Ανδρίτσαινα-ναός Επικούριου Απόλλωνα
Κυκλική πορεία στις Άνω Καρυές
Κακαλέτρι-Ακρόπολη Είρας
Νέδα-Κακαλέτρι
Νέδα-Ιερό Πάνα
Νέδα-Βωμός Διός στο Λύκαιο
Πέτρα-Κακαλέτρι
Σκληρός-ναός Επικούριου Απόλλωνα
Σκληρός-Κακαλέτρι
1 Καρύταινα-Κοτύλιο
2 Κοτύλιο-Άνω Καρυές
3 Άνω Καρυές-Λύκαιο
4 Λύκαιο-Βάστας
5 Βάστας-Ίσαρης
6 Ίσαρης-Καστανοχώρι
7 Καστανοχώρι-Ίσωμα Καρυών
8 Ίσωμα Καρυών-Καρύταινα
Άνω Καρυές-Νέδα
Άνω Καρυές-Κάστρο Αγίου Γεωργίου Σκορτών
Χράνοι-Αγία Θεοδώρα
Ίσαρης-Χρούσα
Ίσαρης-Σιδηρ. σταθμός Ίσαρη
Καστανοχώρι-Κάστρο Αγίου Γεωργίου Σκορτών
Κοτύλιο-Παλάτου
Κουρουνιού-Κάστρο Αγίου Γεωργίου Σκορτών
Ανάβαση στην κορυφή Διαφόρτι
Παλάτου-Σκληρός
Κύκλος από τη Φιγάλεια στη Νέδα
Άνω Καρυές-Ιερή Κορυφή Λύκαιου
Στάδιο Λυκαίου-Ιερή Κορυφή Λύκαιου
Αμυγδαλιές-κορυφή Μίνθης
Λινίσταινα-κορυφή Μίνθης
Ολική διάσχιση Νέδας
Καρύταινα-Λυκόσουρα
Λυκόσουρα-Τριπόταμο
Άνω Μέλπεια-Προφήτης Ηλίας
Κάτω Μέλπεια - Άνω Μέλπεια
Βάστας-Προφήτης Ηλίας
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["arcadian_trails"],pc:["arcadian_trails"],url: 'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_arcadian_trails.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); }