'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Andante ticket

Andante is a public transport ticketing system used in and around Porto, Portugal. It started operation in November 2002 at Metro do Porto stations and is now a cross-network ticket used on the Porto Metro, selected bus and train routes and the Funicular dos Guindais cable railway.

Two types of card are currently in use:

  • Occasional or Azul (blue): This card is a rechargeable ticket intended for occasional riders, and contains a small, flexible memory card within the laminated ticket. The card has an estimated life-span of about one year.
  • Season or Gold: Similar to a credit card in shape and material, it has a memory chip on the surface. Gold tickets also feature the holder's name and laser-scanned photograph. It has a life-time of several years.
  • Occasional tickets can be bought at the terminals in stations. Ticket machines can recharge both kinds of ticket, although Gold tickets can only be purchased in Lojas Andante (Andante Shops). Tickets can also be recharged at MultiBanco ATMs. When purchasing tickets, passengers must select how many zones the card will allow travel within. The minimum Z2 (2 zone) ticket allows travel for 1 hour after validation, with allowed travel time increasing for each valid zone purchased.

    Podcasts:

    • How to buy metro card/ticket in porto #porto #portugal #andante #metrocard #travel #indianineurope

      published: 27 Aug 2022
    • Andante ticket Top # 11 Facts

      Andante ticket Top # 11 Facts

      published: 29 Oct 2015
    • How to Buy Adante Metro card in Porto🇵🇹 || Porto Metro card #portugal #porto #viagem #travel

      published: 12 Jun 2022
    • Como Recarragar o Andante de Transporte Público em Porto - Portugal 📍 Ticket de Transporte Mensal!

      published: 01 Mar 2023
    • Como funciona el Transporte público de Porto⛔| Andante, Portugal🇵🇹

      Evita multas en el metro de Porto, descubre el tips que te traigo en este video! 💰Desde cuánto cuesta subir a un Bus hasta como validar tu tarjeta Andante. Te muestro la importancia y lo que necesitas saber para moverte en Oporto ❌ Sin multas ¡No te pierdas esta guía completa sobre el transporte público en Oporto! 🇵🇹 -𝗧𝗶𝗽𝘀 𝗾𝘂𝗲 𝗽𝘂𝗲𝗱𝗲𝘀 𝘂𝘁𝗶𝗹𝗶𝘇𝗮𝗿 : Descarga la app ANDA para pagar tu transporte por todo el mes sin preocuparte de las zonas o multas y pagalo el siguiente mes✅ 𝙑𝙞𝙙𝙚𝙤 𝙧𝙚𝙘𝙤𝙢𝙚𝙣𝙙𝙖𝙙𝙤: https://youtu.be/kurU1fBg0WM?si=_5ep6lzxDZhkm-Ge 👇Comenta si te ha servido este video👀 REDES SOCIALES https://www.instagram.com/jhesch.pt?igsh=MXhmaGQ3Z3NoM3pwYQ== https://www.facebook.com/profile.php?id=100067969872505 https://www.tiktok.com/@jhesch.pt?_t=8lKqp8Xuctc&_r=1 💻 EDICIÓN & MARKETI...

      published: 25 Oct 2023
    • Porto Metro Explained | Buying Tickets, How to Ride, and All the Basics

      Public transportation can be tricky, especially if you're new to a city. This can be whether you move or are just visiting. Today Josh and Kalie from ExpatsEverywhere show you how the Porto metro in Portugal works. They have to ride it to head out to NorteShopping and hopefully find everything they are looking for at that mall. In this episode, they explain the lines, the zones, how to get your ticket, how to know which direction to go, and so much more. Not only do they explain it but they also show you how they do it. Don't be scared! Take a ride with them and learn the basics so you can be prepared. Andante Azul (Individual Trips) Metro Prices by Zone | Maximum Duration of the Trip (11.26.2021) Z2 €1.20 | 1 hr Z3 €1.60 | 1 hr Z4 €2.00 | 1 hr 15 min Z5 €2.40 | 1 hr 30 min Z6 €2.80 | 1 ...

      published: 27 Nov 2021
    • andante card in porto Portugal 🇵🇹 || how to buy andente card in Portugal 🇵🇹 ||

      andante card in porto Portugal 🇵🇹 #andante #andantecard #tain #matro #matroinportugal #travl #traveltiktok

      published: 24 Oct 2023
    • Como comprar passe Andante para Metro Porto, Portugal.

      como comprar e recarregar seu passe Andante ao chegar em Porto Portugal. chegamos no aeroporto e nao sabemos como comprar o bilhere para o metro. É facil, é só escolher a zona que queres ir e seguir este passo a passo.

      published: 15 Sep 2022
    • Como carregar o andante - How to buy The ticket in Metro do Porto in Portugal

      published: 07 Apr 2019
    • [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드

      [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드 #유럽여행 #포르투갈여행 #포르투여행 #안단테카드 #포르투교통권

      published: 27 Feb 2023
    How to buy metro card/ticket in porto #porto #portugal #andante #metrocard #travel #indianineurope
    2:45

    How to buy metro card/ticket in porto #porto #portugal #andante #metrocard #travel #indianineurope

    • Order:
    • Duration: 2:45
    • Uploaded Date: 27 Aug 2022
    • views: 10460
    https://wn.com/How_To_Buy_Metro_Card_Ticket_In_Porto_Porto_Portugal_Andante_Metrocard_Travel_Indianineurope
    Andante ticket Top # 11 Facts
    1:29

    Andante ticket Top # 11 Facts

    • Order:
    • Duration: 1:29
    • Uploaded Date: 29 Oct 2015
    • views: 1703
    Andante ticket Top # 11 Facts
    https://wn.com/Andante_Ticket_Top_11_Facts
    How to Buy Adante Metro card in Porto🇵🇹 || Porto Metro card #portugal #porto #viagem #travel
    1:10

    How to Buy Adante Metro card in Porto🇵🇹 || Porto Metro card #portugal #porto #viagem #travel

    • Order:
    • Duration: 1:10
    • Uploaded Date: 12 Jun 2022
    • views: 4370
    https://wn.com/How_To_Buy_Adante_Metro_Card_In_Porto🇵🇹_||_Porto_Metro_Card_Portugal_Porto_Viagem_Travel
    Como Recarragar o Andante de Transporte Público em Porto - Portugal 📍 Ticket de Transporte Mensal!
    1:01

    Como Recarragar o Andante de Transporte Público em Porto - Portugal 📍 Ticket de Transporte Mensal!

    • Order:
    • Duration: 1:01
    • Uploaded Date: 01 Mar 2023
    • views: 1515
    https://wn.com/Como_Recarragar_O_Andante_De_Transporte_Público_Em_Porto_Portugal_📍_Ticket_De_Transporte_Mensal
    Como funciona el Transporte público de Porto⛔| Andante, Portugal🇵🇹
    3:27

    Como funciona el Transporte público de Porto⛔| Andante, Portugal🇵🇹

    • Order:
    • Duration: 3:27
    • Uploaded Date: 25 Oct 2023
    • views: 2503
    Evita multas en el metro de Porto, descubre el tips que te traigo en este video! 💰Desde cuánto cuesta subir a un Bus hasta como validar tu tarjeta Andante. Te muestro la importancia y lo que necesitas saber para moverte en Oporto ❌ Sin multas ¡No te pierdas esta guía completa sobre el transporte público en Oporto! 🇵🇹 -𝗧𝗶𝗽𝘀 𝗾𝘂𝗲 𝗽𝘂𝗲𝗱𝗲𝘀 𝘂𝘁𝗶𝗹𝗶𝘇𝗮𝗿 : Descarga la app ANDA para pagar tu transporte por todo el mes sin preocuparte de las zonas o multas y pagalo el siguiente mes✅ 𝙑𝙞𝙙𝙚𝙤 𝙧𝙚𝙘𝙤𝙢𝙚𝙣𝙙𝙖𝙙𝙤: https://youtu.be/kurU1fBg0WM?si=_5ep6lzxDZhkm-Ge 👇Comenta si te ha servido este video👀 REDES SOCIALES https://www.instagram.com/jhesch.pt?igsh=MXhmaGQ3Z3NoM3pwYQ== https://www.facebook.com/profile.php?id=100067969872505 https://www.tiktok.com/@jhesch.pt?_t=8lKqp8Xuctc&_r=1 💻 EDICIÓN & MARKETING : https://www.instagram.com/iampaolanet?igsh=MWl5MzRrZTdnbTVycQ== ‼️ Cosas que seguro no sabias del transporte en Oporto🚉 1. Los autocarros de la linea STCP son eléctricos no usan gasolina. 2. Los autocarros no se detienen donde sea, solo en las paradas de la linea 3. Debes presionar el Boton de ´´Stop´´ para que se detenga en la proxima parada porque sino no se detendrá. 4. Linea Rosa: actualmente esta en construccion una nueva linea de metro en oporto, dice estar lista para el 2024 5. Los fines de semana los horarios de los buses cambian 6. Hay fiscalizadores de metro y bus que pueden multarte si no pagas, o si no validas tu tarteja #transportedeportugal #latinosenportugal #andante #vivirenportugal #oporto #oportoportugal #visitaroporto
    https://wn.com/Como_Funciona_El_Transporte_Público_De_Porto⛔|_Andante,_Portugal🇵🇹
    Porto Metro Explained | Buying Tickets, How to Ride, and All the Basics
    8:40

    Porto Metro Explained | Buying Tickets, How to Ride, and All the Basics

    • Order:
    • Duration: 8:40
    • Uploaded Date: 27 Nov 2021
    • views: 34714
    Public transportation can be tricky, especially if you're new to a city. This can be whether you move or are just visiting. Today Josh and Kalie from ExpatsEverywhere show you how the Porto metro in Portugal works. They have to ride it to head out to NorteShopping and hopefully find everything they are looking for at that mall. In this episode, they explain the lines, the zones, how to get your ticket, how to know which direction to go, and so much more. Not only do they explain it but they also show you how they do it. Don't be scared! Take a ride with them and learn the basics so you can be prepared. Andante Azul (Individual Trips) Metro Prices by Zone | Maximum Duration of the Trip (11.26.2021) Z2 €1.20 | 1 hr Z3 €1.60 | 1 hr Z4 €2.00 | 1 hr 15 min Z5 €2.40 | 1 hr 30 min Z6 €2.80 | 1 hr 45 min Z7 €3.20 | 2 hr Z8 €3.60 | 2 hr 15 min Z9 €4.00 | 2 hr 30 min Z10 €4.40 | 2 hr 45 min Z11 €4.80 | 3 hr Z12 €5.20 | 3 hr 15 min https://en.metrodoporto.pt/pages/397 "Tourist Pass" Andante Tour 1 valid for 24 hours €7 Andante Tour 3 valid for 72 hours €15 Andante Gold Z3 €30 Metropolitano €40 What Zone Do I Need? Journey Planner Page | https://en.metrodoporto.pt/pages/391 Link to Porto Metro FAQ Page | https://en.metrodoporto.pt/pages/394 NorteShopping | https://www.norteshopping.pt/en/home-2/ * ABOUT US * Josh and Kalie left the US for a life abroad in 2009 and haven't looked back. They have lived in Spain, South Korea, Saudi Arabia, Singapore, and are currently in Portugal. Yes, they realize they only moved to countries starting with the letter "S" until they spoiled that streak with their move to Portugal. Follow ExpatsEverywhere as we aim to get information to you through expat interviews, city breakdowns, expat life, travel, vlogs, and more. * D7 VISA FOR PORTUGAL * We have a course to help DIY the D7 visa for Portugal. The course includes step-by-step videos, checklists, resources, recommendations, discounts, and more. It breaks down the timeline and when and how to do things, plus gives action items to keep you on task but not be overwhelmed. Check it out here: https://expatseverywhere.thinkific.com * USEFUL RESOURCES * Below are a list of other services that we use/recommend for living abroad. If you have any questions about them, feel free to email us. Some links we provide we might make a commission and you might receive a discount or promotional offer. We always try to make a deal with companies we like to create a win/win for us and YOU! * TRANSFER CASH * Wise (formally TransferWise) | Banking/Transfer Partner (affiliate link) Get free transfer fees (conditions apply) https://transferwise.prf.hn/click/camref:1011lfsFy/ar:channelwide/destination:https%3A%2F%2Ftransferwise.com%2Fc%2Fexpatseverywhere * WATCH YOUR SHOWS * SurfShark | VPN Partner (affiliate link) Get 40% off subscription at https://get.surfshark.net/aff_c?offer_id=6&aff_id=5969 * YOU NEED THESE FOR YOUR D7 * Need your NIF and/or bank account for Portugal? Use Bordr: https://bordr.io/ When you go through the process, there will be a "coupon" spot. If you use the code "expatseverywhere" then you will receive €10 off for each. * INSURANCE ABROAD * Need insurance? Use Insured Nomads or William Russell! Insured Nomads: https://www.insurednomads.com/?ref=expatseverywhere William Russell: https://refer.william-russell.com/l/ExpatsEvery/ *LEARN A LANGUAGE* Ling is a fun way to learn and practice a language. Use our special link: http://partners.ling-app.com/186564/12126 Want something more intense? Join the journey with Portuguese with Carla: https://journey.portuguesewithcarla.com/offer-collab/?ref=7 * FORWARD YOUR MAIL * Wanting to get your mail forwarded to you while abroad? Use Anytime Mailbox! Be sure to use this specific link when you sign up: https://www.anytimemailbox.com/?affkey=utwzdor9 * TAXES * Are you an expat who wants help with your taxes? Use our link here for Taxes for Expats and get $25 off: https://www.taxesforexpats.com/ref/239 * GET IN TOUCH * Questions? E-mail us at info@expatseverywhere.com Want more? Go to http://www.expatseverywhere.com Follow us on Facebook: https://www.facebook.com/expatseverywhere Follow us on Instagram: https://www.instagram.com/expatseverywhere Follow us on Twitter: https://twitter.com/expert_expat Check out our Patreon page: https://www.patreon.com/expatseverywhere #ExpatsEverywhere * EXTRA HELP * Looking for an expat consultant? Check out Expat Empire (https://expatempire.com/) and get 10% off when you tell them that ExpatsEverywhere referred you!
    https://wn.com/Porto_Metro_Explained_|_Buying_Tickets,_How_To_Ride,_And_All_The_Basics
    andante card in porto Portugal 🇵🇹 || how to buy andente card in Portugal 🇵🇹 ||
    3:38

    andante card in porto Portugal 🇵🇹 || how to buy andente card in Portugal 🇵🇹 ||

    • Order:
    • Duration: 3:38
    • Uploaded Date: 24 Oct 2023
    • views: 157
    andante card in porto Portugal 🇵🇹 #andante #andantecard #tain #matro #matroinportugal #travl #traveltiktok
    https://wn.com/Andante_Card_In_Porto_Portugal_🇵🇹_||_How_To_Buy_Andente_Card_In_Portugal_🇵🇹_||
    Como comprar passe Andante para Metro Porto, Portugal.
    1:48

    Como comprar passe Andante para Metro Porto, Portugal.

    • Order:
    • Duration: 1:48
    • Uploaded Date: 15 Sep 2022
    • views: 2259
    como comprar e recarregar seu passe Andante ao chegar em Porto Portugal. chegamos no aeroporto e nao sabemos como comprar o bilhere para o metro. É facil, é só escolher a zona que queres ir e seguir este passo a passo.
    https://wn.com/Como_Comprar_Passe_Andante_Para_Metro_Porto,_Portugal.
    Como carregar o andante  - How to buy The ticket in Metro do Porto in Portugal
    1:04

    Como carregar o andante - How to buy The ticket in Metro do Porto in Portugal

    • Order:
    • Duration: 1:04
    • Uploaded Date: 07 Apr 2019
    • views: 3448
    https://wn.com/Como_Carregar_O_Andante_How_To_Buy_The_Ticket_In_Metro_Do_Porto_In_Portugal
    [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드
    0:42

    [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드

    • Order:
    • Duration: 0:42
    • Uploaded Date: 27 Feb 2023
    • views: 551
    [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드 #유럽여행 #포르투갈여행 #포르투여행 #안단테카드 #포르투교통권
    https://wn.com/🇵🇹포르투갈_포르투_Andante_안단테_교통권_구입_포르투_교통권_안단테_카드
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    How to buy metro card/ticket in porto #porto #portugal #andante #metrocard #travel #indianineurope

    2:45
    How to buy metro card/ticket in porto #porto #portugal #andante #metrocard #travel #indianineurope
    published: 27 Aug 2022
    Play in Full Screen
    1:29
    Andante ticket Top # 11 Facts
    Andante ticket Top # 11 Facts
    published: 29 Oct 2015
    Play in Full Screen
    1:10
    How to Buy Adante Metro card in Porto🇵🇹 || Porto Metro card #portugal #porto #viagem #travel
    published: 12 Jun 2022
    Play in Full Screen
    1:01
    Como Recarragar o Andante de Transporte Público em Porto - Portugal 📍 Ticket de Transporte Mensal!
    published: 01 Mar 2023
    Play in Full Screen
    3:27
    Como funciona el Transporte público de Porto⛔| Andante, Portugal🇵🇹
    Evita multas en el metro de Porto, descubre el tips que te traigo en este video! 💰Desde cu...
    published: 25 Oct 2023
    Play in Full Screen
    8:40
    Porto Metro Explained | Buying Tickets, How to Ride, and All the Basics
    Public transportation can be tricky, especially if you're new to a city. This can be wheth...
    published: 27 Nov 2021
    Play in Full Screen
    3:38
    andante card in porto Portugal 🇵🇹 || how to buy andente card in Portugal 🇵🇹 ||
    andante card in porto Portugal 🇵🇹 #andante #andantecard #tain #matro #matroinportugal #tra...
    published: 24 Oct 2023
    Play in Full Screen
    1:48
    Como comprar passe Andante para Metro Porto, Portugal.
    como comprar e recarregar seu passe Andante ao chegar em Porto Portugal. chegamos no aero...
    published: 15 Sep 2022
    Play in Full Screen
    1:04
    Como carregar o andante - How to buy The ticket in Metro do Porto in Portugal
    published: 07 Apr 2019
    Play in Full Screen
    0:42
    [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드
    [🇵🇹포르투갈 포르투] andante 안단테 교통권 구입 / 포르투 교통권 / 안단테 카드 #유럽여행 #포르투갈여행 #포르투여행 #안단테카드 #포르투교통권
    published: 27 Feb 2023
    Play in Full Screen

    Andante ticket

    Andante is a public transport ticketing system used in and around Porto, Portugal. It started operation in November 2002 at Metro do Porto stations and is now a cross-network ticket used on the Porto Metro, selected bus and train routes and the Funicular dos Guindais cable railway.

    Two types of card are currently in use:

  • Occasional or Azul (blue): This card is a rechargeable ticket intended for occasional riders, and contains a small, flexible memory card within the laminated ticket. The card has an estimated life-span of about one year.
  • Season or Gold: Similar to a credit card in shape and material, it has a memory chip on the surface. Gold tickets also feature the holder's name and laser-scanned photograph. It has a life-time of several years.
  • Occasional tickets can be bought at the terminals in stations. Ticket machines can recharge both kinds of ticket, although Gold tickets can only be purchased in Lojas Andante (Andante Shops). Tickets can also be recharged at MultiBanco ATMs. When purchasing tickets, passengers must select how many zones the card will allow travel within. The minimum Z2 (2 zone) ticket allows travel for 1 hour after validation, with allowed travel time increasing for each valid zone purchased.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×