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_epirus_trail = new getAdventureCollection("epirus_trail",[{"id":16986,"author":"AnaDigit","name_GR":"Epirus Trail: \u0386\u03b3\u03bd\u03b1\u03bd\u03c4\u03b1-\u039a\u03b1\u03c4\u03b1\u03c1\u03c1\u03ac\u03ba\u03c4\u03b7\u03c2","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Agnanta_Kataraktis","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":9318,"name_EN":"Epirus Trail: Agnanta-Kataraktis","description_EN":"","ascent_time":220,"descent_time":205,"marker":"No_marks","level":9,"ascent":826,"descent":641,"maxelev":1356,"minelev":627,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.07938 39.44765,21.12425 39.47421)","views":88,"millestones":"0,21.0793949,39.4738721#1,21.0881362,39.4729386#2,21.0960466,39.4730352#3,21.1034503,39.4709778#4,21.1119116,39.4672565#5,21.1162504,39.4611197#6,21.1233663,39.4576945#7,21.1174644,39.4517118#8,21.1124160,39.4480038#9.3,21.1032687,39.4497508","x":21.1123874,"y":39.4652244,"coor":[[21.0793949,39.4738721],[21.0794951,39.4739332],[21.0800699,39.4741728],[21.0804044,39.4742353],[21.0817624,39.4735037],[21.0820148,39.4733614],[21.0821736,39.4734555],[21.0822564,39.4734215],[21.0822957,39.4733144],[21.0820939,39.4731382],[21.0821078,39.4730845],[21.0823665,39.4732892],[21.0824819,39.4733101],[21.0822124,39.473015],[21.0824435,39.4730479],[21.0833282,39.4732367],[21.0836552,39.4731909],[21.0839638,39.4733022],[21.0847804,39.4732326],[21.085262,39.4733889],[21.0858418,39.4734214],[21.0859834,39.4733709],[21.0860501,39.4731654],[21.0862419,39.4730261],[21.0861059,39.472865],[21.0869475,39.4730303],[21.0876573,39.473012],[21.0881022,39.4729331],[21.0883678,39.4729758],[21.0887971,39.4732072],[21.0891563,39.4732342],[21.089705,39.4731759],[21.0901871,39.4730439],[21.0904661,39.4733211],[21.0905691,39.4733597],[21.0908167,39.4732758],[21.091071,39.47303],[21.0915932,39.4727728],[21.0921599,39.472841],[21.0930734,39.472954],[21.0934599,39.4731618],[21.0944862,39.4733586],[21.0945933,39.4732983],[21.0948147,39.4727273],[21.0949053,39.4727836],[21.0949585,39.4729651],[21.0951671,39.4732586],[21.09526,39.4732609],[21.0952304,39.4725755],[21.0952899,39.472541],[21.0956862,39.4730733],[21.0960874,39.4732095],[21.0962848,39.4732144],[21.0962877,39.4731424],[21.0960252,39.4730278],[21.0960083,39.4728742],[21.0962949,39.4729714],[21.0969477,39.4726454],[21.0973788,39.4726202],[21.0975631,39.4725302],[21.0976886,39.4725874],[21.0976485,39.473271],[21.0977028,39.4733625],[21.0981324,39.4733732],[21.0985523,39.4736179],[21.0989325,39.4736994],[21.0994449,39.4736762],[21.0998386,39.4734338],[21.0998295,39.4730913],[21.0994954,39.4727406],[21.0997965,39.4724869],[21.0998737,39.4723086],[21.0998385,39.4720375],[21.0999658,39.4720497],[21.1001283,39.4720853],[21.1007695,39.4720382],[21.1012175,39.4718872],[21.1016355,39.4718977],[21.1017437,39.4718103],[21.1018962,39.4717781],[21.1020546,39.4716018],[21.1025879,39.4713539],[21.1032943,39.4711373],[21.1033568,39.4710307],[21.1040946,39.4706167],[21.1044006,39.4705253],[21.1047478,39.4705609],[21.1050942,39.4703354],[21.1057381,39.4702253],[21.1061433,39.4702624],[21.1065238,39.4700557],[21.1069324,39.4700118],[21.1072171,39.4698748],[21.107229,39.4695868],[21.1071612,39.4695401],[21.1072151,39.4693612],[21.1074668,39.4691783],[21.1074967,39.4690169],[21.1076057,39.4689115],[21.1077004,39.4688688],[21.1079907,39.4688761],[21.1086943,39.4684432],[21.1090322,39.4684245],[21.1091902,39.4685366],[21.1094693,39.4685345],[21.1096832,39.468702],[21.1099517,39.4686726],[21.1100951,39.4685771],[21.1101742,39.4686331],[21.1102227,39.4685893],[21.110296,39.468501],[21.1102346,39.4683013],[21.1103334,39.4681596],[21.1105102,39.468101],[21.1108083,39.4681985],[21.1109252,39.4681834],[21.1110712,39.4680248],[21.1114139,39.4678892],[21.111524,39.4677568],[21.1117475,39.4676903],[21.1118104,39.4675748],[21.1119844,39.4670206],[21.111875,39.4665765],[21.1119289,39.4663976],[21.1118558,39.4661976],[21.1115984,39.465957],[21.1115962,39.4658083],[21.1117973,39.4657232],[21.1118415,39.4654991],[21.1119591,39.465466],[21.1120819,39.4653069],[21.1123874,39.4652244],[21.1123586,39.4650796],[21.1125364,39.4649939],[21.112599,39.4648874],[21.1130746,39.4649082],[21.1130555,39.4648086],[21.1131408,39.4647116],[21.1133434,39.4645906],[21.1135292,39.4645952],[21.1142475,39.4645139],[21.1144519,39.4643749],[21.1143735,39.4640216],[21.1142659,39.4638117],[21.1141626,39.4637821],[21.1144179,39.4635092],[21.1144209,39.4634372],[21.1146343,39.4633344],[21.1146163,39.4632079],[21.1146935,39.4631557],[21.114832,39.4628979],[21.1149051,39.4623142],[21.1149864,39.4623162],[21.1151392,39.4620317],[21.1150081,39.4618303],[21.1149898,39.461465],[21.1156215,39.4613636],[21.115776,39.4612053],[21.1160814,39.4611813],[21.1167539,39.4609368],[21.1175431,39.4609473],[21.1177605,39.4609527],[21.1181678,39.4606565],[21.1187605,39.460374],[21.1189579,39.4603789],[21.1195759,39.4606104],[21.1200032,39.460675],[21.1199721,39.4605842],[21.1198234,39.4604949],[21.1200912,39.4604835],[21.1203152,39.4606872],[21.1208904,39.4605484],[21.1214039,39.4607773],[21.1217278,39.4608123],[21.1219499,39.4607818],[21.1221007,39.4605063],[21.1219283,39.4601777],[21.1219409,39.4598717],[21.1217895,39.4595977],[21.1220575,39.4592981],[21.1222351,39.4583746],[21.1224344,39.4582084],[21.1228844,39.4580033],[21.123188,39.4576865],[21.1233048,39.4576714],[21.1235108,39.4577486],[21.1238485,39.4574507],[21.1238398,39.4573784],[21.1235054,39.457316],[21.1233372,39.4571677],[21.1222177,39.4562707],[21.1221387,39.4562147],[21.1221412,39.4558725],[21.1218801,39.4557219],[21.1217531,39.4557007],[21.1212038,39.4557772],[21.1208128,39.4556774],[21.1207701,39.4555863],[21.1209062,39.4551032],[21.1208904,39.4549226],[21.1207893,39.454839],[21.1203066,39.45471],[21.1199386,39.4540523],[21.1194298,39.453927],[21.1192398,39.4537422],[21.1191847,39.4533895],[21.1190858,39.4532519],[21.1182512,39.4523574],[21.1178437,39.452095],[21.1174631,39.4517433],[21.117491,39.4510683],[21.1168199,39.4509976],[21.1164394,39.4506459],[21.1161234,39.450093],[21.1159252,39.4495476],[21.1159008,39.4492948],[21.1157487,39.4490388],[21.1154469,39.4490313],[21.1147146,39.4493194],[21.1143518,39.4493824],[21.1138299,39.4485137],[21.1134785,39.4488653],[21.1133174,39.4488253],[21.1131466,39.4484607],[21.1131795,39.4482273],[21.1138121,39.4478196],[21.1137028,39.4476547],[21.1136675,39.4473836],[21.1135325,39.4474568],[21.1134887,39.4476584],[21.1133682,39.4477635],[21.1125127,39.4479405],[21.1116768,39.4484872],[21.1116771,39.448199],[21.1115363,39.4482315],[21.1114243,39.4481296],[21.1113004,39.4481491],[21.1110771,39.4484048],[21.1109668,39.4484335],[21.1107358,39.4485179],[21.1106339,39.4484748],[21.1103447,39.4480037],[21.109806,39.4484047],[21.1095686,39.4487861],[21.1091399,39.4490367],[21.1088932,39.4491026],[21.1087754,39.4499825],[21.1085238,39.4501655],[21.1080835,39.4501275],[21.1078337,39.4499861],[21.1074964,39.4499958],[21.1070272,39.4498219],[21.1062061,39.4500087],[21.105912,39.4498932],[21.1057184,39.4497983],[21.1053208,39.4498605],[21.1050074,39.4495149],[21.1048467,39.4496911],[21.1047052,39.4497416],[21.1043008,39.4496865],[21.1034826,39.4498012],[21.1032687,39.4497508]]},{"id":16987,"author":"AnaDigit","name_GR":"Epirus Trail: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03c5\u03bd\u03af\u03bf\u03c5-\u039c\u03ad\u03c4\u03c3\u03bf\u03b2\u03bf","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_MavrovouniRef_Metsovo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":12566,"name_EN":"Epirus Trail: Mavrovouni Refuge -Metsovo","description_EN":"","ascent_time":340,"descent_time":355,"marker":"No_marks","level":9,"ascent":171,"descent":866,"maxelev":1840,"minelev":1140,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.14027 39.76982,21.18306 39.8462)","views":46,"millestones":"0,21.1483076,39.8462211#1,21.1475622,39.8422971#2,21.1578281,39.8424910#3,21.1598057,39.8344700#4,21.1540326,39.8271233#5,21.1463838,39.8228724#6,21.1419961,39.8174615#7,21.1435008,39.8111807#8,21.1477184,39.8040502#9,21.1516043,39.7957562#10,21.1572636,39.7882236#11,21.1582588,39.7820447#12,21.1646915,39.7796234#13,21.1742099,39.7784685#12.6,21.1827392,39.7698099","x":21.1436919,"y":39.8166153,"coor":[[21.1483076,39.8462211],[21.1480113,39.8461237],[21.1478706,39.8461338],[21.1476742,39.8463632],[21.147545,39.846378],[21.1469574,39.8461744],[21.1466147,39.8457336],[21.1463679,39.8454843],[21.1461394,39.8456408],[21.1458031,39.8455785],[21.1456309,39.8452229],[21.1453458,39.845333],[21.1452536,39.8453037],[21.1451805,39.845374],[21.1449282,39.8452596],[21.1446912,39.8450556],[21.1444005,39.8450214],[21.1442875,39.8449286],[21.1442934,39.8447846],[21.1444388,39.8446621],[21.1444673,39.8445367],[21.1450727,39.8440291],[21.1454501,39.8433808],[21.1454617,39.8431019],[21.1453524,39.842919],[21.1452965,39.8425753],[21.1456045,39.8427],[21.1454908,39.8425396],[21.1461318,39.8425509],[21.1462398,39.8424815],[21.1468389,39.8424061],[21.1469944,39.8423199],[21.1471439,39.8423776],[21.1473902,39.8423566],[21.1481726,39.8420876],[21.1487322,39.8421194],[21.1491235,39.8422642],[21.1493455,39.8424047],[21.1494856,39.8424082],[21.1497345,39.8423242],[21.1504149,39.8422599],[21.150944,39.8421243],[21.1514579,39.8418486],[21.1521616,39.8417848],[21.153154,39.8420885],[21.153467,39.8422088],[21.1537829,39.8421985],[21.1540243,39.8422945],[21.1542265,39.8422094],[21.1543414,39.8422572],[21.1545565,39.8421995],[21.1548734,39.8423649],[21.1555273,39.8420927],[21.155925,39.8420844],[21.1561329,39.8421436],[21.1562752,39.842093],[21.156575,39.8421319],[21.1569484,39.8418618],[21.1570893,39.8418472],[21.157586,39.8419855],[21.157695,39.8421774],[21.1576434,39.8422932],[21.1577535,39.8424581],[21.1579256,39.8425343],[21.1582408,39.8425421],[21.158513,39.8424587],[21.158789,39.8422853],[21.1589973,39.8417409],[21.1589791,39.8414161],[21.1594841,39.840789],[21.1595317,39.8404839],[21.1598995,39.8397812],[21.1599055,39.8396373],[21.1597204,39.8393084],[21.1597297,39.8379484],[21.1596772,39.8368122],[21.1596257,39.8363605],[21.1596773,39.8362447],[21.1599478,39.8358865],[21.1598387,39.8354154],[21.1600327,39.8349607],[21.1599847,39.8347073],[21.1586101,39.8329081],[21.1583404,39.8323385],[21.1580929,39.8321072],[21.1579104,39.8317154],[21.1574889,39.8314528],[21.1567381,39.8306777],[21.1565138,39.8301678],[21.1565362,39.8299071],[21.1564227,39.829544],[21.1564477,39.8292203],[21.1565529,39.8289617],[21.1563575,39.8288848],[21.1553409,39.8280401],[21.1546415,39.8277167],[21.1543248,39.8274657],[21.1541594,39.8272274],[21.1538113,39.8269442],[21.153769,39.826835],[21.1533884,39.8267176],[21.1529801,39.8264193],[21.1524762,39.8261727],[21.1522649,39.8259153],[21.1520804,39.8258567],[21.1517899,39.8253361],[21.1516091,39.8251876],[21.1514454,39.8251925],[21.151358,39.8250463],[21.1506148,39.8249379],[21.1504077,39.8248608],[21.1502158,39.8246984],[21.1500241,39.8245316],[21.1497978,39.8244404],[21.1499015,39.8239115],[21.1498518,39.8237842],[21.1499439,39.8235342],[21.1496345,39.8236707],[21.1491953,39.8238086],[21.1489559,39.8239468],[21.1485825,39.8239376],[21.1482507,39.8237673],[21.1478918,39.8234072],[21.1473507,39.8232137],[21.1472889,39.823014],[21.1472718,39.822892],[21.1470375,39.822652],[21.1468866,39.8226303],[21.1465805,39.8227444],[21.1463645,39.8228832],[21.1457273,39.8233179],[21.1450174,39.8235346],[21.1441833,39.8230817],[21.1435847,39.8228688],[21.1430508,39.8227835],[21.1429648,39.8225787],[21.1431577,39.8221511],[21.1431888,39.8216835],[21.1425362,39.8210819],[21.1422638,39.8206067],[21.1415587,39.8200038],[21.1413861,39.8196573],[21.1413942,39.81918],[21.1418884,39.8188139],[21.1419353,39.8185268],[21.1419344,39.8185178],[21.1419021,39.8182017],[21.1418147,39.8180554],[21.1418339,39.8177586],[21.1420235,39.817412],[21.142451,39.8169631],[21.1432609,39.8165867],[21.1435191,39.816557],[21.1436919,39.8166153],[21.1443856,39.8165063],[21.1445644,39.8164206],[21.1446874,39.8160453],[21.1445095,39.8155455],[21.1444961,39.8152749],[21.1444944,39.8152073],[21.1444638,39.8150985],[21.1439927,39.8146275],[21.1434916,39.8143179],[21.1431651,39.8140216],[21.1430311,39.813676],[21.1431108,39.8134437],[21.1426323,39.8136571],[21.1424784,39.8134822],[21.1427898,39.8127332],[21.1426922,39.8125506],[21.1429958,39.8119906],[21.1429836,39.8117201],[21.1434705,39.8112456],[21.1436375,39.8108804],[21.1440423,39.810413],[21.1440998,39.8098424],[21.1440018,39.8093896],[21.1442106,39.8091425],[21.1442681,39.8088827],[21.1441784,39.8087904],[21.1438747,39.8087919],[21.1437094,39.8085536],[21.1437618,39.8078523],[21.1442214,39.807188],[21.144654,39.807005],[21.1449806,39.8067338],[21.1455357,39.8057385],[21.1460885,39.8056441],[21.1465528,39.8053492],[21.1475334,39.8048509],[21.1476017,39.8043301],[21.1477186,39.8040447],[21.1483366,39.8032222],[21.1492417,39.8025148],[21.1493966,39.8021583],[21.1498032,39.8016458],[21.1503511,39.8006233],[21.150511,39.8001183],[21.1507992,39.7993597],[21.1509825,39.7985985],[21.1513799,39.797203],[21.1516673,39.7953905],[21.1516702,39.7953185],[21.1518249,39.7952502],[21.1521832,39.7947726],[21.1521679,39.794493],[21.1522961,39.7942169],[21.1526941,39.7939114],[21.1533253,39.7936386],[21.1534701,39.793525],[21.153989,39.7928352],[21.1548687,39.7913254],[21.1556225,39.790317],[21.1560184,39.789579],[21.1562154,39.7893316],[21.1565852,39.7891425],[21.1571109,39.788741],[21.157792,39.7864652],[21.1571065,39.786097],[21.1570477,39.7860235],[21.1564938,39.7852668],[21.1563629,39.7847591],[21.1557994,39.7842679],[21.1555028,39.7840985],[21.1551641,39.7834236],[21.1550741,39.7834529],[21.1548908,39.7831151],[21.1559835,39.7829167],[21.1561603,39.782876],[21.1568216,39.7824418],[21.1570001,39.7824146],[21.157382,39.7824961],[21.1579015,39.7823557],[21.1581407,39.7822174],[21.1584019,39.7818274],[21.1591706,39.7813058],[21.1599508,39.7810727],[21.1603869,39.7808041],[21.1604409,39.7806253],[21.1608852,39.7800416],[21.1612251,39.7797842],[21.1612817,39.7795424],[21.1615838,39.7791534],[21.161651,39.7789389],[21.1616889,39.7786425],[21.1619945,39.7783077],[21.1620935,39.7778867],[21.1621916,39.777772],[21.1629469,39.7775743],[21.1631784,39.777625],[21.1630826,39.7780506],[21.1631809,39.7782151],[21.1635286,39.7782777],[21.1636373,39.7784154],[21.1639923,39.7791538],[21.1644442,39.7792369],[21.1645264,39.7795362],[21.1646276,39.7796287],[21.1651081,39.7795864],[21.1653285,39.7796188],[21.1656507,39.7797348],[21.1658755,39.7799475],[21.1661509,39.7800623],[21.1663367,39.7803731],[21.1666756,39.7803634],[21.1670788,39.7802111],[21.1679069,39.7802313],[21.1681373,39.780309],[21.1686823,39.7806826],[21.1696467,39.7807963],[21.1710587,39.7808442],[21.1720977,39.7804462],[21.1732268,39.7789919],[21.1733975,39.7788159],[21.1741583,39.7784831],[21.1754341,39.7781178],[21.1758802,39.7780566],[21.176072,39.7779352],[21.1762441,39.7777232],[21.1765426,39.7774467],[21.1769805,39.7773267],[21.1780243,39.7766405],[21.1783917,39.7758477],[21.1787067,39.7755671],[21.1788816,39.7756885],[21.1789183,39.7755633],[21.1791188,39.7755141],[21.1793475,39.7750602],[21.1795087,39.7745417],[21.1795589,39.7738853],[21.179614,39.7737921],[21.1796688,39.7737078],[21.1799861,39.773085],[21.1806388,39.7727405],[21.1812097,39.7721959],[21.1815829,39.7719708],[21.1817889,39.7718452],[21.1822886,39.7716997],[21.1825805,39.7716122],[21.1830038,39.7712531],[21.1829933,39.7710232],[21.1829058,39.7708769],[21.1828691,39.7705472],[21.1828593,39.7705019],[21.1827011,39.7700026],[21.1827471,39.7698776],[21.1827392,39.7698099]]},{"id":16988,"author":"AnaDigit","name_GR":"Epirus Trail: \u039b\u03ac\u03b9\u03c3\u03c4\u03b1-\u0392\u03c9\u03b2\u03bf\u03cd\u03c3\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Laista_Vovousa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":12518,"name_EN":"Epirus Trail: Laista-Vovousa","description_EN":"","ascent_time":290,"descent_time":290,"marker":"No_marks","level":9,"ascent":721,"descent":739,"maxelev":1502,"minelev":891,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.95481 39.93439,21.04988 39.97153)","views":74,"millestones":"0,20.9550888,39.9715432#1,20.9600127,39.9654961#2,20.9675509,39.9604579#3,20.9748827,39.9569880#4,20.9813491,39.9500820#5,20.9874226,39.9468317#6,20.9957373,39.9427368#7,21.0028446,39.9392208#8,21.0105969,39.9380996#9,21.0195632,39.9364669#10,21.0270818,39.9353063#11,21.0365743,39.9360320#12,21.0460585,39.9371989#12.5,21.0497776,39.9367426","x":21.001365,"y":39.9392873,"coor":[[20.9550888,39.9715432],[20.9548333,39.970969],[20.9549579,39.9708012],[20.9552098,39.9706637],[20.9552204,39.9704253],[20.955225,39.9703218],[20.9553148,39.970144],[20.9555503,39.9701142],[20.9564793,39.9704944],[20.9569774,39.9706156],[20.9574055,39.9704647],[20.9576228,39.9702677],[20.9577376,39.9700545],[20.9578528,39.969436],[20.9579617,39.9693578],[20.9582668,39.9682849],[20.9581961,39.9677922],[20.95832,39.9671109],[20.9591709,39.9666648],[20.9594313,39.9663384],[20.959606,39.9658295],[20.9599688,39.9655688],[20.9602085,39.9651788],[20.9606939,39.9646826],[20.9607988,39.9646943],[20.9609193,39.9646164],[20.9613396,39.964114],[20.9614583,39.9638109],[20.9617047,39.9637993],[20.9624394,39.9633322],[20.9625914,39.9633362],[20.962664,39.963284],[20.9630615,39.9632945],[20.9633908,39.9629968],[20.9640176,39.9628511],[20.9642243,39.9626764],[20.9643049,39.9624443],[20.9646644,39.9622556],[20.9648517,39.9619903],[20.9652399,39.9619464],[20.9652102,39.9620897],[20.965378,39.9622653],[20.9655175,39.9622869],[20.9656033,39.9621991],[20.965838,39.9621872],[20.9661763,39.9616827],[20.9667287,39.9616341],[20.9667689,39.961518],[20.966889,39.9614491],[20.966963,39.9610998],[20.9673172,39.9607668],[20.9675324,39.9606643],[20.9675765,39.9601971],[20.9678993,39.9600434],[20.9679463,39.9596708],[20.968024,39.9595017],[20.9682912,39.9592835],[20.9682813,39.958977],[20.9681095,39.9585491],[20.9684908,39.958397],[20.9691697,39.9583967],[20.9697848,39.9582507],[20.9700428,39.9582394],[20.9703295,39.958373],[20.9706172,39.9587498],[20.9713311,39.9592819],[20.9716117,39.9592893],[20.9722106,39.9589807],[20.9728803,39.9583947],[20.9731637,39.9578076],[20.9736556,39.957271],[20.973905,39.9571874],[20.9745637,39.9571145],[20.9748491,39.9570139],[20.97514,39.9567873],[20.9753578,39.9563606],[20.9757204,39.9560999],[20.9759115,39.9560148],[20.9763819,39.955964],[20.9769847,39.9555654],[20.9771704,39.955336],[20.9773503,39.95444],[20.9776241,39.9540688],[20.9777621,39.953595],[20.9784033,39.9528551],[20.9787506,39.952675],[20.9791417,39.9517664],[20.9792743,39.9516798],[20.9796508,39.9516356],[20.9799042,39.951462],[20.9803332,39.9510228],[20.9806934,39.950816],[20.9813096,39.9501115],[20.9818297,39.9497287],[20.9827113,39.9483104],[20.9827748,39.9476635],[20.9829967,39.9474081],[20.983512,39.9471333],[20.9839152,39.9467474],[20.9844212,39.9465219],[20.9850447,39.9464481],[20.9852803,39.9461479],[20.9853995,39.946097],[20.9855842,39.9461559],[20.985879,39.9463707],[20.9862672,39.9463268],[20.9868354,39.9462875],[20.9877507,39.9456988],[20.9879506,39.945677],[20.9880425,39.9457154],[20.9879815,39.9460381],[20.987636,39.9464434],[20.9872625,39.9471138],[20.9873431,39.9471429],[20.9874507,39.9470917],[20.9878259,39.9465429],[20.9883693,39.9461607],[20.9885571,39.9461476],[20.9889724,39.9462845],[20.9895133,39.9462265],[20.9897207,39.9460337],[20.990294,39.9457694],[20.990714,39.9452669],[20.9916581,39.9445528],[20.9924757,39.9443218],[20.9926974,39.9443365],[20.9929962,39.9444614],[20.9931139,39.9444464],[20.9933225,39.9442267],[20.9938128,39.9439872],[20.9939704,39.9435949],[20.9944415,39.9431793],[20.994641,39.9431665],[20.994871,39.9429923],[20.9951182,39.9429852],[20.9951672,39.9429099],[20.9953052,39.9428549],[20.995433,39.9428762],[20.9957132,39.9427574],[20.9959517,39.9425519],[20.9964981,39.9423679],[20.9969736,39.9419298],[20.996934,39.9417667],[20.9965912,39.9413885],[20.997171,39.9412684],[20.9977797,39.9409959],[20.9982352,39.9410167],[20.9987948,39.940797],[20.9996566,39.9408914],[20.9999232,39.9406821],[20.9999732,39.9403412],[21.0001361,39.9403634],[21.0001883,39.9402386],[21.0003926,39.9401178],[21.0003845,39.9397663],[21.0005832,39.9397715],[21.0007074,39.9390721],[21.0008776,39.9391936],[21.0010557,39.9391351],[21.001365,39.9392873],[21.0015294,39.9392735],[21.0016198,39.9393479],[21.0019845,39.9393033],[21.00214,39.9392263],[21.0021345,39.9393522],[21.0023624,39.9394932],[21.0024887,39.9392803],[21.0026555,39.9392126],[21.0027318,39.9393406],[21.0028546,39.9392087],[21.00316,39.9391806],[21.0031573,39.9392436],[21.0034323,39.9393768],[21.0036058,39.9391561],[21.0038302,39.9391078],[21.0038956,39.9390059],[21.0043601,39.9385496],[21.0044238,39.9386998],[21.0044971,39.9386297],[21.0046256,39.938633],[21.0047816,39.9382767],[21.005043,39.9384546],[21.0050041,39.9382735],[21.0051896,39.9380441],[21.0053711,39.9381749],[21.0054858,39.9379616],[21.0056244,39.9380013],[21.0057648,39.9377347],[21.0063119,39.9375326],[21.0064732,39.9373206],[21.0065394,39.9374124],[21.0066381,39.9372978],[21.0068079,39.9372932],[21.0069613,39.9372656],[21.0071548,39.937658],[21.0073124,39.9375855],[21.0075358,39.937294],[21.0080322,39.9371807],[21.0082184,39.9372035],[21.0083276,39.9372739],[21.0084477,39.9374707],[21.0085685,39.937654],[21.0090204,39.9377557],[21.0093686,39.938089],[21.0098162,39.9382897],[21.0101318,39.9382978],[21.0103134,39.9381584],[21.0106205,39.9380943],[21.0110599,39.9382137],[21.0113114,39.9382157],[21.0120286,39.9380045],[21.0124447,39.9381233],[21.0128553,39.9380979],[21.0133206,39.9378937],[21.0135387,39.9379894],[21.0134506,39.9384015],[21.0135448,39.9386561],[21.0136999,39.938588],[21.0141901,39.9386187],[21.0146062,39.9384673],[21.0148984,39.9384748],[21.0155382,39.9382931],[21.0161141,39.9385061],[21.0162325,39.9384731],[21.0164639,39.9385331],[21.0172825,39.9385452],[21.0176948,39.9382135],[21.0180026,39.9381314],[21.0185559,39.9377853],[21.0187188,39.9375373],[21.0191007,39.937367],[21.0192651,39.9368127],[21.0195013,39.9364945],[21.0198114,39.9363584],[21.0200557,39.9363917],[21.0201352,39.9361775],[21.020284,39.9362534],[21.020496,39.9362229],[21.0209191,39.9359095],[21.0212675,39.935432],[21.0219276,39.9349716],[21.0223169,39.934842],[21.0229804,39.934224],[21.0234604,39.9339481],[21.0239037,39.9339775],[21.0242922,39.9339244],[21.0251415,39.9340363],[21.0260302,39.9340501],[21.0262928,39.9339307],[21.02686,39.9338012],[21.0269605,39.9339118],[21.0274148,39.9339595],[21.0273984,39.9340672],[21.0271771,39.9343137],[21.0268312,39.934467],[21.0268117,39.9349169],[21.0268514,39.93508],[21.0272777,39.9355053],[21.0273606,39.9357507],[21.0275321,39.9358451],[21.0275618,39.935945],[21.0283464,39.9356588],[21.0287602,39.9352911],[21.0290594,39.9351367],[21.0295784,39.9350419],[21.0299672,39.93525],[21.0301308,39.9352542],[21.0305652,39.9349501],[21.0312439,39.9346792],[21.0318708,39.9347944],[21.03235,39.9350769],[21.0331456,39.9350793],[21.0336303,39.9352358],[21.0338539,39.9352055],[21.0341196,39.9350141],[21.0343565,39.9349481],[21.0347598,39.9349269],[21.0350372,39.9350061],[21.0357149,39.9358431],[21.0360125,39.9359949],[21.0367941,39.9360509],[21.0371713,39.9362587],[21.0373575,39.9362815],[21.0378546,39.9358798],[21.0380307,39.9355961],[21.0384063,39.9355697],[21.0387974,39.9354536],[21.0392015,39.9358512],[21.0393885,39.935856],[21.0395821,39.9357078],[21.0397232,39.9356934],[21.0404004,39.9362692],[21.0409101,39.9363903],[21.041464,39.9366251],[21.0415552,39.9366815],[21.0416404,39.9366296],[21.0418033,39.9366518],[21.0422732,39.93688],[21.0425078,39.936868],[21.0428334,39.9366421],[21.0433555,39.9367455],[21.0438924,39.9367772],[21.0443156,39.9370042],[21.0444444,39.9372236],[21.0445595,39.9370464],[21.0446789,39.9370225],[21.0449953,39.9372827],[21.0454496,39.9373304],[21.0458977,39.9372517],[21.047163,39.9368336],[21.0476445,39.9368729],[21.0479693,39.9369397],[21.0481711,39.9368728],[21.0487103,39.9368505],[21.0487347,39.9368286],[21.049168,39.9370108],[21.049547,39.9369349],[21.0497776,39.9367426]]},{"id":16989,"author":"AnaDigit","name_GR":"Epirus Trail: \u0391\u03b5\u03c4\u03bf\u03bc\u03b7\u03bb\u03af\u03c4\u03c3\u03b1-\u03a3\u03b1\u03c1\u03b1\u03bd\u03c4\u03ac\u03c0\u03bf\u03c1\u03bf\u03c2","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Aetomilitsa_Sarantaporos","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":16797,"name_EN":"Epirus Trail: Aetomilitsa-Sarantaporos","description_EN":"","ascent_time":465,"descent_time":480,"marker":"O3","level":9,"ascent":580,"descent":1300,"maxelev":1675,"minelev":705,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.85414 40.22915,20.91408 40.31117)","views":77,"millestones":"0,20.8541644,40.3107280#1,20.8639217,40.3100164#2,20.8693760,40.3058489#3,20.8744928,40.2996886#4,20.8805369,40.2935912#5,20.8903446,40.2917940#6,20.8998245,40.2912591#7,20.9064080,40.2861842#8,20.9084478,40.2797825#9,20.9044930,40.2730243#10,20.9001202,40.2675514#11,20.8962595,40.2613154#12,20.8921780,40.2537580#13,20.8943005,40.2465293#14,20.9012907,40.2409366#15,20.9042818,40.2344010#16,20.9102455,40.2330974#16.8,20.9140766,40.2291486","x":20.9072469,"y":40.2776453,"coor":[[20.8541644,40.310728],[20.8552021,40.3107292],[20.8556687,40.3105617],[20.8563301,40.3105077],[20.8572488,40.3107398],[20.857635,40.3110115],[20.857708,40.3112117],[20.8579993,40.3112736],[20.8586884,40.3111302],[20.8595924,40.3108441],[20.8601932,40.3104731],[20.8605461,40.3102215],[20.8607492,40.3101549],[20.860947,40.3101513],[20.8612743,40.309944],[20.8615436,40.3099198],[20.8617921,40.3099401],[20.8619956,40.3098645],[20.8623743,40.3100729],[20.8627146,40.3100912],[20.8635767,40.3102767],[20.8638212,40.3102293],[20.8635198,40.3101311],[20.8634382,40.3100163],[20.86445,40.3100167],[20.8652241,40.3105781],[20.8656236,40.3105889],[20.8660307,40.3106901],[20.8662082,40.3106678],[20.8663416,40.3105814],[20.8663164,40.3103645],[20.8661234,40.3100576],[20.8660729,40.3096239],[20.866155,40.3093739],[20.866488,40.308892],[20.8666047,40.3089132],[20.8669139,40.3088405],[20.8670012,40.3087348],[20.8669852,40.3085723],[20.8671949,40.3083618],[20.8672208,40.3080562],[20.8671241,40.3078825],[20.8669897,40.3077347],[20.8667244,40.3076194],[20.8667404,40.3075298],[20.8669426,40.3074812],[20.8669598,40.3073646],[20.8670995,40.3073954],[20.8671499,40.3073247],[20.8672288,40.3073989],[20.8673366,40.3073568],[20.8676216,40.3065359],[20.8677961,40.3063245],[20.8680705,40.3062418],[20.8685246,40.3063442],[20.8686677,40.306303],[20.8691729,40.3060645],[20.8693591,40.3058534],[20.8696092,40.3057881],[20.8698198,40.3058118],[20.8703401,40.3055017],[20.8704945,40.3054698],[20.8703409,40.3053035],[20.8701676,40.3052358],[20.8703245,40.30515],[20.8703312,40.305006],[20.8704041,40.304954],[20.8706039,40.3049594],[20.8707177,40.3050435],[20.8709195,40.305004],[20.8711678,40.3047225],[20.8713834,40.3046382],[20.8714856,40.3042086],[20.871624,40.3040142],[20.8720141,40.3037186],[20.8722374,40.3037246],[20.8726123,40.3032484],[20.8726162,40.302654],[20.8728616,40.3023859],[20.8725518,40.3019857],[20.8725676,40.3017475],[20.8724207,40.3016174],[20.8723865,40.3013373],[20.872467,40.3011233],[20.872575,40.3010496],[20.8728727,40.3007154],[20.873544,40.3004453],[20.8735892,40.3002304],[20.8739364,40.2998435],[20.8747822,40.2996142],[20.8748963,40.2994371],[20.8748211,40.2992819],[20.8748898,40.2990676],[20.8751955,40.2988147],[20.8751983,40.2977339],[20.8752738,40.2976279],[20.8752299,40.2972529],[20.8754871,40.2972869],[20.8756331,40.2971827],[20.8756439,40.2969488],[20.875836,40.296864],[20.8760381,40.2965632],[20.8764809,40.2961428],[20.876454,40.2959619],[20.8766041,40.2957678],[20.876756,40.29579],[20.8768902,40.2956855],[20.8772002,40.2955948],[20.878393,40.2954919],[20.8790058,40.2952112],[20.8793786,40.2947799],[20.8794244,40.2942948],[20.8798749,40.2939647],[20.8800016,40.2940222],[20.8801618,40.2939679],[20.8803648,40.2939014],[20.8805953,40.2934932],[20.8809326,40.2933222],[20.8816064,40.2932503],[20.8820471,40.2928749],[20.8826621,40.2928014],[20.8831176,40.2926155],[20.8833768,40.2923523],[20.8837842,40.2924444],[20.8841441,40.2922919],[20.885402,40.2923078],[20.8859599,40.2921968],[20.8862536,40.2922047],[20.8863312,40.2921032],[20.8868918,40.2921903],[20.8870963,40.2921913],[20.8873016,40.292332],[20.8874217,40.2925334],[20.8878665,40.2925814],[20.8881175,40.2927503],[20.8887095,40.2926671],[20.8891046,40.2920022],[20.8892891,40.291827],[20.8897584,40.2915965],[20.8898876,40.2916],[20.8908106,40.2919941],[20.8909981,40.2920081],[20.8912842,40.2919257],[20.8917999,40.2919666],[20.8920029,40.2919],[20.8923098,40.2916201],[20.8930019,40.2914045],[20.8931152,40.2914976],[20.893127,40.2920113],[20.8932865,40.2921237],[20.8935223,40.292112],[20.89393,40.2919428],[20.8946627,40.2921246],[20.8952189,40.2920495],[20.8956645,40.2920795],[20.8960098,40.2919897],[20.8967971,40.292263],[20.8974043,40.2923604],[20.8978182,40.2925696],[20.898007,40.2925567],[20.8982227,40.2922112],[20.8985391,40.2922377],[20.898901,40.2920403],[20.8991576,40.291831],[20.8993742,40.2914675],[20.899685,40.2913587],[20.8999039,40.2912025],[20.9002282,40.2907969],[20.9004627,40.2902987],[20.900784,40.2902173],[20.9014252,40.2903426],[20.9017401,40.2901438],[20.9020196,40.2902054],[20.9021983,40.2901561],[20.9022759,40.2897439],[20.9020984,40.2892527],[20.9021753,40.2888585],[20.9018897,40.2881573],[20.9019486,40.2878976],[20.9023896,40.2875132],[20.9027361,40.2873963],[20.9031297,40.287533],[20.9036946,40.2872689],[20.9043524,40.2872865],[20.9049125,40.2868692],[20.9057581,40.2866396],[20.906105,40.2862526],[20.9063777,40.2862058],[20.9066816,40.2859888],[20.9069061,40.2859678],[20.9072661,40.2860675],[20.9074691,40.2860008],[20.9075093,40.2858938],[20.9073454,40.2856192],[20.9073504,40.2852501],[20.9076966,40.284881],[20.9078138,40.284632],[20.9079165,40.2841844],[20.9078114,40.2839113],[20.9081777,40.2836149],[20.9082286,40.283274],[20.9086403,40.2830148],[20.908905,40.2826255],[20.9086395,40.2822582],[20.9086019,40.28205],[20.9089849,40.2816459],[20.9095097,40.2812276],[20.9097575,40.2806938],[20.9096281,40.2806183],[20.9095982,40.2805004],[20.9094823,40.2804613],[20.9095573,40.2803642],[20.9093803,40.2803775],[20.9094922,40.2802454],[20.909316,40.2802406],[20.9093594,40.2800617],[20.9091067,40.2799288],[20.9086835,40.2799265],[20.908592,40.27987],[20.9086204,40.2797627],[20.908466,40.2797946],[20.9083405,40.2797102],[20.9083726,40.2795219],[20.9081527,40.2794439],[20.9082403,40.2793292],[20.9080532,40.2793062],[20.9079066,40.2791671],[20.9078232,40.2791919],[20.9077434,40.2791357],[20.9079639,40.2789435],[20.9078758,40.2785538],[20.9076701,40.2784222],[20.9074475,40.2781461],[20.9074512,40.2780651],[20.9072783,40.2779884],[20.9072472,40.2778975],[20.9073708,40.2777657],[20.9072197,40.2777256],[20.9072469,40.2776453],[20.907115,40.2774436],[20.9068813,40.2774103],[20.9067988,40.2771559],[20.9066696,40.2771525],[20.9062389,40.2767987],[20.9062446,40.2766727],[20.9059841,40.2761974],[20.9061166,40.2761289],[20.9061006,40.2758627],[20.9060233,40.2757526],[20.9060626,40.2756636],[20.9054962,40.2754502],[20.9054011,40.2751099],[20.9053481,40.2749824],[20.905394,40.2747495],[20.9051984,40.2746541],[20.9047213,40.2740289],[20.9047223,40.2737497],[20.9050751,40.2737501],[20.905027,40.2735147],[20.9044963,40.2730321],[20.9043584,40.2727041],[20.9033113,40.2724599],[20.9031231,40.2722027],[20.9029855,40.2721269],[20.9024298,40.2721931],[20.9022973,40.2722616],[20.9017937,40.2719599],[20.901662,40.2720104],[20.9015106,40.2719793],[20.9015633,40.2718546],[20.9014658,40.2716719],[20.9012282,40.2714674],[20.9010957,40.2715359],[20.9007339,40.2712199],[20.9007279,40.2710937],[20.9006137,40.2710185],[20.9005937,40.2706847],[20.900742,40.2705266],[20.900749,40.2703737],[20.9006244,40.2702712],[20.9004599,40.2702668],[20.9004171,40.2701756],[20.9009847,40.2698486],[20.9010747,40.2696798],[20.9009488,40.2696044],[20.900887,40.2694136],[20.9006964,40.2692103],[20.9008029,40.2691952],[20.9010274,40.268913],[20.9012798,40.2687936],[20.9013548,40.2686966],[20.9011726,40.2685656],[20.901119,40.2681948],[20.9009884,40.2679662],[20.900546,40.267612],[20.9003455,40.2676247],[20.8998937,40.2674774],[20.8999043,40.2672436],[20.8996744,40.2671293],[20.8994804,40.2667953],[20.8993805,40.2666666],[20.899413,40.2664693],[20.8992936,40.2663535],[20.8989901,40.2662553],[20.8989577,40.2656779],[20.8986143,40.2657318],[20.8981859,40.2655852],[20.897928,40.2655693],[20.89749,40.2653774],[20.8973017,40.2653813],[20.896658,40.2650578],[20.896903,40.264587],[20.8970686,40.264051],[20.8970244,40.2634734],[20.8966999,40.2631134],[20.8966822,40.2629868],[20.8968637,40.2628746],[20.8971565,40.2629005],[20.8972221,40.2625419],[20.8971954,40.2623295],[20.896841,40.2618517],[20.8965835,40.2618267],[20.896284,40.2616926],[20.8961188,40.2617062],[20.8962652,40.2613318],[20.8961601,40.2610363],[20.896274,40.2608592],[20.8962424,40.2607773],[20.8958599,40.2606589],[20.8957264,40.2604932],[20.8956691,40.2602034],[20.8955449,40.260092],[20.8952437,40.2599938],[20.8947727,40.2594948],[20.8947141,40.2593626],[20.8943744,40.2591553],[20.893862,40.2587903],[20.8933107,40.2579919],[20.8932852,40.2575228],[20.8934673,40.2571404],[20.8933764,40.2568137],[20.8931577,40.2564565],[20.8931801,40.256223],[20.893013,40.2560203],[20.8929424,40.2557662],[20.8925215,40.2554577],[20.8921017,40.2548699],[20.892064,40.2544096],[20.8919145,40.2540813],[20.8919095,40.2539055],[20.8919715,40.2538351],[20.8926053,40.2536],[20.8927763,40.2534604],[20.8929389,40.253118],[20.892957,40.2527222],[20.8931354,40.2524207],[20.8931226,40.2521862],[20.8939125,40.2521354],[20.8944151,40.2519417],[20.8943929,40.2514007],[20.8949179,40.25046],[20.8946762,40.2493186],[20.8942529,40.2490641],[20.8941198,40.248376],[20.8936862,40.2478329],[20.8937011,40.247509],[20.8934903,40.2472332],[20.8940092,40.2469409],[20.894294,40.2466243],[20.8943239,40.2462287],[20.894411,40.246123],[20.8946134,40.2460654],[20.8951174,40.2460969],[20.8953438,40.246031],[20.8955957,40.2459206],[20.8959283,40.2455873],[20.8962957,40.2447505],[20.8962831,40.2442547],[20.8965095,40.2442158],[20.8966606,40.2439947],[20.8968416,40.2438914],[20.8969296,40.2437677],[20.8968029,40.2437102],[20.8969172,40.2436007],[20.8973573,40.2434864],[20.8979608,40.2430883],[20.8981734,40.243067],[20.8983064,40.2427283],[20.8984915,40.2425351],[20.8985743,40.2422671],[20.8993516,40.2414593],[20.8999823,40.2415482],[20.9001649,40.241409],[20.9004584,40.2414169],[20.900616,40.241313],[20.9008277,40.2413097],[20.9010431,40.2412254],[20.9009994,40.2411522],[20.901208,40.2409596],[20.9017081,40.2408199],[20.9017231,40.2407482],[20.9018178,40.2407328],[20.9020633,40.2405051],[20.9024329,40.2403889],[20.9027035,40.240126],[20.9030019,40.2400259],[20.903175,40.2395802],[20.903145,40.2389489],[20.9032974,40.2387007],[20.9032408,40.2386542],[20.9036256,40.2382051],[20.9042217,40.2377617],[20.9039979,40.2369991],[20.9042229,40.2366269],[20.9040657,40.2362083],[20.9037728,40.2359303],[20.9036445,40.2359088],[20.903435,40.235606],[20.9029082,40.2353036],[20.9028945,40.2350871],[20.9032549,40.2349166],[20.9031429,40.2347965],[20.9035201,40.2347706],[20.9035963,40.2346465],[20.9037631,40.2345969],[20.9037915,40.2344896],[20.903885,40.2345011],[20.9038992,40.2344475],[20.9049391,40.2343222],[20.904991,40.2342155],[20.9052132,40.2342394],[20.9052096,40.2340592],[20.9052408,40.2341501],[20.9055952,40.2343668],[20.9057033,40.2343156],[20.9059121,40.2343752],[20.9059001,40.2341227],[20.9059658,40.2339713],[20.9061989,40.2340136],[20.906348,40.2338375],[20.9068331,40.2335082],[20.9070577,40.2334781],[20.9074181,40.2333076],[20.9073865,40.2332257],[20.9075675,40.2331225],[20.9075705,40.2327983],[20.9078756,40.2325498],[20.9081169,40.2339613],[20.9083735,40.2340042],[20.9090201,40.2345169],[20.9091391,40.2344841],[20.9092536,40.2345502],[20.9092828,40.2344248],[20.909467,40.2345108],[20.9096338,40.2344612],[20.9095169,40.2341879],[20.9096077,40.2340012],[20.9095669,40.233865],[20.9096836,40.2336249],[20.9099325,40.2335775],[20.9101058,40.2333074],[20.9103837,40.2328825],[20.9106619,40.2327098],[20.9106616,40.2324576],[20.9111778,40.2322192],[20.9114374,40.2319379],[20.9114095,40.231775],[20.911533,40.2313324],[20.9116341,40.231101],[20.9120409,40.2309407],[20.9125317,40.2304854],[20.912824,40.230259],[20.9131225,40.2298977],[20.9132412,40.2296126],[20.9135453,40.2293866],[20.9135125,40.2293046],[20.9140766,40.2291486]]},{"id":16990,"author":"AnaDigit","name_GR":"Epirus Trail: \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a3\u03bc\u03cc\u03bb\u03b9\u03ba\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_AgParaskevi_SmolikasRef","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":5,"length":12535,"name_EN":"Epirus Trail: Agia Paraskevi-Smolikas Refuge","description_EN":"","ascent_time":355,"descent_time":330,"marker":"No_marks","level":9,"ascent":1237,"descent":497,"maxelev":2169,"minelev":965,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.88616 40.06799,20.91267 40.14505)","views":67,"millestones":"0,20.8959182,40.1452827#1,20.9002121,40.1386558#2,20.9004796,40.1308657#3,20.9007310,40.1228775#4,20.9018614,40.1163619#5,20.9031064,40.1096198#6,20.9049501,40.1012674#7,20.9111305,40.0975400#8,20.9093143,40.0897026#9,20.9055332,40.0819903#10,20.9077819,40.0745261#11,20.8996042,40.0693715#12.5,20.8895936,40.0697263","x":20.9045904,"y":40.1019693,"coor":[[20.8959182,40.1452827],[20.8963868,40.1453268],[20.8971403,40.145275],[20.8974891,40.1451943],[20.8978467,40.1448165],[20.8979279,40.1443233],[20.8977768,40.144031],[20.897806,40.1439057],[20.898161,40.1436901],[20.8989258,40.1436475],[20.8990734,40.1434983],[20.8990392,40.1432182],[20.8991093,40.1429679],[20.8992162,40.1426825],[20.8993509,40.14256],[20.8992882,40.1418738],[20.8996437,40.141541],[20.8995497,40.1412863],[20.8995975,40.1410084],[20.8998944,40.140674],[20.899874,40.1403492],[20.9001098,40.1400673],[20.9001873,40.1399343],[20.9001548,40.1396182],[20.9002421,40.1395034],[20.9001792,40.1393396],[20.9000325,40.1392096],[20.9002531,40.1387471],[20.9000189,40.1382184],[20.89984,40.1380244],[20.8999055,40.1378731],[20.9001178,40.1376986],[20.9003437,40.1376326],[20.900552,40.13744],[20.9007284,40.1371745],[20.900762,40.1369503],[20.9010372,40.1363181],[20.9007702,40.1359687],[20.9003916,40.1357784],[20.900191,40.1352866],[20.8997933,40.135258],[20.8995929,40.1350184],[20.8996396,40.1347674],[20.8995049,40.1341153],[20.8996445,40.1338849],[20.8996491,40.1335247],[20.8995625,40.133108],[20.8994434,40.1328887],[20.8994788,40.1323672],[20.89976,40.1318613],[20.9003888,40.1311936],[20.900584,40.1305143],[20.9004011,40.1301491],[20.9004983,40.1298184],[20.9003563,40.1293282],[20.9001907,40.1290986],[20.9002891,40.128741],[20.8998803,40.1284418],[20.8998648,40.128009],[20.9001199,40.1278177],[20.9001725,40.127693],[20.8999802,40.1275347],[20.9000106,40.1273824],[20.8999343,40.1272543],[20.8999013,40.1269471],[20.8996654,40.1267156],[20.8997007,40.1264554],[20.8995699,40.1262357],[20.8995637,40.1258572],[20.8994898,40.1256751],[20.8998886,40.1251633],[20.90045,40.1249442],[20.900658,40.1244994],[20.9007005,40.1243384],[20.9004399,40.1241333],[20.9003391,40.1237703],[20.9006441,40.123256],[20.9007745,40.1227101],[20.900753,40.122151],[20.9009067,40.1210923],[20.9007335,40.1207724],[20.9009008,40.1207048],[20.9011089,40.1207735],[20.9011658,40.1200364],[20.9014491,40.1199989],[20.9015708,40.1199031],[20.9016479,40.1192386],[20.9015951,40.1191111],[20.901364,40.1190329],[20.9012029,40.1187043],[20.9011804,40.1184245],[20.9013325,40.1181763],[20.901352,40.1180057],[20.9012111,40.1177497],[20.901321,40.1176536],[20.9013134,40.1175633],[20.901174,40.1175326],[20.9007614,40.1175756],[20.9005865,40.1175529],[20.9006241,40.1174998],[20.9003538,40.1175106],[20.9003231,40.1174107],[20.9001845,40.1173619],[20.9001417,40.1172707],[20.9004034,40.1169355],[20.9007045,40.1167634],[20.9007805,40.1166393],[20.9013127,40.1165455],[20.9015076,40.1163886],[20.9017791,40.1163508],[20.9020357,40.1163847],[20.9020648,40.1162594],[20.9023931,40.1160069],[20.9026634,40.1159962],[20.9030558,40.1158806],[20.9030582,40.1158266],[20.9029071,40.1157955],[20.9026115,40.1155894],[20.9025514,40.1153627],[20.9028639,40.1149387],[20.9028446,40.1148481],[20.9029946,40.1146449],[20.9030671,40.1143406],[20.9033124,40.114104],[20.90345,40.1136573],[20.9038224,40.1132079],[20.9038546,40.1124972],[20.9041737,40.1119293],[20.9042235,40.1116063],[20.9048643,40.1109299],[20.9048313,40.1106228],[20.9045973,40.1106075],[20.904496,40.1105147],[20.9045668,40.1102464],[20.9042886,40.1099147],[20.9030589,40.1096116],[20.9031075,40.1093156],[20.9028987,40.1090038],[20.9027271,40.1089091],[20.9025032,40.1081555],[20.9026674,40.1078987],[20.9027131,40.1076657],[20.9028554,40.1076335],[20.9029682,40.1074744],[20.9030835,40.1070001],[20.9036285,40.1063662],[20.9037407,40.1057026],[20.904004,40.1050701],[20.9041143,40.104965],[20.9040364,40.1048728],[20.9041881,40.1043725],[20.9041777,40.1042912],[20.9041535,40.1041014],[20.904257,40.1038879],[20.9043265,40.1031332],[20.9044725,40.1027588],[20.9045904,40.1019693],[20.9047404,40.1017661],[20.9047017,40.101585],[20.9050376,40.1011616],[20.9049997,40.1009624],[20.9050717,40.1006671],[20.9052766,40.1005465],[20.9053033,40.1004751],[20.9053974,40.1004686],[20.9055373,40.1002292],[20.9057037,40.1001796],[20.9058528,40.1002556],[20.9058366,40.1003543],[20.9059723,40.100466],[20.9062849,40.1005554],[20.9064514,40.1005058],[20.9066331,40.1006368],[20.9067636,40.1006042],[20.9070212,40.1008723],[20.9071158,40.1008569],[20.9072773,40.1009152],[20.9073735,40.1008637],[20.908175,40.1007771],[20.9084149,40.1009186],[20.9086743,40.1008895],[20.9087647,40.100964],[20.9091873,40.1009572],[20.9092875,40.1008158],[20.9095728,40.1007333],[20.9098625,40.1005519],[20.9100755,40.1002514],[20.9102323,40.1001565],[20.9101592,40.0999564],[20.9103047,40.0998522],[20.9103205,40.0997625],[20.9098496,40.0995428],[20.9097588,40.0992161],[20.9105973,40.0985719],[20.910806,40.0978479],[20.9111983,40.0974711],[20.9110215,40.0972321],[20.9109672,40.0966182],[20.9112211,40.0959314],[20.9112524,40.0954999],[20.9114509,40.0950008],[20.9113511,40.094872],[20.9111294,40.0948481],[20.9109904,40.0947318],[20.9109711,40.0947177],[20.911016,40.0945028],[20.9109277,40.0941221],[20.9110546,40.0939093],[20.9109909,40.0935023],[20.910871,40.0933009],[20.9111188,40.0927491],[20.9109719,40.0923669],[20.911182,40.0921293],[20.9111398,40.0917678],[20.9110122,40.0914762],[20.9111072,40.0911905],[20.9111077,40.0909203],[20.9109285,40.0907354],[20.9105626,40.0905274],[20.9103506,40.0902876],[20.9099447,40.0901867],[20.9092421,40.0896455],[20.9087503,40.0893982],[20.9081313,40.0888232],[20.9075764,40.0886462],[20.9072518,40.0883043],[20.9067717,40.0880302],[20.9062707,40.0874404],[20.9062828,40.0856212],[20.9064328,40.0851568],[20.9062808,40.0846303],[20.9062157,40.0837369],[20.9061051,40.0835898],[20.9058879,40.0834669],[20.9059001,40.083197],[20.9057582,40.0827068],[20.9058419,40.0824118],[20.9055621,40.0821161],[20.9054351,40.0815542],[20.9054885,40.0814115],[20.9053629,40.0813361],[20.9051873,40.0813314],[20.9051017,40.081149],[20.9047061,40.0807691],[20.9055044,40.0801554],[20.9056165,40.0794919],[20.9059076,40.0787611],[20.9068799,40.0782646],[20.9071048,40.0782166],[20.9074094,40.0779635],[20.9076224,40.077663],[20.9077594,40.0772253],[20.9077312,40.0760356],[20.9077983,40.0758482],[20.9077007,40.0756744],[20.9072796,40.075393],[20.9075018,40.0751467],[20.9076059,40.0749423],[20.9078428,40.0743722],[20.9077722,40.0741181],[20.9065491,40.0729054],[20.9061139,40.0726776],[20.9056096,40.0726822],[20.905333,40.0725757],[20.9051428,40.0726336],[20.9048997,40.0725641],[20.9044416,40.0720654],[20.9042224,40.0719875],[20.9039555,40.0719263],[20.9034152,40.0719479],[20.9028652,40.0711496],[20.9019911,40.0705407],[20.9017853,40.0704001],[20.9015751,40.0701242],[20.9011571,40.0698293],[20.9009,40.0695522],[20.9001761,40.0692266],[20.899799,40.0692705],[20.8995829,40.0693818],[20.8993834,40.0693855],[20.8987702,40.0692069],[20.8980914,40.0691797],[20.8974095,40.0689633],[20.8968394,40.0688669],[20.8961227,40.0689018],[20.8958498,40.0687143],[20.8955041,40.0680655],[20.8954926,40.067804],[20.8952711,40.0675188],[20.8947398,40.0681171],[20.8946071,40.0684558],[20.8944395,40.0685323],[20.8943695,40.0687827],[20.8939881,40.0691778],[20.8939189,40.0694101],[20.8937182,40.0694407],[20.8935576,40.0693644],[20.8932055,40.0693729],[20.8928916,40.0695717],[20.8931184,40.0697399],[20.8932794,40.0700685],[20.8931674,40.0702096],[20.8930165,40.0706919],[20.8926878,40.0707011],[20.8923372,40.0709349],[20.8921615,40.0709302],[20.8920744,40.0707837],[20.8916489,40.0706012],[20.8907655,40.0704333],[20.8905831,40.0702438],[20.8903402,40.0699896],[20.889674,40.0699446],[20.8895936,40.0697263]]},{"id":16991,"author":"AnaDigit","name_GR":"Epirus Trail: \u039b\u03bf\u03c5\u03c4\u03c1\u03ac \u0391\u03bc\u03b1\u03c1\u03ac\u03bd\u03c4\u03bf\u03c5-\u03a0\u03c5\u03c1\u03c3\u03cc\u03b3\u03b9\u03b1\u03bd\u03bd\u03b7","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Amarantos_Pyrsogiani","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":12707,"name_EN":"Epirus Trail: Loutra Amarantou-Pyrsogiani","description_EN":"","ascent_time":350,"descent_time":360,"marker":"Red_dots","level":9,"ascent":724,"descent":1155,"maxelev":1245,"minelev":802,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.72798 40.17846,20.8122 40.21014)","views":54,"millestones":"0,20.7296020,40.1771160#1,20.7376927,40.1804146#2,20.7450635,40.1789189#3,20.7522619,40.1801505#4,20.7584170,40.1833513#5,20.7557114,40.1896697#6,20.7627519,40.1918398#7,20.7705584,40.1937676#8,20.7791101,40.1986243#9,20.7855010,40.2032573#10,20.7901497,40.2069012#11,20.7983560,40.2106897#12.7,20.8106131,40.2123127","x":20.7634986,"y":40.1921204,"coor":[[20.729602,40.177116],[20.72955,40.1775424],[20.7295965,40.1777959],[20.7296074,40.1780078],[20.7298162,40.1783785],[20.7303813,40.1788358],[20.7305598,40.1787868],[20.7308787,40.178994],[20.7311944,40.179021],[20.7314655,40.179488],[20.7316228,40.1796365],[20.7323155,40.1796381],[20.7325063,40.1798236],[20.7328012,40.1797959],[20.7330445,40.180109],[20.733703,40.180578],[20.7338789,40.1805829],[20.7339875,40.180523],[20.7342564,40.1805486],[20.7343905,40.1804443],[20.7345504,40.1805389],[20.7347506,40.1805265],[20.7355388,40.1802515],[20.7357908,40.1803847],[20.7359751,40.1807277],[20.7360198,40.1807515],[20.736584,40.1807404],[20.7370425,40.1804831],[20.7376927,40.1803934],[20.7376906,40.1806815],[20.7377901,40.1808104],[20.7385772,40.1810488],[20.7386516,40.181213],[20.7390637,40.1811886],[20.7393533,40.1807824],[20.7397446,40.1807034],[20.740076,40.1808929],[20.740173,40.1810758],[20.7404132,40.1812086],[20.7407819,40.1811109],[20.7412727,40.1811608],[20.7416411,40.1813153],[20.742363,40.1814437],[20.7428431,40.1817184],[20.7431301,40.1816094],[20.7433017,40.1817043],[20.7433711,40.1814811],[20.7437147,40.1814187],[20.7440195,40.1811841],[20.7439954,40.1807061],[20.7441376,40.1801877],[20.7440514,40.1797799],[20.7443361,40.1792295],[20.7449614,40.1789228],[20.7455494,40.1789034],[20.7458355,40.1785692],[20.7459558,40.1785095],[20.7468918,40.1785809],[20.7471179,40.178272],[20.7476308,40.1781062],[20.7478027,40.177949],[20.7482886,40.1778545],[20.7483407,40.1777479],[20.7479812,40.1771614],[20.7480459,40.1770371],[20.7482269,40.1769341],[20.7484739,40.1766798],[20.7488043,40.1769413],[20.7492952,40.1772343],[20.7506564,40.1789749],[20.7512516,40.1792979],[20.7515302,40.1796119],[20.7517361,40.1797258],[20.751844,40.179927],[20.7520181,40.1799679],[20.7521285,40.1801151],[20.75243,40.1801956],[20.7527349,40.1809428],[20.7526182,40.1811737],[20.7527898,40.1812686],[20.7529428,40.181507],[20.7533087,40.1817155],[20.7535713,40.181921],[20.7536886,40.1819243],[20.7537962,40.1816391],[20.7535756,40.1810925],[20.7535834,40.1809306],[20.7537188,40.1807992],[20.7539307,40.1807872],[20.754122,40.1809637],[20.7545916,40.181211],[20.7550644,40.1816386],[20.7551706,40.1818758],[20.7555373,40.1820662],[20.7557697,40.1821178],[20.7563334,40.1821156],[20.7568569,40.1822654],[20.7576804,40.1822344],[20.7586587,40.1824059],[20.7588126,40.1826264],[20.7586204,40.1829633],[20.7585997,40.1831519],[20.7581166,40.1836788],[20.7575794,40.1838618],[20.7571912,40.1841212],[20.7566605,40.1841693],[20.7561259,40.1842985],[20.7560781,40.1844142],[20.7561577,40.1844705],[20.7563353,40.185178],[20.7562007,40.1852913],[20.7563029,40.1853663],[20.7562877,40.1854379],[20.7561292,40.1855595],[20.7559505,40.1858608],[20.7559556,40.1864914],[20.7556839,40.186772],[20.7554936,40.1868207],[20.7554555,40.1868827],[20.7552582,40.1868546],[20.7551354,40.1869683],[20.7549703,40.1869817],[20.7549678,40.1870356],[20.755132,40.1870402],[20.7551477,40.1872028],[20.7555027,40.1873929],[20.7557261,40.1876334],[20.755615,40.1877473],[20.7555086,40.1877624],[20.7552304,40.1881779],[20.7551697,40.1884644],[20.7552236,40.188565],[20.7550634,40.1887226],[20.7551438,40.1887609],[20.7550423,40.1889202],[20.7550998,40.189192],[20.7552923,40.1893415],[20.7553545,40.1895144],[20.7555539,40.18952],[20.755846,40.1897984],[20.7560522,40.1896601],[20.7560404,40.1894165],[20.7561811,40.1894205],[20.7562832,40.1894954],[20.7563432,40.1894701],[20.7562861,40.1891893],[20.7564251,40.1892292],[20.7565332,40.1891782],[20.7567375,40.189328],[20.7568699,40.1892597],[20.7569377,40.1893156],[20.7570098,40.1892816],[20.7570533,40.1893549],[20.7571514,40.1892676],[20.7573474,40.1893451],[20.757586,40.1895139],[20.7576535,40.1898221],[20.7575641,40.1899727],[20.7577615,40.1902664],[20.7579422,40.190911],[20.7583902,40.1911217],[20.7585035,40.1909628],[20.758609,40.1909657],[20.7587325,40.1910863],[20.7588591,40.191387],[20.7591349,40.1912687],[20.7592144,40.1913249],[20.7595667,40.1913258],[20.7598648,40.1914783],[20.7600055,40.1914822],[20.7602453,40.1913809],[20.7605528,40.1913354],[20.7609352,40.1909498],[20.7610425,40.1909168],[20.7613483,40.1909074],[20.7616925,40.1910791],[20.7620708,40.1910267],[20.762315,40.1910785],[20.7625423,40.191238],[20.7625495,40.1915805],[20.762793,40.1918935],[20.7628187,40.1920924],[20.7634986,40.1921204],[20.7636568,40.192251],[20.7638905,40.1922755],[20.764031,40.1925317],[20.7645686,40.1928349],[20.7646606,40.1926303],[20.7648785,40.1924923],[20.7649804,40.1928194],[20.7650517,40.1928034],[20.7651176,40.1926521],[20.765188,40.1926541],[20.7654001,40.1928852],[20.7654402,40.1930304],[20.7656522,40.1930184],[20.766055,40.1931917],[20.7661964,40.1934299],[20.7666636,40.1937312],[20.7666651,40.1939474],[20.7667429,40.1940396],[20.7671594,40.1939252],[20.7674887,40.1939164],[20.7675678,40.1939816],[20.767686,40.1939669],[20.7679475,40.1934068],[20.7681706,40.1931608],[20.7687464,40.1929067],[20.7689945,40.1928776],[20.7691083,40.1929528],[20.7691706,40.1931257],[20.7694822,40.1932425],[20.7695097,40.1934054],[20.7699068,40.1934525],[20.7702614,40.1936516],[20.7704952,40.1936761],[20.7707696,40.1940801],[20.7714544,40.1942523],[20.7719982,40.1946728],[20.7722379,40.1945714],[20.7726207,40.1946722],[20.7729726,40.194682],[20.7730889,40.1949554],[20.7733676,40.1952695],[20.7738609,40.1955174],[20.7740494,40.1955046],[20.7741994,40.1955629],[20.7744416,40.1959029],[20.7750582,40.1960282],[20.7754638,40.1958954],[20.7755929,40.195899],[20.7759028,40.1960517],[20.7761822,40.1961045],[20.7769114,40.1968274],[20.7773373,40.1970104],[20.7774603,40.1971399],[20.7778306,40.1972583],[20.7779929,40.1975511],[20.7781638,40.1976639],[20.7783135,40.1979743],[20.7786707,40.1981194],[20.7789457,40.1985144],[20.7794013,40.1988153],[20.7795862,40.1991267],[20.7797613,40.1991496],[20.7797994,40.1994884],[20.7801569,40.1993812],[20.7805457,40.199356],[20.7808569,40.1994818],[20.7813244,40.1995308],[20.7815011,40.1995448],[20.7821057,40.1994265],[20.7823324,40.1993517],[20.7825273,40.199204],[20.7827024,40.1992044],[20.7827551,40.199332],[20.7825956,40.1997238],[20.7827304,40.1998537],[20.7828945,40.2006058],[20.7831959,40.2009385],[20.7832846,40.2011481],[20.7833873,40.2011149],[20.7834831,40.2013247],[20.7836531,40.2014556],[20.7842087,40.201381],[20.7844151,40.2015848],[20.7846648,40.2015197],[20.7847498,40.2017112],[20.7847178,40.2018905],[20.7848806,40.2021742],[20.7848183,40.2024968],[20.7849851,40.2030463],[20.785711,40.2033457],[20.7859964,40.2039661],[20.7858519,40.20439],[20.785939,40.2045365],[20.7857044,40.20453],[20.7854642,40.2046404],[20.785253,40.2046345],[20.7849261,40.205337],[20.7849276,40.2055532],[20.7847218,40.2056826],[20.7843838,40.2061235],[20.7842842,40.20649],[20.7852236,40.2064981],[20.7855246,40.2063444],[20.7859947,40.2063394],[20.7866155,40.2066269],[20.786851,40.2066154],[20.7870366,40.2066656],[20.7872143,40.2066345],[20.7875276,40.2067153],[20.7879668,40.2066194],[20.7883859,40.2064509],[20.7887165,40.2064151],[20.7893827,40.2064876],[20.7896429,40.2064498],[20.7899538,40.2065845],[20.790009,40.2066581],[20.7904237,40.2073812],[20.7912715,40.207837],[20.7921715,40.2079341],[20.7923402,40.2080919],[20.792807,40.2081588],[20.7930105,40.2083266],[20.7944666,40.20834],[20.7954625,40.2086468],[20.7956075,40.2085607],[20.7958048,40.2086112],[20.7959247,40.2085605],[20.7961434,40.2086566],[20.79643,40.2085565],[20.7965935,40.208579],[20.7966066,40.2090478],[20.7968144,40.2091256],[20.7972016,40.2091363],[20.79722,40.2092449],[20.797069,40.2094569],[20.7970626,40.2095918],[20.7969402,40.2096965],[20.796949,40.2097598],[20.7971438,40.2098643],[20.7971821,40.2102977],[20.7972926,40.2104449],[20.7978273,40.2105677],[20.7981667,40.2105952],[20.7983963,40.2107096],[20.7985638,40.2108944],[20.7984957,40.2113428],[20.7989875,40.2116267],[20.7992226,40.2116242],[20.8001086,40.2112704],[20.8003998,40.2113235],[20.8008112,40.211569],[20.8008253,40.2117676],[20.8006752,40.2119616],[20.8011348,40.2121815],[20.801472,40.2120062],[20.8016842,40.2117418],[20.8018648,40.2116477],[20.8023526,40.2115171],[20.8026761,40.2116341],[20.8029678,40.211426],[20.8035646,40.2112264],[20.8039426,40.2111828],[20.8045355,40.2113162],[20.8051147,40.2112422],[20.8053305,40.2112752],[20.8054679,40.211351],[20.8056318,40.2121121],[20.8060685,40.2120702],[20.8062663,40.2121116],[20.8068303,40.2121092],[20.8071031,40.2120537],[20.8078287,40.2116144],[20.8082219,40.2115712],[20.8082437,40.2113556],[20.8083947,40.2111436],[20.8088807,40.2114497],[20.8094982,40.2115884],[20.8097178,40.2118872],[20.8099257,40.2118389],[20.8099701,40.2118941],[20.8104389,40.211844],[20.8106131,40.2123127]]},{"id":16992,"author":"AnaDigit","name_GR":"Epirus Trail: \u0391\u03bd\u03b8\u03bf\u03c7\u03ce\u03c1\u03b9-\u03a3\u03c5\u03c1\u03c1\u03ac\u03ba\u03bf","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Anthochori_Syrako","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":21942,"name_EN":"Epirus Trail: Anthochori-Syrako","description_EN":"","ascent_time":560,"descent_time":545,"marker":"No_marks","level":9,"ascent":1612,"descent":1515,"maxelev":2166,"minelev":1038,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.10115 39.59476,21.14359 39.73295)","views":79,"millestones":"0,21.1297849,39.7336593#1,21.1318040,39.7275145#2,21.1310461,39.7213471#3,21.1341749,39.7142900#4,21.1363266,39.7086222#5,21.1384848,39.7005333#6,21.1340970,39.6936891#7,21.1279655,39.6879181#8,21.1196431,39.6839961#9,21.1139037,39.6796940#10,21.1071864,39.6738509#11,21.1070347,39.6671576#12,21.1057739,39.6589921#13,21.1057084,39.6516657#14,21.1072908,39.6435961#15,21.1081046,39.6358346#16,21.1055523,39.6287766#17,21.1071837,39.6235493#18,21.1102632,39.6166517#19,21.1164345,39.6104790#20,21.1147430,39.6033457#21,21.1101208,39.5966147#21.9,21.1071062,39.5942267","x":21.1064773,"y":39.6630334,"coor":[[21.1297849,39.7336593],[21.1296723,39.7335439],[21.1295795,39.7333119],[21.1295885,39.7330959],[21.1296831,39.7325038],[21.1298179,39.7322864],[21.1300453,39.7321479],[21.1302764,39.7321086],[21.1303377,39.732038],[21.1305726,39.7319988],[21.1307674,39.7317334],[21.1311788,39.7319057],[21.1315023,39.7318686],[21.1314435,39.7315969],[21.1315601,39.7315998],[21.1317097,39.7313693],[21.131816,39.7313359],[21.1319191,39.7313835],[21.1320558,39.7309004],[21.1319903,39.7307907],[21.13212,39.7307579],[21.1321846,39.7306064],[21.1320049,39.7304398],[21.1319533,39.7302764],[21.1320026,39.7302145],[21.1323883,39.730197],[21.1320772,39.72982],[21.1320607,39.7296575],[21.1321881,39.7296786],[21.1324575,39.7292754],[21.1325058,39.7288577],[21.1324155,39.7287834],[21.1324193,39.7286934],[21.1322704,39.7286267],[21.1323222,39.7285019],[21.1321541,39.7283356],[21.1316484,39.7281519],[21.1317258,39.7279737],[21.1316217,39.7279531],[21.1315287,39.7276625],[21.1318144,39.7275255],[21.1317027,39.7274056],[21.1317309,39.7272892],[21.1316606,39.7271163],[21.131488,39.727058],[21.1314007,39.7269117],[21.1312777,39.7265033],[21.1313419,39.7263607],[21.1311498,39.7262119],[21.1311994,39.726141],[21.1311219,39.72604],[21.1311489,39.7259506],[21.1308819,39.7256377],[21.1309135,39.7254403],[21.1308077,39.7248972],[21.1306854,39.7247501],[21.1307456,39.7247065],[21.1306553,39.7246322],[21.1307858,39.7245814],[21.1307654,39.7245088],[21.1308594,39.7244931],[21.1311414,39.7247253],[21.1313023,39.7247833],[21.1313098,39.7246034],[21.1317933,39.7247595],[21.131709,39.7245412],[21.1318808,39.7246175],[21.131963,39.724579],[21.1319253,39.7243619],[21.1318001,39.7242867],[21.131601,39.7238359],[21.1315772,39.7237857],[21.1313406,39.7236628],[21.1314063,39.7234842],[21.1312852,39.7233101],[21.1313386,39.7231493],[21.131222,39.7231464],[21.131204,39.7230198],[21.1309776,39.7228521],[21.1309723,39.7226988],[21.1307415,39.7226391],[21.130462,39.7224115],[21.1306665,39.7222634],[21.130764,39.7215992],[21.1311518,39.7212485],[21.1313095,39.7212388],[21.1316188,39.7210933],[21.1318773,39.7204872],[21.1318317,39.7201798],[21.1319448,39.7199844],[21.1321721,39.7198459],[21.132345,39.719616],[21.1323904,39.7193649],[21.1328803,39.7185212],[21.132852,39.7183583],[21.1329335,39.7180811],[21.133212,39.7178358],[21.1335305,39.717186],[21.1337777,39.7168498],[21.1338167,39.7164725],[21.1336759,39.7159285],[21.1337296,39.7157587],[21.1339914,39.7153508],[21.134221,39.7151583],[21.1345129,39.714589],[21.1346929,39.7144673],[21.1351288,39.7143655],[21.1347281,39.7141844],[21.1342361,39.7142353],[21.1338848,39.7145509],[21.1338357,39.7144957],[21.1339491,39.7142913],[21.1342658,39.7139658],[21.1340796,39.7139252],[21.1341976,39.7138921],[21.134452,39.7136641],[21.1346625,39.7136513],[21.1345264,39.7135579],[21.1348541,39.7135299],[21.1351033,39.713428],[21.1350721,39.7133371],[21.1355137,39.7133751],[21.1354106,39.7130482],[21.1355026,39.7127983],[21.1353254,39.7123029],[21.1351836,39.7121013],[21.1352267,39.7118681],[21.1348639,39.7116159],[21.1348127,39.7111643],[21.13509,39.7109459],[21.1355928,39.7109133],[21.1359816,39.7107968],[21.1362259,39.7106497],[21.1368618,39.7105032],[21.1369786,39.7102178],[21.1369059,39.7099999],[21.1368741,39.7098099],[21.1367481,39.7097527],[21.1364968,39.7090619],[21.1365152,39.7089002],[21.1363268,39.7086614],[21.1363281,39.7083461],[21.1364796,39.7082057],[21.1365438,39.7080632],[21.1370277,39.7076427],[21.1369449,39.7073885],[21.1370602,39.7071391],[21.1371717,39.7069797],[21.1373386,39.7068937],[21.137559,39.7063587],[21.1377498,39.7062553],[21.13777,39.7060486],[21.1381622,39.7055898],[21.1383003,39.7050708],[21.1385625,39.7049331],[21.1390107,39.7045298],[21.1390995,39.7037933],[21.1390023,39.7033225],[21.1390826,39.7030723],[21.1389589,39.7029611],[21.1389499,39.7020511],[21.1386776,39.7013913],[21.1385576,39.7011901],[21.1386755,39.7009093],[21.138518,39.7007703],[21.1384452,39.700273],[21.1383001,39.7001163],[21.1382722,39.6999445],[21.1380977,39.6996519],[21.1380701,39.6991918],[21.1379404,39.6989454],[21.1380275,39.6988124],[21.1379328,39.6988461],[21.1378426,39.6987718],[21.1378882,39.6982325],[21.1377833,39.6982299],[21.1378701,39.6981059],[21.1378047,39.6979962],[21.1378539,39.6979343],[21.1377287,39.6978592],[21.1375765,39.6978735],[21.1373805,39.6972561],[21.1370609,39.6969915],[21.1366217,39.696332],[21.1365402,39.69633],[21.1362998,39.6965042],[21.1361825,39.6965194],[21.1359728,39.6953882],[21.1357968,39.6951316],[21.1356537,39.6952091],[21.1355845,39.6951894],[21.1352276,39.6944464],[21.134697,39.6942126],[21.1344808,39.6938019],[21.1331558,39.6934179],[21.1330885,39.6933532],[21.1331226,39.6930928],[21.132964,39.6929808],[21.132823,39.6927251],[21.1317831,39.6922129],[21.1310593,39.6916725],[21.1308043,39.6910717],[21.1308928,39.6906235],[21.1306566,39.689852],[21.1307255,39.6890339],[21.130527,39.6887588],[21.1306118,39.6886077],[21.1303276,39.6881503],[21.1297804,39.6878485],[21.1294605,39.6878046],[21.1291205,39.6878502],[21.1286344,39.6880453],[21.128117,39.6878704],[21.1275854,39.6880374],[21.126682,39.6873304],[21.1266618,39.6871092],[21.1258036,39.6869979],[21.1246873,39.6866459],[21.1243908,39.6864854],[21.1235444,39.6866536],[21.1235305,39.6867073],[21.1238168,39.6868315],[21.1238247,39.6869218],[21.1233956,39.6868661],[21.1225574,39.6865571],[21.1222454,39.6862071],[21.1220656,39.6860855],[21.1217229,39.6856356],[21.1210078,39.6851674],[21.1206756,39.6847448],[21.1198531,39.6840578],[21.1192542,39.6838808],[21.1188213,39.6836358],[21.1187383,39.6833906],[21.1188866,39.6829078],[21.1188546,39.682835],[21.1185763,39.6830983],[21.1180882,39.6829015],[21.1180367,39.6827381],[21.1179129,39.6826809],[21.1175247,39.6827163],[21.1173165,39.6826751],[21.1168582,39.6823034],[21.1167409,39.6820393],[21.1167717,39.6818599],[21.11665,39.6817037],[21.1166988,39.6816284],[21.1163591,39.6808272],[21.1165116,39.6805247],[21.1164931,39.6803486],[21.1163695,39.6802374],[21.1162357,39.6802206],[21.1156688,39.6803957],[21.1149018,39.6808991],[21.114774,39.6808869],[21.1145595,39.6807194],[21.1141409,39.6808036],[21.114217,39.6804362],[21.1141723,39.6801108],[21.1140223,39.6797917],[21.1138307,39.6796338],[21.1131455,39.6792925],[21.1128633,39.6790693],[21.1123569,39.6789126],[21.1126223,39.6788426],[21.1118679,39.677923],[21.1118141,39.6772551],[21.111896,39.6769688],[21.1116511,39.6766925],[21.1117701,39.6763532],[21.1115744,39.6762942],[21.1115075,39.6762205],[21.1112803,39.6758005],[21.1108698,39.6756191],[21.1106925,39.6753985],[21.1105045,39.6753758],[21.1103213,39.6752541],[21.1101045,39.6751406],[21.10993,39.6751588],[21.1093282,39.6750537],[21.1089052,39.674854],[21.108634,39.6746491],[21.1082046,39.6746024],[21.1076675,39.6743458],[21.107363,39.6740859],[21.1070317,39.6736453],[21.1065779,39.6733457],[21.1058402,39.6725887],[21.1046747,39.6718254],[21.1045383,39.671786],[21.1043385,39.6715468],[21.1047433,39.6707552],[21.1049814,39.6703557],[21.1052354,39.6701369],[21.1051651,39.6698649],[21.1053364,39.669671],[21.1054747,39.669152],[21.1054623,39.6686112],[21.1060563,39.6683737],[21.1064826,39.6684925],[21.1069408,39.6684048],[21.1068657,39.6682498],[21.1070437,39.6681732],[21.1071782,39.6680234],[21.1070351,39.6672631],[21.1070351,39.6667046],[21.1071166,39.6664274],[21.1069453,39.6663421],[21.1069397,39.6661978],[21.1066907,39.6657412],[21.1063801,39.6656434],[21.106288,39.6653348],[21.1063324,39.6648314],[21.1064161,39.6647795],[21.1063658,39.6643098],[21.1064924,39.6637905],[21.1066599,39.6636866],[21.1067872,39.6631492],[21.1064773,39.6630334],[21.1062884,39.6628125],[21.1062772,39.662524],[21.106175,39.6624584],[21.1062445,39.6621899],[21.1060837,39.6615733],[21.1058674,39.6611715],[21.1058659,39.6609283],[21.1057735,39.660908],[21.1058239,39.6608191],[21.1057352,39.6607088],[21.1057784,39.6605117],[21.1059358,39.6603715],[21.1059174,39.6596955],[21.1057773,39.6594217],[21.1057435,39.6591146],[21.1059103,39.6584702],[21.1058393,39.6582162],[21.1055678,39.657741],[21.1056849,39.6577259],[21.1058682,39.6578025],[21.1063508,39.6576884],[21.1063658,39.6576078],[21.1061055,39.6574211],[21.1061525,39.657134],[21.1060868,39.6570333],[21.1063771,39.6570585],[21.1065656,39.6570092],[21.1065476,39.6568826],[21.1066351,39.6567407],[21.1064173,39.6563749],[21.1057739,39.6558724],[21.1056673,39.6556356],[21.1054213,39.6553862],[21.1054142,39.6552779],[21.1052215,39.655147],[21.1051036,39.6549009],[21.1052028,39.6542007],[21.1051232,39.6538744],[21.1051442,39.6533705],[21.1051787,39.6531011],[21.1052918,39.6529057],[21.1052614,39.6525176],[21.1055396,39.6522724],[21.1056354,39.6519324],[21.1057458,39.6518001],[21.1057052,39.6516549],[21.1055329,39.6515966],[21.1054713,39.6513969],[21.1060819,39.6504482],[21.1060687,39.6502047],[21.1059546,39.6501478],[21.1059523,39.6499225],[21.1060684,39.6496552],[21.1060267,39.6492578],[21.1061607,39.649117],[21.1062418,39.6488488],[21.1061498,39.6488194],[21.1061671,39.6486847],[21.106395,39.6485283],[21.1064337,39.6484392],[21.1063646,39.6484194],[21.1063605,39.6482392],[21.1065565,39.6477306],[21.1065392,39.647586],[21.1063841,39.647393],[21.1064521,39.6471605],[21.1061896,39.6470278],[21.1062662,39.6463091],[21.1062009,39.6461993],[21.1065452,39.6457665],[21.1065456,39.6454783],[21.1070292,39.6444994],[21.1070863,39.6442486],[21.1070183,39.6442019],[21.1070341,39.6441032],[21.1073464,39.6435975],[21.1071951,39.6435937],[21.1071756,39.6435032],[21.1073701,39.6427513],[21.107046,39.642419],[21.1070937,39.6423931],[21.1069293,39.6418666],[21.1069826,39.6411472],[21.1068564,39.6408198],[21.1069424,39.6407138],[21.1069397,39.6404976],[21.1068098,39.6402601],[21.1068402,39.6400897],[21.1069484,39.6400114],[21.106871,39.6396311],[21.1070197,39.6394186],[21.1070309,39.6391486],[21.1071785,39.6389631],[21.107213,39.6386938],[21.1073238,39.6385524],[21.1072066,39.6382882],[21.1072367,39.6381268],[21.1074743,39.6380157],[21.1075843,39.6378923],[21.1075543,39.6377744],[21.1074124,39.6378249],[21.1074679,39.6373309],[21.1073744,39.6370583],[21.1075666,39.636919],[21.1079188,39.6368557],[21.1081823,39.6366821],[21.1080907,39.6366438],[21.1082762,39.6363871],[21.1081928,39.6361509],[21.1080562,39.6360754],[21.1082026,39.6353584],[21.1079927,39.6348036],[21.107859,39.6346562],[21.1079262,39.6344417],[21.1078113,39.6341235],[21.1078762,39.633963],[21.1078439,39.6336199],[21.107654,39.6331467],[21.1076404,39.6329122],[21.1075184,39.632765],[21.1073896,39.6327798],[21.1071017,39.6324213],[21.1067475,39.6329214],[21.1066837,39.6327757],[21.1065324,39.632772],[21.1066052,39.6327017],[21.106508,39.6325191],[21.1065823,39.6321336],[21.1064915,39.6320773],[21.1065193,39.6319699],[21.1064453,39.6317879],[21.1062013,39.6314935],[21.1062587,39.6312337],[21.1060597,39.6309766],[21.1060774,39.6308329],[21.105934,39.6306401],[21.1061254,39.6302395],[21.1059735,39.6298934],[21.1059536,39.6295326],[21.1058597,39.6295483],[21.1056679,39.6293994],[21.1055001,39.6289538],[21.1056637,39.6283813],[21.1059449,39.6280641],[21.1064652,39.6278788],[21.1068605,39.6276185],[21.1070673,39.6271282],[21.1072494,39.6269525],[21.1072535,39.6265743],[21.1071108,39.6263635],[21.1069783,39.6264683],[21.1068507,39.6267354],[21.1067422,39.6268228],[21.1066134,39.6268376],[21.106583,39.627008],[21.1062095,39.627305],[21.1060451,39.6273369],[21.1061634,39.6270155],[21.1058777,39.6268823],[21.1058462,39.6268004],[21.1059321,39.6266945],[21.1063826,39.6265075],[21.106607,39.6261528],[21.1068233,39.6259961],[21.1068278,39.6258881],[21.1070136,39.6256225],[21.107253,39.6254663],[21.107297,39.6252512],[21.1074524,39.625156],[21.1073844,39.6251092],[21.1074587,39.625003],[21.1073803,39.624929],[21.1073994,39.6247493],[21.1072977,39.6246747],[21.1073968,39.624533],[21.1073108,39.6243597],[21.1074144,39.6241101],[21.1072053,39.6238166],[21.1072154,39.6235736],[21.1070461,39.6234433],[21.1072064,39.6232311],[21.1070975,39.6230482],[21.107158,39.6227164],[21.1070604,39.6225428],[21.1072049,39.6221501],[21.1069376,39.6218551],[21.1071328,39.6216438],[21.1069766,39.6214778],[21.1070445,39.6212453],[21.1071872,39.6211767],[21.1072026,39.621087],[21.1075542,39.6207535],[21.1078035,39.6206426],[21.1081604,39.6201831],[21.108172,39.6196249],[21.1082467,39.6195096],[21.1082061,39.6193645],[21.108303,39.6192768],[21.1082148,39.6191575],[21.108256,39.6187261],[21.1083758,39.618648],[21.1084174,39.6184869],[21.1081836,39.6182289],[21.1081926,39.6180129],[21.108679,39.6177998],[21.1090367,39.6178808],[21.1089841,39.6177444],[21.1087995,39.6177037],[21.1089503,39.6174372],[21.1091192,39.6172973],[21.1091601,39.6171542],[21.1094645,39.6171167],[21.1097989,39.6169179],[21.1099517,39.6168856],[21.1103243,39.6166067],[21.1104388,39.6163753],[21.1105927,39.6163161],[21.1107559,39.6160319],[21.1108734,39.6160078],[21.1111064,39.6157253],[21.1112716,39.6156754],[21.1114533,39.615788],[21.1117779,39.6155438],[21.1122602,39.6154297],[21.1124906,39.6152102],[21.1132097,39.6150029],[21.1141378,39.6145306],[21.1143735,39.6144643],[21.1149484,39.6140823],[21.1156206,39.6138828],[21.1157932,39.6136529],[21.1157871,39.6135176],[21.11604,39.6130374],[21.116151,39.6126078],[21.1160786,39.6123898],[21.1162696,39.6122774],[21.1165784,39.6118527],[21.1164439,39.611444],[21.1165178,39.6110675],[21.1164311,39.6109122],[21.1164952,39.6107697],[21.1164536,39.6106515],[21.1163989,39.6105646],[21.1164766,39.6103773],[21.1164109,39.6102766],[21.1164994,39.6098284],[21.1166667,39.6097245],[21.1167699,39.6094838],[21.1164209,39.6094751],[21.1162156,39.6093709],[21.1161394,39.6092429],[21.1157569,39.6091974],[21.1157081,39.6092502],[21.1156402,39.6092035],[21.1156188,39.6088787],[21.1155422,39.6087597],[21.1156131,39.6084552],[21.1155019,39.6083263],[21.1155319,39.6081649],[21.1154129,39.6079457],[21.1156192,39.6069059],[21.1154716,39.6065329],[21.1151627,39.6063991],[21.1145957,39.6063129],[21.1143806,39.6061635],[21.1143911,39.6059115],[21.114692,39.6056758],[21.1148124,39.6053004],[21.1150885,39.6048208],[21.1149995,39.6044403],[21.1151612,39.6041921],[21.1151679,39.6040301],[21.1150268,39.6037833],[21.1151026,39.6036411],[21.1150714,39.6035502],[21.1146173,39.6032687],[21.114582,39.6029976],[21.1142082,39.6027451],[21.114192,39.6025735],[21.1142682,39.6024223],[21.1141717,39.6022217],[21.11425,39.6017372],[21.1140144,39.6015241],[21.1136807,39.6014258],[21.1131962,39.6010354],[21.1130795,39.6007622],[21.1127481,39.6006099],[21.1124472,39.6005663],[21.1120123,39.6006636],[21.1117215,39.6006564],[21.1117946,39.6002979],[21.1113161,39.5994482],[21.1110549,39.5991805],[21.1113827,39.5985761],[21.1113895,39.5984141],[21.1111632,39.5979761],[21.111189,39.5979137],[21.1110701,39.5976945],[21.110664,39.5973781],[21.1107038,39.5969827],[21.1105443,39.5967265],[21.1100145,39.5965872],[21.1099372,39.5964862],[21.1099569,39.5963786],[21.1099535,39.5961804],[21.1101388,39.5956445],[21.1098772,39.5952146],[21.1094047,39.594883],[21.1090804,39.5946543],[21.1090193,39.5942564],[21.1089473,39.5940609],[21.1084648,39.5939048],[21.1081864,39.5938798],[21.107959,39.5940273],[21.1075735,39.5941933],[21.10733,39.5941693],[21.1071062,39.5942267]]},{"id":16993,"author":"AnaDigit","name_GR":"Epirus Trail: \u0391\u03c3\u03b7\u03bc\u03bf\u03c7\u03ce\u03c1\u03b9-\u0391\u03b5\u03c4\u03bf\u03bc\u03b7\u03bb\u03af\u03c4\u03c3\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Asimochori_Aetomilitsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":15595,"name_EN":"Epirus Trail: Asimochori-Aetomilitsa","description_EN":"","ascent_time":385,"descent_time":355,"marker":"Red_dots","level":9,"ascent":1208,"descent":739,"maxelev":1880,"minelev":843,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.75034 40.26086,20.85648 40.31204)","views":53,"millestones":"0,20.7528503,40.2596129#1,20.7613782,40.2602810#2,20.7681299,40.2601961#3,20.7694755,40.2668837#4,20.7735994,40.2735602#5,20.7789244,40.2788935#6,20.7889377,40.2803588#7,20.7953763,40.2860968#8,20.8031051,40.2855837#9,20.8093046,40.2897536#10,20.8125989,40.2967857#11,20.8214166,40.3003405#12,20.8284264,40.3053530#13,20.8361913,40.3078712#14,20.8444451,40.3123907#15.6,20.8541684,40.3107281","x":20.8005628,"y":40.2859241,"coor":[[20.7528503,40.2596129],[20.7532882,40.2600215],[20.7536713,40.2599242],[20.7538027,40.260126],[20.753825,40.2603969],[20.7539742,40.2604731],[20.7541855,40.260479],[20.7546555,40.26024],[20.754809,40.2602263],[20.7550214,40.2607007],[20.7549366,40.2614909],[20.755048,40.2616201],[20.7553129,40.2617356],[20.7554076,40.2617203],[20.7557413,40.2615315],[20.7562937,40.2610426],[20.7571477,40.2608864],[20.7575798,40.2607004],[20.7578559,40.260555],[20.7581554,40.2604373],[20.7588415,40.2603485],[20.7593417,40.2604616],[20.7605248,40.2603056],[20.760947,40.2603264],[20.7612214,40.260244],[20.7617563,40.2603671],[20.7621846,40.260262],[20.7632321,40.2602373],[20.7637938,40.2600459],[20.7637769,40.2601535],[20.7636069,40.2602658],[20.7636266,40.2603474],[20.7637318,40.2603594],[20.7640431,40.260242],[20.7642854,40.2603388],[20.764558,40.2602924],[20.7653217,40.2598094],[20.7661574,40.2590492],[20.766509,40.2588248],[20.7668381,40.2583837],[20.7668925,40.2584753],[20.7670641,40.2586737],[20.7678586,40.2592724],[20.7684662,40.259447],[20.7686495,40.2597944],[20.7685645,40.2597785],[20.7683004,40.259645],[20.7680656,40.2596385],[20.7677891,40.2597658],[20.7677932,40.2599281],[20.768347,40.2603714],[20.7685639,40.2607557],[20.7686695,40.2612541],[20.7690265,40.2619035],[20.7689323,40.2621531],[20.768446,40.2624908],[20.7682813,40.2627384],[20.7684316,40.2630398],[20.7683348,40.2633433],[20.7683663,40.2635199],[20.7686179,40.263027],[20.7686173,40.2627928],[20.7687282,40.262859],[20.7687583,40.2629679],[20.7686395,40.263487],[20.7685101,40.2637355],[20.7682654,40.2639359],[20.7680706,40.2645699],[20.7694759,40.2666628],[20.7694876,40.2683924],[20.7706773,40.270173],[20.7709364,40.271153],[20.7709747,40.2718296],[20.7710776,40.2721387],[20.7715784,40.2721437],[20.7720427,40.2721702],[20.7721286,40.2721951],[20.7722087,40.2722919],[20.7721775,40.2724531],[20.7722832,40.2724561],[20.7727997,40.2727227],[20.7730689,40.2727482],[20.7734261,40.2729023],[20.7737678,40.2729344],[20.7739194,40.2732088],[20.7735237,40.2733689],[20.7733949,40.2733563],[20.7733546,40.2734633],[20.7735571,40.273532],[20.7738077,40.2737011],[20.7743294,40.2738597],[20.7747192,40.2740463],[20.7750604,40.27429],[20.7750909,40.2743899],[20.7752066,40.2744291],[20.775629,40.2744499],[20.7757673,40.2745078],[20.7759873,40.2743338],[20.7761156,40.2743554],[20.7762396,40.274467],[20.7764854,40.2744918],[20.7764756,40.2746987],[20.7765896,40.2747739],[20.7764871,40.2749512],[20.7766137,40.2750088],[20.7765607,40.2751334],[20.7766278,40.2752073],[20.7765673,40.2752417],[20.7766378,40.2752437],[20.776657,40.2753343],[20.7768458,40.2753215],[20.776828,40.2754471],[20.7769487,40.2756306],[20.7768902,40.2758722],[20.7771912,40.2759706],[20.7772074,40.2761242],[20.7773336,40.2761908],[20.7773072,40.2762531],[20.7774246,40.2762564],[20.7775373,40.2763586],[20.7774156,40.2764453],[20.7775397,40.2765568],[20.7774598,40.2767527],[20.7773507,40.2768217],[20.7774135,40.2769856],[20.7772623,40.2771976],[20.7774541,40.2774416],[20.7775869,40.2776164],[20.7778327,40.2776413],[20.7778758,40.2777236],[20.7781525,40.2778394],[20.7781927,40.2779846],[20.7781087,40.2780183],[20.778128,40.2781089],[20.7782956,40.2782937],[20.7783556,40.2782683],[20.7783225,40.2782224],[20.7784882,40.2782],[20.7786714,40.2783042],[20.7786142,40.2785187],[20.7789814,40.2787091],[20.7788706,40.2788141],[20.7789142,40.2788874],[20.7790743,40.2789819],[20.7790769,40.2789279],[20.7796805,40.2793411],[20.7801896,40.2795174],[20.7805285,40.2795628],[20.7805804,40.2797084],[20.7815919,40.2799527],[20.7818428,40.280365],[20.781959,40.2803953],[20.7822125,40.2802582],[20.7826626,40.2801897],[20.782927,40.2800709],[20.7831853,40.2800781],[20.7834119,40.2800124],[20.7834211,40.2800667],[20.7840167,40.2801553],[20.7842994,40.2801452],[20.7848228,40.2802678],[20.7851907,40.280197],[20.785782,40.2798802],[20.7863349,40.2799991],[20.7867436,40.2798123],[20.7872277,40.2797717],[20.7881613,40.2799238],[20.7883945,40.2798942],[20.7887996,40.2800316],[20.7889897,40.2804872],[20.7895259,40.2808354],[20.789646,40.28128],[20.7896227,40.2815226],[20.7898816,40.2820161],[20.7899045,40.282278],[20.7902206,40.282557],[20.7907592,40.2826079],[20.7908958,40.2827018],[20.79083,40.2833485],[20.7909137,40.283567],[20.7912445,40.2837833],[20.7916379,40.2839203],[20.7919036,40.28427],[20.7923848,40.2842923],[20.792476,40.2846011],[20.7933959,40.2852931],[20.7934058,40.2855816],[20.7938611,40.2856303],[20.7939348,40.2858125],[20.7941144,40.2857454],[20.7943207,40.2858592],[20.7945415,40.2856672],[20.7947762,40.2859259],[20.7949734,40.2859854],[20.7951521,40.2859363],[20.7954364,40.2861423],[20.7957411,40.2859166],[20.7956679,40.2862208],[20.7958704,40.2864156],[20.7960675,40.2864751],[20.7965786,40.2863631],[20.7965973,40.2859674],[20.7966711,40.2858974],[20.7974663,40.2862436],[20.7979974,40.2862043],[20.79863,40.2862579],[20.7991362,40.286497],[20.7998216,40.2866782],[20.8001387,40.2866869],[20.8003435,40.2865845],[20.8008981,40.2865458],[20.8011033,40.2864344],[20.8005628,40.2859241],[20.8005267,40.2855673],[20.8011081,40.2857095],[20.8014739,40.2856836],[20.8020871,40.2858987],[20.8022872,40.2858952],[20.8024798,40.2858015],[20.8028867,40.2859028],[20.8031466,40.2857028],[20.8030846,40.285521],[20.803333,40.2854918],[20.803575,40.2855976],[20.8037875,40.2858286],[20.8039274,40.2863549],[20.804197,40.2866236],[20.8042307,40.2871559],[20.8044175,40.2876835],[20.8053602,40.2876465],[20.805716,40.2875843],[20.8058973,40.2874812],[20.8061279,40.2875776],[20.8066012,40.2875187],[20.806487,40.2876956],[20.8066164,40.2877172],[20.80641,40.2878556],[20.8070381,40.2880036],[20.8073561,40.2879944],[20.8074702,40.2880696],[20.807698,40.2879768],[20.8079435,40.2880106],[20.8081011,40.288159],[20.8083839,40.2881488],[20.8085441,40.2882433],[20.8086532,40.2881743],[20.8088755,40.2881984],[20.8090353,40.2883019],[20.8091093,40.2884571],[20.8091403,40.288548],[20.8090647,40.288654],[20.8087202,40.2887256],[20.8090284,40.2893736],[20.8093069,40.2897055],[20.8092992,40.2898674],[20.8093048,40.2899757],[20.8095917,40.2901277],[20.8097586,40.2903304],[20.809882,40.2902078],[20.8100716,40.290177],[20.8101005,40.2903129],[20.8103887,40.2904379],[20.8107977,40.2908185],[20.8110342,40.2910412],[20.81106,40.2914922],[20.8112829,40.2917551],[20.8114423,40.2918676],[20.8118077,40.2918506],[20.8119692,40.2919181],[20.8124154,40.2924348],[20.8124135,40.2929752],[20.812525,40.2933566],[20.812122,40.2939219],[20.8118814,40.2949105],[20.8117202,40.2950862],[20.8116253,40.2953538],[20.8115773,40.2956227],[20.8116435,40.2959668],[20.812041,40.2965182],[20.8127659,40.2968624],[20.8133152,40.2976882],[20.8134952,40.2978643],[20.8135563,40.2980146],[20.8144438,40.2985795],[20.8150806,40.2987952],[20.8153596,40.2991181],[20.8158646,40.2993842],[20.8170666,40.2998406],[20.8175575,40.2999082],[20.8181819,40.2998894],[20.8187156,40.3000482],[20.8191665,40.3004659],[20.8197047,40.3007779],[20.8198211,40.3007316],[20.8199461,40.3008251],[20.8202482,40.3009055],[20.8203669,40.3008817],[20.8205595,40.3007879],[20.820636,40.3004117],[20.8205985,40.3003342],[20.8208864,40.300216],[20.8215323,40.3003643],[20.8217927,40.3002274],[20.8220982,40.3002358],[20.8225777,40.3005462],[20.8225504,40.3006265],[20.8222844,40.3007813],[20.8223908,40.3015228],[20.822507,40.301553],[20.8230089,40.3013867],[20.8235501,40.3016358],[20.823725,40.3019198],[20.8242142,40.3020233],[20.8245373,40.3021583],[20.8249489,40.3021606],[20.8256118,40.3025751],[20.8256504,40.3030085],[20.8257762,40.3033362],[20.8256691,40.3036125],[20.8259275,40.3041239],[20.8260743,40.3042541],[20.8267809,40.3044896],[20.8271485,40.3046799],[20.827477,40.3049501],[20.8283645,40.3053437],[20.8288084,40.30541],[20.8289393,40.3053775],[20.8291967,40.3053576],[20.8292488,40.3052509],[20.829441,40.3051661],[20.8294015,40.3050029],[20.8296164,40.3049367],[20.8298032,40.3047167],[20.8299722,40.3046988],[20.8300767,40.3049809],[20.8299767,40.3053564],[20.830043,40.3054483],[20.8307354,40.3052331],[20.8309528,40.305113],[20.8311869,40.3053896],[20.8313153,40.3054112],[20.8319029,40.3051751],[20.8324417,40.3052259],[20.8328806,40.3051478],[20.8333103,40.3052677],[20.8333442,40.3058],[20.8335553,40.306067],[20.8341923,40.3062826],[20.8348695,40.3071478],[20.8355006,40.3072372],[20.835582,40.3075096],[20.8358183,40.3077412],[20.8361666,40.3078408],[20.8363336,40.3080436],[20.8363705,40.3082607],[20.8365228,40.3085261],[20.8372463,40.3091584],[20.8373545,40.3093595],[20.8375165,40.309418],[20.8380025,40.3093412],[20.8381955,40.3094906],[20.8394692,40.3096786],[20.8397575,40.3098035],[20.8401117,40.3097772],[20.8403667,40.3096581],[20.840893,40.3097265],[20.8409609,40.3097824],[20.8413873,40.3102264],[20.8417952,40.310814],[20.8421696,40.3111124],[20.8422754,40.3113675],[20.84216,40.3115715],[20.8421646,40.3117248],[20.8425499,40.3120415],[20.8436843,40.3124418],[20.8442416,40.3123489],[20.8444094,40.312358],[20.8445898,40.3125251],[20.8450288,40.3126992],[20.8450767,40.3129347],[20.8452651,40.3129308],[20.8452253,40.3130288],[20.8453197,40.3130224],[20.8453159,40.3131033],[20.8454125,40.3130519],[20.8454318,40.3131425],[20.8455409,40.3130734],[20.8455098,40.3132347],[20.8456567,40.3133648],[20.8458334,40.3133606],[20.8458645,40.3134516],[20.8459585,40.3134541],[20.8460475,40.3135646],[20.8463362,40.3136806],[20.8463782,40.3137898],[20.8464848,40.3137747],[20.84676,40.3138813],[20.8469791,40.3137252],[20.8470756,40.3139259],[20.8472141,40.3139838],[20.8474198,40.3138633],[20.8483302,40.3147528],[20.8487112,40.3146551],[20.8489924,40.3146808],[20.8497084,40.3144661],[20.849969,40.314176],[20.8504625,40.3139372],[20.8514008,40.3132422],[20.8516185,40.3128609],[20.8516638,40.3126459],[20.8517969,40.3125685],[20.8518697,40.3127506],[20.8522541,40.3125809],[20.8526561,40.3125378],[20.8526579,40.3124703],[20.8530898,40.312293],[20.8530843,40.3121577],[20.8529038,40.3120177],[20.8529731,40.3116143],[20.8535019,40.3116287],[20.8536467,40.3115515],[20.8535837,40.3111355],[20.8536542,40.3110609],[20.8541555,40.3110069],[20.8541684,40.3107281]]},{"id":16994,"author":"AnaDigit","name_GR":"Epirus Trail: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0391\u03c3\u03c4\u03c1\u03ac\u03ba\u03b1\u03c2-\u039c\u03b5\u03b3\u03ac\u03bb\u03bf \u03a0\u03ac\u03c0\u03b9\u03b3\u03ba\u03bf","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_AstrakaRef_Papigo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":7811,"name_EN":"Epirus Trail: Astraka Refuge-Megalo Papigo","description_EN":"","ascent_time":160,"descent_time":185,"marker":"No_marks","level":9,"ascent":129,"descent":1117,"maxelev":1923,"minelev":854,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.71852 39.96961,20.76921 39.97733)","views":110,"millestones":"0,20.7687845,39.9787405#1,20.7603637,39.9767036#2,20.7546163,39.9753225#3,20.7479758,39.9740931#4,20.7402648,39.9720059#5,20.7330841,39.9727251#6,20.7284217,39.9684839#7,20.7250738,39.9697894#7.8,20.7189148,39.9690606","x":20.7440242,"y":39.9729488,"coor":[[20.7687845,39.9787405],[20.7687306,39.9783697],[20.7686196,39.9782405],[20.7684487,39.9783888],[20.7683915,39.9783602],[20.7683765,39.9784318],[20.768285,39.9783843],[20.7681029,39.9785233],[20.7680089,39.9785297],[20.7679789,39.9784208],[20.7678706,39.9784087],[20.767775,39.9784241],[20.7676853,39.9784396],[20.7677022,39.978404],[20.76774,39.978324],[20.7677944,39.9781634],[20.7677,39.9782013],[20.7676273,39.9782308],[20.7674883,39.9781999],[20.7675242,39.9781559],[20.7672738,39.9781263],[20.7667729,39.9778241],[20.7666205,39.9778289],[20.7664991,39.9779471],[20.7655195,39.9778657],[20.7649181,39.977957],[20.7646855,39.9779235],[20.7646183,39.9778585],[20.7642546,39.9778754],[20.7641494,39.9779175],[20.7640584,39.9778609],[20.7637319,39.9778338],[20.7637155,39.9779324],[20.7635986,39.9779291],[20.7635142,39.9780078],[20.7624772,39.9776546],[20.7619468,39.9777298],[20.7615985,39.977666],[20.7611646,39.9771855],[20.7609332,39.9769313],[20.7607554,39.9772236],[20.7606177,39.9771657],[20.7603596,39.9767036],[20.7601558,39.9763106],[20.7597323,39.9758574],[20.7594442,39.9757593],[20.7592317,39.9756002],[20.7587999,39.9752729],[20.7591004,39.9759974],[20.7591031,39.9761415],[20.7588268,39.9760437],[20.7579086,39.9754055],[20.756336,39.9749922],[20.7559979,39.9748611],[20.7555383,39.9746771],[20.7555132,39.9747125],[20.7553395,39.9746716],[20.7553461,39.9747798],[20.7551512,39.9746933],[20.7551928,39.9748026],[20.7557919,39.9753057],[20.7560546,39.9756914],[20.7560621,39.9757817],[20.7560036,39.97578],[20.7556306,39.9755489],[20.7548172,39.975418],[20.7547496,39.9753621],[20.7544136,39.9752626],[20.7541923,39.9752384],[20.7540724,39.9752981],[20.7543264,39.9756205],[20.7543542,39.9758014],[20.7543291,39.9758367],[20.7540411,39.9757386],[20.7536342,39.9754299],[20.7535921,39.9753297],[20.753441,39.9753074],[20.7533426,39.9751605],[20.7533253,39.9757725],[20.753409,39.975982],[20.7534119,39.9760452],[20.7532707,39.9760592],[20.7530933,39.9759237],[20.7530448,39.9759583],[20.7529898,39.9758847],[20.7527438,39.9758868],[20.7523902,39.9757643],[20.7522937,39.9758247],[20.7521614,39.9756498],[20.752123,39.9755722],[20.7520897,39.9755352],[20.7520404,39.9755879],[20.7519789,39.9756222],[20.7519429,39.9755671],[20.7519455,39.9755132],[20.7519008,39.9754173],[20.7517547,39.9755123],[20.7515226,39.9754698],[20.7513014,39.9753195],[20.7511527,39.9753198],[20.7508609,39.9751765],[20.7507304,39.9749657],[20.7506201,39.9750707],[20.7503183,39.9748685],[20.7501425,39.9748726],[20.7498016,39.9747009],[20.7497583,39.9746276],[20.7496875,39.9746662],[20.7495593,39.974604],[20.7493089,39.9744529],[20.7492336,39.9745589],[20.7488988,39.9743603],[20.7486805,39.9742731],[20.7486059,39.9741179],[20.7484881,39.9741326],[20.7484796,39.9743125],[20.7483173,39.9741819],[20.7483113,39.9743078],[20.7482186,39.9742872],[20.7479028,39.9740351],[20.7478318,39.9740511],[20.7478037,39.9741719],[20.7477782,39.9742163],[20.7477331,39.974179],[20.7476178,39.9742658],[20.7475553,39.9741019],[20.7473549,39.9741323],[20.7472589,39.974035],[20.7469868,39.9738472],[20.7469001,39.9737007],[20.7465086,39.9735636],[20.7464467,39.9736339],[20.7465802,39.9737818],[20.746439,39.9737958],[20.7464469,39.9738771],[20.7464781,39.9739591],[20.7462793,39.9739535],[20.7461221,39.9738139],[20.7459538,39.9737327],[20.7454064,39.9736722],[20.7451675,39.9737736],[20.7448992,39.9735049],[20.7447562,39.9733117],[20.744106,39.9729511],[20.7440242,39.9729488],[20.7440316,39.9730391],[20.7438705,39.9729805],[20.743855,39.9730612],[20.7437393,39.9730309],[20.74369,39.9730835],[20.7435315,39.972971],[20.7433994,39.9730393],[20.7431461,39.9729512],[20.7430408,39.9729482],[20.7430168,39.9730106],[20.7426393,39.973072],[20.7413926,39.9729469],[20.7409328,39.973015],[20.7407065,39.972923],[20.7404863,39.97189],[20.7404153,39.971906],[20.7404059,39.9721039],[20.7401113,39.9718975],[20.7401729,39.9720794],[20.7400449,39.97231],[20.7398231,39.9720515],[20.7397295,39.9720489],[20.7397405,39.9723104],[20.7396549,39.9725106],[20.7394213,39.9722519],[20.7389017,39.9721021],[20.7387346,39.9721695],[20.7386567,39.9723294],[20.7385402,39.9723171],[20.7385009,39.9724061],[20.7383735,39.9723755],[20.7383693,39.9724654],[20.7380955,39.9723136],[20.7379327,39.972291],[20.7377664,39.9723404],[20.7377059,39.9723837],[20.7377432,39.9725829],[20.7375081,39.9726033],[20.7372302,39.9727846],[20.7369959,39.972787],[20.7368856,39.972892],[20.7365681,39.9726759],[20.736545,39.972423],[20.7364315,39.9723478],[20.7361543,39.9722679],[20.7360214,39.9723542],[20.7358101,39.9723663],[20.735775,39.9723428],[20.7356288,39.9724648],[20.73544,39.9724955],[20.7353439,39.9725468],[20.7353396,39.9726368],[20.7352093,39.9726691],[20.7349434,39.9725986],[20.7348794,39.9727139],[20.7347282,39.9726916],[20.7346269,39.9726077],[20.734604,39.9728412],[20.7347232,39.9730427],[20.734547,39.9730558],[20.7344253,39.9731514],[20.7344336,39.9732237],[20.7341842,39.9732977],[20.7336416,39.9731383],[20.7332759,39.9727047],[20.7330053,39.9727331],[20.7331995,39.9730808],[20.733136,39.9734303],[20.7328354,39.9733498],[20.7327341,39.9732658],[20.7325925,39.9732889],[20.7324673,39.9732133],[20.7323587,39.9732823],[20.732317,39.973173],[20.7319679,39.9728839],[20.7317899,39.9724421],[20.7315673,39.9722016],[20.7314875,39.9719111],[20.7310977,39.971738],[20.7306894,39.9717084],[20.7303312,39.9716082],[20.7297798,39.9711423],[20.7294291,39.9711324],[20.7292706,39.9710198],[20.7292031,39.9706396],[20.7293611,39.970518],[20.7297278,39.9704383],[20.7299451,39.9703003],[20.7299582,39.9701025],[20.7297083,39.9699423],[20.7296129,39.9697325],[20.729698,39.9691764],[20.729833,39.968847],[20.7295765,39.968556],[20.7294111,39.9685874],[20.7292041,39.9685095],[20.728811,39.9685299],[20.728706,39.9684729],[20.7284128,39.9684826],[20.7278977,39.9688013],[20.7278099,39.9689249],[20.727872,39.969341],[20.7285078,39.9697553],[20.7286189,39.9699566],[20.7285176,39.9701159],[20.7281025,39.9702302],[20.7278362,39.9704119],[20.7276177,39.97082],[20.7275599,39.9712958],[20.7274859,39.9713748],[20.7273607,39.9712992],[20.7274712,39.9704556],[20.7273634,39.9705066],[20.7272704,39.9707382],[20.7271511,39.9704916],[20.7268248,39.9709507],[20.726517,39.9710456],[20.7262465,39.9715604],[20.7262472,39.971056],[20.7260978,39.9710473],[20.726,39.9711346],[20.7259764,39.9706475],[20.7258526,39.970545],[20.7257693,39.9703264],[20.7255288,39.9701935],[20.7250346,39.9697562],[20.7239349,39.9690045],[20.7236461,39.9689243],[20.7233487,39.969024],[20.7232608,39.9690485],[20.7227402,39.9692139],[20.7225987,39.9693315],[20.7217692,39.9695422],[20.7216042,39.9695646],[20.7216362,39.9693853],[20.7213704,39.969558],[20.7213137,39.9695203],[20.7211136,39.9695417],[20.7205256,39.9695971],[20.7201664,39.9694248],[20.7201357,39.9693834],[20.7194425,39.9694358],[20.7189148,39.9690606]]},{"id":16995,"author":"AnaDigit","name_GR":"Epirus Trail: \u03a7\u03c1\u03c5\u03c3\u03bf\u03b2\u03af\u03c4\u03c3\u03b1-\u039c\u03ad\u03c4\u03c3\u03bf\u03b2\u03bf","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Chrysovitsa_Metsovo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":19243,"name_EN":"Epirus Trail: Chrysovitsa-Metsovo","description_EN":"","ascent_time":480,"descent_time":465,"marker":"No_marks","level":9,"ascent":1000,"descent":770,"maxelev":1543,"minelev":912,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.0739 39.76989,21.18306 39.80551)","views":56,"millestones":"0,21.0756840,39.7794828#1,21.0820231,39.7806789#2,21.0856440,39.7859323#3,21.0847011,39.7915239#4,21.0788702,39.7950640#5,21.0806777,39.8023311#6,21.0903731,39.7994629#7,21.0929060,39.8049991#8,21.1033125,39.8037075#9,21.1129976,39.8008665#10,21.1226220,39.7997372#11,21.1282925,39.7952045#12,21.1340211,39.7901056#13,21.1437880,39.7911627#14,21.1485315,39.7882258#15,21.1529932,39.7830647#16,21.1613410,39.7794658#17,21.1687329,39.7806887#18,21.1772947,39.7771212#19.2,21.1827460,39.7698776","x":21.1212512,"y":39.8004135,"coor":[[21.075684,39.7794828],[21.0754339,39.7794314],[21.0752902,39.7797926],[21.0749748,39.7800729],[21.0758232,39.7805763],[21.0761133,39.7806196],[21.0764207,39.7805283],[21.0767556,39.7803385],[21.0774554,39.7795274],[21.0777725,39.7795399],[21.0779705,39.7792747],[21.0783336,39.7792478],[21.078851,39.7797112],[21.0794024,39.7799233],[21.0797857,39.779969],[21.0799211,39.7800805],[21.0802155,39.7805743],[21.08049,39.7807074],[21.0808321,39.7806259],[21.0811712,39.7803372],[21.0817909,39.7800375],[21.0819848,39.7798712],[21.082091,39.7803963],[21.0820017,39.7805743],[21.0820327,39.7806696],[21.0819962,39.7807047],[21.0816254,39.7818259],[21.0815042,39.7819309],[21.08121,39.7819866],[21.0813427,39.7821611],[21.0813486,39.7822964],[21.0818681,39.7824355],[21.082106,39.7823334],[21.0824536,39.7823962],[21.0827824,39.7823504],[21.0830142,39.7823923],[21.0831255,39.7825212],[21.0838744,39.7830625],[21.0841634,39.7831328],[21.084783,39.7831124],[21.0850956,39.7831743],[21.0855546,39.783366],[21.086203,39.7837696],[21.0863042,39.7838622],[21.0862763,39.7839696],[21.0856682,39.7842696],[21.0855028,39.784315],[21.0855073,39.7844863],[21.0860451,39.7850223],[21.0858662,39.7853871],[21.085675,39.7854904],[21.0857227,39.7857438],[21.0856056,39.7860291],[21.0854152,39.7861144],[21.085157,39.786144],[21.0846667,39.7864199],[21.0847316,39.7868179],[21.0845227,39.7870648],[21.0841279,39.7872891],[21.0839991,39.7875741],[21.0839936,39.7879793],[21.0835228,39.7883458],[21.0833853,39.7885586],[21.0834518,39.7889206],[21.0828545,39.7892388],[21.0825921,39.7896466],[21.0822296,39.7899347],[21.0821388,39.7901486],[21.0819438,39.7903419],[21.0820574,39.7904168],[21.0820257,39.7906142],[21.082119,39.7906166],[21.0821145,39.7907245],[21.0822785,39.7907107],[21.0823074,39.7908555],[21.082579,39.7910605],[21.0826192,39.7912147],[21.082767,39.7913085],[21.0829898,39.791287],[21.0830563,39.7913698],[21.0831978,39.7913373],[21.0832252,39.7914371],[21.0835743,39.7912972],[21.0837617,39.7912839],[21.08484,39.7914642],[21.0845283,39.7916005],[21.0846061,39.7916925],[21.0844296,39.7917241],[21.0844725,39.7918153],[21.0841319,39.7918607],[21.0839448,39.7921443],[21.0836354,39.7922806],[21.0833435,39.7922823],[21.0834946,39.7923852],[21.0835148,39.7924578],[21.0833749,39.7924542],[21.0832198,39.7925314],[21.0830846,39.7926902],[21.0831768,39.7927195],[21.0830315,39.792842],[21.0833107,39.792867],[21.0834646,39.7928168],[21.0834861,39.7928624],[21.0832591,39.7929828],[21.0832677,39.7930551],[21.0833735,39.7930397],[21.0835913,39.7931353],[21.082971,39.793444],[21.0831219,39.7934658],[21.0831065,39.7935555],[21.0827388,39.7936903],[21.082604,39.7938401],[21.082356,39.7939059],[21.0821738,39.7940725],[21.0819848,39.7941218],[21.0817057,39.7940967],[21.0813116,39.794303],[21.0810475,39.7941973],[21.0805304,39.7942743],[21.0808066,39.7943714],[21.0803459,39.7944949],[21.080031,39.794487],[21.0795887,39.794728],[21.0788703,39.7948721],[21.0792619,39.794999],[21.0788032,39.7950776],[21.078825,39.7951142],[21.0789424,39.7950991],[21.0789619,39.7951897],[21.0787786,39.7953832],[21.0787882,39.7957077],[21.0787121,39.79585],[21.0784704,39.796042],[21.0781584,39.7960162],[21.0780379,39.7961032],[21.0784473,39.7964198],[21.0785311,39.7966471],[21.0784487,39.7986493],[21.0783443,39.7991016],[21.0783212,39.7993712],[21.078681,39.8008035],[21.0787243,39.8014352],[21.0789764,39.8015496],[21.0793875,39.8020464],[21.0802868,39.8023213],[21.0807534,39.802333],[21.0813466,39.8021138],[21.0828724,39.8011072],[21.0831525,39.800835],[21.0834591,39.8002122],[21.083653,39.8000459],[21.0847199,39.7999466],[21.0857554,39.7994862],[21.0862267,39.7991107],[21.0864626,39.7990536],[21.0866835,39.7990772],[21.0874428,39.7993485],[21.088419,39.7994631],[21.0888443,39.7996494],[21.0896485,39.7996876],[21.0898596,39.7996659],[21.0903941,39.7994541],[21.0908954,39.7994487],[21.09131,39.7995852],[21.0920874,39.799983],[21.0925491,39.8001117],[21.0934925,39.8001714],[21.0943654,39.8003239],[21.0941925,39.800824],[21.094005,39.8011165],[21.0932787,39.8011704],[21.0928248,39.8014112],[21.0923681,39.8019943],[21.0923281,39.8023897],[21.0922956,39.8027176],[21.0924886,39.8031278],[21.0924472,39.8033295],[21.0922943,39.8036319],[21.0922366,39.8041709],[21.0927746,39.8047069],[21.0930412,39.8053081],[21.09416,39.8056424],[21.0946474,39.8057177],[21.0955596,39.8059657],[21.0967575,39.8060858],[21.0979886,39.8059725],[21.0987466,39.8057212],[21.0994994,39.8055959],[21.1008807,39.8049639],[21.10148,39.8046006],[21.1028489,39.8039862],[21.1031496,39.8037775],[21.1044812,39.8032163],[21.1056762,39.8028497],[21.1066739,39.8024513],[21.1072979,39.8023317],[21.1078007,39.802038],[21.1085018,39.8017492],[21.1093415,39.8014999],[21.1107911,39.8011847],[21.1110098,39.800983],[21.1112861,39.8005215],[21.1113083,39.8002698],[21.1115187,39.800212],[21.1119738,39.8005251],[21.1124435,39.8004647],[21.1127434,39.8008325],[21.1130569,39.8008763],[21.1140847,39.8005956],[21.1148189,39.8000734],[21.1153431,39.8001045],[21.1160006,39.800301],[21.116249,39.8005054],[21.1168771,39.8008453],[21.1169659,39.8009556],[21.117267,39.8010171],[21.1176659,39.800973],[21.1180117,39.8008014],[21.118134,39.8006693],[21.1188065,39.8005059],[21.1187505,39.8004505],[21.1188592,39.8003631],[21.1188667,39.8001831],[21.1189838,39.800177],[21.1191208,39.8002525],[21.1193593,39.8001323],[21.1199355,39.8000385],[21.1200047,39.8000582],[21.1199882,39.8001749],[21.1200879,39.8003035],[21.1204488,39.8003305],[21.1206502,39.8002634],[21.1208598,39.8002776],[21.1212512,39.8004135],[21.1217363,39.8002634],[21.1220275,39.8000004],[21.1223711,39.7998828],[21.1225459,39.799752],[21.1232289,39.7996158],[21.1233162,39.7994829],[21.1235318,39.7993531],[21.123633,39.7991664],[21.1239898,39.7990131],[21.124768,39.7988343],[21.1249885,39.7985875],[21.125005,39.7981916],[21.1251845,39.7980879],[21.1256883,39.7980464],[21.1258288,39.7983201],[21.1259654,39.7984045],[21.126234,39.7981229],[21.1264685,39.7981017],[21.1265889,39.7980146],[21.1268263,39.7976422],[21.1270065,39.7975205],[21.1277117,39.7974119],[21.127703,39.7973396],[21.1278125,39.7972342],[21.1277508,39.7970345],[21.1281421,39.7968911],[21.1282411,39.7967584],[21.128179,39.7966488],[21.1280906,39.7965295],[21.128057,39.7962134],[21.1278492,39.7955957],[21.1283369,39.7959411],[21.1285006,39.7959361],[21.1283252,39.7956615],[21.1282837,39.7949759],[21.1280345,39.7947895],[21.1280626,39.7941146],[21.1277897,39.7936575],[21.1277347,39.7932958],[21.1285601,39.7925416],[21.1287195,39.7923023],[21.1288629,39.7922248],[21.1289434,39.7922538],[21.1290487,39.7919681],[21.1292098,39.7920262],[21.1294434,39.7917437],[21.1297877,39.7916081],[21.130118,39.7915262],[21.1302685,39.7915569],[21.1303995,39.7914971],[21.1306196,39.7915386],[21.1307995,39.7914259],[21.1308784,39.7912117],[21.131181,39.7912372],[21.1312212,39.7911121],[21.1312912,39.7911138],[21.131424,39.791009],[21.13143,39.790865],[21.131597,39.7907791],[21.1320068,39.7907532],[21.1322709,39.7905796],[21.1323518,39.7905996],[21.1328266,39.7904131],[21.1333049,39.790425],[21.1335815,39.7905129],[21.1336586,39.7906229],[21.1337165,39.7903541],[21.1337981,39.7903561],[21.1338489,39.7902583],[21.1339434,39.7902336],[21.1339729,39.7902568],[21.1340398,39.7900513],[21.1342542,39.7899485],[21.1349453,39.789335],[21.1350075,39.7891023],[21.1351877,39.7889807],[21.135788,39.7894279],[21.1362685,39.7893857],[21.137311,39.7901501],[21.1381008,39.7902507],[21.1385163,39.790369],[21.1396798,39.7904698],[21.1399919,39.7905721],[21.1409354,39.7905188],[21.1413087,39.790528],[21.1420056,39.790419],[21.1427521,39.7904374],[21.1430645,39.7905082],[21.1433031,39.7906672],[21.1436476,39.7910901],[21.1439792,39.7912604],[21.1443054,39.7912774],[21.1446137,39.7914471],[21.1452925,39.7914098],[21.1454143,39.7912867],[21.1459223,39.7911461],[21.146434,39.7911947],[21.1466925,39.791156],[21.1468298,39.7909432],[21.1476292,39.7905305],[21.1478007,39.7903365],[21.1477355,39.7902178],[21.1475507,39.7901682],[21.1470844,39.7898685],[21.1469791,39.7893074],[21.1471821,39.788916],[21.1467717,39.7883925],[21.146525,39.787864],[21.1465216,39.7876657],[21.146628,39.7876323],[21.1467658,39.7876897],[21.1470014,39.7879207],[21.1471341,39.7883834],[21.1473994,39.788462],[21.1477971,39.7884447],[21.1480722,39.7885686],[21.1481896,39.7885535],[21.148542,39.7882198],[21.1487557,39.788135],[21.149021,39.7882136],[21.1494126,39.7880611],[21.1499696,39.7881468],[21.1500361,39.7879503],[21.1496347,39.78749],[21.1486459,39.7868352],[21.1484995,39.7867055],[21.1484693,39.7865876],[21.1486277,39.7864294],[21.1489113,39.7863462],[21.1489229,39.7860673],[21.1489845,39.7859877],[21.1496642,39.7856441],[21.1502067,39.7855133],[21.1503775,39.7853374],[21.1506201,39.7852262],[21.1507107,39.7851834],[21.1506838,39.7847053],[21.1514638,39.7847605],[21.1519348,39.784182],[21.1522851,39.7841816],[21.1526834,39.7838671],[21.1526151,39.7835412],[21.1528189,39.7832444],[21.1534901,39.7825402],[21.1535923,39.7823265],[21.1538424,39.7822066],[21.154119,39.7822944],[21.154529,39.782827],[21.1548908,39.7831151],[21.1559835,39.7829167],[21.1561603,39.782876],[21.1568216,39.7824418],[21.1570001,39.7824146],[21.157382,39.7824961],[21.1579015,39.7823557],[21.1581407,39.7822174],[21.1584019,39.7818274],[21.1591706,39.7813058],[21.1599508,39.7810727],[21.1603869,39.7808041],[21.1604409,39.7806253],[21.1608852,39.7800416],[21.1612251,39.7797842],[21.1612817,39.7795424],[21.1615838,39.7791534],[21.161651,39.7789389],[21.1616889,39.7786425],[21.1619945,39.7783077],[21.1620935,39.7778867],[21.1621916,39.777772],[21.1629469,39.7775743],[21.1631784,39.777625],[21.1630826,39.7780506],[21.1631809,39.7782151],[21.1635286,39.7782777],[21.1636373,39.7784154],[21.1639923,39.7791538],[21.1644442,39.7792369],[21.1645264,39.7795362],[21.1646276,39.7796287],[21.1651081,39.7795864],[21.1653285,39.7796188],[21.1656507,39.7797348],[21.1658755,39.7799475],[21.1661509,39.7800623],[21.1663367,39.7803731],[21.1666756,39.7803634],[21.1670788,39.7802111],[21.1679069,39.7802313],[21.1681373,39.780309],[21.1686823,39.7806826],[21.1696467,39.7807963],[21.1710587,39.7808442],[21.1725177,39.7802853],[21.1724035,39.7796519],[21.172255,39.779288],[21.172293,39.7789286],[21.1725081,39.7788077],[21.1729712,39.7789316],[21.1732255,39.7789919],[21.1733962,39.7788159],[21.174157,39.7784831],[21.1754328,39.7781178],[21.175879,39.7780566],[21.1760707,39.7779352],[21.1762428,39.7777232],[21.1765415,39.7774467],[21.1769794,39.7773267],[21.1780232,39.7766405],[21.1783906,39.7758477],[21.1787056,39.7755671],[21.1788804,39.7756885],[21.178917,39.7755632],[21.1791175,39.7755141],[21.1793462,39.7750602],[21.1795075,39.7745417],[21.1795576,39.7738853],[21.1796129,39.7737921],[21.1796676,39.7737078],[21.1799848,39.773085],[21.1806375,39.7727405],[21.1812084,39.7721959],[21.1814969,39.7720227],[21.1817878,39.7718451],[21.1823396,39.7716829],[21.1825794,39.7716121],[21.1830027,39.7712531],[21.1829922,39.7710231],[21.1829047,39.7708769],[21.182868,39.7705472],[21.1828582,39.7705019],[21.1827,39.7700026],[21.182746,39.7698776]]},{"id":16996,"author":"AnaDigit","name_GR":"Epirus Trail: \u0394\u03cc\u03bb\u03b9\u03b1\u03bd\u03b7-\u0393\u03c1\u03b5\u03b2\u03b5\u03bd\u03af\u03c4\u03b9","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Doliani_Greveniti","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":7038,"name_EN":"Epirus Trail: Doliani-Greveniti","description_EN":"","ascent_time":175,"descent_time":165,"marker":"No_marks","level":9,"ascent":465,"descent":409,"maxelev":1011,"minelev":653,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.95289 39.80658,21.00451 39.82142)","views":27,"millestones":"0,20.9528912,39.8214184#1,20.9606015,39.8182051#2,20.9689600,39.8151882#3,20.9756884,39.8179613#4,20.9824638,39.8210568#5,20.9920283,39.8175641#6,20.9993773,39.8128800#7,21.0045104,39.8065767","x":20.9751748,"y":39.8178854,"coor":[[20.9528912,39.8214184],[20.9535443,39.8201204],[20.9538733,39.8198138],[20.9538443,39.8191465],[20.9541258,39.8189602],[20.954716,39.8188496],[20.9553164,39.8190095],[20.9553425,39.8189471],[20.9554604,39.8189232],[20.9565028,39.8187524],[20.9569773,39.8183235],[20.9575532,39.8179783],[20.9577664,39.8179118],[20.9579515,39.8179527],[20.9580955,39.8178664],[20.9584689,39.8178762],[20.9584018,39.8180726],[20.9584655,39.8182184],[20.9585938,39.8182218],[20.9586836,39.8183052],[20.9588368,39.8182732],[20.9588924,39.8183377],[20.9590726,39.8182253],[20.9591643,39.8182638],[20.9592009,39.8182287],[20.9595393,39.8182376],[20.9597437,39.818369],[20.9599352,39.818266],[20.960072,39.8183416],[20.9603544,39.818295],[20.9603362,39.8181774],[20.9604557,39.8181175],[20.9608996,39.8183813],[20.9610296,39.8183487],[20.961681,39.8184108],[20.961664,39.8182662],[20.9615633,39.8181645],[20.9618301,39.8182075],[20.9621321,39.8179813],[20.9621565,39.8176937],[20.9622911,39.8175531],[20.962625,39.8173997],[20.9627247,39.8172582],[20.9626622,39.8170854],[20.9629408,39.8168585],[20.9630824,39.8168261],[20.96323,39.8166589],[20.9635662,39.8164515],[20.9638088,39.8165119],[20.9639166,39.8164517],[20.9642682,39.8164248],[20.9644213,39.8161316],[20.9649847,39.815804],[20.9650968,39.8156448],[20.965277,39.8155325],[20.9654524,39.815528],[20.965766,39.8153021],[20.9658873,39.8152557],[20.9661358,39.8151811],[20.9663217,39.815204],[20.9665035,39.8150556],[20.9668839,39.8149034],[20.9679731,39.8145716],[20.9683479,39.8148156],[20.9684885,39.8150715],[20.9688501,39.815081],[20.9689504,39.8151917],[20.9691877,39.8151078],[20.9691901,39.8150538],[20.9694125,39.8150416],[20.9694335,39.8150962],[20.9696576,39.815048],[20.9698444,39.8147827],[20.9700323,39.8147606],[20.9705071,39.814854],[20.970882,39.8148278],[20.9708399,39.8149889],[20.9710392,39.8152373],[20.9712243,39.8152781],[20.9715765,39.8155035],[20.9720286,39.8153172],[20.9724619,39.8152924],[20.973078,39.8150924],[20.9732111,39.8149877],[20.9734445,39.8149938],[20.9735109,39.8150766],[20.97364,39.815062],[20.9736719,39.8151349],[20.9739418,39.8151059],[20.9739721,39.8152148],[20.9744688,39.8150746],[20.9745011,39.8151385],[20.9748238,39.815237],[20.9750726,39.8154237],[20.9750998,39.8155234],[20.9750711,39.81591],[20.9747844,39.8160557],[20.9746559,39.8163226],[20.9748999,39.8166172],[20.9750382,39.816927],[20.9752878,39.8170957],[20.9755671,39.8174633],[20.9758345,39.8177585],[20.9758733,39.8179397],[20.9757667,39.8179729],[20.9751748,39.8178854],[20.9749725,39.8179702],[20.9749805,39.8183217],[20.975055,39.8184858],[20.9752568,39.8186803],[20.9758409,39.8186775],[20.976014,39.818727],[20.9764877,39.8193789],[20.9767027,39.8195377],[20.9768809,39.8200017],[20.9777626,39.8206733],[20.9778189,39.8208008],[20.9774944,39.8210086],[20.9775005,39.8211348],[20.9778731,39.8211626],[20.9785418,39.8210989],[20.9802561,39.8214318],[20.9803237,39.8214877],[20.9806529,39.8213071],[20.9812169,39.8212317],[20.9816005,39.8210075],[20.9823092,39.821098],[20.9826756,39.8209994],[20.9826803,39.8208914],[20.982973,39.8206108],[20.9831223,39.8206687],[20.9833557,39.8206748],[20.983628,39.8205918],[20.9837883,39.8203978],[20.9838055,39.8202722],[20.9839495,39.8201858],[20.9839441,39.8200416],[20.9844062,39.8198915],[20.9847074,39.8196831],[20.9852138,39.8195882],[20.9855476,39.8194347],[20.9858527,39.8191364],[20.985931,39.8189493],[20.9863692,39.8190778],[20.9866813,39.8188877],[20.9873254,39.8188504],[20.9877084,39.8189054],[20.9880737,39.8188338],[20.9885965,39.8186312],[20.9890395,39.8186517],[20.9895631,39.8184311],[20.989781,39.8182566],[20.9904703,39.8179863],[20.9907629,39.8177056],[20.9915587,39.8176722],[20.9918062,39.8176516],[20.9921508,39.8175164],[20.9921703,39.8173368],[20.9920274,39.8168647],[20.9922017,39.816617],[20.9927032,39.8163688],[20.9927546,39.816262],[20.9935791,39.8161032],[20.9937005,39.8159983],[20.9938386,39.8160469],[20.9942773,39.8158961],[20.9944741,39.8159373],[20.9946511,39.8158968],[20.994799,39.8157205],[20.995058,39.8156732],[20.9953451,39.8155185],[20.9956022,39.8155161],[20.9957516,39.8153038],[20.9959841,39.8153278],[20.9961277,39.8152505],[20.99621,39.8149689],[20.9964239,39.8148303],[20.9967429,39.8147485],[20.9969292,39.8147623],[20.997084,39.8146943],[20.9973982,39.8147204],[20.9977067,39.8146113],[20.9981121,39.8141534],[20.9980947,39.8139863],[20.9986851,39.8137359],[20.9988352,39.8137758],[20.998955,39.8137068],[20.9990468,39.8137452],[20.9991082,39.8136748],[20.9994209,39.8137369],[20.9994373,39.8136292],[20.9995329,39.8135777],[20.9994538,39.8133549],[20.9992022,39.8118891],[20.9997519,39.8112008],[21.0001845,39.8106535],[21.0007438,39.8104157],[21.0011371,39.8099665],[21.0015097,39.8097239],[21.0016491,39.8092051],[21.0016839,39.8087286],[21.0017718,39.8085867],[21.002081,39.8084596],[21.0027938,39.808451],[21.0030073,39.8083754],[21.0036048,39.8077964],[21.0037235,39.8072139],[21.003878,39.8068846],[21.0040351,39.8067626],[21.0045104,39.8065767]]},{"id":16997,"author":"AnaDigit","name_GR":"Epirus Trail: \u0394\u03c1\u03bf\u03c3\u03bf\u03c0\u03b7\u03b3\u03ae-\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Drosopigi_AgParaskevi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":16043,"name_EN":"Epirus Trail: Drosopigi-Agia Paraskevi","description_EN":"","ascent_time":395,"descent_time":370,"marker":"No_marks","level":9,"ascent":1141,"descent":871,"maxelev":1702,"minelev":693,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.88713 40.14594,20.92188 40.22843)","views":54,"millestones":"0,20.9140726,40.2291485#1,20.9164827,40.2242205#2,20.9178706,40.2173727#3,20.9131223,40.2132728#4,20.9070088,40.2128430#5,20.8992820,40.2116517#6,20.8948636,40.2052650#7,20.8928761,40.1977387#8,20.8895431,40.1919334#9,20.8961812,40.1853770#10,20.8927254,40.1817764#11,20.8958596,40.1746961#12,20.8969888,40.1676911#13,20.8954328,40.1606087#14,20.8983859,40.1539172#15,20.8998179,40.1483796#16,20.8959175,40.1452872","x":20.8886862,"y":40.1957181,"coor":[[20.9140726,40.2291485],[20.9142735,40.2288656],[20.9147943,40.2290416],[20.9154055,40.2290399],[20.9153095,40.2287716],[20.9151845,40.2286782],[20.9144855,40.2285425],[20.9140088,40.2285613],[20.9135101,40.2283858],[20.9133897,40.2282205],[20.913516,40.2280257],[20.91398,40.2276418],[20.9144925,40.2274843],[20.9149761,40.2274432],[20.9150523,40.2273191],[20.9154259,40.2271129],[20.915458,40.2269246],[20.9159086,40.2265763],[20.9160034,40.2262996],[20.9163713,40.2262194],[20.9165262,40.226174],[20.9165405,40.2260888],[20.9164373,40.226032],[20.9161455,40.2257585],[20.9162497,40.2252749],[20.9162191,40.2249138],[20.9160063,40.2246829],[20.9159541,40.2245374],[20.9160169,40.224449],[20.9161343,40.2244522],[20.9161258,40.2243799],[20.9163031,40.2243576],[20.9164379,40.2242351],[20.9166884,40.2241517],[20.9167791,40.2242261],[20.9169969,40.2240878],[20.9173296,40.2240066],[20.9171763,40.2237594],[20.9172516,40.2236533],[20.9176139,40.2234378],[20.9175683,40.2231483],[20.9176428,40.2230602],[20.9172568,40.2227617],[20.9172665,40.2226764],[20.9172322,40.2223963],[20.9173283,40.2220926],[20.9171798,40.2219985],[20.917224,40.2218016],[20.9171249,40.2216548],[20.9172654,40.2214063],[20.917448,40.2212671],[20.9175586,40.2209008],[20.9177011,40.2208685],[20.9177412,40.2207615],[20.9178966,40.2207026],[20.9178889,40.2206123],[20.9176959,40.2204631],[20.9178567,40.2202872],[20.9179422,40.2199562],[20.9182211,40.2197655],[20.9182833,40.2195059],[20.9181886,40.2195214],[20.9180737,40.2194643],[20.918245,40.2193923],[20.9180225,40.2191162],[20.9179987,40.2188633],[20.9180538,40.2186847],[20.918208,40.2186527],[20.9184861,40.21848],[20.918561,40.2182523],[20.9186108,40.2181906],[20.9185538,40.2181531],[20.9184615,40.2181686],[20.918245,40.2180187],[20.9179903,40.2174175],[20.9176783,40.2173011],[20.9176011,40.2171909],[20.917615,40.216885],[20.9175171,40.2167113],[20.9172395,40.2166138],[20.9171849,40.2165223],[20.916644,40.2162737],[20.9165595,40.2160643],[20.9163985,40.2159879],[20.9165256,40.2157751],[20.9164148,40.2156281],[20.916429,40.2154978],[20.9157438,40.2144392],[20.9154939,40.214356],[20.9154057,40.2142276],[20.9157708,40.2139491],[20.9157705,40.2136968],[20.9152276,40.213232],[20.9148964,40.2126872],[20.9147076,40.2126777],[20.9145068,40.2120824],[20.914314,40.2119016],[20.9143037,40.2118968],[20.9141674,40.2119247],[20.9141163,40.2120134],[20.9141438,40.2124915],[20.9140389,40.2127319],[20.9139123,40.2126745],[20.9136885,40.2126865],[20.9137057,40.21275],[20.9133738,40.2128132],[20.913372,40.2130879],[20.9130802,40.2133053],[20.9131705,40.2134383],[20.9127789,40.2132657],[20.9126479,40.2130461],[20.9124658,40.2129151],[20.9124186,40.2126616],[20.9122005,40.2129846],[20.9121899,40.2132185],[20.9119149,40.2128058],[20.9117992,40.2127667],[20.9121808,40.2136776],[20.9119976,40.2143483],[20.9111304,40.2142981],[20.9096063,40.2147438],[20.9092199,40.2147154],[20.9084945,40.2143898],[20.908262,40.2140773],[20.9079869,40.2139259],[20.9078919,40.2136891],[20.907347,40.2135304],[20.9071872,40.2134271],[20.9071103,40.2133079],[20.907149,40.2129757],[20.906901,40.2127439],[20.9067725,40.2124702],[20.9065812,40.212285],[20.9059226,40.2120422],[20.9053992,40.2116679],[20.9051779,40.2116259],[20.9049759,40.2116746],[20.9050323,40.2119598],[20.9046618,40.2118418],[20.9043445,40.2118423],[20.9038447,40.2119821],[20.9036982,40.2121042],[20.9035546,40.2119022],[20.9033786,40.2118975],[20.9031093,40.2116201],[20.9026223,40.2115035],[20.9023183,40.2117565],[20.9023363,40.2121353],[20.9022064,40.2121499],[20.9019771,40.2120266],[20.9018223,40.2123287],[20.9017041,40.2123436],[20.9014489,40.2122737],[20.9011489,40.2124098],[20.9007846,40.2126702],[20.900727,40.2129029],[20.9003245,40.2127119],[20.8999515,40.2126479],[20.8996251,40.2123329],[20.8995627,40.2118989],[20.8994074,40.2116966],[20.8992456,40.2116382],[20.899192,40.2112674],[20.8989789,40.210969],[20.8987698,40.2109183],[20.8984838,40.2107485],[20.8984444,40.2103242],[20.8980136,40.2102405],[20.8979019,40.210161],[20.8977029,40.210016],[20.8974137,40.2099182],[20.8975316,40.2096512],[20.8974779,40.2095416],[20.897518,40.2094346],[20.8973975,40.2092422],[20.8973246,40.2087809],[20.8973923,40.2085846],[20.8972136,40.2083816],[20.8972485,40.2082114],[20.8972887,40.2081044],[20.8969384,40.2078473],[20.8969872,40.2075514],[20.8968529,40.2075613],[20.8966263,40.2076363],[20.8964069,40.2078105],[20.8963381,40.2077727],[20.8963774,40.2076836],[20.8963003,40.2072087],[20.8960361,40.2068728],[20.8954898,40.2064889],[20.894914,40.2064914],[20.8948399,40.2063138],[20.8948446,40.2059536],[20.8950167,40.2057871],[20.8950391,40.2055535],[20.8948532,40.2052513],[20.8954458,40.2048799],[20.8959107,40.2047303],[20.8961042,40.2046094],[20.8961733,40.2041248],[20.8958615,40.2027203],[20.8959288,40.202533],[20.8957674,40.2019522],[20.8958468,40.2017562],[20.8957696,40.201646],[20.8957177,40.2012393],[20.8954105,40.2007627],[20.8953135,40.2000575],[20.8952279,40.1998751],[20.8945161,40.1994101],[20.8944049,40.1993756],[20.8943057,40.1989766],[20.8940651,40.198844],[20.8939189,40.1984438],[20.8929346,40.1978769],[20.8927969,40.197549],[20.8924557,40.1973056],[20.8923331,40.1969555],[20.8918274,40.196969],[20.8913641,40.1970826],[20.8912143,40.1967634],[20.8907189,40.1965519],[20.8905997,40.1963325],[20.8903498,40.1961456],[20.8901512,40.1961223],[20.8898044,40.1962571],[20.88918,40.1960421],[20.8888591,40.1961236],[20.8887276,40.1960975],[20.8888968,40.195994],[20.8886862,40.1957181],[20.8886399,40.1954466],[20.8887529,40.1947741],[20.8893061,40.1939784],[20.8896335,40.193753],[20.8896669,40.1935377],[20.8898603,40.1934168],[20.8898422,40.1932992],[20.8899896,40.1931591],[20.8900089,40.1927363],[20.8895979,40.1922208],[20.8895399,40.191949],[20.8896008,40.1916444],[20.8898092,40.1914519],[20.8900856,40.1913152],[20.89044,40.1907573],[20.8904167,40.1904954],[20.8906091,40.1901403],[20.8905352,40.1899582],[20.8906097,40.1898701],[20.8905015,40.189669],[20.8905558,40.1895084],[20.8910277,40.1892058],[20.8922537,40.1885902],[20.8928859,40.1881208],[20.8938022,40.1878572],[20.8957439,40.1864862],[20.8962716,40.1857032],[20.8961009,40.1850681],[20.8966744,40.1845971],[20.897019,40.1839939],[20.8970261,40.1835797],[20.8972793,40.18292],[20.8971414,40.1823398],[20.8972952,40.1820557],[20.8974639,40.1814478],[20.8974208,40.1811043],[20.8973278,40.1810838],[20.8971951,40.1811613],[20.8967398,40.1816175],[20.8963421,40.181841],[20.8954546,40.1819883],[20.8951825,40.1817739],[20.8948189,40.1817641],[20.8944621,40.1818626],[20.8941408,40.1822143],[20.8940218,40.1822471],[20.8937615,40.1820329],[20.8933705,40.1818513],[20.8929302,40.1817224],[20.8926806,40.1817877],[20.8926334,40.1815343],[20.8923785,40.1812032],[20.8924303,40.1810965],[20.8931525,40.1807105],[20.8936136,40.1801284],[20.894036,40.1798786],[20.8942485,40.1795961],[20.894431,40.1794568],[20.8944734,40.1790436],[20.8947285,40.1786001],[20.8950574,40.1783387],[20.8953338,40.178202],[20.8955057,40.1780896],[20.8956071,40.1780788],[20.8958402,40.1778599],[20.8960278,40.1778649],[20.896078,40.1777942],[20.8964887,40.1777241],[20.8967465,40.1774788],[20.8967203,40.17728],[20.8961867,40.1763649],[20.8959514,40.175602],[20.8957057,40.1753252],[20.8956425,40.1749092],[20.8960726,40.1744884],[20.8964339,40.1742909],[20.896695,40.1739737],[20.8967984,40.173508],[20.8970479,40.1734427],[20.8974316,40.1730116],[20.8973087,40.1728732],[20.8973077,40.172639],[20.8965023,40.1722751],[20.8961072,40.17167],[20.8959607,40.1712788],[20.8958204,40.171266],[20.8957945,40.1713194],[20.8953998,40.1712187],[20.8956753,40.1711],[20.896067,40.1707502],[20.8960466,40.1704254],[20.8961492,40.1699778],[20.8960795,40.1696787],[20.8963218,40.1695141],[20.8964471,40.1690851],[20.8966542,40.1689195],[20.8965694,40.1687191],[20.896849,40.1685104],[20.8968572,40.1683305],[20.8967457,40.1682014],[20.896756,40.1679224],[20.8968446,40.1677807],[20.8969761,40.1677302],[20.8970446,40.1675158],[20.8973367,40.1672895],[20.8975318,40.1668714],[20.8977042,40.1666959],[20.8981864,40.1664205],[20.8981686,40.166294],[20.8983091,40.1660455],[20.8983321,40.1655417],[20.8980715,40.1650754],[20.8977934,40.1649959],[20.8976047,40.1647566],[20.8975436,40.164809],[20.8974741,40.1647892],[20.8975394,40.1643856],[20.8973398,40.164128],[20.8969175,40.1638645],[20.8964907,40.1634387],[20.8954668,40.1629789],[20.8951743,40.1627008],[20.8949829,40.1622633],[20.8956774,40.161683],[20.8955029,40.1613901],[20.8955957,40.1611584],[20.8954632,40.1609747],[20.8955081,40.1607327],[20.8954209,40.1605862],[20.8953752,40.1600446],[20.8956912,40.1595486],[20.8957827,40.1588305],[20.8953501,40.1583821],[20.8951587,40.1577644],[20.8949733,40.1574532],[20.894732,40.1573386],[20.8947042,40.1571758],[20.8950341,40.1571486],[20.895096,40.1570782],[20.8950561,40.156924],[20.8954362,40.1568261],[20.8953255,40.156679],[20.8958326,40.1566296],[20.8957552,40.1562672],[20.8960229,40.1560582],[20.8961198,40.1557366],[20.89629,40.1557366],[20.8966376,40.155836],[20.897006,40.1557378],[20.897049,40.1555678],[20.897676,40.1549451],[20.8976575,40.1548366],[20.8978181,40.1546607],[20.8978392,40.1544541],[20.898478,40.1538317],[20.898683,40.1537111],[20.8987999,40.1537233],[20.8988552,40.1537968],[20.8990837,40.1536768],[20.8993659,40.1536664],[20.8992233,40.1534464],[20.8990293,40.1533241],[20.8992466,40.1529336],[20.8990874,40.1528212],[20.8991357,40.1525343],[20.8986967,40.1523784],[20.8984493,40.1523988],[20.8983689,40.1523606],[20.8982723,40.1520563],[20.8983496,40.1519052],[20.8982955,40.1518047],[20.8984055,40.1517086],[20.8983506,40.151626],[20.8985038,40.1516121],[20.8985067,40.1515492],[20.8986248,40.1515343],[20.8986313,40.1513904],[20.8987728,40.1513761],[20.898678,40.1511394],[20.8987172,40.1510504],[20.8989278,40.151065],[20.8990257,40.1509776],[20.8989576,40.1506695],[20.8987648,40.1505202],[20.8986163,40.150174],[20.8987673,40.1496916],[20.8989214,40.1496597],[20.898637,40.1492018],[20.8988137,40.1491885],[20.8990793,40.1492857],[20.8994192,40.1492948],[20.8994225,40.1492228],[20.8995879,40.1492002],[20.8995463,40.149082],[20.8998729,40.1491268],[20.8999574,40.149075],[20.8998731,40.1488656],[20.8999677,40.1488501],[20.8998566,40.148712],[20.8998417,40.1485225],[20.8997056,40.1484197],[20.8998725,40.1483612],[20.8997744,40.1481964],[20.8999175,40.1481462],[20.8998743,40.148064],[20.9000559,40.1479427],[20.8998648,40.1477575],[20.8997886,40.1473681],[20.8995208,40.1470637],[20.8998363,40.1470181],[20.8999774,40.1470129],[20.9000534,40.1468888],[20.8999396,40.1465525],[20.8998549,40.1463791],[20.9000211,40.1463385],[20.9002047,40.1461723],[20.9000286,40.1459154],[20.8998645,40.145911],[20.8995226,40.1456856],[20.8992437,40.1456241],[20.8988334,40.1456897],[20.898599,40.1456834],[20.8982236,40.1454211],[20.8980788,40.1455073],[20.897976,40.1457027],[20.8971117,40.1457111],[20.8971363,40.1452749],[20.8963828,40.1453267],[20.8959175,40.1452872]]},{"id":16998,"author":"AnaDigit","name_GR":"Epirus Trail: \u03a6\u03c1\u03b1\u03b3\u03ba\u03ac\u03b4\u03b5\u03c2-\u0394\u03cc\u03bb\u03b9\u03b1\u03bd\u03b7","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Fragades_Doliani","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":10170,"name_EN":"Epirus Trail: Fragades-Doliani","description_EN":"","ascent_time":240,"descent_time":245,"marker":"No_marks","level":9,"ascent":625,"descent":676,"maxelev":1283,"minelev":756,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.88148 39.82124,20.9529 39.83114)","views":20,"millestones":"0,20.8834959,39.8303511#1,20.8831633,39.8230526#2,20.8869592,39.8211823#3,20.8964321,39.8212401#4,20.9043564,39.8253017#5,20.9134029,39.8276071#6,20.9232108,39.8281466#7,20.9321880,39.8322572#8,20.9410950,39.8310117#9,20.9463491,39.8242103#10.2,20.9528925,39.8214184","x":20.9109783,"y":39.8267721,"coor":[[20.8834959,39.8303511],[20.8838577,39.8300996],[20.8840528,39.8300733],[20.8840146,39.8298831],[20.884081,39.8298129],[20.883602,39.8292956],[20.8836785,39.8291535],[20.8839473,39.8290481],[20.8842957,39.8290935],[20.8843677,39.8290504],[20.8843916,39.8287808],[20.8845455,39.8284787],[20.8846882,39.8279061],[20.8846211,39.82758],[20.8846143,39.8271655],[20.8843937,39.8266191],[20.884023,39.8260326],[20.8834917,39.82564],[20.8835647,39.8253177],[20.8834883,39.8251986],[20.8837073,39.8250063],[20.8835963,39.8248772],[20.8836044,39.8246973],[20.8834593,39.8245492],[20.8831876,39.824614],[20.8830811,39.8243859],[20.8834109,39.8238093],[20.8832698,39.8235713],[20.8831249,39.8229009],[20.8829709,39.8226895],[20.8826999,39.8224841],[20.8825163,39.8218937],[20.8820856,39.8216028],[20.881922,39.8213462],[20.8819494,39.8212569],[20.882062,39.82135],[20.8821794,39.8213351],[20.8828697,39.8207952],[20.8829679,39.8206898],[20.8830526,39.8203678],[20.8829481,39.8200947],[20.8829603,39.8198248],[20.8826927,39.8196195],[20.8829498,39.8196174],[20.8833679,39.8194124],[20.8836254,39.8194013],[20.8836668,39.8195196],[20.8833879,39.8197463],[20.884017,39.8199118],[20.8844324,39.8202833],[20.8850142,39.8203349],[20.885339,39.8209021],[20.8867925,39.8210493],[20.8870744,39.821273],[20.8875093,39.8214739],[20.8877076,39.8214792],[20.8880042,39.8213791],[20.8886812,39.8216494],[20.8892091,39.8216006],[20.8895446,39.8216726],[20.8898999,39.821565],[20.8904849,39.8215447],[20.8909258,39.8216106],[20.8916142,39.821629],[20.8918146,39.8215894],[20.8924783,39.8213775],[20.8934041,39.8213122],[20.8936326,39.8211652],[20.8939372,39.8211463],[20.894099,39.8209795],[20.8938095,39.8214402],[20.8940456,39.8216447],[20.8942081,39.821667],[20.8942565,39.8215783],[20.8947309,39.8214964],[20.8949769,39.8213003],[20.895092,39.8210782],[20.8953229,39.8211384],[20.8954412,39.8211056],[20.8955096,39.8211434],[20.8954947,39.8212151],[20.8958415,39.8212964],[20.8961847,39.8211975],[20.8963106,39.821255],[20.896616,39.8212181],[20.8967761,39.8212944],[20.8973016,39.8210383],[20.8975325,39.8210985],[20.89778,39.8210511],[20.8982361,39.8212975],[20.8984714,39.82152],[20.8985743,39.821829],[20.898833,39.8220521],[20.898917,39.8222615],[20.8994006,39.8224186],[20.8995972,39.8229823],[20.9000216,39.8231558],[20.9002235,39.8233413],[20.9003977,39.823364],[20.9004404,39.8234552],[20.9006709,39.8235244],[20.9008712,39.823746],[20.9008394,39.8239343],[20.9009065,39.8239991],[20.9011363,39.8238251],[20.9016139,39.8238559],[20.9017684,39.823797],[20.9020722,39.8237961],[20.9024428,39.8236078],[20.9026511,39.8236269],[20.9029408,39.8236797],[20.903187,39.8239205],[20.9034444,39.8244318],[20.9036898,39.8246905],[20.9041347,39.8249276],[20.9043008,39.8251302],[20.9044448,39.8255664],[20.9047603,39.8258766],[20.9052069,39.8263389],[20.9058804,39.826429],[20.9063146,39.8263865],[20.9065873,39.8265559],[20.9066706,39.8265221],[20.9068031,39.8265121],[20.9071569,39.8262288],[20.9080282,39.8257116],[20.9081867,39.8258239],[20.9089484,39.8257722],[20.9092714,39.8261231],[20.910491,39.8262817],[20.9106536,39.8264572],[20.9107147,39.826657],[20.9109783,39.8267721],[20.9110958,39.8267572],[20.9111082,39.8270007],[20.911418,39.8273873],[20.91216,39.8275152],[20.9124098,39.827675],[20.9128102,39.8276046],[20.9131232,39.8276579],[20.913324,39.8276092],[20.9139324,39.8275894],[20.9142197,39.8276961],[20.9145106,39.8277219],[20.9147959,39.8278736],[20.9152292,39.8278491],[20.9156537,39.8280225],[20.9160975,39.8282866],[20.9166395,39.8284451],[20.9167739,39.8285748],[20.917198,39.8287572],[20.9178346,39.82863],[20.9180028,39.8285264],[20.9182124,39.828541],[20.9183943,39.8283927],[20.9186309,39.8283269],[20.918748,39.828321],[20.9187898,39.8284302],[20.9190494,39.8283741],[20.9193286,39.8283995],[20.9197315,39.8283021],[20.9204071,39.8283471],[20.9213124,39.828218],[20.9214339,39.8286356],[20.9215691,39.8287473],[20.9217583,39.8286983],[20.921823,39.8285558],[20.9221055,39.8285093],[20.9219848,39.828335],[20.9229603,39.8280726],[20.9238065,39.8283248],[20.9240544,39.8285295],[20.9245428,39.8285785],[20.9250028,39.8290051],[20.9251304,39.8290265],[20.9253732,39.8290329],[20.9255493,39.8291457],[20.9258153,39.8292068],[20.9264277,39.8296193],[20.9269517,39.8296603],[20.9270961,39.8298262],[20.9278302,39.8298412],[20.9280379,39.8299007],[20.9279916,39.8301517],[20.9280802,39.8302621],[20.9288616,39.8305531],[20.9292021,39.8307783],[20.9294203,39.8311264],[20.9300174,39.8313584],[20.9305493,39.8322462],[20.930917,39.8324091],[20.931253,39.832472],[20.9314526,39.8324503],[20.9317874,39.832279],[20.9326425,39.8322295],[20.9334508,39.8316564],[20.9340779,39.8309524],[20.9351123,39.8302862],[20.9354591,39.8298449],[20.9357729,39.829619],[20.9359861,39.8295526],[20.9362195,39.8295588],[20.9363161,39.8294893],[20.9366666,39.8294895],[20.9368392,39.8295481],[20.9368199,39.8294575],[20.9368915,39.8294234],[20.9371567,39.8295025],[20.9383054,39.8307308],[20.9386865,39.830831],[20.9393972,39.8308768],[20.9396966,39.8309748],[20.9404785,39.8309954],[20.9409843,39.8311033],[20.9410951,39.8311063],[20.9410916,39.8301333],[20.9410155,39.8300052],[20.9407396,39.8300114],[20.9414314,39.8295838],[20.9416092,39.8292642],[20.9419178,39.8291553],[20.9423313,39.8287879],[20.9426382,39.8284537],[20.9426852,39.8281847],[20.9428923,39.827992],[20.9430467,39.8276718],[20.943241,39.8275057],[20.9434557,39.8271421],[20.9440954,39.8269428],[20.9441581,39.8265841],[20.944498,39.8262958],[20.9451736,39.8261019],[20.9457532,39.8253876],[20.9461313,39.8246319],[20.9464905,39.8244342],[20.9464941,39.8243532],[20.9463037,39.824168],[20.9464219,39.8238739],[20.9465659,39.8237876],[20.9467059,39.8237913],[20.9468095,39.8240913],[20.9474276,39.8243778],[20.9474211,39.8242605],[20.9471072,39.823964],[20.9471595,39.8238618],[20.947666,39.8237671],[20.9481675,39.8238163],[20.9483048,39.8241442],[20.9484847,39.824302],[20.9485971,39.8236114],[20.9493471,39.8232663],[20.9496322,39.8228955],[20.949634,39.8225893],[20.9500143,39.8220228],[20.9502927,39.8217779],[20.9507511,39.8221098],[20.9510399,39.8219192],[20.951029,39.8217162],[20.9514361,39.8214927],[20.9514476,39.8212859],[20.9518101,39.821489],[20.9520447,39.8213061],[20.9522865,39.8213845],[20.9528925,39.8214184]]},{"id":16999,"author":"AnaDigit","name_GR":"\u0396\u03b1\u03b3\u03cc\u03c1\u03b9l: \u0393\u03c1\u03b5\u03b2\u03b5\u03bd\u03af\u03c4\u03b9-\u03a7\u03c1\u03c5\u03c3\u03bf\u03b2\u03af\u03c4\u03c3\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Greveniti_Chrysovitsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":11065,"name_EN":"Zagori: Greveniti-Chrysovitsa","description_EN":"","ascent_time":255,"descent_time":255,"marker":"No_marks","level":9,"ascent":625,"descent":675,"maxelev":1381,"minelev":911,"link_logo":"","link_ref":"http:\/\/www.topoguide.gr\/mountains\/epirus\/advs_zagori\/zagori_hiking.php","pdf_link":"","bbox":"LINESTRING(20.99841 39.77944,21.07569 39.80642)","views":53,"millestones":"0,21.0045576,39.8065779#1,21.0021395,39.8006632#2,20.9994323,39.7936308#3,21.0075304,39.7927118#4,21.0143690,39.7914655#5,21.0247335,39.7940704#6,21.0354885,39.7956502#7,21.0459093,39.7957529#8,21.0516666,39.7891319#9,21.0609654,39.7867552#10,21.0712016,39.7840174#11.1,21.0756838,39.7794828","x":21.0275049,"y":39.7941387,"coor":[[21.0045576,39.8065779],[21.0045031,39.8065675],[21.0043258,39.8063467],[21.0043975,39.8062],[21.004375,39.8059111],[21.0044369,39.8058317],[21.0043389,39.805667],[21.0043671,39.8055056],[21.0037169,39.8053627],[21.0031169,39.8054643],[21.00298,39.8053887],[21.0029054,39.8052246],[21.0029634,39.8046946],[21.0036032,39.804486],[21.0040861,39.8046606],[21.0040246,39.8044878],[21.004083,39.8042191],[21.0039998,39.8039828],[21.0042093,39.8036504],[21.0041888,39.8035868],[21.0040379,39.8035649],[21.0039255,39.8034629],[21.0036323,39.8034914],[21.0034126,39.8034406],[21.0033489,39.8032949],[21.0030954,39.8032162],[21.0030002,39.8029886],[21.0028531,39.8028001],[21.0027847,39.8024921],[21.0026035,39.8023613],[21.0026067,39.8020191],[21.0023455,39.80158],[21.0025589,39.8010495],[21.002518,39.8009404],[21.002484,39.8008359],[21.0021633,39.8006925],[21.0020968,39.8006097],[21.0023029,39.8004349],[21.0025052,39.8000798],[21.0022588,39.799569],[21.0021538,39.7990303],[21.0023929,39.7989014],[21.0020253,39.7982253],[21.0014152,39.7980203],[21.0011019,39.797706],[21.0010623,39.7975428],[21.0007358,39.7972641],[21.0005632,39.7972056],[21.0004975,39.7971048],[21.0001608,39.7970601],[20.9998805,39.7967916],[20.999573,39.7966125],[20.9994424,39.7963929],[20.9992714,39.7962984],[20.9990888,39.7956632],[20.9991503,39.7953225],[20.999272,39.7951545],[20.9989,39.7952799],[20.9990347,39.7948691],[20.9989457,39.7944975],[20.9990491,39.7942389],[20.9994518,39.7936008],[20.9997443,39.7933201],[21.0000639,39.7932203],[21.0005678,39.7931792],[21.0008446,39.7932585],[21.0009312,39.7934138],[21.0012481,39.7936472],[21.0015622,39.7936734],[21.001763,39.79362],[21.0018977,39.7932091],[21.0023257,39.7933013],[21.0024459,39.7932233],[21.002879,39.7931985],[21.0032262,39.7930003],[21.0036539,39.7927771],[21.0039618,39.7928932],[21.0042651,39.7926308],[21.0045396,39.7924937],[21.0049657,39.7926309],[21.0053393,39.7929017],[21.005676,39.7929465],[21.0058187,39.792806],[21.0059124,39.7927994],[21.0061857,39.7929596],[21.0066975,39.7930314],[21.0061988,39.7927933],[21.0061809,39.7926667],[21.0066307,39.7927955],[21.0072567,39.7926315],[21.0075756,39.7924685],[21.0075962,39.7925321],[21.0074725,39.7926911],[21.007553,39.7927202],[21.0078182,39.7925288],[21.008305,39.7923432],[21.0086363,39.7919735],[21.009286,39.7915308],[21.0094952,39.791284],[21.009622,39.7913233],[21.0095123,39.7916988],[21.0092432,39.7919801],[21.0090258,39.7924159],[21.0091191,39.7924183],[21.0092311,39.792259],[21.009707,39.7920551],[21.010125,39.7921109],[21.0105271,39.7919637],[21.0106099,39.7916685],[21.0109451,39.791479],[21.0113828,39.7914317],[21.0118843,39.7914717],[21.0120475,39.7913183],[21.0122835,39.7912613],[21.0129467,39.7913144],[21.0132772,39.7912328],[21.013323,39.7913061],[21.0132576,39.7914665],[21.0129392,39.7915394],[21.0129489,39.7915847],[21.0132732,39.7916471],[21.0140181,39.7914321],[21.0143556,39.7914588],[21.0145612,39.7915632],[21.0148979,39.7916079],[21.0153998,39.791882],[21.0159084,39.7920032],[21.0161984,39.7923169],[21.016672,39.7924372],[21.0171828,39.7927746],[21.0177785,39.7927719],[21.0183547,39.7929489],[21.0185009,39.7930788],[21.0187653,39.7931756],[21.0192964,39.7933154],[21.0195996,39.7933232],[21.0196875,39.7934516],[21.0199044,39.7935652],[21.0200817,39.7935158],[21.0204558,39.7935073],[21.0206405,39.7935571],[21.0208457,39.7934003],[21.0209632,39.7933853],[21.0212734,39.7935013],[21.0216117,39.79351],[21.0219235,39.7935901],[21.0224842,39.7935865],[21.0231794,39.7937124],[21.0234313,39.793827],[21.0240379,39.7938426],[21.0243621,39.7939049],[21.0244407,39.793979],[21.02463,39.7939208],[21.0247401,39.7940768],[21.0252136,39.7939268],[21.0255989,39.7941979],[21.0261962,39.7941592],[21.0264217,39.7940749],[21.026931,39.794178],[21.0275049,39.7941387],[21.0277693,39.7942355],[21.0279244,39.7944287],[21.028251,39.794437],[21.0285283,39.7945072],[21.0287414,39.7947108],[21.0291403,39.794667],[21.0294762,39.7947297],[21.0298433,39.794613],[21.0303456,39.7946078],[21.0305861,39.7948527],[21.0314322,39.7950004],[21.0316492,39.7951141],[21.0335972,39.7951639],[21.0353858,39.7956601],[21.0360896,39.795588],[21.0371713,39.7956877],[21.0374365,39.7957666],[21.0382301,39.7957778],[21.0391976,39.7960908],[21.0398399,39.7960892],[21.040072,39.7958519],[21.0406489,39.7957405],[21.0407765,39.7957618],[21.0408783,39.795868],[21.0413395,39.7959248],[21.0416801,39.7958794],[21.0420001,39.7960407],[21.0428587,39.7961707],[21.0431438,39.7963311],[21.0431718,39.796494],[21.0437317,39.7965082],[21.0440404,39.79639],[21.0443421,39.7961635],[21.0446978,39.7961725],[21.0446356,39.7959908],[21.0448451,39.7960052],[21.045001,39.79591],[21.0453408,39.7958827],[21.045791,39.795732],[21.0459359,39.7957582],[21.0460043,39.795796],[21.0462185,39.7957024],[21.0464044,39.7957251],[21.0467627,39.7952658],[21.0468755,39.7953588],[21.0470263,39.7951104],[21.0471923,39.7950516],[21.0472279,39.7947642],[21.047355,39.7945242],[21.0479217,39.7941063],[21.0486518,39.7939627],[21.0490051,39.7936204],[21.0493721,39.7932289],[21.0493448,39.7930481],[21.0494583,39.7928528],[21.049542,39.7922604],[21.0500815,39.7919318],[21.0502111,39.7918495],[21.0504571,39.7915585],[21.050303,39.7913384],[21.0502957,39.7906897],[21.0507256,39.7904664],[21.0513202,39.789941],[21.0515823,39.7892721],[21.0517682,39.7889661],[21.0523317,39.7886201],[21.0524163,39.7882799],[21.0526961,39.7880168],[21.0528204,39.7878398],[21.0527442,39.7877118],[21.0533614,39.7874752],[21.0536047,39.7872472],[21.0542779,39.7870661],[21.0547608,39.7871054],[21.0549337,39.7871323],[21.0552509,39.7870863],[21.0554702,39.787146],[21.0561687,39.7869205],[21.0581004,39.7862534],[21.0585669,39.7862652],[21.0589233,39.7861211],[21.059057,39.7859984],[21.0595134,39.7859739],[21.0595748,39.7859034],[21.0598478,39.7860725],[21.0600445,39.7861135],[21.0602652,39.7864164],[21.0606548,39.7865884],[21.0607093,39.7866798],[21.0612513,39.7868377],[21.0615118,39.7867542],[21.0622605,39.7867192],[21.0625976,39.7867547],[21.0629747,39.7866742],[21.0635322,39.7867424],[21.0641167,39.7864509],[21.0648718,39.7865421],[21.0650546,39.7866368],[21.0653391,39.7865359],[21.0659378,39.786461],[21.0665301,39.7862598],[21.0669479,39.7860451],[21.0673473,39.7857129],[21.0679186,39.7854571],[21.0681691,39.7850581],[21.0684909,39.7849041],[21.0698778,39.7846869],[21.0707091,39.7843566],[21.0709315,39.7843442],[21.0711187,39.7840607],[21.0713456,39.7839403],[21.0716027,39.7836586],[21.0717326,39.7836258],[21.071724,39.7835535],[21.072048,39.7833455],[21.0724616,39.7832299],[21.0723437,39.7831188],[21.0724408,39.7830312],[21.0726982,39.7830196],[21.0727148,39.782903],[21.0728803,39.7828531],[21.0733539,39.7829731],[21.0735473,39.7830951],[21.0735518,39.7829871],[21.0736478,39.7829265],[21.0736227,39.7826917],[21.0735724,39.7825012],[21.073413,39.7824071],[21.0736843,39.7823419],[21.0734906,39.7822289],[21.0734703,39.7821563],[21.0735994,39.7821416],[21.0735806,39.782033],[21.0736972,39.782036],[21.0737473,39.7819562],[21.0736571,39.7818818],[21.0737293,39.7818296],[21.0735951,39.7816911],[21.0737475,39.7816769],[21.0736915,39.7816215],[21.0737431,39.7815056],[21.0739132,39.7813478],[21.0737763,39.7812723],[21.0739581,39.7811147],[21.0739164,39.7809966],[21.0740451,39.7809908],[21.0738864,39.7808787],[21.0738778,39.7808064],[21.0741382,39.7807229],[21.0742533,39.7807619],[21.0744204,39.7806445],[21.0742301,39.7803694],[21.0746173,39.7803251],[21.0748411,39.7801957],[21.0749748,39.7800729],[21.0752902,39.7797926],[21.0754339,39.7794314],[21.0756838,39.7794828]]},{"id":17000,"author":"AnaDigit","name_GR":"Epirus Trail: \u039a\u03ae\u03c0\u03bf\u03b9-\u03a6\u03c1\u03b1\u03b3\u03ba\u03ac\u03b4\u03b5\u03c2","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Kipi_Fragades","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":16894,"name_EN":"Epirus Trail: Kipi-Fragades","description_EN":"","ascent_time":405,"descent_time":390,"marker":"No_marks","level":9,"ascent":1030,"descent":823,"maxelev":1422,"minelev":757,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.79101 39.83065,20.89454 39.87366)","views":40,"millestones":"0,20.7916904,39.8640652#1,20.7983051,39.8669038#2,20.8073591,39.8713954#3,20.8179522,39.8727416#4,20.8281054,39.8720020#5,20.8383231,39.8716402#6,20.8482159,39.8744124#7,20.8578298,39.8741555#8,20.8681719,39.8734078#9,20.8743182,39.8722545#10,20.8827099,39.8689889#11,20.8865713,39.8642808#12,20.8919286,39.8607227#13,20.8854402,39.8550340#14,20.8820048,39.8496557#15,20.8838459,39.8438691#16,20.8842050,39.8359503#16.9,20.8834966,39.8303511","x":20.8789226,"y":39.8703658,"coor":[[20.7916904,39.8640652],[20.7918475,39.8644794],[20.7919804,39.8646362],[20.7920929,39.8647069],[20.7921041,39.8647703],[20.7921263,39.8648925],[20.7919937,39.8649789],[20.7919861,39.8651408],[20.7918285,39.8652626],[20.7917976,39.8654238],[20.7916667,39.8654742],[20.7916517,39.8655459],[20.7914753,39.865568],[20.7913813,39.8657321],[20.7914821,39.8658249],[20.7916443,39.8658564],[20.7919137,39.8657423],[20.7922698,39.8656261],[20.7925573,39.865652],[20.7927322,39.8656118],[20.7927583,39.8656035],[20.7929168,39.8654638],[20.7935914,39.8652843],[20.793691,39.8652556],[20.7938631,39.8651207],[20.7942767,39.8650241],[20.7946336,39.8649934],[20.7948611,39.8651033],[20.7952414,39.8652219],[20.7954339,39.8653533],[20.7957466,39.865416],[20.7961285,39.8657508],[20.7964762,39.8658145],[20.7967042,39.8659379],[20.7969576,39.8662692],[20.7972696,39.8662958],[20.7973488,39.866352],[20.797737,39.8662997],[20.7979576,39.8660806],[20.7980955,39.8660799],[20.7982447,39.8663903],[20.7982171,39.8667093],[20.7982571,39.8668545],[20.7985247,39.8671321],[20.7993977,39.8677147],[20.7995873,39.8681613],[20.7997424,39.8683457],[20.8003044,39.8685774],[20.8005536,39.8689987],[20.8008446,39.8692769],[20.8017302,39.8698418],[20.8025132,39.8700976],[20.8029968,39.8705073],[20.8039407,39.8708216],[20.8053442,39.870554],[20.8057378,39.8708891],[20.8062398,39.8711552],[20.8068678,39.8712265],[20.8085931,39.8718325],[20.8093787,39.8717821],[20.8096339,39.8718251],[20.8101392,39.8720192],[20.8107955,39.8724876],[20.8115796,39.8729236],[20.8120116,39.8729354],[20.8122772,39.8730058],[20.8133951,39.873604],[20.8138646,39.8735629],[20.8145568,39.8732576],[20.8155388,39.8730054],[20.8157839,39.8729626],[20.8163051,39.8728148],[20.8168926,39.8727499],[20.8176597,39.8727934],[20.8182018,39.8727002],[20.8184657,39.8725544],[20.8191517,39.8728885],[20.8199969,39.8728126],[20.8204698,39.8729517],[20.8207271,39.8732019],[20.8209923,39.8732812],[20.8217186,39.8732471],[20.8223175,39.8734437],[20.8230397,39.8734995],[20.8237077,39.8734638],[20.8242864,39.8733355],[20.8249643,39.8732866],[20.8254738,39.8731384],[20.8257061,39.8729196],[20.8257519,39.8726866],[20.8263356,39.8724504],[20.8264598,39.8722917],[20.8267,39.8724063],[20.8268167,39.8721573],[20.8271032,39.8722823],[20.8275943,39.8720255],[20.828098,39.8720033],[20.8287693,39.8718955],[20.8293455,39.871569],[20.8294713,39.8711221],[20.8297023,39.8709302],[20.8300254,39.8707679],[20.830449,39.8707075],[20.83141,39.8704005],[20.8316652,39.8704435],[20.8321338,39.8704202],[20.8329566,39.8705778],[20.8333201,39.8705518],[20.8336528,39.8704347],[20.8350336,39.8709138],[20.8358445,39.8712287],[20.8366392,39.8709802],[20.8367434,39.871001],[20.8372093,39.871293],[20.8385112,39.8717068],[20.8388628,39.8719416],[20.8391165,39.8722728],[20.8393784,39.8724241],[20.8403763,39.8725864],[20.8406156,39.8724668],[20.8409567,39.8724221],[20.8410693,39.8725152],[20.8411981,39.8725097],[20.841687,39.8728113],[20.8424955,39.8727703],[20.8426339,39.8728101],[20.8433622,39.8732442],[20.8437984,39.8734183],[20.8445182,39.8735279],[20.8450395,39.8734521],[20.8455533,39.8734661],[20.8459111,39.8735659],[20.8466684,39.8736225],[20.8468339,39.873582],[20.8469456,39.8734409],[20.8470523,39.8734078],[20.8474946,39.8739602],[20.8476514,39.8741086],[20.8479642,39.8741712],[20.8480889,39.8742556],[20.8487532,39.8750664],[20.8490619,39.8752189],[20.8495217,39.8752629],[20.8500252,39.8749884],[20.8506119,39.8749413],[20.8512097,39.8746513],[20.8529802,39.8745372],[20.8537273,39.8743053],[20.8539725,39.8743119],[20.854286,39.8741043],[20.8551969,39.8738678],[20.8557045,39.8740167],[20.8560673,39.8740085],[20.8563228,39.8745559],[20.8566124,39.87487],[20.8569359,39.8746986],[20.857471,39.8742447],[20.857697,39.8741608],[20.8581069,39.8741449],[20.8582273,39.8740671],[20.8585514,39.8741389],[20.8590342,39.8740619],[20.8594544,39.8738211],[20.8598448,39.8739758],[20.860175,39.8739127],[20.8604059,39.8737208],[20.8607215,39.8737203],[20.8609516,39.8735464],[20.8613127,39.8735742],[20.8617243,39.8730089],[20.8622944,39.8731729],[20.8625366,39.8733461],[20.8632172,39.8735447],[20.8640464,39.8733059],[20.864241,39.8731401],[20.8647175,39.8729458],[20.8655967,39.8731497],[20.866195,39.8731028],[20.8669765,39.873142],[20.8679157,39.8733115],[20.8682836,39.8734476],[20.8690843,39.8735773],[20.8701392,39.8735157],[20.8705559,39.873608],[20.8713261,39.8736378],[20.8729757,39.8736103],[20.873731,39.8736352],[20.8741114,39.8737535],[20.874189,39.8738457],[20.8742552,39.8741898],[20.8745206,39.8743726],[20.8742552,39.8741898],[20.874189,39.8738457],[20.8741114,39.8737535],[20.873731,39.8736352],[20.8729757,39.8736103],[20.8736035,39.8733525],[20.8738901,39.8729639],[20.8744391,39.87274],[20.8744894,39.8724576],[20.8742786,39.8722087],[20.8740964,39.8718435],[20.874147,39.8715026],[20.8748921,39.8710543],[20.8750961,39.8706815],[20.8753679,39.8706168],[20.8756475,39.8703811],[20.8762087,39.8703782],[20.8765512,39.8700452],[20.8768455,39.869999],[20.8775017,39.8703275],[20.8778226,39.87021],[20.8781858,39.8701928],[20.878322,39.8700253],[20.8784762,39.8699754],[20.8786147,39.8700152],[20.8789226,39.8703658],[20.8794572,39.8702541],[20.8800619,39.8703244],[20.8805772,39.8703022],[20.8812904,39.8700422],[20.8821559,39.869516],[20.8828037,39.8688939],[20.8832397,39.8683517],[20.8832112,39.8682068],[20.8834719,39.8678715],[20.8835267,39.8676928],[20.8831856,39.8672243],[20.8831318,39.8668625],[20.8826521,39.8666154],[20.8826285,39.8663626],[20.8828895,39.8660183],[20.8829335,39.8658213],[20.8828355,39.8654043],[20.8823238,39.8648321],[20.8825723,39.8648118],[20.8830339,39.8652025],[20.8838278,39.8652238],[20.8841752,39.8652962],[20.8846233,39.8652092],[20.8848443,39.8652332],[20.8850585,39.8651488],[20.8850487,39.8653648],[20.8851063,39.8653843],[20.8854994,39.8649625],[20.885702,39.8648779],[20.8857785,39.8647358],[20.8862678,39.8645148],[20.8868852,39.864045],[20.8868796,39.8639097],[20.8870295,39.8636975],[20.8872828,39.8635242],[20.8873376,39.8633455],[20.8875285,39.8632606],[20.8877264,39.8629957],[20.8879176,39.8629017],[20.8880762,39.8630141],[20.8882334,39.8634146],[20.8883662,39.8635803],[20.8887593,39.8631585],[20.8888782,39.8628554],[20.8891673,39.862665],[20.8892213,39.8625043],[20.889713,39.8622293],[20.8900111,39.861841],[20.8902644,39.8616676],[20.8906539,39.8610656],[20.8910774,39.8610049],[20.8911942,39.861008],[20.8912034,39.8610623],[20.8914619,39.8610332],[20.8919466,39.8609111],[20.8924269,39.8608879],[20.892631,39.8607673],[20.8929457,39.8607622],[20.8931865,39.8606065],[20.893133,39.860497],[20.8930505,39.8605128],[20.8929595,39.8604563],[20.8926471,39.8606461],[20.8922819,39.8607084],[20.8917433,39.86073],[20.8912788,39.8606635],[20.8905676,39.8603651],[20.8904258,39.8603974],[20.8902169,39.8603647],[20.8901043,39.8602716],[20.8898591,39.8602651],[20.8894724,39.8600295],[20.8891616,39.8599221],[20.8890514,39.859775],[20.8889021,39.8597169],[20.8888413,39.8597694],[20.8888111,39.8596605],[20.8887073,39.8596306],[20.8885528,39.8594283],[20.8886627,39.8593232],[20.8887881,39.8588762],[20.8889444,39.8587813],[20.8890483,39.8585499],[20.8888755,39.8579778],[20.8888107,39.8578589],[20.8885496,39.8576898],[20.8883625,39.8574325],[20.8879504,39.8572413],[20.8878961,39.8571498],[20.8876558,39.8570353],[20.8873861,39.857055],[20.8872292,39.8569067],[20.8872305,39.8566185],[20.8871223,39.856476],[20.8868061,39.8561027],[20.8866598,39.8557204],[20.8865471,39.8556273],[20.8860758,39.8554525],[20.8856356,39.8551074],[20.8852678,39.8549714],[20.8850001,39.8549462],[20.8848207,39.8547792],[20.8846222,39.8547739],[20.8845792,39.8546917],[20.8842355,39.8545383],[20.8843178,39.8542703],[20.8841496,39.8541127],[20.8842302,39.8538806],[20.8840975,39.8537149],[20.8837051,39.8536053],[20.8835707,39.8534756],[20.8836188,39.8531886],[20.8834482,39.853085],[20.8832622,39.8530619],[20.8833222,39.8527978],[20.8834298,39.8526386],[20.8832287,39.852435],[20.8832328,39.852345],[20.883011,39.8523391],[20.8830123,39.8520509],[20.8829323,39.8520127],[20.8830092,39.8518616],[20.883165,39.8517757],[20.883106,39.851531],[20.8832159,39.8514258],[20.8831475,39.851388],[20.8832192,39.8513539],[20.8831774,39.8512446],[20.883262,39.8511839],[20.8831409,39.8510185],[20.8833792,39.8509168],[20.8833253,39.8508163],[20.8833745,39.8507635],[20.8834996,39.850839],[20.883653,39.850807],[20.8837789,39.8508645],[20.8839774,39.8508698],[20.884,39.8506272],[20.8837346,39.8502958],[20.8837263,39.8499623],[20.8835737,39.8499762],[20.8834261,39.8498822],[20.8832023,39.8499212],[20.8831005,39.8498464],[20.8828082,39.8498475],[20.8824945,39.8496544],[20.8821302,39.8496987],[20.8815548,39.8495031],[20.8812044,39.8492414],[20.8810532,39.8489671],[20.8811039,39.8488514],[20.8815971,39.8485404],[20.8820496,39.8483544],[20.8819146,39.8479815],[20.8820473,39.8473725],[20.8824214,39.8471123],[20.8827997,39.8470144],[20.8827927,39.8466539],[20.8828809,39.8465122],[20.8830459,39.8464806],[20.8831324,39.8464289],[20.8830722,39.8462111],[20.8829487,39.8460997],[20.8827644,39.8460407],[20.8824915,39.8461324],[20.882213,39.8460889],[20.8818041,39.8453888],[20.8822886,39.8455279],[20.8820731,39.8451258],[20.8823107,39.8447809],[20.8827455,39.8444683],[20.883588,39.8441847],[20.883847,39.8438854],[20.883819,39.8434703],[20.8840481,39.8433144],[20.8836068,39.8429962],[20.8835756,39.8426531],[20.8836336,39.8424025],[20.8837843,39.8421723],[20.8840983,39.8419466],[20.8840589,39.8417834],[20.8841649,39.841507],[20.8841535,39.8409842],[20.8843545,39.8406744],[20.8846045,39.840573],[20.8844259,39.840388],[20.8843761,39.8401975],[20.884532,39.8398504],[20.8847482,39.8396716],[20.8848596,39.8394044],[20.8843985,39.8392659],[20.8841634,39.8385209],[20.88431,39.8376061],[20.8844964,39.8373589],[20.8842359,39.8369195],[20.8843241,39.8367778],[20.8842184,39.8365317],[20.884303,39.8362097],[20.8842078,39.835991],[20.8840977,39.8345738],[20.8839459,39.8341599],[20.8837724,39.8339931],[20.8835379,39.8337526],[20.8835104,39.8335042],[20.8832759,39.8332637],[20.8832483,39.8331008],[20.8833321,39.8329544],[20.8831406,39.8320215],[20.8832628,39.8316464],[20.8832767,39.8313631],[20.8832027,39.8311899],[20.8833183,39.8309588],[20.882984,39.8308598],[20.8829305,39.8307503],[20.8830545,39.8305914],[20.8834966,39.8303511]]},{"id":17001,"author":"AnaDigit","name_GR":"Epirus Trail: \u039a\u03cc\u03bd\u03b9\u03c4\u03c3\u03b1-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0391\u03c3\u03c4\u03c1\u03ac\u03ba\u03b1\u03c2","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Konitsa_AstrakaRef","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":15411,"name_EN":"Epirus Trail: Konitsa-Astraka Refuge","description_EN":"","ascent_time":380,"descent_time":335,"marker":"No_marks","level":9,"ascent":2057,"descent":740,"maxelev":1915,"minelev":435,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.74424 39.97902,20.79375 40.04856)","views":80,"millestones":"0,20.7509713,40.0487503#1,20.7476501,40.0425615#2,20.7470040,40.0355271#3,20.7561489,40.0303544#4,20.7640541,40.0266044#5,20.7731065,40.0232915#6,20.7808946,40.0182628#7,20.7866208,40.0156362#8,20.7905708,40.0121741#9,20.7893635,40.0077926#10,20.7837500,40.0034193#11,20.7759517,40.0008924#12,20.7711604,39.9956861#13,20.7766918,39.9884039#14,20.7720425,39.9834240#15.4,20.7687805,39.9787404","x":20.7909242,"y":40.0123813,"coor":[[20.7509713,40.0487503],[20.7510029,40.0486296],[20.751506,40.0481303],[20.7514784,40.0479719],[20.7512614,40.0479478],[20.7512085,40.0478293],[20.7510186,40.0478284],[20.7510253,40.0474908],[20.7510438,40.0468834],[20.7511847,40.0463559],[20.7511325,40.0460032],[20.7510953,40.0455518],[20.751086,40.0454749],[20.7508793,40.0442757],[20.7509263,40.0440248],[20.7511943,40.043564],[20.7511644,40.043455],[20.7510248,40.0434331],[20.7509443,40.0433273],[20.7507963,40.0433591],[20.7507541,40.0434841],[20.7506597,40.0435445],[20.7498524,40.0432696],[20.7493169,40.0430969],[20.749228,40.0429458],[20.7486149,40.0426539],[20.7480263,40.0427094],[20.7475316,40.0425154],[20.7474904,40.0424466],[20.7475907,40.0420847],[20.7474673,40.041847],[20.7474875,40.0416674],[20.747375,40.04125],[20.7471955,40.0410828],[20.7468247,40.0408472],[20.7460039,40.0403377],[20.7459717,40.0400306],[20.7458093,40.0397243],[20.7455582,40.0393389],[20.7453312,40.0388146],[20.7452071,40.0385634],[20.7448922,40.0382844],[20.7448079,40.038237],[20.7448076,40.0381199],[20.7447678,40.0374792],[20.7450652,40.0368931],[20.7450667,40.036051],[20.7459763,40.0358964],[20.7465123,40.0357133],[20.746683,40.035574],[20.7469409,40.0355722],[20.7476201,40.0350869],[20.7484507,40.0346239],[20.7485286,40.0344639],[20.7488037,40.0343456],[20.7492087,40.0339606],[20.7496151,40.0337919],[20.74985,40.0337805],[20.7499964,40.0336585],[20.7502543,40.0336567],[20.7504349,40.0335537],[20.7507903,40.0334736],[20.7512152,40.0331613],[20.7518955,40.0324058],[20.7521234,40.0322951],[20.7525715,40.0322356],[20.7528852,40.0320462],[20.7534558,40.0318731],[20.7546978,40.0311333],[20.7550884,40.0308019],[20.7558982,40.0305274],[20.7563305,40.0302288],[20.7564435,40.0300698],[20.7571705,40.029811],[20.7573303,40.0296533],[20.7573314,40.0293831],[20.7574384,40.0293501],[20.7574669,40.0292428],[20.757645,40.0291937],[20.7578325,40.0289468],[20.7586794,40.0286282],[20.7588263,40.0284972],[20.7594239,40.028496],[20.7595415,40.028238],[20.7597998,40.0282273],[20.7597411,40.0279824],[20.7598549,40.0278055],[20.7599342,40.0277401],[20.7603746,40.0278425],[20.7608194,40.0276028],[20.7611975,40.0272891],[20.7616113,40.0272106],[20.7623065,40.0268788],[20.7624672,40.0267031],[20.7623795,40.0265746],[20.7624774,40.0264872],[20.7624344,40.026405],[20.7624963,40.0263346],[20.762655,40.0264472],[20.762788,40.0263608],[20.7628656,40.026453],[20.7629752,40.026366],[20.7630477,40.0265662],[20.7631607,40.0264073],[20.7633275,40.0263489],[20.7635994,40.0265456],[20.7638919,40.0265538],[20.7639353,40.0266271],[20.7641008,40.0265957],[20.7641793,40.0266699],[20.764427,40.0263886],[20.7645063,40.0264449],[20.7646084,40.0262676],[20.7647782,40.0261462],[20.7648948,40.0261585],[20.7650864,40.0258216],[20.7653056,40.0256475],[20.7662001,40.0253123],[20.7663405,40.0253162],[20.7665686,40.0254486],[20.766826,40.0254558],[20.7670568,40.0252821],[20.7673761,40.025219],[20.7676191,40.0250366],[20.7677954,40.0250235],[20.7679899,40.0248758],[20.7687185,40.0245809],[20.7689376,40.0244069],[20.7689699,40.0242187],[20.7690544,40.024167],[20.7691956,40.0241529],[20.7694124,40.024276],[20.7696151,40.0242006],[20.7701451,40.0241434],[20.770492,40.0239909],[20.7707511,40.0239621],[20.7709096,40.0238314],[20.7714161,40.0237735],[20.7718444,40.0238845],[20.7722067,40.0239036],[20.7722834,40.0235184],[20.7725342,40.0234174],[20.7726614,40.0232047],[20.7727567,40.0231714],[20.7731832,40.0233184],[20.7735215,40.023598],[20.7738349,40.0236608],[20.7743155,40.0236562],[20.7745931,40.0234837],[20.7749215,40.0234749],[20.7751138,40.0233721],[20.7750963,40.0232456],[20.7752831,40.0232598],[20.7755148,40.0230681],[20.7757162,40.0230196],[20.775629,40.0228821],[20.7759974,40.0225231],[20.7763543,40.0224069],[20.7764455,40.0222113],[20.7766608,40.0221182],[20.7770041,40.0217945],[20.7772532,40.0217294],[20.777461,40.021546],[20.7774611,40.0212938],[20.7780631,40.0209503],[20.778401,40.0204913],[20.7786893,40.0204408],[20.7797422,40.0192271],[20.7801461,40.01886],[20.7805432,40.0186368],[20.7808751,40.0183038],[20.7811094,40.0178059],[20.7813202,40.0175596],[20.7813947,40.0172194],[20.7817969,40.0168883],[20.7818438,40.0166374],[20.7819663,40.0165237],[20.7819697,40.0164517],[20.7821761,40.0165475],[20.7822443,40.0165404],[20.7824297,40.01646],[20.7826067,40.0166811],[20.7828182,40.016669],[20.7831173,40.0167854],[20.7831002,40.0166002],[20.7831222,40.0165558],[20.7835909,40.016803],[20.783839,40.0170081],[20.7837514,40.0166273],[20.7840819,40.0166996],[20.7841338,40.0165929],[20.7845304,40.0171264],[20.7847485,40.0172225],[20.7851315,40.0175484],[20.7851431,40.0178009],[20.7852856,40.0177598],[20.7853725,40.0176541],[20.785325,40.0174186],[20.7853807,40.017231],[20.785665,40.0169147],[20.7859413,40.0167692],[20.7859381,40.0163368],[20.7863479,40.0158437],[20.7865501,40.0157773],[20.7866794,40.0155197],[20.7868544,40.0155335],[20.7869661,40.0154015],[20.7871077,40.0153784],[20.7878827,40.0155891],[20.7879911,40.0152769],[20.7881737,40.0151288],[20.7885666,40.0149956],[20.7892948,40.0152049],[20.7897935,40.015561],[20.7900822,40.0156501],[20.7902206,40.0154468],[20.7904939,40.0153643],[20.7906285,40.0152419],[20.790429,40.01475],[20.7905461,40.014501],[20.7907396,40.0143713],[20.7910605,40.0142721],[20.791537,40.013853],[20.7917822,40.0138192],[20.7917606,40.0135304],[20.7917987,40.0134684],[20.7919248,40.0135259],[20.7919341,40.013328],[20.7921599,40.01301],[20.7920303,40.0130244],[20.7917645,40.0131972],[20.791371,40.0130962],[20.7910131,40.012735],[20.7910849,40.012701],[20.7910695,40.0125294],[20.7909242,40.0123813],[20.7909618,40.0123283],[20.7907981,40.0123238],[20.7905925,40.01221],[20.790484,40.0120268],[20.790311,40.011968],[20.7902906,40.0119044],[20.7901126,40.0119535],[20.7899489,40.0116967],[20.7898428,40.0117118],[20.7896983,40.0115457],[20.7893081,40.0113727],[20.7891744,40.0114771],[20.7891957,40.0115227],[20.7891138,40.0115204],[20.7891338,40.0115931],[20.7890164,40.0115988],[20.7890447,40.0117437],[20.7889595,40.0118134],[20.788675,40.0116344],[20.7884177,40.0116272],[20.7882823,40.0115154],[20.7882213,40.0115678],[20.787903,40.0113608],[20.7878269,40.0114848],[20.7877589,40.0114378],[20.7876627,40.0114892],[20.7874616,40.0110333],[20.7872678,40.0109198],[20.7873113,40.0107409],[20.787166,40.0105927],[20.7870502,40.0098149],[20.7871732,40.00944],[20.7870898,40.0092215],[20.7872942,40.0088579],[20.7874372,40.0088078],[20.7874639,40.0087365],[20.7877598,40.0086726],[20.7881458,40.0086833],[20.788292,40.0088135],[20.7884048,40.0086545],[20.7884972,40.0086841],[20.7886284,40.0086337],[20.7886551,40.0085624],[20.7889016,40.0085287],[20.7889784,40.0086389],[20.7890373,40.0086315],[20.7892601,40.0083765],[20.7895602,40.0082227],[20.7893807,40.0078034],[20.7891986,40.0076902],[20.789179,40.0076086],[20.789108,40.0076246],[20.7891101,40.0075797],[20.788811,40.0074633],[20.7887969,40.0072647],[20.7886933,40.0072258],[20.7887051,40.006974],[20.7885982,40.007007],[20.7884612,40.0069312],[20.7881077,40.0069754],[20.787949,40.0068629],[20.7882789,40.0063226],[20.7880927,40.0060472],[20.7880802,40.0058127],[20.7878845,40.005492],[20.7879782,40.0052424],[20.7878641,40.0051762],[20.7876999,40.0051807],[20.7876699,40.0050717],[20.7877987,40.0048231],[20.7879633,40.0048097],[20.7880252,40.0047393],[20.7875289,40.0045814],[20.787554,40.0045461],[20.7874045,40.0044879],[20.7870302,40.0044775],[20.786899,40.0045279],[20.7867854,40.0044527],[20.7865877,40.0043707],[20.7863445,40.0045621],[20.7859318,40.0043705],[20.7853648,40.0037242],[20.7852922,40.003524],[20.7853149,40.0032905],[20.7851471,40.0031237],[20.7847682,40.0029601],[20.7846626,40.0029661],[20.7843224,40.0032269],[20.7839434,40.0033155],[20.7837391,40.0034269],[20.7833607,40.0032542],[20.7830782,40.0032824],[20.7830457,40.0032275],[20.7827745,40.003265],[20.7824628,40.0034184],[20.7824167,40.0036513],[20.7820361,40.0037759],[20.7819732,40.0041164],[20.7815145,40.0041577],[20.781298,40.0042778],[20.7806028,40.0043665],[20.780327,40.004503],[20.7800694,40.0042526],[20.7801235,40.0038488],[20.7799694,40.0031419],[20.7797243,40.0028739],[20.7788897,40.0026886],[20.7788731,40.002544],[20.7784832,40.0021188],[20.7781444,40.0021004],[20.7777677,40.0018917],[20.777622,40.0017526],[20.7776262,40.0016626],[20.777364,40.0015112],[20.7771651,40.0015057],[20.7771005,40.0013868],[20.7769726,40.0013652],[20.7769318,40.001238],[20.7767948,40.0011621],[20.7766887,40.0011772],[20.776634,40.0010946],[20.7758947,40.0008758],[20.7751774,40.0009369],[20.7750392,40.000888],[20.7748136,40.0009538],[20.7746758,40.0008959],[20.7746115,40.000768],[20.774721,40.000681],[20.7746663,40.0005984],[20.7745585,40.0006495],[20.7744677,40.0003407],[20.7744126,40.0002671],[20.7743077,40.0002552],[20.7743751,40.0000679],[20.7743092,39.999976],[20.7741429,40.0000254],[20.7742098,39.9998471],[20.7741347,39.9997009],[20.7738115,39.9996018],[20.773546,39.9992702],[20.7735603,39.9992165],[20.7732295,39.9990272],[20.7731361,39.9987723],[20.7730634,39.9988244],[20.7729983,39.9987145],[20.7728412,39.9988182],[20.7725985,39.9987484],[20.7724331,39.9987798],[20.7722853,39.9986856],[20.7721415,39.9987536],[20.7716588,39.99856],[20.7716288,39.9984511],[20.771481,39.9983569],[20.7716056,39.9981983],[20.7717593,39.9981665],[20.7716825,39.9980563],[20.7717093,39.997985],[20.77162,39.9978924],[20.7713873,39.9978589],[20.7712576,39.9976301],[20.7712091,39.9976648],[20.771096,39.9975806],[20.7709228,39.9972785],[20.7706272,39.9970901],[20.7706982,39.9965787],[20.7709629,39.9961807],[20.7711884,39.9956196],[20.7713949,39.9954632],[20.7713383,39.9951734],[20.7716755,39.9949756],[20.7721613,39.9943586],[20.773258,39.9939479],[20.7740366,39.99333],[20.7741948,39.9929561],[20.7743122,39.9922028],[20.7745233,39.9919475],[20.7747589,39.991918],[20.7749504,39.9915811],[20.7749455,39.9914368],[20.7756009,39.9906985],[20.7755854,39.9900315],[20.7756432,39.9897989],[20.7757729,39.9895323],[20.7760675,39.9892433],[20.7763585,39.988783],[20.7770022,39.9880443],[20.7770873,39.9874792],[20.777257,39.9873578],[20.7773866,39.9870912],[20.7774432,39.9866334],[20.778266,39.9860709],[20.7784525,39.9857878],[20.7775775,39.985223],[20.7774009,39.9849929],[20.7770022,39.9847567],[20.7767045,39.9846133],[20.7764823,39.9846071],[20.7758542,39.9842698],[20.77544,39.9841142],[20.7751953,39.9840893],[20.7748401,39.9836741],[20.7740412,39.9833366],[20.7737881,39.9832395],[20.7731791,39.9833171],[20.7729869,39.9834198],[20.772708,39.983376],[20.7721784,39.9834333],[20.7716474,39.983396],[20.7714007,39.983164],[20.7712839,39.9829085],[20.7710698,39.9827314],[20.7704891,39.9818865],[20.7703006,39.9814129],[20.7702862,39.9804757],[20.7699367,39.9799436],[20.7699328,39.9795291],[20.76984,39.9792383],[20.7698485,39.9790584],[20.7697696,39.9789931],[20.7700785,39.9786505],[20.77002,39.9786488],[20.7700185,39.9784326],[20.7698648,39.9784644],[20.7697509,39.9785197],[20.7697188,39.9784558],[20.7696149,39.9784259],[20.7694514,39.9786645],[20.769357,39.9786799],[20.7691793,39.9784768],[20.7691978,39.9783332],[20.7689722,39.9783989],[20.7689159,39.9783523],[20.7687264,39.9783696],[20.7687805,39.9787404]]},{"id":17002,"author":"AnaDigit","name_GR":"Epirus Trail: \u039a\u03cc\u03bd\u03b9\u03c4\u03c3\u03b1-\u03a3\u03b1\u03c1\u03b1\u03bd\u03c4\u03ac\u03c0\u03bf\u03c1\u03bf\u03c2","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Konitsa_Sarantaporos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":12082,"name_EN":"Epirus Trail: Konitsa-Sarantaporos","description_EN":"","ascent_time":285,"descent_time":275,"marker":"Red_dots","level":9,"ascent":647,"descent":806,"maxelev":881,"minelev":427,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.7207 40.0489,20.75665 40.1122)","views":50,"millestones":"0,20.7509745,40.0487459#1,20.7535012,40.0527979#2,20.7477969,40.0597547#3,20.7452014,40.0644806#4,20.7400741,40.0694152#5,20.7350547,40.0761703#6,20.7379335,40.0836804#7,20.7387131,40.0874130#8,20.7403351,40.0948058#9,20.7396032,40.1007678#10,20.7333243,40.1011317#11,20.7287420,40.1080360#12.1,20.7207018,40.1121982","x":20.7375786,"y":40.084267,"coor":[[20.7509745,40.0487459],[20.750967,40.0495203],[20.751065,40.0495816],[20.7513269,40.0496655],[20.7517503,40.049808],[20.75209,40.0499346],[20.7526706,40.0498293],[20.7528481,40.0498163],[20.7531716,40.0499154],[20.7537362,40.0499223],[20.7543741,40.0499402],[20.7546455,40.0499027],[20.7550023,40.0500388],[20.7551557,40.0505115],[20.7555888,40.0505237],[20.7556403,40.0507233],[20.7558299,40.0509267],[20.7561026,40.0512046],[20.7565254,40.0514326],[20.756496,40.0515579],[20.7561998,40.0516532],[20.7559276,40.0517086],[20.7554674,40.0520199],[20.7551049,40.0524962],[20.7547663,40.0524687],[20.75442,40.0526031],[20.7538181,40.0526627],[20.753594,40.0526925],[20.7533341,40.0529824],[20.7529284,40.0531332],[20.7526543,40.0532561],[20.752597,40.0533986],[20.7526843,40.0537073],[20.7526585,40.0540038],[20.7521473,40.0542056],[20.751794,40.0542408],[20.7517204,40.0543108],[20.7513879,40.0544005],[20.7511764,40.0551512],[20.7509701,40.0552985],[20.7505201,40.0558893],[20.7504661,40.0562841],[20.7503484,40.056542],[20.7498247,40.0572029],[20.7497641,40.0574894],[20.7496215,40.0575304],[20.7494448,40.0577957],[20.7490785,40.0578575],[20.7489061,40.0580327],[20.7487939,40.0581737],[20.7488317,40.0583639],[20.7485689,40.05896],[20.7483786,40.0590177],[20.7480594,40.0595672],[20.7477925,40.0597579],[20.7473759,40.0598903],[20.7473579,40.0599483],[20.7471887,40.0601057],[20.7472872,40.0602526],[20.7472261,40.0603049],[20.7470761,40.0602556],[20.746708,40.0603534],[20.7464773,40.0602748],[20.7464041,40.0603358],[20.7462289,40.0603219],[20.745686,40.0601535],[20.7454385,40.0601826],[20.745409,40.0603078],[20.7452085,40.0603337],[20.7454073,40.0605915],[20.746004,40.0608605],[20.7461884,40.0611719],[20.746368,40.0613391],[20.7464734,40.0613421],[20.7465802,40.0615612],[20.7473354,40.062195],[20.74741,40.0628456],[20.7472583,40.0630755],[20.7469388,40.0631386],[20.7467068,40.063087],[20.7460201,40.0632298],[20.7457187,40.0631583],[20.7456087,40.0632543],[20.7451721,40.0633141],[20.7450511,40.0633917],[20.7451656,40.0641606],[20.7452097,40.0645401],[20.745319,40.0647053],[20.7450209,40.0650572],[20.7447509,40.064919],[20.7447248,40.0648282],[20.7447372,40.0653059],[20.7446467,40.0654835],[20.7440433,40.0658448],[20.7439403,40.0657924],[20.743793,40.0658558],[20.7435697,40.0658675],[20.7433541,40.0657174],[20.7423631,40.0653562],[20.7420757,40.0654832],[20.7416454,40.0659305],[20.7413477,40.0672552],[20.7405315,40.0686373],[20.7405494,40.0688269],[20.7404491,40.068716],[20.7402861,40.0686934],[20.7400234,40.0687941],[20.7399111,40.0689351],[20.7398648,40.0691184],[20.7402156,40.0691373],[20.7401481,40.0693245],[20.7397498,40.0698087],[20.7395808,40.069912],[20.7395271,40.0700546],[20.7393337,40.0701753],[20.7383825,40.0714365],[20.7373638,40.0721464],[20.7368062,40.0722838],[20.7365138,40.0720233],[20.7364088,40.0720114],[20.736251,40.072124],[20.7358545,40.0726442],[20.7357041,40.0728472],[20.7355803,40.0734742],[20.7357215,40.0739555],[20.7357012,40.0741351],[20.7353258,40.0746289],[20.734956,40.0747626],[20.734826,40.0750291],[20.7350197,40.0756381],[20.7350615,40.0762337],[20.7354736,40.0764435],[20.735658,40.0767549],[20.7356054,40.0773659],[20.7356627,40.0776378],[20.7358155,40.0778763],[20.7358408,40.0783273],[20.7364118,40.0788929],[20.736503,40.0791927],[20.7370585,40.080082],[20.7373852,40.0803614],[20.7376753,40.0804237],[20.7379421,40.0805843],[20.7379807,40.0806124],[20.7375034,40.0810313],[20.7372513,40.0811278],[20.7371564,40.0813953],[20.7370753,40.081375],[20.7370099,40.0815173],[20.7370716,40.0819424],[20.737392,40.0825999],[20.7376193,40.0827504],[20.7377278,40.0829336],[20.7377626,40.0831868],[20.7379691,40.0832827],[20.7378833,40.0833613],[20.7379376,40.0836961],[20.7381249,40.083877],[20.7382268,40.083952],[20.7381852,40.0840859],[20.7379033,40.084096],[20.7375786,40.084267],[20.7371076,40.0843077],[20.7370079,40.084431],[20.7366874,40.0845121],[20.7365998,40.0846267],[20.7365986,40.0848969],[20.7364782,40.0852087],[20.7369246,40.0849961],[20.7370526,40.0850898],[20.7370786,40.0850365],[20.7371588,40.0850748],[20.737292,40.0849885],[20.7374793,40.0849937],[20.7377998,40.0849127],[20.7380314,40.0849733],[20.7378972,40.0853298],[20.737722,40.085559],[20.7378745,40.0856309],[20.7391726,40.085118],[20.7393539,40.0850511],[20.7392309,40.0854169],[20.7387604,40.0856919],[20.7383671,40.0858249],[20.738052,40.0862844],[20.7381638,40.0871342],[20.7385953,40.0873085],[20.7387933,40.0874852],[20.739559,40.087732],[20.7397946,40.0879548],[20.7399058,40.0882056],[20.7399973,40.0882307],[20.7402125,40.0893717],[20.7400859,40.0895662],[20.7397469,40.0897909],[20.7399945,40.0897618],[20.7398454,40.0899378],[20.7397161,40.0899431],[20.7394261,40.0903673],[20.7393873,40.0906905],[20.7394424,40.0907641],[20.739707,40.0908436],[20.739766,40.0908633],[20.7398203,40.0909549],[20.7397457,40.0910428],[20.739771,40.0912507],[20.7400192,40.0914559],[20.7400496,40.0915558],[20.7401875,40.0916137],[20.7402869,40.0917156],[20.7404265,40.0924761],[20.7400786,40.093376],[20.7401321,40.0937288],[20.7403561,40.0939513],[20.7404335,40.0942958],[20.740444,40.0945663],[20.7403304,40.0947342],[20.7403501,40.095059],[20.7405723,40.0953175],[20.7409958,40.0955366],[20.7410498,40.0956597],[20.740958,40.0958642],[20.7410097,40.0960098],[20.7409556,40.0964046],[20.7414212,40.096724],[20.7416422,40.0975453],[20.7416844,40.0976456],[20.7415512,40.0977319],[20.7415352,40.0978215],[20.7418723,40.0978851],[20.7419049,40.09794],[20.7413792,40.0981414],[20.7410681,40.0980245],[20.7405314,40.0977212],[20.7402036,40.0976849],[20.7402125,40.0977933],[20.7398033,40.098061],[20.7396376,40.0980923],[20.7396916,40.0984361],[20.7397843,40.0985063],[20.7396062,40.0986004],[20.740153,40.0995795],[20.7401681,40.0998772],[20.7401811,40.1002919],[20.7396074,40.1007621],[20.7392931,40.1012036],[20.7392509,40.1008601],[20.7394212,40.1004866],[20.7393875,40.0999633],[20.7392894,40.0998569],[20.7390434,40.0990393],[20.7388985,40.0991253],[20.7388573,40.0992503],[20.7387302,40.0992107],[20.7386305,40.099334],[20.7384405,40.0993826],[20.7382332,40.0995479],[20.7380284,40.0994161],[20.737685,40.0997306],[20.7375062,40.0997886],[20.7371791,40.0997614],[20.7369774,40.0998098],[20.7368131,40.1000573],[20.7366106,40.1001237],[20.7360724,40.1005859],[20.7355839,40.1005],[20.7349434,40.1001577],[20.7343308,40.0999693],[20.7340268,40.1001949],[20.7338629,40.1004334],[20.733906,40.1007589],[20.7338539,40.1008655],[20.7333703,40.1009239],[20.7333048,40.1010662],[20.7333656,40.1012661],[20.7329704,40.1011919],[20.7329188,40.1012895],[20.7329696,40.101453],[20.7324023,40.1017883],[20.7324379,40.1020235],[20.7328541,40.1023955],[20.7327283,40.1025721],[20.7327457,40.1026987],[20.7326269,40.1027314],[20.7324525,40.1029426],[20.7321656,40.103547],[20.7320091,40.1034615],[20.73182,40.1034922],[20.7314475,40.1040176],[20.7315139,40.104078],[20.7312975,40.1044322],[20.7312178,40.1048713],[20.7308323,40.1053288],[20.730841,40.1056353],[20.7302638,40.1061774],[20.7300639,40.1066761],[20.7296337,40.1073305],[20.7295756,40.107563],[20.729439,40.1077213],[20.7292503,40.107743],[20.7288542,40.1079299],[20.728535,40.1082272],[20.7280849,40.1084396],[20.7274851,40.1085938],[20.7274064,40.1086681],[20.7270607,40.1087844],[20.7263457,40.1087732],[20.7262793,40.1089335],[20.7259831,40.1092403],[20.7253687,40.109331],[20.7255852,40.1094633],[20.7253198,40.1096179],[20.7250382,40.1096189],[20.7247709,40.1098095],[20.7244681,40.1097649],[20.7241839,40.1098199],[20.723713,40.1100272],[20.7227304,40.110702],[20.7224193,40.1108283],[20.7219569,40.1111754],[20.7216966,40.1114653],[20.7207018,40.1121982]]},{"id":17003,"author":"AnaDigit","name_GR":"Epirus Trail: \u039c\u03ad\u03c4\u03c3\u03bf\u03b2\u03bf-\u0391\u03bd\u03b8\u03bf\u03c7\u03ce\u03c1\u03b9","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Metsovo_Anthochori","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":11116,"name_EN":"Epirus Trail: Metsovo-Anthochori","description_EN":"","ascent_time":250,"descent_time":245,"marker":"No_marks","level":9,"ascent":649,"descent":751,"maxelev":1143,"minelev":818,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.12834 39.73126,21.18619 39.76847)","views":43,"millestones":"0,21.1827378,39.7698099#1,21.1828630,39.7639882#2,21.1793783,39.7588839#3,21.1759970,39.7532601#4,21.1696146,39.7491600#5,21.1682519,39.7466561#6,21.1588813,39.7435461#7,21.1547528,39.7383814#8,21.1489628,39.7320088#9,21.1430671,39.7341302#10,21.1397293,39.7337173#11.1,21.1297849,39.7336593","x":21.1682873,"y":39.7462846,"coor":[[21.1827378,39.7698099],[21.1825799,39.7695493],[21.1824214,39.7692932],[21.1823014,39.7691732],[21.1821974,39.7691076],[21.1824617,39.7686366],[21.182641,39.7685329],[21.1828225,39.7685102],[21.1827438,39.7684183],[21.1830516,39.7682681],[21.1828489,39.7681145],[21.1830125,39.7681095],[21.1834091,39.7678849],[21.1829314,39.76754],[21.1830557,39.7673989],[21.1829574,39.7672344],[21.1830241,39.7670288],[21.1831608,39.7668249],[21.183327,39.7667569],[21.1830731,39.7663994],[21.1833683,39.7663165],[21.1834445,39.7662193],[21.1835947,39.7660473],[21.1833138,39.7660675],[21.1830179,39.7658801],[21.1835136,39.7654598],[21.1832499,39.765057],[21.1828876,39.7653545],[21.1828432,39.7652994],[21.182884,39.7651562],[21.1828061,39.7650642],[21.1825626,39.7650223],[21.1823127,39.7648541],[21.182464,39.7645785],[21.1823847,39.7642343],[21.1827798,39.7639916],[21.1828614,39.7639936],[21.1828884,39.7639042],[21.1829685,39.7639422],[21.1831333,39.7636219],[21.1833021,39.7634909],[21.1832709,39.7631118],[21.1833279,39.7630816],[21.1839706,39.7633359],[21.1844117,39.7634007],[21.1846238,39.7633518],[21.184852,39.7631952],[21.1848921,39.7630701],[21.1848107,39.762933],[21.1844001,39.7626978],[21.1842527,39.7620186],[21.1841641,39.7618993],[21.1837911,39.761602],[21.1834281,39.7616292],[21.1832268,39.7616739],[21.1830654,39.7616249],[21.1825725,39.7611175],[21.1821732,39.7608916],[21.1820363,39.760528],[21.1816385,39.7602661],[21.1814404,39.759973],[21.1801784,39.7591496],[21.1794978,39.7589529],[21.1793153,39.7588494],[21.1790841,39.7582222],[21.1789743,39.7574809],[21.1790189,39.7572477],[21.1792332,39.7571449],[21.1792877,39.7570156],[21.1795308,39.7567512],[21.1795709,39.7566261],[21.1790002,39.755788],[21.1784447,39.7553871],[21.1781724,39.7549121],[21.1781945,39.7545343],[21.17807,39.7544411],[21.1779985,39.7544754],[21.1779416,39.7547263],[21.1777448,39.7549737],[21.1776185,39.7554931],[21.1775475,39.7555184],[21.1774797,39.7554627],[21.1773755,39.7548972],[21.1772759,39.7547371],[21.1769069,39.754629],[21.1767022,39.7544979],[21.1760946,39.7539427],[21.1759701,39.7536829],[21.1760229,39.7529635],[21.1762598,39.752591],[21.1762147,39.7525538],[21.1761192,39.7526056],[21.1760143,39.7525399],[21.1758962,39.7526362],[21.1759297,39.7525739],[21.1757967,39.751814],[21.175529,39.7515102],[21.175242,39.7513951],[21.1745386,39.7509006],[21.1738252,39.7509372],[21.1734684,39.7505322],[21.1725012,39.7502113],[21.1724225,39.7501374],[21.1722509,39.7494846],[21.1720076,39.7491544],[21.1717559,39.7490311],[21.1712211,39.7489821],[21.1711687,39.7488366],[21.1709824,39.748733],[21.1707088,39.7488615],[21.170453,39.7488372],[21.1701756,39.748943],[21.1700198,39.7493266],[21.1698244,39.749538],[21.1695638,39.7490632],[21.1690774,39.7488081],[21.1687903,39.748693],[21.1685221,39.7485288],[21.168149,39.7485197],[21.1677928,39.7483849],[21.1670772,39.7484756],[21.1666711,39.7484206],[21.1653495,39.7486811],[21.1648046,39.7485957],[21.1649452,39.748491],[21.1650583,39.7482956],[21.1655538,39.7481636],[21.1655357,39.748037],[21.1656236,39.747886],[21.1653199,39.7476084],[21.1653572,39.747267],[21.1651264,39.746919],[21.1651959,39.7467226],[21.1655209,39.7467665],[21.1658471,39.7464952],[21.1660711,39.7464377],[21.1663848,39.7464723],[21.166737,39.7467062],[21.1669847,39.7466401],[21.1671585,39.7466714],[21.1678842,39.7466171],[21.1681192,39.7466859],[21.1682959,39.7466451],[21.1683597,39.7465116],[21.1682873,39.7462846],[21.1681226,39.7463166],[21.1679033,39.7462572],[21.1677475,39.7460732],[21.1674684,39.7460484],[21.167256,39.7461063],[21.1672051,39.7459249],[21.1671031,39.7458503],[21.1669206,39.7459404],[21.1666066,39.7459148],[21.1665566,39.7459946],[21.1664299,39.7459555],[21.1663958,39.7456484],[21.1654742,39.7453556],[21.1649744,39.7453074],[21.164747,39.7454459],[21.1645248,39.7454585],[21.1639791,39.7453911],[21.1631705,39.7451912],[21.1629832,39.7452046],[21.1621324,39.7448956],[21.1617114,39.744633],[21.1605059,39.7441531],[21.1603825,39.744033],[21.1599993,39.7439876],[21.1597765,39.7437299],[21.1592239,39.7435452],[21.1588622,39.7435454],[21.1589756,39.743341],[21.1589197,39.7429973],[21.1590163,39.7423511],[21.1589793,39.7421159],[21.1592637,39.7417266],[21.1592859,39.7411866],[21.159148,39.7408499],[21.1592115,39.7407254],[21.1590869,39.7406322],[21.159024,39.7404596],[21.1590307,39.7402976],[21.1588704,39.7402216],[21.1589543,39.7401696],[21.1588516,39.740113],[21.158816,39.7398419],[21.1588956,39.7396096],[21.15915,39.7393817],[21.1593598,39.7393868],[21.1593757,39.7392476],[21.1586695,39.7385457],[21.1582739,39.7385179],[21.1574994,39.7386251],[21.1573159,39.7385485],[21.1570254,39.7382351],[21.1568746,39.7382134],[21.1560026,39.738138],[21.1549549,39.7383645],[21.154235,39.7384279],[21.1538263,39.7384359],[21.1535434,39.7382218],[21.1535823,39.7378444],[21.1532761,39.7370622],[21.1526166,39.7363614],[21.1523511,39.7357243],[21.1517469,39.7350969],[21.1515049,39.734591],[21.1512039,39.7342504],[21.1509309,39.7340815],[21.1501809,39.7338649],[21.1501232,39.7337824],[21.1504966,39.733742],[21.1504524,39.7334167],[21.1503121,39.7334222],[21.1500282,39.7332351],[21.1497953,39.7329411],[21.1497786,39.7327785],[21.1496579,39.7325954],[21.14934,39.7323804],[21.1491406,39.7321233],[21.1485043,39.7317113],[21.1484621,39.7316022],[21.1482549,39.731534],[21.1481485,39.7315674],[21.1477075,39.7315115],[21.1472491,39.7313111],[21.1468987,39.7313205],[21.1469637,39.73116],[21.1468595,39.7308917],[21.1467197,39.7308882],[21.1465101,39.7305948],[21.1460099,39.7302762],[21.1457419,39.7302696],[21.1456558,39.7303756],[21.1455182,39.7303182],[21.1454517,39.7305147],[21.1455644,39.7306571],[21.1455155,39.73071],[21.1455886,39.7309189],[21.1452733,39.7312085],[21.1452068,39.731405],[21.1455839,39.7321349],[21.1452406,39.7320004],[21.1451211,39.7320695],[21.1451667,39.7323769],[21.1451072,39.7326006],[21.1446008,39.7327458],[21.1443834,39.7330557],[21.1439939,39.7337308],[21.1430195,39.7341572],[21.1426039,39.7346153],[21.1420533,39.7349531],[21.1419501,39.735473],[21.1413032,39.7358805],[21.1410319,39.7362341],[21.1408793,39.7362574],[21.140888,39.7360864],[21.1414509,39.7354517],[21.1415784,39.7346261],[21.1419419,39.7337343],[21.1421257,39.7335226],[21.1427139,39.7331227],[21.1426495,39.732986],[21.1425089,39.7330006],[21.1420906,39.7332425],[21.1408817,39.7336991],[21.1393759,39.7337161],[21.1389883,39.7337786],[21.1385282,39.7339023],[21.1375064,39.7343455],[21.1372842,39.7343581],[21.136589,39.7342418],[21.1355398,39.7345042],[21.1349939,39.7347249],[21.1347619,39.7347012],[21.1341772,39.7344525],[21.1339677,39.7343482],[21.1337236,39.734045],[21.1332405,39.7341591],[21.1326163,39.7340176],[21.1320541,39.7340127],[21.1315936,39.7341454],[21.1312631,39.7339571],[21.1310618,39.7339611],[21.1304253,39.7341165],[21.1302561,39.7340223],[21.129982,39.7336912],[21.1297849,39.7336593]]},{"id":17004,"author":"AnaDigit","name_GR":"Epirus Trail: \u039c\u03bf\u03bd\u03bf\u03b4\u03ad\u03bd\u03c4\u03c1\u03b9-\u039a\u03ae\u03c0\u03bf\u03b9","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Monodendri_Kipi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":8001,"name_EN":"Epirus Trail: Monodendri-Kipi","description_EN":"","ascent_time":175,"descent_time":185,"marker":"No_marks","level":9,"ascent":438,"descent":735,"maxelev":1058,"minelev":711,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.74716 39.8637,20.79171 39.88198)","views":77,"millestones":"0,20.7489990,39.8820295#1,20.7516049,39.8770738#2,20.7547578,39.8728854#3,20.7631228,39.8688616#4,20.7657921,39.8673636#5,20.7710855,39.8712627#6,20.7801607,39.8706591#7,20.7869167,39.8665210#8,20.7916906,39.8640653","x":20.7650336,"y":39.8671748,"coor":[[20.748999,39.8820295],[20.7489239,39.8816401],[20.7489318,39.881226],[20.7486312,39.881132],[20.74853,39.8811922],[20.7480422,39.8811244],[20.747773,39.8808827],[20.7474045,39.8807643],[20.7472188,39.8808086],[20.7473673,39.8803894],[20.7473142,39.8800276],[20.7474217,39.8797334],[20.7478926,39.8791702],[20.748094,39.8791128],[20.7481661,39.8791733],[20.748262,39.879122],[20.7482121,39.8789404],[20.7479922,39.878646],[20.7477154,39.8785662],[20.7476626,39.8784476],[20.7479033,39.8783013],[20.7482177,39.8783281],[20.7485449,39.8780851],[20.7495867,39.8778081],[20.7497479,39.8776144],[20.750092,39.877507],[20.7500219,39.877505],[20.7500396,39.8773794],[20.7504826,39.8771576],[20.7507074,39.8771009],[20.7509959,39.877181],[20.7515005,39.8771411],[20.7521997,39.8766924],[20.752681,39.8761564],[20.7523908,39.8756168],[20.7520533,39.8753372],[20.7518126,39.8749881],[20.7515759,39.8748013],[20.7511193,39.8748156],[20.7506033,39.8746029],[20.7499987,39.8745319],[20.7500522,39.8743893],[20.7501569,39.8744013],[20.7503172,39.8742256],[20.7505986,39.8742065],[20.7510784,39.8739497],[20.7510813,39.8738867],[20.75095,39.8737975],[20.7509664,39.8736718],[20.7511769,39.8736958],[20.7513905,39.8736297],[20.751731,39.8736437],[20.7520966,39.873627],[20.7524719,39.8736015],[20.7527024,39.8736214],[20.753084,39.8736637],[20.7530704,39.8734561],[20.7531939,39.8733154],[20.7535705,39.8732629],[20.7537025,39.8732126],[20.7538441,39.8731625],[20.7543094,39.8732116],[20.7545947,39.8731115],[20.7547871,39.8728467],[20.7554413,39.8723606],[20.7555673,39.8721659],[20.7565792,39.8717799],[20.7567639,39.871704],[20.7571662,39.871355],[20.757209,39.8709419],[20.7573196,39.8708279],[20.7579946,39.8706936],[20.7581928,39.8706541],[20.7584255,39.8706786],[20.7583981,39.8705157],[20.7589508,39.8706933],[20.7595597,39.8704221],[20.7599114,39.8700987],[20.7603651,39.8697781],[20.7607671,39.8696813],[20.7609997,39.8697058],[20.7610933,39.8694562],[20.7613454,39.8695623],[20.7617842,39.8694305],[20.7619092,39.869506],[20.7620493,39.8695099],[20.7623475,39.8693831],[20.7626204,39.8690485],[20.7629458,39.8690666],[20.7628591,39.8689201],[20.7632202,39.8689482],[20.7630518,39.8687993],[20.7631945,39.8687493],[20.7629535,39.8686525],[20.7625498,39.8682899],[20.7623551,39.8682034],[20.7627158,39.8682405],[20.7624286,39.8681334],[20.762745,39.8681152],[20.7627476,39.8680612],[20.7623657,39.8679785],[20.7626514,39.8678694],[20.7628257,39.8678923],[20.7630307,39.8680061],[20.7631581,39.8682799],[20.7636516,39.8684738],[20.7639787,39.8689018],[20.7641176,39.8694281],[20.7645462,39.8695121],[20.7646113,39.8693698],[20.7646414,39.8692265],[20.7645715,39.8689724],[20.7642626,39.8683332],[20.7641931,39.8675747],[20.7642482,39.8673961],[20.7644734,39.8673303],[20.7647652,39.8670412],[20.765193,39.8670171],[20.7652138,39.8670717],[20.7650336,39.8671748],[20.7650552,39.8672114],[20.765453,39.8672045],[20.7653562,39.8672739],[20.7653766,39.8673375],[20.7656464,39.867318],[20.7660036,39.8674271],[20.7658485,39.8674948],[20.7659035,39.8675684],[20.7658646,39.8676484],[20.7660506,39.8676716],[20.7660688,39.8677802],[20.7661989,39.8677478],[20.7664749,39.8678455],[20.766519,39.8679008],[20.7664114,39.8679519],[20.7669795,39.868301],[20.7671754,39.8683605],[20.7672472,39.8683265],[20.7676421,39.8688779],[20.7674357,39.8690793],[20.7666466,39.8694537],[20.7665668,39.8696586],[20.7670684,39.8694069],[20.7683141,39.8691804],[20.7686668,39.8691362],[20.7689265,39.8693551],[20.7695627,39.869499],[20.7697642,39.8706845],[20.7699672,39.871118],[20.7704083,39.8711844],[20.7709481,39.8713886],[20.7713511,39.8710215],[20.7716236,39.8710426],[20.771799,39.8709439],[20.772748,39.8708983],[20.7730682,39.8707991],[20.7732276,39.8706414],[20.7733596,39.8703929],[20.7735665,39.8702185],[20.7741562,39.8701088],[20.7743126,39.8699871],[20.7744418,39.8699726],[20.7745484,39.8701918],[20.7748236,39.8703075],[20.7748774,39.8703586],[20.7756913,39.8706244],[20.7757947,39.8706633],[20.7760738,39.8707206],[20.7762664,39.8708521],[20.7765063,39.8709939],[20.7766263,39.8711774],[20.7770833,39.8711541],[20.7773377,39.870963],[20.777623,39.8708628],[20.7779439,39.8702502],[20.7781483,39.8701298],[20.7784151,39.8701733],[20.7789461,39.8705663],[20.7793606,39.8704517],[20.7795933,39.8704762],[20.7797066,39.8705514],[20.7798241,39.8707889],[20.7800126,39.8707581],[20.7803262,39.8705506],[20.7803364,39.8700825],[20.7801733,39.8693214],[20.7802448,39.8690441],[20.7801982,39.8687906],[20.7803286,39.8686546],[20.7806138,39.8685545],[20.7807122,39.8684491],[20.7806324,39.8679065],[20.7814739,39.8676596],[20.7821353,39.8672637],[20.7826232,39.867079],[20.7827987,39.8670749],[20.783128,39.8672822],[20.7834164,39.8676145],[20.7837497,39.8672364],[20.7841417,39.8671032],[20.7841867,39.8671405],[20.78465,39.8669822],[20.7853417,39.8669383],[20.7856727,39.8668574],[20.7857845,39.8667164],[20.7863857,39.8668592],[20.7867581,39.8666443],[20.7867665,39.8664644],[20.7870191,39.8665615],[20.7871851,39.866512],[20.7872247,39.8664141],[20.7874907,39.8664755],[20.7878201,39.8664306],[20.7879734,39.8664483],[20.788081,39.8663973],[20.7880414,39.866243],[20.7882474,39.8660866],[20.7882671,39.865916],[20.7884272,39.8659925],[20.7884459,39.8660921],[20.7885243,39.8659141],[20.7886185,39.8661509],[20.7887665,39.8662361],[20.7889865,39.8665304],[20.7891729,39.8665446],[20.7892977,39.8663274],[20.7893829,39.8657533],[20.7893061,39.8655215],[20.7894651,39.8654943],[20.789494,39.8651258],[20.7892832,39.8646336],[20.789324,39.8644095],[20.7896335,39.8637876],[20.7898759,39.8636547],[20.7902551,39.8636922],[20.7904627,39.863752],[20.7910027,39.8639291],[20.7913301,39.8640237],[20.7916906,39.8640653]]},{"id":17005,"author":"AnaDigit","name_GR":"Epirus Trail: \u039c\u03b5\u03b3\u03ac\u03bb\u03bf \u03a0\u03ac\u03c0\u03b9\u03b3\u03ba\u03bf-\u039c\u03bf\u03bd\u03bf\u03b4\u03ad\u03bd\u03c4\u03c1\u03b9","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Papigo_Monodendri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":15338,"name_EN":"Epirus Trail: Megalo Papigo-Monodendri","description_EN":"","ascent_time":365,"descent_time":350,"marker":"No_marks","level":9,"ascent":1151,"descent":1010,"maxelev":1072,"minelev":473,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.71377 39.88123,20.76073 39.96891)","views":141,"millestones":"0,20.7189170,39.9690606#1,20.7209410,39.9630602#2,20.7177444,39.9557197#3,20.7177278,39.9485679#4,20.7161134,39.9440447#5,20.7226756,39.9375837#6,20.7312189,39.9338613#7,20.7400150,39.9288336#8,20.7468451,39.9219934#9,20.7493544,39.9146963#10,20.7577010,39.9095602#11,20.7559031,39.9025369#12,20.7571174,39.8948644#13,20.7584721,39.8869336#14,20.7565531,39.8823515#15.3,20.7489990,39.8820295","x":20.7477658,"y":39.9213208,"coor":[[20.718917,39.9690606],[20.7188399,39.9686306],[20.7188007,39.9683638],[20.7184684,39.9681067],[20.718723,39.9679247],[20.7190166,39.967897],[20.7196098,39.967486],[20.7198754,39.9673494],[20.7200109,39.9672091],[20.7207283,39.9659144],[20.7210382,39.9655539],[20.7210209,39.9654273],[20.7207008,39.9650219],[20.721853,39.9653517],[20.7220193,39.9653024],[20.7222985,39.9653373],[20.7223088,39.9651215],[20.7221447,39.9648826],[20.7221871,39.9647307],[20.7221177,39.9644675],[20.7217215,39.9641861],[20.7215811,39.9639389],[20.7216022,39.9637414],[20.7215075,39.9635315],[20.7211614,39.9631794],[20.7206366,39.9628944],[20.7205513,39.9627208],[20.720214,39.9626752],[20.7201417,39.962475],[20.7198758,39.9624044],[20.7196991,39.9621833],[20.7196718,39.9620204],[20.7197718,39.9618881],[20.7196938,39.9618048],[20.7196916,39.9616066],[20.7194374,39.9612932],[20.7193667,39.961057],[20.7192091,39.9609264],[20.7191268,39.9606899],[20.7191154,39.9604374],[20.7192465,39.9601438],[20.7186776,39.9598035],[20.718568,39.9596472],[20.7185385,39.9592861],[20.7186635,39.9588753],[20.7182836,39.9580089],[20.7183242,39.9576497],[20.7185363,39.9576197],[20.7187903,39.9574468],[20.7186925,39.9572909],[20.7184547,39.957122],[20.7183425,39.9567765],[20.7176039,39.9563143],[20.7176627,39.9563069],[20.717807,39.9552482],[20.7179728,39.9552078],[20.7181205,39.9553021],[20.7182607,39.9553061],[20.7187044,39.9550844],[20.7191103,39.9546726],[20.7192937,39.9542635],[20.7186833,39.9525888],[20.7183807,39.9523101],[20.7183667,39.9521115],[20.7185065,39.9518813],[20.7185302,39.9516297],[20.7182621,39.9511177],[20.7179647,39.950731],[20.7175083,39.9504839],[20.7173776,39.950282],[20.7173066,39.950298],[20.7173459,39.9499659],[20.7172653,39.9496934],[20.7176803,39.9493358],[20.7177469,39.9489234],[20.7179579,39.948425],[20.7171616,39.9489248],[20.7171871,39.9486373],[20.7173394,39.9483894],[20.7173091,39.9482895],[20.7170719,39.9483548],[20.7171229,39.9482662],[20.7170614,39.9480843],[20.7169411,39.948153],[20.7167887,39.9479145],[20.7166393,39.9478562],[20.7164787,39.9475454],[20.7163493,39.9475597],[20.7162938,39.9474951],[20.7162636,39.9476384],[20.7161895,39.9474741],[20.7160653,39.9476237],[20.7159873,39.9472973],[20.7159164,39.9473133],[20.7159216,39.9474485],[20.7158449,39.9473383],[20.715751,39.9473446],[20.7157224,39.9472087],[20.7156397,39.9472244],[20.7156449,39.9471164],[20.7155631,39.9471141],[20.7155315,39.9470411],[20.7156604,39.9467926],[20.7154275,39.946768],[20.7155989,39.9466107],[20.7152933,39.9466381],[20.7149917,39.9468277],[20.7150271,39.9465765],[20.7148375,39.9466251],[20.7152681,39.946187],[20.7151621,39.946202],[20.7151889,39.9461307],[20.7156744,39.9457662],[20.7157527,39.9453541],[20.7158829,39.945083],[20.7161679,39.9442624],[20.7160102,39.9436455],[20.7158993,39.9435162],[20.7159318,39.9426615],[20.7160988,39.942351],[20.7163338,39.9420874],[20.7167206,39.9418282],[20.717284,39.9413037],[20.7179106,39.9409251],[20.7181122,39.9406246],[20.7183385,39.9405409],[20.7189928,39.9400731],[20.7207107,39.9393832],[20.7210265,39.9388967],[20.7211334,39.9388637],[20.721213,39.9386678],[20.7217906,39.9383329],[20.7218628,39.9380467],[20.7220034,39.9380416],[20.7220571,39.937899],[20.7222768,39.9377071],[20.7227399,39.9375671],[20.7232073,39.9375803],[20.7241928,39.9377703],[20.724398,39.9378842],[20.7247468,39.9379301],[20.7249633,39.9380533],[20.725612,39.9379456],[20.7258673,39.9379888],[20.7259759,39.9379198],[20.7264719,39.9378257],[20.7266177,39.9377128],[20.727101,39.9376364],[20.7280667,39.9370151],[20.7280368,39.9369062],[20.7288292,39.9367304],[20.7294622,39.9364601],[20.729608,39.9363471],[20.7300171,39.93562],[20.7301924,39.9348864],[20.730474,39.9346241],[20.7306257,39.934142],[20.7307736,39.9339841],[20.7308943,39.9339064],[20.7311289,39.933895],[20.7314028,39.9337946],[20.7318934,39.9335653],[20.7322669,39.9335848],[20.7331258,39.933483],[20.7336026,39.9332983],[20.7337887,39.9333215],[20.7344896,39.9328549],[20.7351321,39.9326298],[20.7355063,39.9323881],[20.735691,39.9321952],[20.736196,39.9321554],[20.7366479,39.9317538],[20.7367983,39.9312986],[20.7375831,39.9302939],[20.7383527,39.9298562],[20.7392699,39.9295128],[20.7398205,39.9290058],[20.7398381,39.9288802],[20.7401462,39.9287988],[20.7403174,39.9286415],[20.7407483,39.9284375],[20.7409589,39.9281912],[20.7417531,39.9277271],[20.7419659,39.9276791],[20.7427026,39.9271954],[20.7432391,39.9264899],[20.7433311,39.9262763],[20.7434873,39.9261906],[20.7436135,39.925996],[20.7436086,39.9258518],[20.7437903,39.9257218],[20.7442441,39.9250319],[20.7444695,39.9249662],[20.7446784,39.9247559],[20.7450975,39.9245515],[20.7455127,39.9241849],[20.7457469,39.9236871],[20.7459048,39.92307],[20.7464176,39.922616],[20.7464642,39.9223741],[20.7465636,39.9222508],[20.7469428,39.9219012],[20.7474862,39.9217903],[20.7477309,39.921563],[20.7477658,39.9213208],[20.7478518,39.9212331],[20.7478062,39.9209616],[20.7479042,39.9206221],[20.748239,39.9204694],[20.7484146,39.9204653],[20.7485833,39.920362],[20.7487118,39.9203656],[20.7488947,39.9202086],[20.7489646,39.9199673],[20.7489221,39.9198761],[20.7490073,39.9198064],[20.7491429,39.9194139],[20.7490509,39.9191321],[20.7483673,39.9185004],[20.7485782,39.9182451],[20.7486541,39.9178779],[20.7487985,39.9177919],[20.7486161,39.9174445],[20.7486939,39.9172846],[20.7486306,39.9171387],[20.7486875,39.9169241],[20.748615,39.9159853],[20.7487229,39.9156821],[20.7485864,39.915354],[20.748823,39.9152976],[20.748905,39.9150477],[20.7491113,39.9148913],[20.7492886,39.9148513],[20.7495659,39.9141835],[20.7495536,39.913949],[20.7497067,39.9139262],[20.7497373,39.913774],[20.7500487,39.9136206],[20.7502333,39.9134276],[20.7502783,39.9134649],[20.750447,39.9133615],[20.7508734,39.9132474],[20.7510924,39.9133166],[20.7513173,39.9132598],[20.7521455,39.9128147],[20.7523434,39.912586],[20.7526864,39.9125056],[20.7532234,39.9120342],[20.7535046,39.9120241],[20.7537316,39.9119224],[20.7538463,39.9114752],[20.7542288,39.9110536],[20.7549376,39.9106591],[20.7555518,39.9105322],[20.7558436,39.9102972],[20.7560638,39.9101727],[20.7562416,39.9101237],[20.756409,39.9100473],[20.7568896,39.9100247],[20.757306,39.9098743],[20.7578408,39.9094479],[20.7581651,39.9092678],[20.7583764,39.9090035],[20.7585792,39.9089191],[20.7587697,39.9086001],[20.7590227,39.9084451],[20.7591961,39.9079906],[20.7591076,39.9076368],[20.7592613,39.9073529],[20.7591005,39.9070421],[20.7592141,39.9068652],[20.7595297,39.9066218],[20.7594673,39.9064579],[20.758979,39.906147],[20.7588065,39.9058359],[20.7576506,39.9052992],[20.7575773,39.905117],[20.7576969,39.9048141],[20.7576695,39.9046512],[20.7571653,39.9044299],[20.7569213,39.9039006],[20.7566495,39.9037129],[20.7563843,39.9036334],[20.7562318,39.9033949],[20.7562277,39.9032327],[20.756036,39.9030832],[20.7560283,39.9027497],[20.7558954,39.9025929],[20.7559139,39.9024493],[20.7560959,39.9023103],[20.7560685,39.9021474],[20.755565,39.9016649],[20.7554686,39.9012298],[20.7547909,39.9004723],[20.7546482,39.9000269],[20.754792,39.8997067],[20.75472,39.8994975],[20.7552638,39.89863],[20.7556675,39.898254],[20.7560939,39.8981398],[20.7564678,39.8978981],[20.756523,39.8977195],[20.756756,39.8974918],[20.7567129,39.8971663],[20.7568381,39.8969897],[20.7570547,39.8968607],[20.7573337,39.8964001],[20.7572847,39.8962005],[20.7571687,39.8961793],[20.7572322,39.896073],[20.757201,39.8954956],[20.7570801,39.8953301],[20.7571776,39.8949996],[20.7571143,39.8948537],[20.7572275,39.8946857],[20.7571451,39.8944492],[20.7573636,39.894032],[20.7579708,39.8935536],[20.7579576,39.893337],[20.7581226,39.8930624],[20.7580428,39.892772],[20.7577669,39.892422],[20.7575329,39.891929],[20.7575236,39.8916315],[20.7577257,39.8913129],[20.7578773,39.8905785],[20.757684,39.8902128],[20.7576551,39.8898337],[20.7573107,39.889698],[20.7570941,39.8888362],[20.757136,39.8886933],[20.7576376,39.8882209],[20.7579512,39.8877703],[20.7585792,39.8873465],[20.7585877,39.8871666],[20.7584278,39.8868379],[20.7581703,39.8865965],[20.7582142,39.8864086],[20.7583878,39.8861973],[20.7581354,39.8858479],[20.7582715,39.8856896],[20.7586324,39.8854745],[20.7586685,39.8852008],[20.7584071,39.8850403],[20.7582876,39.8853433],[20.7578955,39.8854764],[20.7580216,39.8852818],[20.757897,39.8851972],[20.7577293,39.8852826],[20.7577711,39.8851396],[20.757615,39.8852254],[20.7576106,39.8850721],[20.7574447,39.8848693],[20.7575316,39.8847636],[20.7576604,39.8847582],[20.7576228,39.8843158],[20.7574547,39.8839148],[20.7575753,39.8838371],[20.757371,39.8837053],[20.7576801,39.8835968],[20.7576827,39.8835429],[20.7575347,39.8834577],[20.7573479,39.8834524],[20.7572343,39.8836294],[20.7572027,39.8835565],[20.7571405,39.8836358],[20.7571067,39.8831124],[20.7568797,39.8832142],[20.7569576,39.882802],[20.7568867,39.882818],[20.7569602,39.882748],[20.7568421,39.8827717],[20.7568706,39.8826644],[20.7567254,39.8827685],[20.7567082,39.8823897],[20.7565479,39.8825653],[20.7565634,39.8819893],[20.7564054,39.8818678],[20.7562969,39.8819368],[20.7561545,39.8822301],[20.7560322,39.8818483],[20.7559354,39.8819177],[20.7557626,39.8816156],[20.7556681,39.8818832],[20.7554391,39.8815345],[20.7552881,39.8815122],[20.7549847,39.8812515],[20.7546846,39.8811711],[20.7540899,39.8811364],[20.7536662,39.8811966],[20.753382,39.8810265],[20.7530881,39.8813065],[20.7530588,39.8814318],[20.752726,39.8815486],[20.7524345,39.8815314],[20.7523243,39.8816364],[20.7522109,39.8815611],[20.7521158,39.8815945],[20.7520927,39.881837],[20.7518148,39.8820274],[20.7516639,39.8821043],[20.7513962,39.8820787],[20.750691,39.882158],[20.7505432,39.8820683],[20.7501934,39.8820495],[20.7498751,39.8821036],[20.7492964,39.8819793],[20.748999,39.8820295]]},{"id":17006,"author":"AnaDigit","name_GR":"Epirus Trail: \u03a0\u03c5\u03c1\u03c3\u03cc\u03b3\u03b9\u03b1\u03bd\u03bd\u03b7-\u0391\u03c3\u03b7\u03bc\u03bf\u03c7\u03ce\u03c1\u03b9","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Pyrsogiani_Asimochori","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11192,"name_EN":"Epirus Trail: Pyrsogiani-Asimochori","description_EN":"","ascent_time":260,"descent_time":250,"marker":"Red_dots","level":9,"ascent":673,"descent":502,"maxelev":1247,"minelev":808,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.75285 40.21234,20.81157 40.25961)","views":34,"millestones":"0,20.8106120,40.2123126#1,20.8103669,40.2187288#2,20.8028670,40.2238931#3,20.7963648,40.2272393#4,20.7907004,40.2341005#5,20.7892810,40.2385658#6,20.7850914,40.2428191#7,20.7747805,40.2431712#8,20.7651371,40.2454855#9,20.7609842,40.2521014#10,20.7561194,40.2536456#11.2,20.7528516,40.2596129","x":20.7873048,"y":40.2420211,"coor":[[20.810612,40.2123126],[20.8103084,40.2124484],[20.8102928,40.2125831],[20.8104721,40.2127681],[20.8107763,40.2127945],[20.8110105,40.2129586],[20.811038,40.2129999],[20.8114005,40.2140367],[20.811473,40.2142954],[20.8114571,40.2143851],[20.8111625,40.2144039],[20.8106663,40.2142101],[20.8103403,40.2143993],[20.8101731,40.2142055],[20.810011,40.214156],[20.809782,40.214501],[20.8099018,40.2147024],[20.8100647,40.215486],[20.8100042,40.2160248],[20.8099006,40.2162291],[20.8099466,40.2165006],[20.8098477,40.2166059],[20.8097743,40.216694],[20.809817,40.2170374],[20.8101777,40.2173626],[20.810082,40.2176482],[20.8098234,40.2179023],[20.8098023,40.2180999],[20.8099803,40.2185641],[20.8106021,40.2188335],[20.8108065,40.2192354],[20.8107754,40.2193967],[20.809932,40.2198418],[20.8085703,40.2200654],[20.8079164,40.2204797],[20.8072232,40.2204786],[20.8067704,40.2208624],[20.8059522,40.22102],[20.8053394,40.2213093],[20.8050767,40.2214731],[20.8044746,40.222033],[20.8041512,40.2226635],[20.8038169,40.2231001],[20.8038482,40.2234342],[20.8037853,40.2235226],[20.8033107,40.2238697],[20.8026627,40.2239059],[20.8022308,40.2243443],[20.8018291,40.2246394],[20.8018122,40.2249992],[20.8017015,40.2251042],[20.8014642,40.2251517],[20.8013016,40.2251112],[20.8010771,40.2248888],[20.80056,40.2246403],[20.7995034,40.2246201],[20.7993876,40.2248331],[20.7990045,40.2249846],[20.7988419,40.2249441],[20.7986786,40.2246693],[20.7982743,40.2250184],[20.7977304,40.2248412],[20.7976122,40.224856],[20.7975978,40.2251618],[20.7974879,40.2252488],[20.7965323,40.2253304],[20.7959475,40.2255214],[20.7960965,40.2258498],[20.796352,40.2261631],[20.7964908,40.2267074],[20.7964711,40.226878],[20.79632,40.2270899],[20.7963912,40.2273261],[20.7961935,40.22778],[20.7958899,40.2279877],[20.7956575,40.2284316],[20.7952272,40.228834],[20.7950736,40.2291],[20.7942594,40.2294197],[20.7940627,40.2296034],[20.7935462,40.2298413],[20.7933926,40.2301072],[20.7929998,40.2302134],[20.792993,40.2303573],[20.7932929,40.2307259],[20.7933799,40.2311247],[20.7933323,40.2313845],[20.7931685,40.2315691],[20.7921149,40.2324766],[20.7917414,40.2331688],[20.7917639,40.2334397],[20.7916876,40.2336627],[20.7914231,40.23384],[20.7911698,40.2339771],[20.7906223,40.234124],[20.7901622,40.2344085],[20.7896055,40.2345011],[20.7893044,40.2346549],[20.7892003,40.2348682],[20.7889571,40.2350416],[20.7891855,40.2356784],[20.7890981,40.2360362],[20.7890445,40.236323],[20.7887119,40.236647],[20.7887692,40.2368513],[20.7886374,40.2371538],[20.7883455,40.2373619],[20.7880595,40.237444],[20.7868538,40.2375907],[20.7867674,40.2376783],[20.7869243,40.2378898],[20.7871448,40.23795],[20.7872349,40.2380336],[20.7875601,40.2381147],[20.7876386,40.2379457],[20.7877807,40.2379226],[20.7880904,40.2380844],[20.7883372,40.2388028],[20.78853,40.2389793],[20.7887989,40.2392299],[20.7890875,40.2387696],[20.7891777,40.2386009],[20.7895719,40.2384678],[20.7898201,40.2384386],[20.7900393,40.2385258],[20.7899265,40.2387974],[20.7899741,40.2390329],[20.7899123,40.2393464],[20.7901382,40.2395914],[20.7895482,40.2398902],[20.7892193,40.2401333],[20.7889855,40.2402304],[20.7885504,40.2402363],[20.7880679,40.2402995],[20.7879635,40.2402695],[20.787845,40.2405905],[20.7877427,40.2405156],[20.7876772,40.2412524],[20.7877718,40.2414892],[20.7877437,40.2419342],[20.7874972,40.2419274],[20.7873048,40.2420211],[20.7869764,40.2416337],[20.7868333,40.2411794],[20.7867406,40.2412489],[20.7859643,40.2418578],[20.7856297,40.2419746],[20.7852938,40.2426137],[20.7848274,40.2430826],[20.7846391,40.2430864],[20.7835874,40.2434535],[20.7831978,40.2434156],[20.7828988,40.2435244],[20.7820456,40.2436718],[20.7812709,40.2436502],[20.7810534,40.243527],[20.7800885,40.243302],[20.7798748,40.2430979],[20.7790467,40.2427146],[20.7786304,40.2423247],[20.7782298,40.242318],[20.7777886,40.2424498],[20.7774617,40.2424047],[20.7769928,40.2426258],[20.7769601,40.2425709],[20.7767589,40.2426013],[20.7763935,40.2428703],[20.7761419,40.2429714],[20.7748351,40.243016],[20.774767,40.2432123],[20.774561,40.2433416],[20.7743762,40.2432734],[20.7737799,40.2434549],[20.7730077,40.2433793],[20.7726765,40.2434241],[20.7720642,40.2436953],[20.7718633,40.2437167],[20.7717026,40.2438833],[20.7714057,40.2439471],[20.771185,40.2441391],[20.7711052,40.244335],[20.7707366,40.2444238],[20.7707989,40.2445966],[20.7705613,40.2448962],[20.7698177,40.2452087],[20.769524,40.2454527],[20.7691114,40.2454772],[20.7688815,40.2456149],[20.7687182,40.2458355],[20.7685129,40.2457037],[20.7682543,40.2457055],[20.7680037,40.2455363],[20.7677355,40.2454928],[20.7674371,40.2453404],[20.767201,40.2453608],[20.7670867,40.2452945],[20.7669567,40.2453089],[20.7663184,40.2451379],[20.7658328,40.2452144],[20.7656138,40.2453704],[20.7651617,40.2454839],[20.7649613,40.2454963],[20.7647409,40.2454361],[20.764521,40.2456101],[20.7639676,40.2456306],[20.7637176,40.2456957],[20.7636484,40.2461621],[20.7635263,40.2464064],[20.7634656,40.2469135],[20.7633766,40.2470552],[20.7628664,40.2474012],[20.7627643,40.2475694],[20.763381,40.2482217],[20.7631596,40.2486748],[20.7631324,40.2489983],[20.7630124,40.249049],[20.7627433,40.2490235],[20.7626282,40.2492184],[20.7622471,40.249568],[20.761832,40.2496464],[20.7611858,40.2501327],[20.7609874,40.2505955],[20.7611016,40.2511572],[20.7612757,40.2514503],[20.7613015,40.2516491],[20.76101,40.2520913],[20.7607944,40.2521754],[20.7605055,40.251825],[20.7601619,40.2516352],[20.7596958,40.2515501],[20.7591251,40.2511918],[20.7584371,40.2515914],[20.7582593,40.2516224],[20.7578649,40.2515123],[20.7576879,40.2515253],[20.7575284,40.251665],[20.7575333,40.2518092],[20.7576216,40.2519288],[20.7585596,40.2522253],[20.7585779,40.2523339],[20.7580176,40.2524983],[20.7569196,40.253089],[20.7562075,40.2532312],[20.7561219,40.2533008],[20.7561424,40.2533644],[20.7562815,40.2534044],[20.7574942,40.2533663],[20.7575616,40.2534313],[20.7575338,40.2535206],[20.7564543,40.2537245],[20.7561408,40.2536436],[20.7559873,40.2536573],[20.7556714,40.2541168],[20.7549378,40.2547087],[20.7545884,40.2551312],[20.7544832,40.2551688],[20.7544735,40.2556684],[20.754578,40.2559416],[20.754655,40.2560518],[20.7548076,40.2560561],[20.7548142,40.2561643],[20.7549512,40.2562493],[20.7548312,40.2562999],[20.7547539,40.2564419],[20.754737,40.2565495],[20.7548571,40.256742],[20.7547377,40.2570269],[20.7550157,40.2573589],[20.7550001,40.2574395],[20.7551632,40.2574711],[20.7551106,40.2575868],[20.7554047,40.2578292],[20.7557716,40.258515],[20.7556255,40.2585424],[20.7549933,40.2584887],[20.7545073,40.2583534],[20.7541597,40.2580014],[20.7539379,40.2579682],[20.753839,40.2585598],[20.7535187,40.2592579],[20.7534942,40.2594508],[20.7532097,40.2595239],[20.7528516,40.2596129]]},{"id":17007,"author":"AnaDigit","name_GR":"Epirus Trail: \u03a3\u03b1\u03c1\u03b1\u03bd\u03c4\u03ac\u03c0\u03bf\u03c1\u03bf\u03c2-\u039b\u03bf\u03c5\u03c4\u03c1\u03ac \u0391\u03bc\u03b1\u03c1\u03ac\u03bd\u03c4\u03bf\u03c5","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Sarantaporos_Amarantos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":14657,"name_EN":"Epirus Trail: Sarantaporos-Amarantos","description_EN":"","ascent_time":375,"descent_time":340,"marker":"Red_dots","level":9,"ascent":1082,"descent":266,"maxelev":1261,"minelev":435,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.71709 40.1134,20.76273 40.17676)","views":41,"millestones":"0,20.7206850,40.1122112#1,20.7260959,40.1174854#2,20.7332672,40.1220211#3,20.7409887,40.1266969#4,20.7450191,40.1329080#5,20.7519280,40.1311414#6,20.7616781,40.1322140#7,20.7591470,40.1402323#8,20.7547982,40.1461196#9,20.7482558,40.1512542#10,20.7394758,40.1517626#11,20.7314170,40.1522747#12,20.7272390,40.1594507#13,20.7288484,40.1657899#14.7,20.7296024,40.1771160","x":20.7552069,"y":40.1460648,"coor":[[20.720685,40.1122112],[20.7210476,40.1128205],[20.7214321,40.112998],[20.7215031,40.1132792],[20.721419,40.1135651],[20.7211209,40.1136647],[20.7204189,40.1141132],[20.7202035,40.1141746],[20.7201011,40.1143519],[20.7202339,40.1145178],[20.7206982,40.114621],[20.721051,40.1148472],[20.7213279,40.1151883],[20.7216104,40.1154124],[20.7219906,40.1155583],[20.7222709,40.1155843],[20.7227833,40.1154186],[20.7232901,40.11537],[20.7235652,40.1155038],[20.7238596,40.1155302],[20.7247228,40.1163653],[20.7249411,40.1164615],[20.7262358,40.117597],[20.7261994,40.1179653],[20.7273286,40.1183935],[20.7276098,40.1184015],[20.7279075,40.118554],[20.7286487,40.1187551],[20.7286947,40.118869],[20.7288095,40.1188272],[20.7290885,40.1188801],[20.7292356,40.1189924],[20.7294222,40.1190157],[20.7296302,40.1193278],[20.7298636,40.1193524],[20.7298541,40.1195503],[20.7300625,40.1196102],[20.7300894,40.1197821],[20.7304357,40.1199],[20.7304856,40.1199599],[20.7303356,40.120397],[20.730238,40.1204754],[20.730432,40.1205889],[20.730354,40.1207488],[20.7305536,40.1207455],[20.7304877,40.1208967],[20.7306022,40.120954],[20.730768,40.1209227],[20.7306708,40.120992],[20.7306774,40.1211002],[20.7308223,40.1210143],[20.7314958,40.1211594],[20.7316855,40.1213629],[20.7316943,40.1216694],[20.7317616,40.1217344],[20.7322736,40.1218209],[20.7327545,40.1220686],[20.7332965,40.1220209],[20.7337332,40.1222134],[20.7339802,40.1224455],[20.734153,40.1227566],[20.7342784,40.1228322],[20.7345123,40.1228478],[20.7352465,40.1227064],[20.735798,40.1224608],[20.7360093,40.1224577],[20.7362637,40.122537],[20.7364794,40.1226872],[20.7368294,40.1232194],[20.7369663,40.1237908],[20.7374304,40.1241461],[20.7374231,40.1245422],[20.7377297,40.1250012],[20.7381875,40.1249961],[20.7383594,40.125082],[20.738471,40.1252023],[20.7385884,40.1256919],[20.7388949,40.1259077],[20.7396362,40.1261088],[20.7401393,40.1263842],[20.7407729,40.126384],[20.7413991,40.1272753],[20.7417316,40.1274378],[20.7420577,40.1277352],[20.7426518,40.1285626],[20.7432456,40.1296421],[20.7437271,40.130124],[20.7438298,40.1306764],[20.7436655,40.1311671],[20.743638,40.1317428],[20.7434104,40.1323309],[20.7433019,40.1331294],[20.7434062,40.1334026],[20.7436345,40.1335351],[20.7439115,40.133633],[20.7441623,40.133541],[20.744335,40.1333657],[20.745001,40.1329341],[20.7451611,40.1326999],[20.7459025,40.1321623],[20.7462144,40.1317748],[20.7465017,40.1316567],[20.7470999,40.1319078],[20.7473608,40.1320952],[20.747466,40.1323504],[20.7475606,40.1330736],[20.7479364,40.1330662],[20.7480966,40.1331517],[20.748337,40.1330324],[20.7492194,40.1329851],[20.749646,40.132898],[20.7500666,40.1329369],[20.7505536,40.1330586],[20.7504493,40.1327855],[20.7503738,40.1321529],[20.7507231,40.1319645],[20.7507143,40.131658],[20.7508552,40.1314864],[20.751139,40.1314403],[20.7514208,40.1316824],[20.7515146,40.131685],[20.751569,40.1312812],[20.7519995,40.1311132],[20.752726,40.1311336],[20.7529661,40.1312664],[20.7533837,40.1313682],[20.7534442,40.1315771],[20.7538973,40.1316708],[20.7546039,40.1316186],[20.7550955,40.1313982],[20.755615,40.1313317],[20.7558468,40.1313923],[20.7562921,40.1314047],[20.7570298,40.1311912],[20.7571462,40.1307171],[20.7580415,40.1306431],[20.7582384,40.1304505],[20.7584394,40.1304201],[20.7588084,40.1305566],[20.7591578,40.1306114],[20.759928,40.1309482],[20.7601755,40.1311713],[20.7604634,40.1312874],[20.7609745,40.131644],[20.7611383,40.1319008],[20.7618235,40.1322983],[20.7618258,40.1324965],[20.7614321,40.1336204],[20.7614751,40.1337026],[20.7617091,40.1337182],[20.7617014,40.1338801],[20.7616221,40.134067],[20.7610367,40.1342848],[20.7608261,40.1347653],[20.7609437,40.135255],[20.7607445,40.135988],[20.7607914,40.1364847],[20.7605293,40.137306],[20.7606054,40.1374342],[20.7606537,40.1381472],[20.7604599,40.13852],[20.7601398,40.1388353],[20.7597341,40.1397157],[20.7590114,40.1403529],[20.7589028,40.1409083],[20.7588923,40.1413764],[20.7585666,40.1418086],[20.758245,40.1419077],[20.7580871,40.1420204],[20.7580907,40.1421916],[20.7582102,40.1423931],[20.7581795,40.1425454],[20.7577067,40.1431086],[20.7574873,40.1435257],[20.7576048,40.1440154],[20.7582973,40.1447554],[20.7582753,40.1449709],[20.7578903,40.1456627],[20.7573046,40.1461327],[20.7568291,40.1460113],[20.7565672,40.1458418],[20.7563232,40.1457899],[20.7560958,40.1458826],[20.7557669,40.1461346],[20.7554613,40.146144],[20.7554061,40.1460704],[20.7552069,40.1460648],[20.754758,40.1461243],[20.7543081,40.1464539],[20.7537703,40.146655],[20.7537332,40.1469422],[20.7538284,40.1471611],[20.753509,40.1474583],[20.753177,40.1475301],[20.7529357,40.1476674],[20.7526921,40.1476065],[20.7519871,40.1476228],[20.7518223,40.1478793],[20.7519388,40.1481438],[20.7519068,40.1483231],[20.7515109,40.1485011],[20.7513864,40.1486507],[20.7514047,40.1487593],[20.7516227,40.1488645],[20.7516342,40.149117],[20.7517492,40.1491653],[20.7518805,40.1493671],[20.7514911,40.1494103],[20.7506399,40.1497827],[20.7503306,40.1501162],[20.7499506,40.1499614],[20.7497271,40.1499732],[20.7493531,40.150431],[20.7491647,40.1504438],[20.7490432,40.1505304],[20.7487581,40.1508467],[20.7484079,40.151053],[20.7481823,40.1513529],[20.7476679,40.1515546],[20.7473055,40.1517696],[20.7462853,40.1527317],[20.7459782,40.1532634],[20.74579,40.1533933],[20.745552,40.1532154],[20.7451578,40.1531143],[20.7447958,40.1533202],[20.744491,40.1533117],[20.7442474,40.1532508],[20.743999,40.1530456],[20.7436759,40.1529284],[20.7432548,40.1528986],[20.7430047,40.1529726],[20.7425974,40.1526549],[20.7418725,40.1530848],[20.7417184,40.1531165],[20.7416215,40.1529336],[20.7410639,40.1525667],[20.7406905,40.1525201],[20.7405736,40.1522646],[20.7403699,40.1521058],[20.7401155,40.1520265],[20.7399683,40.1519143],[20.7394568,40.1518098],[20.7394967,40.1517119],[20.7394033,40.151457],[20.7395573,40.1511822],[20.7397496,40.1510885],[20.7397239,40.1508896],[20.7394877,40.150919],[20.739037,40.1507712],[20.7385632,40.1503705],[20.7379271,40.1501724],[20.7377808,40.1500422],[20.7377027,40.1502021],[20.737335,40.1502818],[20.736588,40.1506841],[20.7363649,40.1506868],[20.7359732,40.1505317],[20.7354988,40.1506354],[20.7352309,40.1505918],[20.7347677,40.1507048],[20.7347591,40.1508847],[20.7343331,40.1507105],[20.7341451,40.1507142],[20.7339791,40.1508221],[20.7337833,40.1507446],[20.7336216,40.150785],[20.7333882,40.1512468],[20.7332406,40.1513867],[20.7326156,40.1516933],[20.7314587,40.152075],[20.7313971,40.1523795],[20.7311085,40.1527676],[20.7309676,40.1534076],[20.7302926,40.1540191],[20.7301659,40.1542136],[20.7301859,40.1542863],[20.7304316,40.1543022],[20.730462,40.1544021],[20.7301183,40.1547167],[20.7301708,40.1548443],[20.730101,40.1550765],[20.7298939,40.1552327],[20.730128,40.1552484],[20.7302066,40.1553226],[20.7299874,40.1554876],[20.729957,40.1556308],[20.7296401,40.1558741],[20.7297701,40.1563461],[20.7296121,40.1567019],[20.7293651,40.1569561],[20.7294772,40.1570674],[20.729265,40.1575748],[20.7289241,40.1581686],[20.7282077,40.1584186],[20.7277827,40.1587128],[20.7277027,40.1588907],[20.7272464,40.1593461],[20.7272183,40.1597371],[20.7273529,40.159867],[20.7271901,40.1600786],[20.7271832,40.1602225],[20.7270329,40.1608352],[20.7272227,40.161282],[20.7273968,40.1613229],[20.7274863,40.1614155],[20.727532,40.1617321],[20.7266356,40.1619679],[20.7269244,40.1620661],[20.7269074,40.1621737],[20.7266928,40.1622938],[20.7274708,40.1622257],[20.7278443,40.1622723],[20.727958,40.1623476],[20.728104,40.16273],[20.72806,40.163035],[20.7282867,40.1632035],[20.7285504,40.1637244],[20.7289951,40.1639261],[20.728815,40.1642543],[20.7288571,40.1643545],[20.7291785,40.1645077],[20.7289176,40.1648066],[20.7289393,40.1650864],[20.7291417,40.1652723],[20.7290481,40.165756],[20.7288722,40.1657511],[20.7287094,40.1660122],[20.7288961,40.1660355],[20.7287685,40.166248],[20.7288606,40.1662866],[20.7288901,40.1664046],[20.729096,40.1665185],[20.7289914,40.1667407],[20.7291052,40.166816],[20.7290983,40.1669599],[20.7289624,40.1671002],[20.7290419,40.1671564],[20.7291227,40.1674289],[20.7290613,40.1674857],[20.728357,40.1677721],[20.7285527,40.1679532],[20.7289105,40.1680804],[20.729086,40.1683376],[20.7295029,40.1684575],[20.7296532,40.16875],[20.7298917,40.1689188],[20.7298345,40.1693766],[20.7299296,40.1695954],[20.7295332,40.1700256],[20.7293396,40.1701462],[20.7289976,40.1709111],[20.7290349,40.1711103],[20.7287697,40.1714991],[20.7287881,40.1720941],[20.7288784,40.1721687],[20.7290903,40.1721567],[20.7291825,40.1724385],[20.7290396,40.1727227],[20.7290575,40.1730835],[20.7288747,40.1732224],[20.7289352,40.1736745],[20.728775,40.1738321],[20.7285723,40.1743848],[20.7286605,40.1747476],[20.7285537,40.1747716],[20.7285288,40.1748744],[20.7286973,40.17596],[20.7290026,40.1762029],[20.729193,40.1766406],[20.7293274,40.1769731],[20.7296024,40.177116]]},{"id":17009,"author":"AnaDigit","name_GR":"Epirus Trail: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a3\u03bc\u03cc\u03bb\u03b9\u03ba\u03b1-\u0392\u03c1\u03c5\u03c3\u03bf\u03c7\u03ce\u03c1\u03b9","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_SmolikasRef_Vrysochori","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":11766,"name_EN":"Epirus Trail: Smolikas Refuge-Vrysochori","description_EN":"","ascent_time":265,"descent_time":280,"marker":"No_marks","level":9,"ascent":488,"descent":1238,"maxelev":1704,"minelev":619,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.87397 40.00028,20.89276 40.0694)","views":58,"millestones":"0,20.8895987,40.0697309#1,20.8859052,40.0630735#2,20.8865465,40.0564957#3,20.8847288,40.0487756#4,20.8874340,40.0431745#5,20.8896081,40.0359373#6,20.8872397,40.0304692#7,20.8895111,40.0251820#8,20.8882203,40.0197674#9,20.8817830,40.0141975#10,20.8772623,40.0084907#11,20.8839346,40.0026309#11.8,20.8868237,40.0001194","x":20.8881681,"y":40.0301502,"coor":[[20.8895987,40.0697309],[20.8894775,40.0698178],[20.8893879,40.0697253],[20.8894928,40.0692237],[20.8892592,40.0689472],[20.8891468,40.0685839],[20.8888454,40.0682515],[20.8886048,40.0681279],[20.8883644,40.0677432],[20.888023,40.0675178],[20.8874985,40.0674497],[20.887493,40.0673865],[20.8873685,40.0670318],[20.8871585,40.0670082],[20.8873181,40.0668503],[20.887195,40.0667209],[20.8871891,40.0665947],[20.8879505,40.0660927],[20.8877761,40.066061],[20.8877827,40.0659171],[20.8875918,40.0657318],[20.8876447,40.0650847],[20.8874555,40.0650436],[20.8874101,40.0647541],[20.8872125,40.0644606],[20.8871177,40.0637104],[20.8869728,40.0635128],[20.8862986,40.0633866],[20.8859028,40.0630697],[20.8857004,40.0626229],[20.8852662,40.062377],[20.8848492,40.0622667],[20.8845462,40.0619703],[20.8844786,40.0616533],[20.8842208,40.0613941],[20.8840811,40.0613723],[20.8840985,40.0612467],[20.8839229,40.061242],[20.8837999,40.0611126],[20.8835799,40.0610526],[20.8835691,40.0609397],[20.8838106,40.0607841],[20.8837979,40.0605496],[20.8836481,40.0604915],[20.8836062,40.0603823],[20.8841816,40.0603617],[20.8844732,40.0601354],[20.8845533,40.0599214],[20.8846979,40.0598352],[20.8848338,40.0594245],[20.8853175,40.058843],[20.8853475,40.0586997],[20.8852107,40.058615],[20.8851519,40.0583612],[20.8852638,40.0582201],[20.8851485,40.0581539],[20.8851787,40.0577494],[20.8858524,40.0573712],[20.886114,40.0572882],[20.8864323,40.0569905],[20.8864761,40.0568025],[20.8865945,40.0563103],[20.886595,40.0555267],[20.8867399,40.0549181],[20.8867321,40.0545756],[20.8865277,40.0541738],[20.8870407,40.0537192],[20.8871349,40.0534515],[20.8862165,40.0522558],[20.886257,40.0521398],[20.8865634,40.052103],[20.8866155,40.0519873],[20.8864351,40.0513159],[20.8856875,40.050233],[20.8856529,40.0499618],[20.8857613,40.0496405],[20.885671,40.049566],[20.8855931,40.0493207],[20.8854426,40.0492806],[20.8852988,40.0493488],[20.8852368,40.049167],[20.8848552,40.0487964],[20.8847498,40.0487936],[20.8845342,40.0486076],[20.8845077,40.0484178],[20.8847785,40.048389],[20.8848331,40.0482193],[20.8850173,40.0480351],[20.8851413,40.0473719],[20.8850764,40.0472531],[20.8853205,40.0467823],[20.8852593,40.0465825],[20.8854083,40.0458839],[20.8853455,40.0457201],[20.8856701,40.0455397],[20.8858931,40.0452754],[20.8861718,40.0450758],[20.886142,40.0449579],[20.885835,40.0447514],[20.886733,40.0448477],[20.8870012,40.0451341],[20.8870157,40.0450489],[20.8871537,40.0451067],[20.8873554,40.0447968],[20.8871956,40.0447025],[20.8872054,40.0444866],[20.8872789,40.0444165],[20.8873523,40.0445175],[20.8875053,40.0445036],[20.8875026,40.0443054],[20.8876932,40.0442385],[20.8877252,40.0440502],[20.8876073,40.044065],[20.8875882,40.0440105],[20.8875923,40.0439205],[20.8877247,40.043843],[20.8876812,40.0437698],[20.8877629,40.0435197],[20.8876669,40.04331],[20.8876092,40.0432904],[20.8876152,40.0434167],[20.8874363,40.0431912],[20.8873873,40.0428206],[20.8874121,40.0427852],[20.8875806,40.0422493],[20.8874761,40.0422285],[20.8874842,40.042026],[20.8873146,40.0421476],[20.8869514,40.0421468],[20.886586,40.0416776],[20.8867685,40.0415294],[20.8869358,40.0412006],[20.88693,40.0408132],[20.8870125,40.0405452],[20.8865891,40.0400654],[20.8865835,40.0399301],[20.8869711,40.0396523],[20.8871857,40.0393158],[20.887589,40.0392095],[20.8879148,40.0390021],[20.8883344,40.0380226],[20.8888832,40.0375509],[20.8889628,40.0373459],[20.8889689,40.0370624],[20.8892298,40.0367361],[20.8896194,40.0358999],[20.8897459,40.0358312],[20.8894757,40.0355898],[20.8894705,40.0354455],[20.8893773,40.035434],[20.8894081,40.0352727],[20.8891705,40.0350861],[20.8892162,40.0348532],[20.8891493,40.0347793],[20.8889168,40.034737],[20.8888983,40.0346285],[20.8889815,40.0346037],[20.8889519,40.0342246],[20.8887933,40.0341032],[20.8886625,40.0336313],[20.8882639,40.0333774],[20.888291,40.0332971],[20.8881555,40.0331853],[20.8882181,40.0330969],[20.8879798,40.0330905],[20.8879973,40.033028],[20.8881757,40.0329697],[20.8878122,40.0325726],[20.8877526,40.0323368],[20.8877777,40.0323015],[20.8879282,40.0323415],[20.8879283,40.0320803],[20.8880152,40.0319746],[20.8878729,40.0317546],[20.8874267,40.0317471],[20.8865953,40.0317337],[20.8856812,40.0312227],[20.8859159,40.0309814],[20.886274,40.0308379],[20.8863551,40.0308581],[20.8863867,40.0306788],[20.8868166,40.0305012],[20.8868207,40.0304112],[20.8870446,40.0303992],[20.887402,40.0305259],[20.887812,40.0305279],[20.8878448,40.0303036],[20.8880034,40.0301638],[20.8881681,40.0301502],[20.8883252,40.0300463],[20.8883559,40.029885],[20.8885586,40.0298094],[20.8885735,40.0297377],[20.8878807,40.0295975],[20.8879023,40.0293819],[20.8880254,40.0292501],[20.8879476,40.0291579],[20.8880566,40.0290798],[20.8878622,40.0289755],[20.8878779,40.0288859],[20.8879974,40.028835],[20.8879551,40.0287348],[20.8882918,40.0285457],[20.8885011,40.0280649],[20.8883418,40.0279616],[20.8884779,40.0278031],[20.8884344,40.0277299],[20.8880708,40.0277381],[20.8877932,40.0276586],[20.8878505,40.0276376],[20.8878454,40.0274933],[20.8877098,40.0273816],[20.8877599,40.0273109],[20.8875784,40.0271799],[20.8877827,40.0270683],[20.8878418,40.0269078],[20.88843,40.0270046],[20.8885573,40.026891],[20.8888749,40.0268635],[20.889113,40.0267798],[20.8892774,40.026514],[20.8894795,40.0262447],[20.8897819,40.0260366],[20.8898219,40.0259296],[20.889607,40.0258878],[20.8896031,40.0257166],[20.8896758,40.0256645],[20.8894649,40.0254066],[20.8895558,40.0252109],[20.8892067,40.0249853],[20.889421,40.0249911],[20.8895295,40.024922],[20.8896338,40.0246906],[20.8897383,40.0247114],[20.8896939,40.0246561],[20.8899259,40.0247074],[20.8898752,40.0245349],[20.88982,40.0244974],[20.8898875,40.0243011],[20.8899928,40.0243039],[20.8900905,40.0242164],[20.8903866,40.0244045],[20.8903578,40.0245209],[20.8904398,40.0245231],[20.8905871,40.0243739],[20.8903681,40.0242959],[20.8903592,40.0241966],[20.8890812,40.023811],[20.8889445,40.0237263],[20.8889159,40.0235814],[20.8892666,40.0226315],[20.888678,40.0224356],[20.8886669,40.022165],[20.8885295,40.0218371],[20.8886954,40.0217965],[20.8884303,40.0216993],[20.8882303,40.0214597],[20.8881125,40.0214746],[20.8880096,40.0214178],[20.888048,40.0213467],[20.8878396,40.0210349],[20.8878901,40.0209552],[20.8878114,40.020881],[20.887864,40.0207563],[20.8878079,40.0207008],[20.8878681,40.0206664],[20.8878483,40.0205848],[20.8879662,40.0205699],[20.88789,40.0204418],[20.8879731,40.020417],[20.8880035,40.0202647],[20.8880098,40.0198685],[20.8882612,40.0197492],[20.8880978,40.0197358],[20.8879841,40.0196606],[20.8880173,40.0194454],[20.887733,40.0192576],[20.8875999,40.0190919],[20.8875295,40.0188378],[20.8873915,40.01878],[20.8872378,40.0188119],[20.8866471,40.0181475],[20.8865317,40.0181084],[20.8866612,40.0175804],[20.8865418,40.0174151],[20.8866344,40.017323],[20.8865574,40.0172128],[20.8857911,40.0168049],[20.8857726,40.0166963],[20.8858816,40.0166182],[20.8858665,40.0164511],[20.8856565,40.0161752],[20.8853379,40.0159685],[20.8850371,40.0156271],[20.8842527,40.0151016],[20.8841693,40.0148742],[20.8835901,40.0147325],[20.8830925,40.0143408],[20.8827815,40.0142243],[20.8825546,40.0138039],[20.881929,40.0141654],[20.8815739,40.0142459],[20.881326,40.0145454],[20.8812065,40.0145963],[20.8810577,40.0145202],[20.8808224,40.0140275],[20.8797669,40.0140531],[20.8794434,40.0139543],[20.8792681,40.0136883],[20.8793272,40.0134197],[20.8792326,40.013183],[20.8793496,40.0121593],[20.8792108,40.0121195],[20.8787754,40.0121618],[20.8783791,40.0118629],[20.8781531,40.0114244],[20.8779679,40.010861],[20.8778224,40.010713],[20.8775135,40.0105515],[20.8771927,40.0101375],[20.8770143,40.0096823],[20.8767087,40.0094489],[20.8768087,40.0091949],[20.877212,40.0088275],[20.8771818,40.0087231],[20.8772626,40.008491],[20.877184,40.0084169],[20.8772583,40.0083288],[20.8772142,40.0080123],[20.8773256,40.0078802],[20.8775044,40.007813],[20.8778174,40.0073711],[20.8783077,40.0071501],[20.8784971,40.006849],[20.8788155,40.0068035],[20.8789429,40.0063205],[20.8788709,40.0061024],[20.8789581,40.0059877],[20.8789916,40.0055697],[20.8790316,40.0054627],[20.8796331,40.0053708],[20.8799387,40.0050908],[20.8802022,40.0049628],[20.880254,40.0048561],[20.8810392,40.004589],[20.8812503,40.0043245],[20.8813185,40.0043714],[20.8814432,40.0043567],[20.8815208,40.0041967],[20.8817835,40.0040867],[20.8818692,40.0037467],[20.8823119,40.0035424],[20.8824738,40.0033306],[20.8828192,40.0032048],[20.8829085,40.0030451],[20.88319,40.0030346],[20.8833019,40.0028935],[20.8837113,40.0029046],[20.8839252,40.0028382],[20.8839358,40.0026043],[20.8840503,40.0026615],[20.884307,40.0024252],[20.88461,40.0023388],[20.8845954,40.001852],[20.8839441,40.0014922],[20.8840135,40.0012778],[20.8840628,40.0012521],[20.8846514,40.0011869],[20.8849359,40.0011495],[20.8850816,40.0011084],[20.8852414,40.0009416],[20.8857249,40.0007474],[20.8858872,40.0005266],[20.8862722,40.0004243],[20.8865179,40.0001968],[20.8868237,40.0001194]]},{"id":17010,"author":"AnaDigit","name_GR":"Epirus Trail: \u03a3\u03c5\u03c1\u03c1\u03ac\u03ba\u03bf-\u03a4\u03c3\u03cc\u03c0\u03b5\u03bb\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Syrako_Tsopela","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":19861,"name_EN":"Epirus Trail: Syrako-Tsopela","description_EN":"\u039d\u03cc\u03c4\u03b9\u03bf \u03c3\u03ba\u03ad\u03bb\u03bf\u03c2","ascent_time":470,"descent_time":450,"marker":"No_marks","level":9,"ascent":1307,"descent":1555,"maxelev":1174,"minelev":527,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.10394 39.52218,21.13655 39.59512)","views":73,"millestones":"0,21.1071062,39.5942267#1,21.1056900,39.5896704#2,21.1089392,39.5835459#3,21.1145983,39.5769970#4,21.1207052,39.5772834#5,21.1245654,39.5777925#6,21.1313925,39.5720072#7,21.1308996,39.5678166#8,21.1230965,39.5663430#9,21.1199385,39.5613848#10,21.1129425,39.5581341#11,21.1183361,39.5541236#12,21.1212925,39.5479307#13,21.1283898,39.5461829#14,21.1305905,39.5414248#15,21.1344564,39.5373997#16,21.1341250,39.5322372#17,21.1305532,39.5303529#18,21.1269347,39.5288973#19.9,21.1221499,39.5218273","x":21.122377,"y":39.5635233,"coor":[[21.1071062,39.5942267],[21.106886,39.5942032],[21.1066368,39.5943141],[21.1062642,39.5943139],[21.106074,39.5944082],[21.1055085,39.5945067],[21.105015,39.5948367],[21.1048623,39.5951482],[21.1045535,39.5950144],[21.1044593,39.5947598],[21.1041276,39.5946164],[21.1040645,39.5944527],[21.1039722,39.5944324],[21.1041614,39.594365],[21.10433,39.5942071],[21.1044505,39.5938317],[21.1044846,39.5932921],[21.1047255,39.5930999],[21.1049251,39.5927806],[21.1050755,39.5922439],[21.1055103,39.5918673],[21.1055053,39.5915294],[21.1056246,39.5914603],[21.1056287,39.5910821],[21.105751,39.590941],[21.1057255,39.5907152],[21.1054494,39.5906362],[21.105147,39.5906287],[21.1050802,39.5905549],[21.1052141,39.5901349],[21.1056609,39.5897497],[21.105976,39.5888927],[21.1061891,39.5885287],[21.1061737,39.5883392],[21.106272,39.5882155],[21.1061883,39.5879882],[21.106209,39.5877725],[21.1057704,39.5874013],[21.1057407,39.5872744],[21.106081,39.5869316],[21.1064696,39.5868241],[21.1064051,39.5866964],[21.106219,39.5866918],[21.1060644,39.5864897],[21.10644,39.5861388],[21.1065682,39.5858537],[21.1065384,39.5857224],[21.1067597,39.5854396],[21.1068104,39.5850625],[21.1070891,39.58452],[21.1070714,39.5843844],[21.106995,39.58436],[21.1068422,39.5838337],[21.107462,39.5837681],[21.1081035,39.5834597],[21.1083957,39.5831517],[21.1086752,39.5831272],[21.1087987,39.5835176],[21.1089371,39.5835481],[21.1090342,39.5834514],[21.1090297,39.5832801],[21.109194,39.5832482],[21.1092465,39.5831054],[21.1096476,39.5829802],[21.1100891,39.582721],[21.1101885,39.5825703],[21.1104683,39.5825592],[21.1104477,39.5822164],[21.1108093,39.5819191],[21.1110729,39.5814573],[21.1110732,39.5808898],[21.1112105,39.580668],[21.1110942,39.5803858],[21.1117911,39.5801419],[21.1119153,39.5799558],[21.1121295,39.5798441],[21.1122761,39.5793973],[21.112769,39.5793014],[21.1132315,39.5790967],[21.1133923,39.578308],[21.1134635,39.5782738],[21.1137171,39.5783341],[21.1138593,39.5782746],[21.1139871,39.5777193],[21.1141698,39.5775256],[21.1142624,39.5772577],[21.1145047,39.5770295],[21.1148251,39.5769203],[21.1149032,39.5770033],[21.1152587,39.57685],[21.1152953,39.5768059],[21.1153861,39.5768622],[21.1155759,39.5767768],[21.1160425,39.5767524],[21.1163741,39.5766165],[21.1168786,39.5765209],[21.1171884,39.5763484],[21.1174439,39.5763638],[21.1176577,39.576261],[21.1176104,39.5764895],[21.1174818,39.5767836],[21.1172736,39.5770307],[21.1172429,39.5772101],[21.1170232,39.5774569],[21.1171533,39.577406],[21.1172419,39.5775163],[21.1174883,39.5774684],[21.1174655,39.5777381],[21.1172345,39.5779756],[21.117718,39.5778254],[21.1177251,39.5779337],[21.1175578,39.5780377],[21.1175665,39.5781099],[21.1179547,39.5780115],[21.1181535,39.5777101],[21.1185454,39.5775217],[21.119179,39.5774023],[21.1192945,39.5774232],[21.1192109,39.5774751],[21.1194746,39.5775718],[21.1197181,39.5775958],[21.1202106,39.5775089],[21.1204007,39.5774146],[21.1203366,39.5775571],[21.1204406,39.5775777],[21.1207454,39.5772429],[21.1206855,39.5775658],[21.1208869,39.5774807],[21.1209031,39.5776522],[21.1201328,39.5782637],[21.1198868,39.5785819],[21.1195406,39.5787895],[21.1195965,39.5788449],[21.1198557,39.5787703],[21.1194229,39.5791019],[21.119307,39.5793692],[21.1195943,39.5791782],[21.1195486,39.5794383],[21.1196068,39.5794397],[21.1197872,39.5793001],[21.1203059,39.5791418],[21.1204203,39.5789104],[21.1206499,39.5789882],[21.1218063,39.5786115],[21.1219263,39.5785244],[21.1219953,39.5785441],[21.1218738,39.5786672],[21.1220981,39.5785917],[21.1223424,39.5785977],[21.1226578,39.5784614],[21.1227894,39.5783746],[21.1232189,39.5784033],[21.1232962,39.578225],[21.1234533,39.5780848],[21.1234491,39.5779045],[21.1236959,39.5778475],[21.1239018,39.5776545],[21.1240616,39.5777305],[21.124481,39.5777229],[21.1245711,39.5777972],[21.1247924,39.5777936],[21.125287,39.5773735],[21.125571,39.5772634],[21.1257314,39.5770422],[21.1259903,39.5769765],[21.1262906,39.5767497],[21.1270675,39.576823],[21.1273424,39.5766496],[21.1280029,39.5764408],[21.1281494,39.575994],[21.1281302,39.5756152],[21.1280235,39.5753783],[21.1281229,39.5752276],[21.1282185,39.5751669],[21.1283678,39.5752157],[21.1287838,39.5750098],[21.1292982,39.5743919],[21.1295978,39.5741831],[21.1296442,39.573905],[21.1300645,39.5735911],[21.130593,39.573478],[21.1308551,39.5733314],[21.1309229,39.5730988],[21.1312866,39.5727475],[21.1313735,39.5723352],[21.1313403,39.5720101],[21.1315504,39.5719973],[21.1315803,39.5718359],[21.1319525,39.5712776],[21.1319251,39.5710967],[21.1321117,39.5708041],[21.1322542,39.5698887],[21.1320819,39.5695512],[21.1317935,39.56949],[21.1316408,39.5695223],[21.1314605,39.5696619],[21.1307831,39.5697173],[21.1304639,39.5698355],[21.130078,39.56988],[21.1294249,39.5696297],[21.1296776,39.5696449],[21.1297286,39.5695381],[21.1300274,39.5693473],[21.1300705,39.5691502],[21.130174,39.5691797],[21.1302024,39.5690543],[21.13046,39.5687364],[21.1308467,39.5686739],[21.1308128,39.5683668],[21.1309036,39.5684231],[21.130955,39.5685865],[21.1312064,39.5687008],[21.1310634,39.5684991],[21.1312693,39.5685852],[21.1311264,39.5683835],[21.1312047,39.5683314],[21.1313797,39.5683177],[21.131425,39.5682107],[21.1310289,39.5680748],[21.1307387,39.5674911],[21.1302386,39.5671995],[21.129336,39.5667899],[21.1288651,39.5663548],[21.1279689,39.5657922],[21.1275978,39.5654767],[21.1268391,39.56553],[21.1262728,39.5657142],[21.1262893,39.5655975],[21.1266789,39.565463],[21.1266361,39.5653718],[21.126473,39.5653768],[21.1258936,39.5655967],[21.125708,39.5658623],[21.1253053,39.5660325],[21.1250173,39.5662416],[21.1242534,39.5664209],[21.1239649,39.5663867],[21.123363,39.566588],[21.1227205,39.5666441],[21.1227824,39.5665556],[21.1232256,39.5662603],[21.1234206,39.5660489],[21.123011,39.5661018],[21.1229547,39.5660554],[21.1229956,39.5659123],[21.123513,39.5655017],[21.1237144,39.5654166],[21.1238606,39.5652581],[21.124086,39.5651556],[21.124077,39.5650923],[21.1239055,39.565016],[21.1241534,39.564932],[21.1240401,39.5648572],[21.1240725,39.5646238],[21.1238111,39.5644731],[21.1233977,39.5643368],[21.1232926,39.5640639],[21.1228698,39.5637066],[21.1226436,39.5635479],[21.1225371,39.5635903],[21.122473,39.5637328],[21.1221471,39.5637338],[21.1220938,39.5636154],[21.122377,39.5635233],[21.1224032,39.5634519],[21.1223466,39.5634144],[21.1221667,39.5631983],[21.1222477,39.56293],[21.12225,39.5620293],[21.1221318,39.5617921],[21.1220225,39.5616858],[21.1216575,39.5617218],[21.1210969,39.5615548],[21.1207024,39.561527],[21.1204552,39.5615929],[21.1202227,39.5615871],[21.1199511,39.5614002],[21.1196078,39.5609774],[21.1194582,39.5609376],[21.1192148,39.5610577],[21.1190149,39.5611068],[21.1187048,39.561009],[21.1181507,39.5606169],[21.1175771,39.559855],[21.1174424,39.5594553],[21.1173284,39.5593984],[21.1168993,39.5593607],[21.1166121,39.5592725],[21.1163945,39.5589068],[21.1156482,39.5589423],[21.1152443,39.5588602],[21.1145186,39.5589593],[21.1140967,39.5587506],[21.1136346,39.5586671],[21.1130046,39.5587055],[21.1124533,39.5588449],[21.1119729,39.558923],[21.1118349,39.5588836],[21.1131163,39.5580281],[21.1140715,39.5577276],[21.1141212,39.5575982],[21.1144482,39.5575748],[21.1139247,39.5574176],[21.113211,39.557508],[21.1130202,39.5574672],[21.1133308,39.5572542],[21.1141063,39.5570753],[21.1145094,39.5568962],[21.1151153,39.5563167],[21.1154133,39.5558647],[21.1158632,39.5558128],[21.1161041,39.5556071],[21.115849,39.5553034],[21.1158293,39.5550057],[21.1160382,39.5547406],[21.1164743,39.5544091],[21.1167427,39.5541095],[21.1171612,39.5541199],[21.1180532,39.5539799],[21.1181699,39.554253],[21.1186869,39.5538515],[21.1187708,39.5535113],[21.1189497,39.5534076],[21.1192178,39.5533962],[21.1203151,39.5528604],[21.1202856,39.5521661],[21.1204708,39.5519094],[21.1203658,39.5517942],[21.120164,39.551609],[21.1202111,39.5513129],[21.1204697,39.5506888],[21.1206729,39.5505587],[21.1206559,39.5501259],[21.1208733,39.5499331],[21.1207491,39.5498399],[21.1203925,39.549741],[21.1201951,39.5491686],[21.1198909,39.5489268],[21.1198718,39.5488272],[21.1201841,39.548871],[21.1203716,39.5488396],[21.1204623,39.5486167],[21.1206156,39.5485664],[21.1208545,39.5486985],[21.1212149,39.5487074],[21.1212062,39.5486351],[21.1209884,39.5485577],[21.1209572,39.5484668],[21.1213058,39.5479169],[21.1215365,39.5482469],[21.1218211,39.5483981],[21.1233493,39.5488684],[21.1240408,39.5490296],[21.1237673,39.5487481],[21.1235383,39.5480939],[21.1233219,39.5478273],[21.1233046,39.5476827],[21.1235655,39.5472838],[21.124352,39.5468348],[21.1250459,39.5466538],[21.1252966,39.5462186],[21.1255778,39.5461715],[21.1257444,39.5463648],[21.1263609,39.5466503],[21.1271397,39.5466696],[21.1273039,39.5466376],[21.1276522,39.546376],[21.1281039,39.5461439],[21.1282325,39.5461291],[21.1286341,39.5462651],[21.1284784,39.5460901],[21.1284161,39.5459084],[21.1286783,39.546041],[21.1291919,39.5459997],[21.1290159,39.5454728],[21.1292383,39.5448748],[21.1295007,39.5447191],[21.1297786,39.544753],[21.1298505,39.5447007],[21.1296633,39.5444439],[21.1294259,39.5442759],[21.1292318,39.5436225],[21.1295976,39.5432171],[21.1299841,39.5431546],[21.130317,39.5429827],[21.1303353,39.542821],[21.1302199,39.5425028],[21.1299269,39.5422704],[21.1298874,39.541819],[21.1293896,39.5411131],[21.1293614,39.5409502],[21.1294465,39.5408622],[21.1299042,39.5407654],[21.1299138,39.541099],[21.1304234,39.5414359],[21.1305506,39.541457],[21.1308515,39.5412122],[21.1310066,39.5408377],[21.1310767,39.5408304],[21.1313222,39.5416473],[21.1316613,39.5418899],[21.1315127,39.5415439],[21.1315265,39.5414902],[21.1315963,39.5414919],[21.1321979,39.5421373],[21.1324016,39.5422775],[21.1324946,39.5422798],[21.1323662,39.5420063],[21.1325347,39.5407403],[21.1330415,39.5405817],[21.1330211,39.5402299],[21.1333944,39.5399238],[21.1334422,39.5396097],[21.133836,39.5390879],[21.1337564,39.5387616],[21.1338935,39.5385398],[21.1338705,39.538251],[21.1342304,39.5377779],[21.1344563,39.5373916],[21.1344333,39.5371028],[21.1346239,39.5367111],[21.1351347,39.5364535],[21.1350689,39.5360735],[21.1357942,39.535695],[21.1358604,39.5354985],[21.1360043,39.5353939],[21.1355434,39.5350042],[21.1355257,39.5348687],[21.1356755,39.5346201],[21.1355717,39.5345995],[21.1351938,39.5347344],[21.1351023,39.5352636],[21.1346134,39.5352695],[21.1341618,39.5355016],[21.1340007,39.5354841],[21.1339114,39.5353919],[21.1338877,39.535121],[21.1342939,39.5348608],[21.1343325,39.5347717],[21.1338788,39.5339227],[21.1339338,39.5337169],[21.1341882,39.5334709],[21.1340461,39.5332512],[21.1341491,39.532443],[21.1341152,39.5321359],[21.1334344,39.5328487],[21.1336376,39.5321511],[21.1335345,39.5321125],[21.1332189,39.5321498],[21.1326179,39.5329007],[21.1325064,39.5325015],[21.1326686,39.5322353],[21.132679,39.5319833],[21.1328367,39.5318251],[21.1328958,39.5315202],[21.1325465,39.5316242],[21.1322332,39.5318867],[21.1320676,39.5319547],[21.1320228,39.5316293],[21.1317105,39.5315856],[21.1316075,39.5318262],[21.1314899,39.5318594],[21.1311182,39.5315619],[21.1311031,39.5313634],[21.1314254,39.5307633],[21.1312572,39.5303267],[21.1314412,39.530097],[21.1313663,39.5299466],[21.1309998,39.5300906],[21.1303083,39.530497],[21.1301162,39.5309246],[21.1299192,39.531172],[21.1298829,39.5314864],[21.1296547,39.5316609],[21.1294967,39.5316885],[21.1297283,39.531433],[21.1296667,39.5312333],[21.1297536,39.5311003],[21.1296854,39.5310626],[21.1298221,39.5308498],[21.129588,39.5306503],[21.1293719,39.5303117],[21.1288942,39.5296468],[21.1289142,39.5291608],[21.1290524,39.528912],[21.1289718,39.528892],[21.128793,39.5289957],[21.1284775,39.5293122],[21.1283615,39.5287418],[21.1281494,39.5288942],[21.1282392,39.5292567],[21.1280505,39.5290359],[21.1276918,39.528991],[21.1276055,39.5288267],[21.1274093,39.5293533],[21.1274243,39.5295519],[21.1273687,39.5296181],[21.1270196,39.5293392],[21.1269355,39.5291209],[21.1269373,39.5287966],[21.1268471,39.5287449],[21.1264089,39.5289322],[21.1262248,39.5286033],[21.1263234,39.5279031],[21.1262566,39.5275502],[21.1263607,39.5272825],[21.1262514,39.5268294],[21.1263644,39.5263457],[21.1262085,39.526459],[21.125874,39.5269552],[21.1255835,39.528074],[21.1254006,39.5283938],[21.1252799,39.5284989],[21.1251986,39.5284969],[21.1251892,39.5284426],[21.1254016,39.528029],[21.1253723,39.5278931],[21.125228,39.5277409],[21.125147,39.5263381],[21.1251041,39.5259677],[21.124857,39.5257544],[21.1245749,39.525261],[21.1237485,39.523583],[21.1230774,39.5229358],[21.1227139,39.5223457],[21.1221499,39.5218273]]},{"id":17011,"author":"AnaDigit","name_GR":"Epirus Trail: \u03a4\u03c3\u03cc\u03c0\u03b5\u03bb\u03b1-\u0386\u03b3\u03bd\u03b1\u03bd\u03c4\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Tsopela_Agnanta","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":2,"length":11306,"name_EN":"Epirus Trail: Tsopela-Agnanta","description_EN":"","ascent_time":260,"descent_time":260,"marker":"No_marks","level":9,"ascent":655,"descent":923,"maxelev":1384,"minelev":627,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.07743 39.475,21.12459 39.52071)","views":53,"millestones":"0,21.1221499,39.5218273#1,21.1177930,39.5151085#2,21.1101426,39.5104745#3,21.1004159,39.5071527#4,21.0979612,39.5009416#5,21.0922461,39.4959966#6,21.0957802,39.4929711#7,21.1046345,39.4885655#8,21.0982485,39.4822169#9,21.0945920,39.4786942#10,21.0879963,39.4793308#11.3,21.0793907,39.4738720","x":21.0947495,"y":39.4934267,"coor":[[21.1221499,39.5218273],[21.1225652,39.52177],[21.1226879,39.5210524],[21.1221296,39.5204891],[21.1217036,39.5201002],[21.1215848,39.519881],[21.1216518,39.5196665],[21.1214351,39.519562],[21.1214897,39.5193652],[21.1213723,39.51911],[21.1211733,39.5191411],[21.1209581,39.5186629],[21.1210944,39.5185762],[21.1206751,39.5180253],[21.1203357,39.517062],[21.1199355,39.5163314],[21.1198347,39.5162388],[21.1196162,39.5161793],[21.1194954,39.5160052],[21.1190943,39.5161439],[21.1189593,39.5160324],[21.1186489,39.5159437],[21.1185297,39.5157335],[21.1180282,39.5154869],[21.1178905,39.5151591],[21.1177083,39.5150645],[21.1176636,39.5147391],[21.1174372,39.5143101],[21.1174866,39.5142393],[21.1173858,39.5141467],[21.1173388,39.5138753],[21.1168515,39.5135659],[21.1162257,39.5135143],[21.1159042,39.5133037],[21.1155647,39.5131016],[21.1152968,39.5131129],[21.1152557,39.5130128],[21.1153842,39.512998],[21.1152399,39.5128323],[21.1153148,39.512708],[21.1151319,39.5126314],[21.1150183,39.5123944],[21.1147119,39.5124093],[21.114401,39.5124466],[21.1141987,39.5125587],[21.1140034,39.5124998],[21.1135927,39.5125887],[21.1133163,39.5124917],[21.1129749,39.5125913],[21.1126744,39.5125478],[21.1123516,39.5121975],[21.1119862,39.5120353],[21.111395,39.511426],[21.1102466,39.5107939],[21.1101229,39.5104125],[21.109675,39.509996],[21.1092845,39.5098781],[21.1090712,39.5096927],[21.1086387,39.5094657],[21.1083381,39.5094222],[21.1080529,39.509289],[21.1076609,39.5092071],[21.1072296,39.5089532],[21.1069122,39.5090354],[21.1066502,39.5089027],[21.1061655,39.5085618],[21.1054063,39.5083628],[21.105193,39.5081773],[21.1048205,39.5076275],[21.1045147,39.50771],[21.1042531,39.5075683],[21.1038371,39.5075039],[21.1034852,39.5072969],[21.103112,39.5073237],[21.1026773,39.5071507],[21.1023966,39.5071887],[21.101957,39.507412],[21.1007579,39.5071659],[21.0998409,39.5071249],[21.0997393,39.5070503],[21.0997247,39.5068428],[21.0993724,39.5066448],[21.0995665,39.5063389],[21.0994072,39.5062538],[21.0992641,39.5063403],[21.0991045,39.5062643],[21.0987252,39.506435],[21.0984562,39.5064733],[21.0982516,39.5063601],[21.0980781,39.5063377],[21.097773,39.5064022],[21.0974214,39.5062718],[21.0972232,39.5057263],[21.097348,39.5055223],[21.0977347,39.5051716],[21.0976755,39.5049179],[21.0977661,39.5041364],[21.0977395,39.5039376],[21.0974199,39.5035152],[21.0975881,39.5025465],[21.0974405,39.5019032],[21.0976511,39.5015932],[21.0976533,39.50126],[21.0979935,39.5009081],[21.0975937,39.4998982],[21.0976866,39.499342],[21.097512,39.4990674],[21.0970493,39.4987316],[21.0965131,39.4982047],[21.0958798,39.4974412],[21.0959275,39.4972712],[21.0956769,39.4968686],[21.0954802,39.4968456],[21.0949976,39.4969867],[21.094872,39.4969295],[21.0950437,39.4967176],[21.095545,39.4964059],[21.0956469,39.4961922],[21.0941979,39.4960344],[21.0936108,39.4958936],[21.0930529,39.4958886],[21.0922679,39.4960311],[21.0919514,39.4955367],[21.0917281,39.4953149],[21.0915096,39.4952554],[21.0910537,39.4953161],[21.09078,39.4950165],[21.0902784,39.4942517],[21.0902387,39.4940886],[21.0905819,39.493944],[21.091411,39.4938567],[21.0916414,39.4936282],[21.0914987,39.4934265],[21.0912248,39.4933025],[21.0910187,39.4928604],[21.0926421,39.4929641],[21.0934119,39.4928798],[21.0945546,39.4930795],[21.0947495,39.4934267],[21.0948188,39.4934375],[21.0952373,39.4931597],[21.0960158,39.4928909],[21.0963185,39.4923219],[21.0966145,39.4921942],[21.0968034,39.4920998],[21.0968266,39.4915419],[21.097785,39.4908632],[21.0983413,39.4906248],[21.0985571,39.4901888],[21.0989152,39.4899635],[21.0992101,39.4898628],[21.0996312,39.489522],[21.1009169,39.4890766],[21.1011031,39.4890723],[21.1016314,39.4892296],[21.1021188,39.4889715],[21.1025788,39.4888118],[21.1037192,39.4887862],[21.1045644,39.4885911],[21.1051664,39.4883718],[21.1049408,39.4879248],[21.1047452,39.4875956],[21.1040584,39.487056],[21.1038745,39.4867272],[21.1035009,39.4864836],[21.1032896,39.4862532],[21.1028992,39.4861353],[21.1024219,39.4858712],[21.1019034,39.4857592],[21.100878,39.4849769],[21.1000265,39.4844872],[21.09942,39.4842559],[21.0990581,39.4834541],[21.0989961,39.483376],[21.0989523,39.4830326],[21.0987226,39.4826845],[21.0981532,39.4821208],[21.0981328,39.4819131],[21.0977162,39.4818666],[21.0976372,39.4818106],[21.0974042,39.4818228],[21.0972719,39.4819276],[21.0971704,39.481853],[21.0970164,39.4819212],[21.0967036,39.4818954],[21.0966853,39.4817778],[21.0962991,39.4818402],[21.0962549,39.4817851],[21.0960327,39.4818156],[21.095699,39.4817352],[21.0954184,39.4817732],[21.0952116,39.481714],[21.0949153,39.4818507],[21.0948988,39.4816881],[21.0948082,39.4816318],[21.0948966,39.4814629],[21.0950921,39.4812335],[21.0955592,39.4809029],[21.0957387,39.4802228],[21.0961073,39.4800248],[21.0962309,39.4798477],[21.0957278,39.4799252],[21.0954158,39.4798814],[21.0952933,39.4797522],[21.0950981,39.4796933],[21.0950266,39.4794573],[21.0947924,39.4792172],[21.0947489,39.4792026],[21.0946122,39.4791361],[21.0951527,39.4789965],[21.0952842,39.4789097],[21.0954479,39.4786075],[21.0954164,39.4785256],[21.0952771,39.4785492],[21.0951186,39.4787254],[21.0950126,39.4787588],[21.0948174,39.4786998],[21.0941927,39.4786842],[21.092936,39.4784366],[21.0925847,39.4779413],[21.091985,39.4778273],[21.0918356,39.4778686],[21.0920266,39.4783057],[21.0919944,39.4785211],[21.0918314,39.4788053],[21.0916125,39.4788719],[21.0911778,39.47887],[21.0909751,39.4789911],[21.0908242,39.4789873],[21.0906312,39.4790725],[21.0907531,39.4788279],[21.0907107,39.4787277],[21.0906171,39.4787434],[21.0900046,39.4792145],[21.0897408,39.4791809],[21.089497,39.4791748],[21.0893902,39.4792261],[21.0890152,39.4795771],[21.0888878,39.4798441],[21.0887569,39.4798093],[21.0887865,39.4793777],[21.0890203,39.478789],[21.088857,39.4788299],[21.0886865,39.4790148],[21.0881489,39.4793617],[21.0880103,39.4793402],[21.087671,39.4791155],[21.0875336,39.4787877],[21.087365,39.4786484],[21.0871095,39.478642],[21.0868211,39.478842],[21.0866267,39.478765],[21.0865162,39.4786271],[21.0864919,39.4783743],[21.0865774,39.4779981],[21.0864774,39.4778875],[21.0858833,39.4776383],[21.0853971,39.4775901],[21.0849503,39.4774348],[21.0845434,39.4773795],[21.0841278,39.4770898],[21.0826918,39.4764052],[21.0821596,39.4760675],[21.0818243,39.4757709],[21.0816203,39.4753694],[21.0812917,39.4752485],[21.0809996,39.4750069],[21.0808596,39.4746881],[21.0806428,39.4745926],[21.0804885,39.4743906],[21.0803747,39.4743336],[21.0804473,39.4742634],[21.0804008,39.4742352],[21.0800663,39.4741728],[21.0794917,39.4739331],[21.0793907,39.473872]]},{"id":17012,"author":"AnaDigit","name_GR":"Epirus Trail: \u0392\u03bf\u03b2\u03bf\u03cd\u03c3\u03b1-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03c5\u03bd\u03af\u03bf\u03c5","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Vovousa_MavrovouniRef","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":21216,"name_EN":"Epirus Trail: Vovousa-Mavrovouni Refuge","description_EN":"","ascent_time":540,"descent_time":510,"marker":"No_marks","level":9,"ascent":1568,"descent":684,"maxelev":2040,"minelev":973,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.04897 39.84632,21.15247 39.93672)","views":96,"millestones":"0,21.0497796,39.9367426#1,21.0518627,39.9289011#2,21.0548624,39.9216823#3,21.0571062,39.9143240#4,21.0620458,39.9063955#5,21.0691743,39.9003507#6,21.0788425,39.9006024#7,21.0878680,39.9034486#8,21.0974949,39.9029809#9,21.1074901,39.9001310#10,21.1157254,39.8970801#11,21.1200910,39.8927583#12,21.1138561,39.8904762#13,21.1104335,39.8832059#14,21.1155961,39.8774553#15,21.1207332,39.8740119#16,21.1254656,39.8696541#17,21.1329150,39.8658353#18,21.1428342,39.8622324#19,21.1515530,39.8595839#21.2,21.1483084,39.8462211","x":21.1171439,"y":39.8912239,"coor":[[21.0497796,39.9367426],[21.0498444,39.9363794],[21.050163,39.9357435],[21.050003,39.9351945],[21.0496232,39.93423],[21.0497213,39.9338541],[21.0496932,39.9336913],[21.0493505,39.9330881],[21.0491563,39.9324346],[21.0493415,39.9316646],[21.0495446,39.9315662],[21.0498281,39.9312311],[21.050622,39.9309991],[21.0510886,39.9304885],[21.0513051,39.9303499],[21.051461,39.9299891],[21.0515767,39.9297488],[21.0518727,39.9296663],[21.0518865,39.9290721],[21.0518271,39.9286292],[21.0519625,39.9282003],[21.0521596,39.9279711],[21.0524338,39.927852],[21.0531344,39.9262484],[21.0534934,39.9257891],[21.0537243,39.9255068],[21.054226,39.9252673],[21.0545476,39.9248611],[21.0553609,39.9247197],[21.0556982,39.924494],[21.0558157,39.9242088],[21.0560853,39.9241976],[21.0561133,39.9240902],[21.0558989,39.9239046],[21.0559662,39.9236992],[21.0559323,39.9233425],[21.0558044,39.923051],[21.0548889,39.9217576],[21.0548265,39.9215759],[21.054556,39.9213348],[21.0544492,39.9210979],[21.0541265,39.9207114],[21.053937,39.9202201],[21.0534729,39.919857],[21.0533847,39.9196206],[21.0532403,39.9188963],[21.0537293,39.9181341],[21.0545578,39.9173624],[21.0548569,39.9172079],[21.0552534,39.917236],[21.0552128,39.9168206],[21.0557057,39.9165089],[21.0559556,39.9162495],[21.0562173,39.916148],[21.0563503,39.9157731],[21.0568206,39.9151725],[21.0569633,39.9145726],[21.0572925,39.9139865],[21.0573395,39.9137084],[21.0579172,39.9130565],[21.0580276,39.912663],[21.0583771,39.9121494],[21.0587873,39.9113131],[21.0591439,39.9103583],[21.0601272,39.9092483],[21.0605499,39.9086645],[21.0606924,39.9086141],[21.060864,39.9084292],[21.0612962,39.90817],[21.0615235,39.9077794],[21.0615164,39.9076711],[21.0616744,39.907531],[21.061707,39.9073156],[21.0619172,39.9070507],[21.0620416,39.9066035],[21.0620557,39.9060003],[21.0621494,39.9057235],[21.0620509,39.9050184],[21.0624775,39.9046148],[21.0626198,39.9042942],[21.062685,39.9038634],[21.0629636,39.9033661],[21.0632727,39.9032478],[21.0636382,39.9029057],[21.0640521,39.9027991],[21.0644823,39.9025848],[21.0660885,39.9022202],[21.0666156,39.9019273],[21.0668826,39.9016998],[21.0672506,39.901574],[21.0683739,39.9007377],[21.0693768,39.9002586],[21.0699787,39.9001297],[21.0702587,39.9001458],[21.0705316,39.9000536],[21.0716944,39.8999389],[21.0722411,39.9000067],[21.0726518,39.9002513],[21.072871,39.9003199],[21.0735494,39.900319],[21.0737185,39.9004674],[21.0742014,39.9003895],[21.0745363,39.9004881],[21.0747886,39.9003323],[21.0750113,39.9003199],[21.0750396,39.9002035],[21.0751938,39.9001534],[21.0758243,39.8996288],[21.0765352,39.8994125],[21.076861,39.8991776],[21.0774227,39.8991377],[21.0781743,39.9001655],[21.078811,39.9005959],[21.0792285,39.9006785],[21.0798067,39.9011074],[21.0800366,39.9012033],[21.080722,39.9013107],[21.0813311,39.90129],[21.081582,39.9014404],[21.0820197,39.9018748],[21.082249,39.9022589],[21.0825625,39.9023118],[21.0828933,39.9025093],[21.0838087,39.9027125],[21.0839439,39.902833],[21.0841098,39.9027832],[21.0842708,39.902571],[21.0844118,39.9025566],[21.0845466,39.9026861],[21.0851465,39.9028813],[21.0853025,39.9030654],[21.0857723,39.9032934],[21.0862412,39.9032691],[21.0866105,39.9033865],[21.086711,39.9034971],[21.0869206,39.9035204],[21.0871824,39.9036892],[21.0872102,39.903861],[21.0873162,39.9038456],[21.0875554,39.9039958],[21.0875924,39.9039517],[21.0875159,39.9038236],[21.0878956,39.9034188],[21.0878389,39.9031021],[21.0880748,39.903054],[21.0884811,39.9031273],[21.0896619,39.9039676],[21.0898952,39.9039825],[21.0904491,39.9041586],[21.0906183,39.9043069],[21.0910981,39.904301],[21.0914662,39.9044453],[21.0917014,39.9044152],[21.0918051,39.9044538],[21.0921379,39.9043271],[21.0927304,39.904423],[21.0932204,39.9041741],[21.0935765,39.9043271],[21.094054,39.9043751],[21.0942602,39.9044794],[21.0944708,39.9044757],[21.0954139,39.9043011],[21.095783,39.9041482],[21.0962647,39.903818],[21.0968865,39.9032211],[21.0978378,39.9028486],[21.098127,39.9026486],[21.0987493,39.9025921],[21.0988488,39.9024505],[21.0989668,39.9024264],[21.0989822,39.9023367],[21.0994206,39.9022036],[21.0999136,39.9021619],[21.1003305,39.9019831],[21.100606,39.9018279],[21.1007968,39.9014634],[21.1012085,39.9011314],[21.1020219,39.9007013],[21.102366,39.9005838],[21.1028247,39.9005232],[21.1032197,39.9003079],[21.1039644,39.9003986],[21.1041917,39.9002781],[21.1049214,39.9001703],[21.1058516,39.8997431],[21.1066588,39.9000155],[21.1073707,39.9000513],[21.1074487,39.9001433],[21.108195,39.8999187],[21.1083661,39.8997428],[21.1080485,39.8992305],[21.1076087,39.8988412],[21.1077561,39.8986737],[21.1082916,39.8987321],[21.108748,39.8990047],[21.1092749,39.8987116],[21.109665,39.8986132],[21.1106185,39.8981866],[21.1113983,39.8979989],[21.1116044,39.8978238],[21.1123635,39.8975725],[21.112509,39.89745],[21.1129416,39.8974518],[21.1131824,39.8975659],[21.1134504,39.8975906],[21.1138152,39.8975366],[21.1141977,39.8976182],[21.1150679,39.8975048],[21.1153403,39.8974215],[21.11558,39.8972833],[21.1159275,39.8968055],[21.1159574,39.8958154],[21.1164202,39.8953765],[21.1168965,39.8951722],[21.1171795,39.8951162],[21.1174494,39.8948166],[21.1176992,39.8947148],[21.1177497,39.8946259],[21.1180719,39.8944718],[21.1182084,39.8945653],[21.1183082,39.8944146],[21.1185667,39.894385],[21.1188053,39.8945531],[21.1189737,39.8944402],[21.1191904,39.8945717],[21.1192892,39.894448],[21.1198657,39.8946425],[21.1199871,39.8945374],[21.1202693,39.8944994],[21.1203304,39.8944379],[21.1200636,39.8943862],[21.1199758,39.8942489],[21.1202795,39.8942564],[21.1202358,39.8941833],[21.1204566,39.8939366],[21.1203018,39.8937255],[21.1204487,39.893567],[21.1206134,39.8935441],[21.1203466,39.8934924],[21.1203255,39.8934379],[21.1208124,39.8932608],[21.1209648,39.8932826],[21.1209088,39.8931911],[21.1206285,39.8931842],[21.1203183,39.8930504],[21.1202441,39.8928684],[21.1200843,39.8927743],[21.1201103,39.8927119],[21.1198586,39.8925795],[21.1198179,39.8924344],[21.1196005,39.8923209],[21.1194109,39.8921],[21.1193589,39.8916663],[21.1191498,39.8916341],[21.1188551,39.8914106],[21.1185996,39.8913682],[21.1179903,39.8911188],[21.1175762,39.8912347],[21.1171439,39.8912239],[21.1171503,39.8913502],[21.1170655,39.8914201],[21.1170866,39.8917539],[21.1169261,39.8919571],[21.1169302,39.8921374],[21.1164403,39.8921072],[21.1160511,39.8921876],[21.1158491,39.8922636],[21.1158348,39.8923263],[21.1156844,39.8922865],[21.1151289,39.8927051],[21.1149153,39.8925016],[21.114823,39.892193],[21.1147099,39.8921001],[21.1143994,39.8919753],[21.113856,39.8921059],[21.1139024,39.8918368],[21.1138493,39.8917094],[21.1136126,39.8914963],[21.1136372,39.8911907],[21.1137849,39.8910142],[21.1138287,39.8905288],[21.1141091,39.8899773],[21.1140914,39.8895625],[21.1138055,39.8888528],[21.1137075,39.8884],[21.1133583,39.888085],[21.1132531,39.8880824],[21.112905,39.8877404],[21.1126959,39.8877082],[21.1126755,39.8876356],[21.1125361,39.8876141],[21.1122524,39.8874089],[21.1117757,39.887343],[21.1119318,39.8869685],[21.1120411,39.8868722],[21.111954,39.8867169],[21.1120415,39.8865839],[21.11193,39.886455],[21.1116108,39.8865372],[21.1113972,39.8863337],[21.1114062,39.8861177],[21.1112646,39.8858709],[21.1112978,39.8856376],[21.1111825,39.8855987],[21.1109719,39.8850439],[21.1107723,39.8847867],[21.1107983,39.8844451],[21.1106744,39.8843339],[21.1106921,39.8841902],[21.1105245,39.8840059],[21.1104488,39.8833014],[21.1103919,39.8832639],[21.1104417,39.8831931],[21.1103516,39.8831098],[21.1104357,39.8830578],[21.110453,39.8829232],[21.1101934,39.8827005],[21.1102993,39.8826851],[21.1105303,39.8824747],[21.110765,39.8824535],[21.1108789,39.8822492],[21.1109486,39.8822599],[21.1111065,39.8821197],[21.1112214,39.8818884],[21.1113167,39.8818457],[21.1116656,39.8818905],[21.1122414,39.8815445],[21.1124,39.8813863],[21.112417,39.8812606],[21.1125779,39.8810484],[21.1130093,39.8810772],[21.1134697,39.8809716],[21.1138894,39.881],[21.1139983,39.8809127],[21.1141528,39.8811327],[21.1144546,39.880906],[21.1145289,39.8805295],[21.1144693,39.8802758],[21.1143013,39.8801005],[21.1143601,39.8798137],[21.1142588,39.8797211],[21.1145979,39.8794413],[21.1147682,39.8787249],[21.1149751,39.8785319],[21.1151289,39.8781574],[21.1151771,39.8781225],[21.1152797,39.8781296],[21.1155242,39.8778745],[21.1155758,39.8774794],[21.1156866,39.877347],[21.1159522,39.8774257],[21.1163602,39.8774539],[21.1164586,39.8773392],[21.1166202,39.8773883],[21.1166014,39.8772797],[21.1167867,39.8773204],[21.1169913,39.8774606],[21.1171232,39.877662],[21.1176299,39.878125],[21.1177165,39.8782893],[21.1179287,39.8782496],[21.1191814,39.8776501],[21.1197544,39.8770879],[21.1199194,39.877056],[21.1199518,39.8768406],[21.1203222,39.8763724],[21.1205026,39.8762507],[21.1208918,39.8761703],[21.1208831,39.876098],[21.1209803,39.8760104],[21.1212132,39.8760342],[21.1212542,39.8758911],[21.1209615,39.8756226],[21.1205218,39.8755126],[21.1202517,39.8755419],[21.1201877,39.8753962],[21.1203651,39.8750673],[21.1202551,39.8749024],[21.1203546,39.8747607],[21.1202487,39.8744969],[21.1206864,39.8740934],[21.1209008,39.8737204],[21.1209855,39.8736775],[21.1214518,39.8739323],[21.1220086,39.8740362],[21.1224799,39.874228],[21.1226544,39.8742504],[21.1227617,39.874199],[21.122929,39.8738338],[21.1227112,39.8737293],[21.1231004,39.8736489],[21.1231528,39.8735151],[21.1232601,39.8734637],[21.1234229,39.8734858],[21.1235009,39.8735778],[21.123587,39.8735889],[21.1241306,39.87317],[21.1242824,39.8731738],[21.1244983,39.8733233],[21.1245917,39.8733256],[21.1246531,39.8732551],[21.1246183,39.8731911],[21.1246338,39.8731014],[21.1246884,39.8731929],[21.124879,39.8731075],[21.1249969,39.8728042],[21.1251408,39.8727177],[21.1253514,39.8727139],[21.1254866,39.8725551],[21.1255182,39.8720785],[21.1257126,39.8719031],[21.1256934,39.8715243],[21.1258316,39.8712935],[21.1259367,39.8712961],[21.1258923,39.871241],[21.1260199,39.8709829],[21.1257611,39.8707423],[21.1258982,39.8705385],[21.1258477,39.8700689],[21.1255399,39.8698811],[21.1254468,39.8695905],[21.125226,39.8692788],[21.1252366,39.8690268],[21.1250297,39.8686614],[21.1250579,39.8682657],[21.1249871,39.8680027],[21.1252549,39.8677481],[21.1259608,39.8676395],[21.1261936,39.8676633],[21.126602,39.8674032],[21.1272661,39.8671765],[21.1275921,39.8670089],[21.1277914,39.8669958],[21.1278822,39.8670611],[21.1281447,39.8669325],[21.1285572,39.8668526],[21.1292142,39.8670761],[21.1300481,39.8670382],[21.1303238,39.867045],[21.1304677,39.8669585],[21.1307645,39.8665695],[21.1311728,39.8665886],[21.1311544,39.8664711],[21.1313491,39.8662867],[21.1314971,39.8663805],[21.1315623,39.8662199],[21.131855,39.8662092],[21.1327816,39.8658537],[21.1337105,39.8657236],[21.1337594,39.8656708],[21.1339578,39.8654234],[21.1341842,39.8653209],[21.1344682,39.8652379],[21.1347451,39.8653258],[21.1348743,39.865311],[21.1356257,39.8649512],[21.1357579,39.8648644],[21.1357372,39.8648008],[21.1358412,39.8648304],[21.1359602,39.8647793],[21.1362306,39.8644617],[21.1363213,39.8643874],[21.1375102,39.8634034],[21.1380333,39.8631911],[21.1389625,39.8630519],[21.1392123,39.86295],[21.1393626,39.8629897],[21.1405543,39.8627218],[21.1408654,39.8625494],[21.1413991,39.8623643],[21.1418838,39.8623718],[21.1421569,39.8622704],[21.1428598,39.8622337],[21.1440357,39.8620645],[21.1448486,39.8621926],[21.1459634,39.8626525],[21.146777,39.8627626],[21.1480417,39.86251],[21.148314,39.8624266],[21.1490916,39.8619953],[21.1505808,39.8615996],[21.1513678,39.8613667],[21.1517504,39.8611599],[21.1518719,39.8607665],[21.1516599,39.8602388],[21.1515123,39.8593705],[21.1515689,39.8590476],[21.1515123,39.8593705],[21.1513119,39.8594106],[21.1507607,39.8597393],[21.1505301,39.8596616],[21.1503974,39.8594782],[21.1503833,39.8589734],[21.1505764,39.8579782],[21.150326,39.8572515],[21.1509212,39.8567076],[21.151,39.8564393],[21.1507264,39.8559912],[21.1503876,39.8557036],[21.1498539,39.8547942],[21.1495609,39.8539357],[21.1496545,39.8536498],[21.1495934,39.8534321],[21.14969,39.8530741],[21.1501779,39.8525817],[21.1514145,39.8520716],[21.1515389,39.8516062],[21.1515046,39.8513937],[21.1517743,39.8510896],[21.1513218,39.8507542],[21.1505003,39.8497071],[21.1498362,39.8485287],[21.1489895,39.8466793],[21.1490316,39.8465092],[21.1492243,39.8463968],[21.1483084,39.8462211]]},{"id":17013,"author":"AnaDigit","name_GR":"Epirus Trail: \u0392\u03c1\u03c5\u03c3\u03bf\u03c7\u03ce\u03c1\u03b9-\u039b\u03ac\u03b9\u03c3\u03c4\u03b1","description_GR":"","path":"IPIROS\/Ipiros_EpirusTrail_Vrysochori_Laista","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":12805,"name_EN":"Epirus Trail: Vrysochori-Laista","description_EN":"","ascent_time":305,"descent_time":295,"marker":"No_marks","level":9,"ascent":816,"descent":782,"maxelev":1182,"minelev":742,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.88665 39.96756,20.95566 40.00448)","views":63,"millestones":"0,20.8868487,40.0000841#1,20.8920483,40.0041359#2,20.8969825,40.0001949#3,20.9031750,40.0001159#4,20.9026660,39.9929116#5,20.9032201,39.9861609#6,20.9087595,39.9817591#7,20.9141285,39.9773769#8,20.9223151,39.9764336#9,20.9297356,39.9726104#10,20.9372106,39.9694453#11,20.9417045,39.9693057#12,20.9502357,39.9716381#12.8,20.9550888,39.9715432","x":20.9055155,"y":39.9846142,"coor":[[20.8868487,40.0000841],[20.8868634,40.000179],[20.8870422,40.0001118],[20.8872628,40.0001537],[20.887343,40.0001919],[20.8873813,40.0003281],[20.887815,40.0003217],[20.8884399,40.0002304],[20.8888836,40.0002603],[20.8892333,40.0000941],[20.88927,40.0001897],[20.8894224,40.0001082],[20.8893695,40.0002419],[20.8894445,40.000397],[20.8894205,40.0006666],[20.8895125,40.0007051],[20.8894136,40.0008195],[20.889249,40.0008331],[20.88909,40.000982],[20.8888665,40.001003],[20.8888039,40.0010914],[20.8889285,40.0011848],[20.8888762,40.0015617],[20.888991,40.0018711],[20.8892786,40.0019869],[20.889847,40.001849],[20.8903351,40.0019342],[20.8907726,40.0020991],[20.8906801,40.0023308],[20.8907103,40.0024397],[20.8911894,40.0027228],[20.8910183,40.0028803],[20.891038,40.0029619],[20.8911985,40.0030383],[20.890995,40.0033931],[20.8909893,40.003519],[20.8910981,40.0037021],[20.8914337,40.0037922],[20.8917399,40.0037554],[20.8919918,40.0041404],[20.8923093,40.0041129],[20.892477,40.0042886],[20.8929732,40.0041938],[20.89316,40.0042078],[20.8935607,40.0046689],[20.8933755,40.0041055],[20.8934371,40.0035217],[20.8933364,40.0031587],[20.892958,40.002464],[20.8927096,40.0022591],[20.8926464,40.0021043],[20.8927378,40.0016384],[20.892719,40.0012776],[20.8928119,40.0012756],[20.8929475,40.0011261],[20.8935689,40.0008545],[20.89413,40.0008786],[20.8944113,40.0006159],[20.894661,40.0005325],[20.8948555,40.0003756],[20.8949813,40.000442],[20.8953723,40.0003444],[20.8956674,40.0005505],[20.8960107,40.0004696],[20.8961823,40.0003031],[20.8963343,40.0003072],[20.8965748,40.0001695],[20.8968116,40.0001128],[20.8970294,40.0002177],[20.8973042,40.000099],[20.8974054,40.0001918],[20.8974687,40.0000854],[20.897624,40.0002787],[20.8977079,40.0002359],[20.8980455,40.000281],[20.8982811,40.0002512],[20.8989462,40.0003051],[20.8992898,40.0004764],[20.8999066,40.000565],[20.900209,40.0008703],[20.9001674,40.0010133],[20.9003714,40.0011629],[20.9005937,40.0011689],[20.9007723,40.0013628],[20.9012179,40.0016089],[20.9014747,40.0021472],[20.9024658,40.0022458],[20.9027038,40.0021621],[20.9028059,40.0019757],[20.902998,40.0018727],[20.9035127,40.0018865],[20.9036079,40.001853],[20.9037211,40.0019821],[20.9038025,40.0019933],[20.9037712,40.0016502],[20.9038664,40.0016167],[20.9038838,40.0014911],[20.9036091,40.0013486],[20.9033677,40.0007297],[20.903098,40.0004793],[20.9031004,40.0004253],[20.903219,40.0003924],[20.9032179,40.0001582],[20.9030498,39.9999916],[20.9029211,39.9999881],[20.9025864,39.9996189],[20.9026042,39.9994842],[20.9028281,39.9994542],[20.9029391,39.9993311],[20.9028653,39.9991489],[20.9029146,39.9990962],[20.9025707,39.9986727],[20.9026933,39.9985498],[20.9026292,39.998413],[20.9027027,39.9983429],[20.9023308,39.9982789],[20.9021885,39.9980589],[20.9022706,39.997926],[20.9021243,39.997796],[20.9016689,39.99673],[20.9016842,39.9966493],[20.901976,39.9964139],[20.9019535,39.9961341],[20.9020725,39.9960922],[20.9019979,39.9959281],[20.9023954,39.9954253],[20.9029555,39.9951881],[20.9031641,39.9949775],[20.9033099,39.9946031],[20.9030579,39.994218],[20.9030609,39.9938938],[20.9028024,39.9936527],[20.9030732,39.9933627],[20.9030546,39.9932541],[20.9028147,39.9931216],[20.9027518,39.9929578],[20.9024659,39.992806],[20.9024482,39.9926794],[20.9022676,39.9925305],[20.9022136,39.99243],[20.9023677,39.9923891],[20.902406,39.992318],[20.9022613,39.992152],[20.9022464,39.9919625],[20.9020751,39.9918678],[20.9019913,39.9916494],[20.901788,39.9914818],[20.901874,39.991394],[20.9017837,39.9913196],[20.9016626,39.9914064],[20.9017042,39.9912634],[20.9015588,39.9908542],[20.9013084,39.9906943],[20.9012443,39.9905575],[20.9014453,39.9902566],[20.9016357,39.9901897],[20.9017043,39.9899663],[20.9018262,39.9898615],[20.9017775,39.989644],[20.9016174,39.9895587],[20.9014871,39.9895912],[20.9014682,39.9894916],[20.9019365,39.9892339],[20.9021141,39.9889324],[20.9020617,39.9887959],[20.9025203,39.9887541],[20.9027378,39.9886068],[20.9028165,39.9884198],[20.903061,39.9881921],[20.9029903,39.9878074],[20.9028401,39.9874836],[20.9025083,39.9873126],[20.9024454,39.9871488],[20.9026879,39.9869661],[20.9028021,39.986771],[20.903055,39.9866157],[20.9031806,39.9861641],[20.903498,39.9861366],[20.9040472,39.9864215],[20.9047519,39.9861161],[20.9045657,39.9859399],[20.9045621,39.9857597],[20.9044376,39.9856663],[20.9045695,39.9855978],[20.9043396,39.9855015],[20.9040377,39.9851872],[20.9042824,39.9852118],[20.9044018,39.9851609],[20.9041039,39.9850179],[20.9041329,39.9848925],[20.9045185,39.9849118],[20.9046681,39.9849699],[20.905092,39.9849182],[20.9052593,39.9848416],[20.9055155,39.9846142],[20.9055712,39.9844175],[20.9060823,39.984251],[20.9060855,39.9841791],[20.9063417,39.9839517],[20.9065635,39.9839667],[20.9066526,39.9838069],[20.9067728,39.9837381],[20.9067249,39.9835026],[20.9068826,39.9833807],[20.9069636,39.9832162],[20.9069652,39.9831802],[20.9073214,39.9830726],[20.9073198,39.9828474],[20.9074993,39.9827621],[20.907576,39.9826201],[20.9079732,39.9826397],[20.9081878,39.9825553],[20.9082269,39.9824663],[20.9083258,39.9824734],[20.9083992,39.9824033],[20.9082928,39.9821663],[20.9085541,39.9820832],[20.9088063,39.9816846],[20.9097105,39.9813665],[20.9102118,39.9814159],[20.9104207,39.9813269],[20.9104821,39.9810042],[20.9103619,39.9804426],[20.910339,39.9801717],[20.9105697,39.9802094],[20.9113478,39.9800815],[20.9115083,39.9801579],[20.9114412,39.9799985],[20.9117969,39.9798998],[20.9121143,39.9798723],[20.9121386,39.9795937],[20.9116435,39.9791481],[20.9117475,39.9789167],[20.9113093,39.9785087],[20.9112682,39.9783815],[20.9115225,39.977992],[20.9116448,39.9776169],[20.9117407,39.9775654],[20.9119287,39.9775524],[20.9122371,39.9777228],[20.9124392,39.9776561],[20.9127537,39.9774303],[20.9128828,39.9774247],[20.9130775,39.97752],[20.9132703,39.977399],[20.9138131,39.9773054],[20.9140687,39.9773482],[20.914424,39.9775198],[20.9145768,39.9775059],[20.9153971,39.9777755],[20.9158181,39.9777867],[20.916099,39.9785688],[20.9162038,39.9785806],[20.9164434,39.9784609],[20.916649,39.9785744],[20.9169124,39.9784463],[20.9171362,39.9784163],[20.9172354,39.9782928],[20.9175762,39.9782658],[20.9180351,39.9779538],[20.9183573,39.9778182],[20.9184598,39.9776228],[20.9186921,39.977665],[20.9188348,39.9776148],[20.9192127,39.9772825],[20.9195793,39.9772022],[20.919795,39.9773521],[20.9199696,39.9773747],[20.9202458,39.9772199],[20.9207813,39.9772882],[20.9209237,39.977247],[20.9209886,39.9771046],[20.9211951,39.9772001],[20.9213427,39.9770419],[20.9212766,39.9769501],[20.9213032,39.9766175],[20.9211125,39.9764323],[20.9211399,39.976343],[20.9213641,39.9763039],[20.9216069,39.9763734],[20.9218263,39.9762531],[20.9219326,39.976346],[20.922215,39.9764256],[20.9229501,39.9764811],[20.9233771,39.9766186],[20.9235861,39.9771195],[20.9239905,39.9772384],[20.9249987,39.9772111],[20.9255588,39.9769918],[20.926333,39.9764359],[20.9269448,39.9761098],[20.9280605,39.9757701],[20.9281771,39.9752598],[20.9283275,39.9750386],[20.9287194,39.9746526],[20.9290763,39.974527],[20.9289472,39.9742713],[20.9289513,39.9736589],[20.9290871,39.9735004],[20.9293851,39.9733822],[20.9296077,39.9731179],[20.930048,39.9713911],[20.9312366,39.9702066],[20.9314652,39.9700685],[20.931839,39.9700874],[20.9320405,39.9700387],[20.9325127,39.9696909],[20.9329263,39.9696028],[20.9331426,39.9698067],[20.933876,39.9698982],[20.9350456,39.9695148],[20.9351899,39.9694285],[20.9355676,39.9692899],[20.9359091,39.9692449],[20.9365627,39.969028],[20.9363402,39.9692923],[20.9361724,39.969378],[20.9361321,39.969494],[20.9368535,39.9695942],[20.9368972,39.9696764],[20.9371552,39.9696652],[20.9372125,39.9694325],[20.9375104,39.9693143],[20.9376479,39.9691197],[20.9378982,39.9690183],[20.937728,39.9686355],[20.9380449,39.9683556],[20.9383831,39.9678601],[20.9385359,39.9678461],[20.9386154,39.9679023],[20.9390005,39.9684529],[20.9392678,39.968496],[20.9394219,39.968455],[20.9392584,39.9676581],[20.9392567,39.9671716],[20.9396216,39.9671407],[20.9403417,39.9672678],[20.9406582,39.9672582],[20.9406904,39.9673311],[20.9403905,39.9674943],[20.9403631,39.9675837],[20.9405332,39.9677053],[20.9408707,39.9677502],[20.9408885,39.9678768],[20.940745,39.967945],[20.9403232,39.9679519],[20.9402583,39.9680943],[20.9404374,39.9682792],[20.9409362,39.9683825],[20.9412874,39.9686439],[20.9414398,39.9691119],[20.941562,39.9692592],[20.9419196,39.9693767],[20.9420218,39.9699739],[20.9424118,39.9704166],[20.9426482,39.9708912],[20.943037,39.9713609],[20.9433887,39.9716134],[20.9435056,39.9716164],[20.9436757,39.9714768],[20.9447091,39.9718328],[20.9447817,39.9717807],[20.9458313,39.9718715],[20.9459982,39.9718038],[20.9461377,39.9718255],[20.9462127,39.9717194],[20.9466308,39.9715322],[20.9469965,39.9714698],[20.9470327,39.9711825],[20.9474836,39.9708746],[20.947658,39.9708207],[20.947979,39.9709733],[20.9488222,39.9712297],[20.9492739,39.9716019],[20.9500215,39.9717207],[20.9501893,39.971635],[20.9506679,39.9716656],[20.9511337,39.9719841],[20.9520315,39.9720888],[20.9523884,39.9722243],[20.952724,39.9725755],[20.9529191,39.9725716],[20.9538502,39.9724339],[20.9542167,39.9723535],[20.9548965,39.9723353],[20.9553103,39.9725084],[20.955444,39.9723678],[20.9550888,39.9715432]]}],{"extent":[20.71377,39.44765,21.18619,40.31204],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#f00","width":5,"action":{"type":"openurl"},"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},"IPIROS\/Epirus_Trail_MavrovouniRef_Metsovo":{"url":"http:\/\/www.topoguide.gr\/trail_creator\/Epirus_Trail\/Trail_Creator_Epirus_Trail_Mavrovouni_Metsovo.php","color":"#2f2fff","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Laista_Vovousa":{"url":null,"color":"#2f2fff","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Vrysochori_Laista":{"url":"","color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_SmolikasRef_Vrysochori":{"url":"","color":"#2f2fff","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Drosopigi_AgParaskevi":{"url":"","color":"#2f2fff","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Asimochori_Sarantaporos":{"url":"","color":"#2f2fff","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Pyrsogiani_Asimochori":{"url":"","color":"#2f2fff","width":3,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Sarantaporos_Amarantos":{"url":"","color":"#2f2fff","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Konitsa_Sarantaporos":{"url":"","color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Amarantos_Pyrsogiani":{"url":"","color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Asimochori_Aetomilitsa":{"url":"","color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Sarantaporos_Drosopigi":{"url":"","color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_AgParaskevi_SmolikasRef":{"url":"","color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Epirus_Trail_Vovousa_MavrovouniRef":{"url":null,"color":"#ff2f2f","width":4,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Chrysovitsa_Metsovo":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Greveniti_Chrysovitsa":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Asimochori_Aetomilitsa":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Vovousa_MavrovouniRef":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Amarantos_Pyrsogiani":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Konitsa_Sarantaporos":{"url":null,"color":"#ffad00","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Sarantaporos_Amarantos":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Laista_Vovousa":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Vrysochori_Laista":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Drosopigi_AgParaskevi":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Sarantaporos_Drosopigi":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_MavrovouniRef_Metsovo":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Pyrsogiani_Asimochori":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Aetomilitsa_Sarantaporos":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_AgParaskevi_SmolikasRef":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_SmolikasRef_Vrysochori":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_EpirusTrail_Konitsa_AstrakaRef":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_AstrakaRef_Papigo":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Papigo_Monodendri":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Monodendri_Kipi":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Kipi_Doliani":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Doliani_Greveniti":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Kipi_Fragades":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Fragades_Doliani":{"url":null,"color":"#ffad00","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Metsovo_Anthochori":{"url":null,"color":"#ff00ad","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Syrako_Matsouki":{"url":null,"color":"#ff00ad","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Anthochori_Syrako":{"url":null,"color":"#ff00ad","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Syrako_Tsopela":{"url":null,"color":"#ff00ad","width":5,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_EpirusTrail_Tsopela_Agnanta":{"url":null,"color":"#ff00ad","width":5,"exclude":false,"useStyle":true}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_epirus_trail = new getPoiCollection("epirus_trail",[{"name":"\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a0\u03b5\u03c1\u03ac\u03bc\u03b1\u03c4\u03bf\u03c2
\u0399\u03c9\u03ac\u03bd\u03bd\u03b9\u03bd\u03b1","owner":"\u03a1\u03b5\u03b3\u03b3\u03af\u03bd\u03b1 \u039a\u03bf\u03cd\u03c4\u03c3\u03b7","x":20.849963,"y":39.694564,"photo":"Cave_Perama","type":73,"zoom_level":11,"id":25,"hlink_GR":"http:\/\/spilaio-perama.gr\/web\/","hlink_EN":"http:\/\/www.about-ioannina.gr\/ioannina_en\/cave.htm","description":"\u03a4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03af \u03c4\u03bc\u03ae\u03bc\u03b1 \u03ba\u03bf\u03af\u03c4\u03b7\u03c2 \u03c5\u03c0\u03cc\u03b3\u03b5\u03b9\u03bf\u03c5 \u03c0\u03bf\u03c4\u03b1\u03bc\u03bf\u03cd, \u03c0\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bd\u03bf\u03af\u03c7\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c4\u03b5\u03c4\u03b1\u03c1\u03c4\u03bf\u03b3\u03b5\u03bd\u03ae \u03b5\u03c0\u03bf\u03c7\u03ae, \u03b7\u03bb\u03b9\u03ba\u03af\u03b1\u03c2 1.500.000 \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5. H \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a3\u03c0\u03b7\u03bb\u03b1\u03af\u03bf\u03c5 \u03ae\u03c4\u03b1\u03bd \u03b3\u03bd\u03c9\u03c3\u03c4\u03ae \u03c0\u03c1\u03b9\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf 1900 \u03ba\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03bf \u03bc\u03c0\u03ad\u03b7\u03c2 \u03a7\u03bf\u03bb\u03b9\u03ac\u03c3\u03b7\u03c2 \u0395\u03c6\u03ad\u03bd\u03c4\u03b7\u03c2 \u03c4\u03b7\u03bd \u03ad\u03ba\u03bb\u03b5\u03b9\u03c3\u03b5 \u03c0\u03b5\u03c1\u03af \u03c4\u03bf 1907 \u03b3\u03b9\u03b1 \u03bb\u03cc\u03b3\u03bf\u03c5\u03c2 \u03b1\u03c3\u03c6\u03b1\u03bb\u03b5\u03af\u03b1\u03c2. \u0391\u03c0\u03cc \u03c4\u03cc\u03c4\u03b5 \u03cc\u03bc\u03c9\u03c2 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1 \u03b4\u03b5 \u03b8\u03cd\u03bc\u03b9\u03b6\u03b5 \u03c4\u03b7\u03bd \u03cd\u03c0\u03b1\u03c1\u03be\u03ae \u03c4\u03bf\u03c5. \u0393\u03bd\u03c9\u03c3\u03c4\u03cc \u03ad\u03b3\u03b9\u03bd\u03b5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf\u03bd \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03bf \u03a0\u03b1\u03b3\u03ba\u03cc\u03c3\u03bc\u03b9\u03bf \u03a0\u03cc\u03bb\u03b5\u03bc\u03bf (1940) \u03b1\u03c0\u03cc \u03ba\u03b1\u03c4\u03bf\u03af\u03ba\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5 \u03c7\u03c9\u03c1\u03b9\u03bf\u03cd \u03bf\u03b9 \u03bf\u03c0\u03bf\u03af\u03bf\u03b9 \u03ba\u03c1\u03cd\u03b2\u03bf\u03bd\u03c4\u03b1\u03bd \u03c3\u03c4\u03b1 \u03ba\u03bf\u03b9\u03bb\u03ce\u03bc\u03b1\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03cc\u03c6\u03bf\u03c5 \u0393\u03ba\u03bf\u03c1\u03af\u03c4\u03c3\u03b1,\u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03c5\u03bb\u03b1\u03c7\u03b8\u03bf\u03cd\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03b2\u03bf\u03bc\u03b2\u03b1\u03c1\u03b4\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2 \u03c4\u03c9\u03bd \u03b1\u03b5\u03c1\u03bf\u03c0\u03bb\u03ac\u03bd\u03c9\u03bd. \u0397 \u03c4\u03bf\u03c5\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5, \u03ad\u03c7\u03b5\u03b9 \u03bc\u03ae\u03ba\u03bf\u03c2 1.100 \u03bc\u03ad\u03c4\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03b7 \u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03c0\u03bf\u03c5 \u03ba\u03b1\u03bb\u03cd\u03c0\u03c4\u03b5\u03b9 \u03b5\u03af\u03bd\u03b1\u03b9 14.800 m2, \u03b5\u03bd\u03ce \u03b7 \u03c5\u03c8\u03bf\u03bc\u03b5\u03c4\u03c1\u03b9\u03ba\u03ae \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ac \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03ad\u03c9\u03c2 \u03c4\u03b7\u03bd \u03ad\u03be\u03bf\u03b4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 25 \u03bc\u03ad\u03c4\u03c1\u03b1 \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5.","height":0,"width":0},{"name":"\u03a4\u039f\u039c\u0391\u03a1\u039f\u03a3
\u0393\u03b5\u03bd\u03b9\u03ba\u03ae \u03ac\u03c0\u03bf\u03c8\u03b7
\u03b1\u03c0\u03cc \u03c4\u03b1 \u03a4\u03b6\u03bf\u03c5\u03bc\u03ad\u03c1\u03ba\u03b1","owner":"","x":20.791847229003,"y":39.488007344965,"photo":"TOMAROS_view_from_Tzoumerka","type":0,"zoom_level":12,"id":114,"hlink_GR":"","hlink_EN":"","description":"","height":341,"width":800},{"name":"\u03a4\u0396\u039f\u03a5\u039c\u0395\u03a1\u039a\u0391
\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c5\u03b4\u03c1\u03b1\u03b3\u03c9\u03b3\u03b5\u03af\u03bf\u03c5","owner":"","x":21.11048,"y":39.449165,"photo":"TZOUMERKA_Kataraxtis_Ydragogeio","type":0,"zoom_level":14,"id":119,"hlink_GR":"","hlink_EN":"","description":"","height":343,"width":512},{"name":"\u03a4\u0396\u039f\u03a5\u039c\u0395\u03a1\u039a\u0391:
\u039f \u03ba\u03b1\u03c4\u03b1\u03c1\u03c1\u03ac\u03ba\u03c4\u03b7\u03c2","owner":"","x":21.122004,"y":39.460788,"photo":"TZOUMERKA_Kataraxtis4","type":0,"zoom_level":12,"id":120,"hlink_GR":"","hlink_EN":"","description":"","height":1025,"width":512},{"name":"\u03a4\u0396\u039f\u03a5\u039c\u0395\u03a1\u039a\u0391
\u03a3\u03ba\u03ac\u03bb\u03b1 \u03a3\u03c4\u03b1\u03bc\u03ac\u03c4\u03b7","owner":"","x":21.135212,"y":39.454191,"photo":"TZOUMERKA_Skala_Stamati","type":0,"zoom_level":14,"id":121,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03b5\u03ba\u03c4\u03b5\u03b8\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03a3\u03ba\u03ac\u03bb\u03b1\u03c2 \u03a3\u03c4\u03b1\u03bc\u03ac\u03c4\u03b7","height":780,"width":512},{"name":"\u039c\u0391\u039d\u0399\u03a4\u0391\u03a1\u0399\u0391
Macrolepiota procera","owner":"","x":21.175467491151,"y":39.945603001207,"photo":"Macrolepiota procera","type":6,"zoom_level":14,"id":128,"hlink_GR":"","hlink_EN":"","description":"","height":699,"width":512},{"name":"\u039a\u039f\u039d\u0399\u03a4\u03a3\u0391
\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03bf\u03bd\u03cc\u03c4\u03bf\u03be\u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c3\u03c4\u03bf\u03bd \u0391\u03ce\u03bf","owner":"A. Bonetti","x":20.744168281551,"y":40.037138712793,"photo":"Aoos River - Konista bridge","type":9,"zoom_level":12,"id":148,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":345},{"name":"\u0393\u03a1\u0391\u039c\u039f\u03a3
\u039b\u03af\u03bc\u03bd\u03b7 \u0391\u03c1\u03b5\u03bd\u03ce\u03bd","owner":"A. Bonetti","x":20.916859626768,"y":40.308358585437,"photo":"Mt Grammos - Moutsalia Lakes","type":0,"zoom_level":12,"id":212,"hlink_GR":"","hlink_EN":"","description":"\u039b\u03ad\u03b3\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03bb\u03af\u03bc\u03bd\u03b7 \u039c\u03bf\u03c5\u03c4\u03c3\u03ac\u03bb\u03b9\u03b1","height":342,"width":512},{"name":"\u03a4\u03a5\u039c\u03a6\u0397
\u0397 \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c6\u03ae
\u0393\u03ba\u03b1\u03bc\u03ae\u03bb\u03b1 2495\u03bc","owner":"A. Bonetti","x":20.802618980408,"y":39.990399807429,"photo":"Mt Timfi - Gamila-01","type":0,"zoom_level":12,"id":225,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":330},{"name":"\u03a4\u03a5\u039c\u03a6\u0397
\u0397 \u039e\u03b5\u03c1\u03bf\u03bb\u03bf\u03cd\u03c4\u03c3\u03b1 \u03a4\u03c3\u03bf\u03c5\u03bc\u03ac\u03bd\u03b7","owner":"A. Bonetti","x":20.772406578063,"y":39.983363192954,"photo":"Timfi Xeroloutsa Lake - Astraka","type":0,"zoom_level":12,"id":248,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03ba\u03bf\u03c1\u03c6\u03ae \u0391\u03c3\u03c4\u03c1\u03ac\u03ba\u03b1 \u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2","height":512,"width":338},{"name":"\u03a4\u03a5\u039c\u03a6\u0397
\u0391\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf","owner":"A. Bonetti","x":20.768587112426,"y":39.979581535311,"photo":"Timfi-Refuge-Lakka Tsoumani","type":0,"zoom_level":14,"id":249,"hlink_GR":"","hlink_EN":"","description":"\u0398\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03a0\u03bb\u03cc\u03c3\u03ba\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b7 \u0393\u03ba\u03b1\u03bc\u03ae\u03bb\u03b1","height":338,"width":512},{"name":"\u0392\u0391\u039b\u0399\u0391 \u039a\u0391\u039b\u039d\u03a4\u0391
\u03a4\u03bf \u0391\u03c1\u03ba\u03bf\u03c5\u03b4\u03cc\u03c1\u03b5\u03bc\u03b1","owner":"A. Bonetti","x":21.124870300292,"y":39.892776140006,"photo":"Valia kalda Arkoudorema 03","type":0,"zoom_level":14,"id":250,"hlink_GR":"","hlink_EN":"","description":"","height":511,"width":334},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0398\u03ad\u03b1 \u03c3\u03c4\u03bf \u0392\u03af\u03ba\u03bf","owner":"A. Bonetti","x":20.753824234008,"y":39.906735608044,"photo":"Vikos-gorge-shrine","type":0,"zoom_level":14,"id":253,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":338},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.954218,"y":39.819025,"photo":"DSC040901","type":450,"zoom_level":17,"id":3450,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.75306,"y":39.87369,"photo":"DSC040961","type":450,"zoom_level":17,"id":3451,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.754701,"y":39.873015,"photo":"DSC040971","type":450,"zoom_level":17,"id":3452,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.755725,"y":39.872015,"photo":"DSC040981","type":450,"zoom_level":18,"id":3453,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.756706442459,"y":39.871779325608,"photo":"DSC040991","type":450,"zoom_level":17,"id":3454,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.759631,"y":39.870318,"photo":"DSC041051","type":450,"zoom_level":18,"id":3456,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.762961,"y":39.869063,"photo":"DSC041061","type":450,"zoom_level":17,"id":3457,"hlink_GR":"","hlink_EN":"","description":"","height":652,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.764153,"y":39.869023,"photo":"DSC041221","type":450,"zoom_level":17,"id":3458,"hlink_GR":"","hlink_EN":"","description":"","height":411,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.764946,"y":39.867061,"photo":"DSC041271","type":450,"zoom_level":17,"id":3459,"hlink_GR":"","hlink_EN":"","description":"","height":754,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.774748012564,"y":39.862570212705,"photo":"DSC041301","type":450,"zoom_level":17,"id":3460,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776503,"y":39.871051,"photo":"DSC041381","type":450,"zoom_level":17,"id":3461,"hlink_GR":"","hlink_EN":"","description":"","height":559,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.775096,"y":39.866986,"photo":"DSC041401","type":450,"zoom_level":17,"id":3462,"hlink_GR":"","hlink_EN":"","description":"","height":528,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776108,"y":39.86561,"photo":"DSC041411","type":450,"zoom_level":18,"id":3463,"hlink_GR":"","hlink_EN":"","description":"","height":552,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.779841,"y":39.869326,"photo":"DSC041631","type":450,"zoom_level":17,"id":3464,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.780401,"y":39.868826,"photo":"DSC041641","type":450,"zoom_level":18,"id":3465,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.789786,"y":39.865965,"photo":"DSC041871","type":450,"zoom_level":17,"id":3466,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776465,"y":39.859958,"photo":"DSC042291","type":450,"zoom_level":17,"id":3467,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.773916,"y":39.86131,"photo":"DSC042341","type":450,"zoom_level":17,"id":3468,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.789375,"y":39.864371,"photo":"DSC042022","type":450,"zoom_level":17,"id":3469,"hlink_GR":"","hlink_EN":"","description":"","height":818,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03c0\u03cc\u03c3\u03c4\u03bf\u03bb\u03bf\u03b9 \u0394\u03cc\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":20.95925180159,"y":39.801157148764,"photo":"Zagori_AgApostoloi_1_1","type":9,"zoom_level":15,"id":3470,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03c6\u03c5\u03c1\u03b1 \u0391\u03c1\u03ba\u03bf\u03cd\u03b4\u03b1","owner":"AnaDigit","x":20.774190563491,"y":39.854962861284,"photo":"Zagori_gef_Arkouda_11","type":9,"zoom_level":15,"id":3471,"hlink_GR":"","hlink_EN":"","description":"","height":730,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397\u03c1\u03ce\u03bf \u039a\u03b1\u03c0\u03b5\u03c4\u03ac\u03bd \u0391\u03c1\u03ba\u03bf\u03cd\u03b4\u03b1","owner":"AnaDigit","x":20.774903,"y":39.854955,"photo":"Zagori_iroo_Arkouda_21","type":9,"zoom_level":16,"id":3472,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c0\u03b7\u03bb\u03af\u03c4\u03c3\u03b1 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039f3","owner":"AnaDigit","x":20.772751,"y":39.866583,"photo":"Zagori_path_VitsaKokori_1","type":73,"zoom_level":16,"id":3473,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0392\u03af\u03c4\u03c3\u03b1","owner":"AnaDigit","x":20.753113,"y":39.873612,"photo":"Zagori_Vitsa_11","type":9,"zoom_level":14,"id":3474,"hlink_GR":"","hlink_EN":"","description":"","height":526,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03c0\u03cc\u03c4\u03b1\u03bc\u03bf","owner":"AnaDigit","x":20.875015494826,"y":39.790243204616,"photo":"Zagori_Dipotamo_11","type":9,"zoom_level":14,"id":3475,"hlink_GR":"","hlink_EN":"","description":"","height":691,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u0394\u03af\u03bb\u03bf\u03c6\u03bf","owner":"AnaDigit","x":20.766093,"y":39.853023,"photo":"Zagori_Dilofo_fnt1","type":1001,"zoom_level":17,"id":3476,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u039a\u03ae\u03c0\u03bf\u03c5\u03c2","owner":"AnaDigit","x":20.79244,"y":39.864346,"photo":"Zagori_Kipoi_fnt_11","type":1001,"zoom_level":18,"id":3477,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039b\u03b1\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u039c\u03bf\u03c5\u03c3\u03b5\u03af\u03bf \u0391\u03b3\u03b1\u03c0\u03af\u03bf\u03c5 \u03a4\u03cc\u03bb\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u039a\u03ae\u03c0\u03bf\u03c5\u03c2","owner":"AnaDigit","x":20.794003,"y":39.863716,"photo":"Zagori_Kipoi_mouseio_Agapios_Tolis1","type":9,"zoom_level":17,"id":3478,"hlink_GR":"","hlink_EN":"","description":"","height":801,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03bd\u03b5\u03c3\u03b7 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5 \u03c3\u03c4\u03bf\u03bd \u0391\u03bd\u03b8\u03c1\u03b1\u03ba\u03af\u03c4\u03b7","owner":"AnaDigit","x":20.863692423283,"y":39.775753057245,"photo":"Zagori_Anthrakitis_Gen_Theotokou_11","type":9,"zoom_level":15,"id":3479,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03c6\u03c5\u03c1\u03b1 \u039c\u03af\u03c3\u03b9\u03bf\u03c5","owner":"AnaDigit","x":20.764375343916,"y":39.869261276358,"photo":"Zagori_gef_Kokori_Misiou1","type":9,"zoom_level":15,"id":3480,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03c6\u03c5\u03c1\u03b1 \u039b\u03b1\u03b6\u03b1\u03c1\u03af\u03b4\u03b7-\u039a\u03bf\u03bd\u03c4\u03bf\u03b4\u03ae\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.789472609787,"y":39.865669030133,"photo":"Zagori_gef_Lazaridi_Kondodimou_31","type":9,"zoom_level":15,"id":3481,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03ae\u03c0\u03bf\u03b9 (\u039c\u03c0\u03ac\u03b3\u03b9\u03b1)","owner":"AnaDigit","x":20.793145002679,"y":39.864982228607,"photo":"Zagori_Kipoi_21","type":9,"zoom_level":14,"id":3482,"hlink_GR":"","hlink_EN":"","description":"","height":585,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03bf\u03c5\u03ba\u03bf\u03cd\u03bb\u03b9","owner":"AnaDigit","x":20.775218,"y":39.871092,"photo":"Zagori_Koukouli_21","type":9,"zoom_level":14,"id":3483,"hlink_GR":"","hlink_EN":"","description":"","height":607,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03bd\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u0394\u03b9\u03bb\u03cc\u03c6\u03bf\u03c5","owner":"AnaDigit","x":20.766509513228,"y":39.853510022274,"photo":"Zagori_Dilofo_nec1","type":9,"zoom_level":16,"id":3484,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03bf\u03c5\u03ba\u03bf\u03cd\u03bb\u03b9-\u039a\u03ae\u03c0\u03bf\u03b9","owner":"AnaDigit","x":20.789395,"y":39.865915,"photo":"Zagori_path_Koukouli_Kipoi_41","type":0,"zoom_level":16,"id":3485,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039f \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c4\u03c9\u03bd \u039a\u03ae\u03c0\u03c9\u03bd","owner":"AnaDigit","x":20.79486732672,"y":39.86116325132,"photo":"Zagori_Kipoi_wmill1","type":9,"zoom_level":15,"id":3486,"hlink_GR":"","hlink_EN":"","description":"","height":558,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039f \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c4\u03c9\u03bd \u039a\u03ae\u03c0\u03c9\u03bd \u03c3\u03c4\u03bf \u0392\u03b9\u03ba\u03ac\u03ba\u03b7","owner":"AnaDigit","x":20.789871,"y":39.866311,"photo":"Zagori_path_Koukouli_Kipoi_wmill1","type":9,"zoom_level":16,"id":3487,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039a\u03cc\u03ba\u03ba\u03bf\u03c1\u03b7","owner":"AnaDigit","x":20.775343462966,"y":39.862220212275,"photo":"Zagori_gef_Kokori_21","type":9,"zoom_level":15,"id":3488,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03ba\u03c4\u03b7\u03c4\u03bf\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03a3\u03ba\u03ac\u03bb\u03b1\u03c2 \u03c4\u03b7\u03c2 \u0392\u03af\u03c4\u03c3\u03b1\u03c2","owner":"AnaDigit","x":20.763043,"y":39.868618,"photo":"Zagori_Skala_Vitsas1","type":9,"zoom_level":17,"id":3489,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u0394\u03af\u03bb\u03bf\u03c6\u03bf","owner":"AnaDigit","x":20.765183468254,"y":39.853157125345,"photo":"Zagori_Dilofo_11","type":9,"zoom_level":14,"id":3490,"hlink_GR":"","hlink_EN":"","description":"","height":682,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03c1\u03af\u03c4\u03bf\u03be\u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03a0\u03bb\u03b1\u03ba\u03af\u03b4\u03b1 \u03ae \u039d\u03bf\u03cd\u03c4\u03c3\u03bf\u03c5","owner":"AnaDigit","x":20.786281576726,"y":39.861933348561,"photo":"Zagori_gef_Plakida_31","type":9,"zoom_level":14,"id":3491,"hlink_GR":"","hlink_EN":"","description":"","height":746,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039f\u03b9 \u03c8\u03b7\u03bb\u03ad\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ad\u03c2 \u03bc\u03ad\u03c3\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u0392\u03b9\u03ba\u03ac\u03ba\u03b7","owner":"AnaDigit","x":20.848241119521,"y":39.968168914985,"photo":"Zagori_Vikakis_31","type":0,"zoom_level":14,"id":3492,"hlink_GR":"","hlink_EN":"","description":"","height":759,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c4\u03bf\u03c5 \u0392\u03b9\u03ba\u03ac\u03ba\u03b7 \u03ba\u03b1\u03b9 \u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u039a\u03bf\u03bd\u03c4\u03bf\u03b4\u03ae\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.789127,"y":39.864394,"photo":"Zagori_Vikakis_21","type":0,"zoom_level":15,"id":3493,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03ae\u03bb\u03b7 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03ba\u03c4\u03b7\u03c4\u03bf\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03a3\u03ba\u03ac\u03bb\u03b1\u03c2 \u039a\u03ae\u03c0\u03c9\u03bd","owner":"AnaDigit","x":20.78917,"y":39.8663,"photo":"Zagori_path_Koukouli_Kipoi_51","type":9,"zoom_level":17,"id":3494,"hlink_GR":"","hlink_EN":"","description":"","height":801,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c4\u03b7\u03c2 \u0393\u03ba\u03b1\u03bb\u03bd\u03c4\u03b5\u03c1\u03bf\u03cd\u03c3\u03b9\u03b1\u03c2","owner":"AnaDigit","x":20.95357,"y":39.778835,"photo":"Zagori_gef_Galderousias_11","type":9,"zoom_level":15,"id":3495,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0399\u039d\u0394\u039f\u03a3
\u03a4\u03bf \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":21.089343,"y":39.679723,"photo":"Zagori_Peristeri_11","type":0,"zoom_level":13,"id":3496,"hlink_GR":"","hlink_EN":"","description":"","height":559,"width":1400},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u03c4\u03b7\u03c2 \u03b1\u03c1\u03ba\u03bf\u03cd\u03b4\u03b1\u03c2","owner":"AnaDigit","x":21.183573,"y":39.769826,"photo":"DSC061761","type":9,"zoom_level":16,"id":3587,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.183405,"y":39.76967,"photo":"DSC061771","type":450,"zoom_level":16,"id":3588,"hlink_GR":"","hlink_EN":"","description":"","height":797,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.182801,"y":39.77011,"photo":"DSC061781","type":450,"zoom_level":17,"id":3592,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":760},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.183986,"y":39.771573,"photo":"DSC061793","type":450,"zoom_level":17,"id":3594,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":627},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.186011,"y":39.767268,"photo":"DSC061811","type":450,"zoom_level":17,"id":3595,"hlink_GR":"","hlink_EN":"","description":"","height":757,"width":1000},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.178055,"y":39.76832,"photo":"DSC062021","type":450,"zoom_level":16,"id":3605,"hlink_GR":"","hlink_EN":"","description":"","height":620,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.153013,"y":39.774098,"photo":"DSC062341","type":450,"zoom_level":16,"id":3606,"hlink_GR":"","hlink_EN":"","description":"","height":691,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.139438,"y":39.787041,"photo":"DSC062471","type":450,"zoom_level":16,"id":3607,"hlink_GR":"","hlink_EN":"","description":"","height":747,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.148655,"y":39.785865,"photo":"DSC062531","type":450,"zoom_level":16,"id":3608,"hlink_GR":"","hlink_EN":"","description":"","height":744,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.166881,"y":39.777986,"photo":"DSC062661","type":450,"zoom_level":15,"id":3609,"hlink_GR":"","hlink_EN":"","description":"","height":780,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.146276,"y":39.783711,"photo":"DSC062431","type":450,"zoom_level":17,"id":3610,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.176543,"y":39.771568,"photo":"DSC062691","type":450,"zoom_level":17,"id":3611,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":905},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.163136,"y":39.775341,"photo":"20160516_1026501","type":450,"zoom_level":16,"id":3612,"hlink_GR":"","hlink_EN":"","description":"","height":642,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.176231,"y":39.76717,"photo":"DSC062051","type":450,"zoom_level":18,"id":3613,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.176033,"y":39.767003,"photo":"DSC062071","type":450,"zoom_level":18,"id":3614,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":794},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.175733,"y":39.766851,"photo":"DSC062141","type":450,"zoom_level":18,"id":3615,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.17555,"y":39.767201,"photo":"DSC062151","type":450,"zoom_level":18,"id":3616,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.175528,"y":39.767131,"photo":"DSC062161","type":450,"zoom_level":18,"id":3617,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.175566,"y":39.767166,"photo":"DSC062171","type":450,"zoom_level":18,"id":3618,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.175561,"y":39.767191,"photo":"DSC062181","type":450,"zoom_level":18,"id":3619,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.173696,"y":39.769116,"photo":"DSC062191","type":450,"zoom_level":18,"id":3620,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.173701,"y":39.769446,"photo":"DSC062201","type":450,"zoom_level":18,"id":3621,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.17286,"y":39.77028,"photo":"DSC062211","type":450,"zoom_level":17,"id":3622,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":789},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.165313,"y":39.776206,"photo":"DSC062241","type":450,"zoom_level":16,"id":3623,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0395\u03b9\u03ba\u03b1\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bc\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.16438,"y":39.775603,"photo":"DSC062251","type":450,"zoom_level":17,"id":3624,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u0397\u03c1\u03ce\u03bf \u03c0\u03b5\u03c3\u03cc\u03bd\u03c4\u03c9\u03bd","owner":"AnaDigit","x":21.176323,"y":39.767266,"photo":"DSC062041","type":9,"zoom_level":17,"id":3625,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 Ursa Trail","owner":"AnaDigit","x":21.183436,"y":39.763001,"photo":"DSC063891","type":450,"zoom_level":16,"id":3630,"hlink_GR":"","hlink_EN":"","description":"","height":627,"width":800},{"name":"\u039c\u0395\u03a4\u03a3\u039f\u0392\u039f
\u03a0\u03b5\u03c1\u03c0\u03b1\u03c4\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf Ursa Trail","owner":"AnaDigit","x":21.152611,"y":39.783113,"photo":"DSC064021","type":0,"zoom_level":15,"id":3642,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":1082},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.791376,"y":39.869555,"photo":"DSC064091","type":450,"zoom_level":17,"id":3644,"hlink_GR":"","hlink_EN":"","description":"","height":620,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.786761,"y":39.877956,"photo":"DSC064201","type":450,"zoom_level":17,"id":3645,"hlink_GR":"","hlink_EN":"","description":"","height":671,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.78496,"y":39.881736,"photo":"DSC064211","type":450,"zoom_level":17,"id":3646,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776361,"y":39.886533,"photo":"DSC064241","type":450,"zoom_level":18,"id":3647,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.772878,"y":39.8834,"photo":"DSC064253","type":450,"zoom_level":18,"id":3649,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.762083,"y":39.883085,"photo":"DSC064311","type":450,"zoom_level":17,"id":3650,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.761866,"y":39.88369,"photo":"DSC064331","type":450,"zoom_level":18,"id":3651,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.761528,"y":39.883713,"photo":"DSC064341","type":450,"zoom_level":17,"id":3652,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.809231,"y":39.933766,"photo":"DSC065581","type":450,"zoom_level":17,"id":3655,"hlink_GR":"","hlink_EN":"","description":"","height":833,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.803119,"y":39.918343,"photo":"DSC065641","type":450,"zoom_level":17,"id":3657,"hlink_GR":"","hlink_EN":"","description":"","height":734,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.809361,"y":39.899745,"photo":"DSC065681","type":450,"zoom_level":17,"id":3659,"hlink_GR":"","hlink_EN":"","description":"","height":792,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.797208,"y":39.895535,"photo":"DSC065691","type":450,"zoom_level":17,"id":3660,"hlink_GR":"","hlink_EN":"","description":"","height":689,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.786681,"y":39.889353,"photo":"DSC065731","type":450,"zoom_level":17,"id":3661,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.7867,"y":39.889035,"photo":"DSC065741","type":450,"zoom_level":16,"id":3662,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03ae\u03c0\u03bf\u03b9-\u039a\u03b1\u03c0\u03ad\u03c3\u03bf\u03b2\u03bf","owner":"AnaDigit","x":20.790518,"y":39.870895,"photo":"DSC064131","type":0,"zoom_level":16,"id":3663,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03b7 \u03a3\u03ba\u03ac\u03bb\u03b1 \u039a\u03b1\u03c0\u03b5\u03c3\u03cc\u03b2\u03bf\u03c5","owner":"AnaDigit","x":20.765112552929,"y":39.881424140208,"photo":"DSC064291","type":0,"zoom_level":15,"id":3664,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u0392\u03af\u03ba\u03bf","owner":"AnaDigit","x":20.763366,"y":39.881832,"photo":"DSC064401","type":0,"zoom_level":16,"id":3665,"hlink_GR":"","hlink_EN":"","description":"","height":789,"width":1300},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u0392\u03af\u03ba\u03bf","owner":"AnaDigit","x":20.763755,"y":39.877275,"photo":"DSC064471","type":0,"zoom_level":16,"id":3666,"hlink_GR":"","hlink_EN":"","description":"","height":855,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c4\u03bf\u03c5 \u039c\u03af\u03c3\u03c3\u03b9\u03bf\u03c5","owner":"AnaDigit","x":20.764041,"y":39.86895,"photo":"DSC064491","type":0,"zoom_level":15,"id":3667,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0391\u03c0\u03cc \u03c4\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c4\u03bf\u03c5 \u039c\u03af\u03c3\u03c3\u03b9\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c2 \u03b3\u03b5\u03c6. \u039a\u03cc\u03ba\u03ba\u03bf\u03c1\u03b7","owner":"AnaDigit","x":20.764451,"y":39.868803,"photo":"DSC064541","type":0,"zoom_level":15,"id":3668,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u03a6\u03bf\u03cd\u03bd\u03ba\u03bf","owner":"AnaDigit","x":20.83773,"y":39.940408,"photo":"DSC064631","type":0,"zoom_level":15,"id":3669,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u039b\u03ac\u03ba\u03ba\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u039b\u03b9\u03b8\u03b1\u03c1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":20.838556,"y":39.941291,"photo":"DSC064661","type":0,"zoom_level":16,"id":3670,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u039b\u03ac\u03ba\u03ba\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u039b\u03b9\u03b8\u03b1\u03c1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":20.850778,"y":39.95947,"photo":"DSC064881","type":0,"zoom_level":15,"id":3671,"hlink_GR":"","hlink_EN":"","description":"","height":735,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u039b\u03ac\u03ba\u03ba\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u039b\u03b9\u03b8\u03b1\u03c1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":20.852163,"y":39.962726,"photo":"DSC064931","type":0,"zoom_level":15,"id":3672,"hlink_GR":"","hlink_EN":"","description":"","height":756,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b2\u03ac\u03bb\u03bf\u03c5","owner":"AnaDigit","x":20.852726,"y":39.96934,"photo":"DSC065131","type":0,"zoom_level":15,"id":3673,"hlink_GR":"","hlink_EN":"","description":"","height":643,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b2\u03ac\u03bb\u03bf\u03c5","owner":"AnaDigit","x":20.851763,"y":39.970855,"photo":"DSC065151","type":0,"zoom_level":14,"id":3674,"hlink_GR":"","hlink_EN":"","description":"","height":663,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u03a6\u03bf\u03cd\u03bd\u03ba\u03bf","owner":"AnaDigit","x":20.839168,"y":39.941978,"photo":"DSC064712","type":0,"zoom_level":16,"id":3675,"hlink_GR":"","hlink_EN":"","description":"","height":613,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03cd\u03bc\u03c6\u03b7\u03c2","owner":"AnaDigit","x":20.81631,"y":39.964138,"photo":"DSC065311","type":0,"zoom_level":15,"id":3676,"hlink_GR":"","hlink_EN":"","description":"","height":667,"width":1400},{"name":"\u0398\u0397\u039b\u0391\u03a3\u03a4\u0399\u039a\u0391
\u0391\u03b3\u03c1\u03b9\u03cc\u03b3\u03b9\u03b4\u03bf \u03c3\u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03cd\u03bc\u03c6\u03b7\u03c2","owner":"AnaDigit","x":20.831596,"y":39.972243,"photo":"DSC065221","type":7,"zoom_level":14,"id":3677,"hlink_GR":"","hlink_EN":"","description":"","height":885,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0392\u03b9\u03cc\u03bb\u03b5\u03c2 \u03c3\u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03cd\u03bc\u03c6\u03b7\u03c2","owner":"AnaDigit","x":20.80949,"y":39.955433,"photo":"DSC065391","type":0,"zoom_level":14,"id":3678,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
Dactylorhiza sambucina \u03c3\u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1","owner":"AnaDigit","x":20.807506,"y":39.955005,"photo":"DSC065471","type":1,"zoom_level":15,"id":3679,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1","owner":"AnaDigit","x":20.808605,"y":39.955561,"photo":"DSC065421","type":0,"zoom_level":16,"id":3680,"hlink_GR":"","hlink_EN":"","description":"","height":614,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03b7\u03bd \u03c0\u03b7\u03b3\u03ae \u039a\u03c1\u03bf\u03cd\u03bd\u03b1","owner":"AnaDigit","x":20.80935,"y":39.9366,"photo":"DSC065522","type":1001,"zoom_level":14,"id":3681,"hlink_GR":"","hlink_EN":"","description":"","height":705,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03b7\u03b3\u03ae \u039a\u03c1\u03bf\u03cd\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03a4\u03c3\u03b5\u03c0\u03ad\u03bb\u03bf\u03b2\u03bf","owner":"AnaDigit","x":20.809516,"y":39.934236,"photo":"DSC06556_stitch2","type":0,"zoom_level":15,"id":3682,"hlink_GR":"","hlink_EN":"","description":"","height":656,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03bb\u03bf\u03cd\u03c4\u03c3\u03b1 \u03a0\u03b1\u03c5\u03bb\u03bf\u03b3\u03b9\u03b1\u03bd\u03bd\u03ac\u03ba\u03b7 \u03c3\u03c4\u03bf\u03bd \u0391\u03c5\u03b3\u03b5\u03c1\u03b9\u03bd\u03cc","owner":"AnaDigit","x":20.803143,"y":39.918183,"photo":"DSC065621","type":1001,"zoom_level":15,"id":3683,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c7\u03bf\u03bb\u03b5\u03af\u03bf","owner":"AnaDigit","x":20.820338096561,"y":39.903068079764,"photo":"K3II0821s1","type":9,"zoom_level":16,"id":3730,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c4\u03c3\u03b1 \u03a4\u03c3\u03b5\u03c0\u03b5\u03bb\u03cc\u03b2\u03bf\u03c5","owner":"AnaDigit","x":20.811068,"y":39.902061,"photo":"Ag_Georgios_Loutsa_Tsepelovo1","type":9,"zoom_level":15,"id":3733,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a7\u03c1\u03b9\u03c3\u03c4\u03cc\u03c6\u03bf\u03c1\u03bf\u03c2","owner":"AnaDigit","x":20.862743,"y":39.819707,"photo":"aghios_christoforos_fragades1","type":9,"zoom_level":15,"id":3734,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 Zagori Race","owner":"AnaDigit","x":20.806776,"y":39.902106,"photo":"DSC075471","type":450,"zoom_level":17,"id":3735,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 Zagori Race","owner":"AnaDigit","x":20.806835,"y":39.902216,"photo":"DSC075481","type":450,"zoom_level":17,"id":3736,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u0396\u03b1\u03b3\u03cc\u03c1\u03b9","owner":"AnaDigit","x":20.806843,"y":39.902255,"photo":"DSC075491","type":450,"zoom_level":16,"id":3737,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u0396\u03b1\u03b3\u03cc\u03c1\u03b9","owner":"AnaDigit","x":20.808558,"y":39.902711,"photo":"DSC075501","type":450,"zoom_level":16,"id":3738,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u0396\u03b1\u03b3\u03cc\u03c1\u03b9","owner":"AnaDigit","x":20.80854,"y":39.902711,"photo":"DSC075511","type":450,"zoom_level":17,"id":3739,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":558},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03c4\u03b9\u03ba\u03ae \u03c0\u03b9\u03bd\u03b1\u03ba\u03af\u03b4\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03b1\u03b3\u03c1\u03b9\u03cc\u03b3\u03b9\u03b4\u03bf","owner":"AnaDigit","x":20.88637,"y":40.000596,"photo":"DSC075872","type":450,"zoom_level":17,"id":3741,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03b1\u03c1\u03b1\u03ba\u03b1\u03c4\u03c3\u03ac\u03bd\u03b9\u03ba\u03b7 \u03ba\u03b1\u03bb\u03cd\u03b2\u03b1","owner":"AnaDigit","x":20.914993,"y":39.926586,"photo":"DSC075613","type":450,"zoom_level":16,"id":3742,"hlink_GR":"","hlink_EN":"","description":"","height":815,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.741911,"y":39.909725,"photo":"DSC076071","type":0,"zoom_level":15,"id":3743,"hlink_GR":"","hlink_EN":"","description":"","height":672,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.748586,"y":39.908589,"photo":"DSC076062","type":0,"zoom_level":15,"id":3744,"hlink_GR":"","hlink_EN":"","description":"","height":469,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.737643,"y":39.90937,"photo":"DSC076081","type":0,"zoom_level":14,"id":3745,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.735543,"y":39.912573,"photo":"DSC076151","type":0,"zoom_level":15,"id":3746,"hlink_GR":"","hlink_EN":"","description":"","height":547,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.739915,"y":39.915586,"photo":"DSC076171","type":0,"zoom_level":14,"id":3747,"hlink_GR":"","hlink_EN":"","description":"","height":516,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.720076,"y":39.927085,"photo":"DSC076221","type":0,"zoom_level":15,"id":3748,"hlink_GR":"","hlink_EN":"","description":"","height":586,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.720061,"y":39.928008,"photo":"DSC076241","type":0,"zoom_level":13,"id":3749,"hlink_GR":"","hlink_EN":"","description":"","height":779,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.719236,"y":39.913861,"photo":"DSC076291","type":0,"zoom_level":14,"id":3750,"hlink_GR":"","hlink_EN":"","description":"","height":722,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.741238,"y":39.91843,"photo":"vikos_11","type":0,"zoom_level":12,"id":3751,"hlink_GR":"","hlink_EN":"","description":"","height":938,"width":2000}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
Αετομηλίτσα-Σαραντάπορος
Άγναντα-Καταρράκτης
Αγία Παρασκευή-Καταφύγιο Σμόλικα
Λουτρά Αμαράντου-Πυρσόγιαννη
Ανθοχώρι-Συρράκο
Ασημοχώρι-Αετομηλίτσα
Καταφύγιο Αστράκας-Μεγάλο Πάπιγκο
Χρυσοβίτσα-Μέτσοβο
Δόλιανη-Γρεβενίτι
Δροσοπηγή-Αγία Παρασκευή
Φραγκάδες-Δόλιανη
Γρεβενίτι-Χρυσοβίτσα
Κήποι-Φραγκάδες
Κόνιτσα-Καταφύγιο Αστράκας
Κόνιτσα-Σαραντάπορος
Λάιστα-Βωβούσα
Καταφύγιο Μαυροβουνίου-Μέτσοβο
Μέτσοβο-Ανθοχώρι
Μονοδέντρι-Κήποι
Μεγάλο Πάπιγκο-Μονοδέντρι
Πυρσόγιαννη-Ασημοχώρι
Σαραντάπορος-Λουτρά Αμαράντου
Καταφύγιο Σμόλικα-Βρυσοχώρι
Συρράκο-Τσόπελα
Τσόπελα-Άγναντα
Βοβούσα-Καταφύγιο Μαυροβουνίου
Βρυσοχώρι-Λάιστα
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["epirus_trail"],pc:["epirus_trail"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_epirus_trail.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); }