'+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; })); }); -->

Podcasts:

  • Long MBTA Commuter Rail Trains

    Thank you for watching and I hope you enjoy the video. If you are new here, my channel mostly consists of railroad videography from around the Northeastern USA. Please note that all content that I post is mine and should not be used without my consent. If you are interested in more content from me, my photography can be viewed on Instagram at: https://instagram.com/rail_spike_productions About this video: This production focuses on some of the longest MBTA trains that I have captured over the years. Details about the clips in this video are listed below. 1. (0:03) MBTA’s Polar Express in Hamilton, MA on 12/4/2021 2. (0:52) An MBTA rescue extra in Hamilton, MA on 12/20/2021 3. (1:40) The MBTA work extra/coach equipment move in Westminster, MA on 2/10/2022 4. (3:39) An MBTA triple-draft...

    published: 23 Jul 2023
  • Boston MBTA Commuter Trains

    Come along as we take a look at the Massachusetts Bay Transportation Authority's commuter rail system as it travels through the suburbs of Boston and other surrounding cities. You will see a variety of different commuter trains filmed in the winter of 2015 including some appearances of original MBTA F40PH locomotives, shortly before they were retired in the spring of 2015. All aboard! CoasterFan2105 is a channel dedicated to providing you with some of the best videos of trains and railroads on the web. Be sure to subscribe so you don't miss weekly uploads every Friday! CoasterFan2105 YouTube: https://www.youtube.com/user/CoasterFan2105 Facebook: https://www.facebook.com/CoasterFan2105 ©2016 Mike Armstrong Video

    published: 08 Apr 2016
  • The Trains that Subsidize Suburbia - GO Transit Commuter Rail

    Watch this video ad-free on Nebula: https://nebula.tv/videos/not-just-bikes-the-trains-that-subsidize-suburbia-go-transit-commuter-rail Commuter rail is a rail system designed to bring people from the suburbs into a central business district for work. But is it really an efficient transit system, or just another subsidy provided to car-dependent suburbanites? This video explores commuter rail in the Greater Toronto Area (GTA), the train system known as "GO Transit." Part 1: https://www.youtube.com/watch?v=n1G0Lyh3uik Sign up to Nebula and watch ad-free and sponsor-free: https://go.nebula.tv/notjustbikes Patreon: https://patreon.com/notjustbikes Twitter: https://twitter.com/notjustbikes Reddit: https://reddit.com/r/notjustbikes One-time donations: https://notjustbikes.com/donate NJB Li...

    published: 27 Sep 2021
  • A Guide to Commuter Railroads - East Coast: Train Talk Ep. 37

    Hello everyone, and welcome back to Train Talk! In this episode, we will begin a three part look at different commuter rail systems in the United States. We will cover all the basics of each commuter operation we look at, starting with a summary of the system, hours of operation and frequencies, current fares, equipment, and a brief history. Throughout all three parts of this series, we will cover a total of 26 different railroads in 23 states. Part one focuses on the East Coast of the US, beginning in Massachusetts and moving all the way down to Florida. This video was made possible by my supporters on Patreon: Adam Byrne Bethany Chernay Brian Zimmerman Clarence Jackson Jim Walker Jovanni Cruz Lyle C Peter Della Flora Thomas Jackson Amtrak and AWVR Fan ShadowSteel18 Cristian C Vinny G ...

    published: 22 Sep 2023
  • America’s Weirdest Train: WES Commuter Rail in Portland

    Keep Portland weird, the saying goes. That is certainly true for its commuter rail system. The Westside Express Service, also known as WES, is a short 14 mile, 5 station line running between Beaverton and Wilsonville, the western suburbs of Portland. The line has a number of quirks, the most obvious being the Colorado Railcar trains. We will also see gauntlet tracks, railroad crossings making horn noises, and a whole slew of features that make this line, well, weird! Trains Are Awesome! Support us on Patreon: https://www.patreon.com/trainsareawesome Our Instagram: https://www.instagram.com/tra_channel/

    published: 25 Jun 2022
  • Train or traffic: What's the best way to commute?

    Public transportation beat the traffic in our races to and from various points around the Boston area. Of course, on those days, there were no notable surprises or accidents on the MBTA. Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ Get more Boston news: http://www.wcvb.com Like us: https://www.facebook.com/wcvb5 Follow us: https://twitter.com/WCVB Instagram: https://www.instagram.com/wcvb5/

    published: 08 Oct 2019
  • 11-Car MBTA Commuter Rail Train

    Keolis Boston hitched two MBTA trains to create an 11 car train on Saturday, January 21, to bring Worcester Line customers home from the Boston Women's March

    published: 21 Jan 2017
  • Man Killed By MBTA Commuter Rail Train In Hanson

    WBZ TV's Kate Merrill reports.

    published: 29 May 2019
  • Railway Vehicles - Trains and Subways - The Kids' Picture Show (Fun & Educational Learning Video)

    Learn about all sorts of vehicles that run on the rails including subways, trains, streetcars, and more! Enjoy the retro video game graphics, too! Freight Train Cars video here: https://youtu.be/V0IZq0vM6z4 Includes the classic song "I've Been Working on the Railroad." Follow us on Facebook: https://www.facebook.com/thekidspictureshow Follow us on Twitter: https://twitter.com/KidsPictureShow The Kids' Picture Show playlists: Shapes: http://bit.ly/NdG7mi Fun Learning Videos: http://bit.ly/1qCXcWN Communication Skills: http://bit.ly/1gqnmYi Learn to Read: Phonics & Rhyming: http://bit.ly/1fwF6g7 Addition with The Number Guys: http://bit.ly/1dZIkwn Vocabulary Flash Cards: http://bit.ly/NdGVrp Picture Card Phrases: http://bit.ly/1m3Pzbm Life Instructions: http://bit.ly/Oc2Hgd My Fridge: ...

    published: 07 Jul 2014
Long MBTA Commuter Rail Trains
29:50

Long MBTA Commuter Rail Trains

  • Order:
  • Duration: 29:50
  • Uploaded Date: 23 Jul 2023
  • views: 60141
Thank you for watching and I hope you enjoy the video. If you are new here, my channel mostly consists of railroad videography from around the Northeastern USA. Please note that all content that I post is mine and should not be used without my consent. If you are interested in more content from me, my photography can be viewed on Instagram at: https://instagram.com/rail_spike_productions About this video: This production focuses on some of the longest MBTA trains that I have captured over the years. Details about the clips in this video are listed below. 1. (0:03) MBTA’s Polar Express in Hamilton, MA on 12/4/2021 2. (0:52) An MBTA rescue extra in Hamilton, MA on 12/20/2021 3. (1:40) The MBTA work extra/coach equipment move in Westminster, MA on 2/10/2022 4. (3:39) An MBTA triple-draft extra equipment move in Beverly, MA on 5/7/2022 5. (4:52) An MBTA Middleboro extra equipment move in Fairmount, Boston, MA on 6/5/2022 6, 7, and 8. (starts at 5:35) The MBTA work extra/welded rail train on the Haverhill Line on 6/20/2022 9. (8:02) An MBTA Middleboro extra equipment move in Holbrook, MA on 7/31/2022 10. (8:59) An MBTA Middleboro extra equipment move in Boston, MA on 7/31/2022 11. (9:55) An MBTA extra equipment move in Lincoln, MA on 8/25/2022 12. (12:10) The MBTA Football Train in Dedham, MA on 10/9/2022 13. (12:44) The MBTA Football Train in Westwood, MA on 10/9/2022 14. (13:13) The MBTA Readville switcher in Boston, MA on 10/9/2022 15 and 16. (starts at 14:09) MBTA’s Polar Express in Ipswich, MA on on 12/3/2022 17 and 18. (starts at 16:47) The MBTA work extra/double rescue on the Rockport Line on 12/27/2022 19. (19:17) An MBTA triple-draft extra equipment move in Melrose, MA on 3/12/2023 20 and 21. (starts at 20:02) The MBTA Readville switcher in Cambridge, MA on 4/5/2023 22. (23:11) An MBTA Middleboro extra equipment move in Randolph, MA on 4/8/2023 23. (24:59) An MBTA triple-draft extra equipment move in Andover, MA on 5/7/2023 24. (25:51) An MBTA triple-draft extra equipment move in Montserrat, Beverly, MA on 5/13/2023 25. (26:58) An MBTA Middleboro extra equipment move in Braintree, MA on 6/3/2023 26. (27:30) An MBTA Middleboro extra equipment move in Fairmount, Boston, MA on 6/3/2023 27. (28:36) An Inbound MBTA train in Framingham, MA on 7/17/2023
https://wn.com/Long_Mbta_Commuter_Rail_Trains
Boston MBTA Commuter Trains
6:07

Boston MBTA Commuter Trains

  • Order:
  • Duration: 6:07
  • Uploaded Date: 08 Apr 2016
  • views: 18898722
Come along as we take a look at the Massachusetts Bay Transportation Authority's commuter rail system as it travels through the suburbs of Boston and other surrounding cities. You will see a variety of different commuter trains filmed in the winter of 2015 including some appearances of original MBTA F40PH locomotives, shortly before they were retired in the spring of 2015. All aboard! CoasterFan2105 is a channel dedicated to providing you with some of the best videos of trains and railroads on the web. Be sure to subscribe so you don't miss weekly uploads every Friday! CoasterFan2105 YouTube: https://www.youtube.com/user/CoasterFan2105 Facebook: https://www.facebook.com/CoasterFan2105 ©2016 Mike Armstrong Video
https://wn.com/Boston_Mbta_Commuter_Trains
The Trains that Subsidize Suburbia - GO Transit Commuter Rail
15:49

The Trains that Subsidize Suburbia - GO Transit Commuter Rail

  • Order:
  • Duration: 15:49
  • Uploaded Date: 27 Sep 2021
  • views: 1210058
Watch this video ad-free on Nebula: https://nebula.tv/videos/not-just-bikes-the-trains-that-subsidize-suburbia-go-transit-commuter-rail Commuter rail is a rail system designed to bring people from the suburbs into a central business district for work. But is it really an efficient transit system, or just another subsidy provided to car-dependent suburbanites? This video explores commuter rail in the Greater Toronto Area (GTA), the train system known as "GO Transit." Part 1: https://www.youtube.com/watch?v=n1G0Lyh3uik Sign up to Nebula and watch ad-free and sponsor-free: https://go.nebula.tv/notjustbikes Patreon: https://patreon.com/notjustbikes Twitter: https://twitter.com/notjustbikes Reddit: https://reddit.com/r/notjustbikes One-time donations: https://notjustbikes.com/donate NJB Live (my bicycle livestream channel): https://www.youtube.com/channel/UC9v57F4xz46KaDsvWfCv8yw Check out RMTransit for more videos about TRAINS!!!!! https://www.youtube.com/c/RMTransit Specifically, this playlist about the future of GO Transit: https://www.youtube.com/playlist?list=PLwoYcvp1EGSdOqd3WAN14FvTtd0sdtiJL --- References & Additional Reading Thumbnail images: Municipal Affairs and Housing, CC BY 3.0, https://www.flickr.com/photos/ontariomah/24320665437 By Richard Sunichura, CC BY 3.0, https://commons.wikimedia.org/w/index.php?curid=38050704 GO Train Commuting statistics https://www.researchgate.net/publication/330133451_Commuting_Mode_Shares_in_the_Commuter_Rail_Catchment_Areas_Trends_Status_and_the_Role_of_Policy_Interventions_in_the_Case_of_GO_Transit_in_Greater_Toronto GO Transit System Map By Natural RX - Own work, CC BY-SA 4.0 https://commons.wikimedia.org/w/index.php?curid=65767880 Historical GO Train footage: Dirt Roads to Freeways … And All That (ca. 1970s) Archives of Ontario [YouTube] https://www.youtube.com/watch?v=lY5fg0RACd8 GO Transit Launch: 1967/Lancement de GO Transit en 1967 GO Transit [YouTube] https://www.youtube.com/watch?v=kbp9nWbGxEE Toronto Parking Authority Statistics: https://www.toronto.ca/city-government/accountability-operations-customer-service/city-administration/city-managers-office/agencies-corporations/agencies/toronto-parking-authority/ Citadel Rock butte, Green River, Wyoming, (1868) By Andrew J. Russell, Library of Congress's Prints and Photographs divisionunder ID ppmsca.03147., Public Domain https://commons.wikimedia.org/w/index.php?curid=4458664 Trestle on Central Pacific Railroad (1877) By Carleton Watkins (1829-1916) - Getty Center, Public Domain https://commons.wikimedia.org/w/index.php?curid=21995753 Railroad Maps, 1828 to 1900 - Land Grants https://www.loc.gov/collections/railroad-maps-1828-to-1900/articles-and-essays/history-of-railroads-and-maps/land-grants/ By Danielle Scott - originally posted to Flickr as GO Cabcar 237, CC BY-SA 2.0, https://commons.wikimedia.org/w/index.php?curid=10007821 By Scott Santoro - http://scottsantoro.blogspot.ca/2010/04/going-to-toronto-zoo.html, CC BY-SA 2.5, https://commons.wikimedia.org/w/index.php?curid=31921748 --- Chapters 0:00 Intro 0:07 VIA Rail 0:40 Let's GOOOOOOOOO! 1:16 Riding the GO 2:38 The History of GO Transit 3:14 The Success and Failure of GO 4:18 The Insanity of Commuter Rail 6:01 Non-Commuting Trips Aren't Possible 7:02 Parking as a Subsidy 9:20 The Future of GO Transit 10:19 Bloomington GO 13:13 What is the Purpose of Transit? 14:49 Conclusion 15:12 Patreon Shout-out 15:26 Outtro
https://wn.com/The_Trains_That_Subsidize_Suburbia_Go_Transit_Commuter_Rail
A Guide to Commuter Railroads - East Coast: Train Talk Ep. 37
25:44

A Guide to Commuter Railroads - East Coast: Train Talk Ep. 37

  • Order:
  • Duration: 25:44
  • Uploaded Date: 22 Sep 2023
  • views: 1033817
Hello everyone, and welcome back to Train Talk! In this episode, we will begin a three part look at different commuter rail systems in the United States. We will cover all the basics of each commuter operation we look at, starting with a summary of the system, hours of operation and frequencies, current fares, equipment, and a brief history. Throughout all three parts of this series, we will cover a total of 26 different railroads in 23 states. Part one focuses on the East Coast of the US, beginning in Massachusetts and moving all the way down to Florida. This video was made possible by my supporters on Patreon: Adam Byrne Bethany Chernay Brian Zimmerman Clarence Jackson Jim Walker Jovanni Cruz Lyle C Peter Della Flora Thomas Jackson Amtrak and AWVR Fan ShadowSteel18 Cristian C Vinny G Malcom B. Lane's Trains Lachlan B. Beyond Aviation And many more! CoasterFan2105 is the home of all sorts of train and railroad related video content. Stop by every Friday at 9 AM Pacific time for an all new railroading adventure and be sure to check out all of my social media pages @coasterfan2105 for even more great railroad content. Thanks, and I'll see you down the line! ©2023 Mike Armstrong Media
https://wn.com/A_Guide_To_Commuter_Railroads_East_Coast_Train_Talk_Ep._37
America’s Weirdest Train: WES Commuter Rail in Portland
11:21

America’s Weirdest Train: WES Commuter Rail in Portland

  • Order:
  • Duration: 11:21
  • Uploaded Date: 25 Jun 2022
  • views: 26813
Keep Portland weird, the saying goes. That is certainly true for its commuter rail system. The Westside Express Service, also known as WES, is a short 14 mile, 5 station line running between Beaverton and Wilsonville, the western suburbs of Portland. The line has a number of quirks, the most obvious being the Colorado Railcar trains. We will also see gauntlet tracks, railroad crossings making horn noises, and a whole slew of features that make this line, well, weird! Trains Are Awesome! Support us on Patreon: https://www.patreon.com/trainsareawesome Our Instagram: https://www.instagram.com/tra_channel/
https://wn.com/America’S_Weirdest_Train_Wes_Commuter_Rail_In_Portland
Train or traffic: What's the best way to commute?
2:56

Train or traffic: What's the best way to commute?

  • Order:
  • Duration: 2:56
  • Uploaded Date: 08 Oct 2019
  • views: 15051
Public transportation beat the traffic in our races to and from various points around the Boston area. Of course, on those days, there were no notable surprises or accidents on the MBTA. Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ Get more Boston news: http://www.wcvb.com Like us: https://www.facebook.com/wcvb5 Follow us: https://twitter.com/WCVB Instagram: https://www.instagram.com/wcvb5/
https://wn.com/Train_Or_Traffic_What's_The_Best_Way_To_Commute
11-Car MBTA Commuter Rail Train
0:11

11-Car MBTA Commuter Rail Train

  • Order:
  • Duration: 0:11
  • Uploaded Date: 21 Jan 2017
  • views: 12087
Keolis Boston hitched two MBTA trains to create an 11 car train on Saturday, January 21, to bring Worcester Line customers home from the Boston Women's March
https://wn.com/11_Car_Mbta_Commuter_Rail_Train
Man Killed By MBTA Commuter Rail Train In Hanson
0:14

Man Killed By MBTA Commuter Rail Train In Hanson

  • Order:
  • Duration: 0:14
  • Uploaded Date: 29 May 2019
  • views: 1089
WBZ TV's Kate Merrill reports.
https://wn.com/Man_Killed_By_Mbta_Commuter_Rail_Train_In_Hanson
Railway Vehicles - Trains and Subways - The Kids' Picture Show (Fun & Educational Learning Video)
4:39

Railway Vehicles - Trains and Subways - The Kids' Picture Show (Fun & Educational Learning Video)

  • Order:
  • Duration: 4:39
  • Uploaded Date: 07 Jul 2014
  • views: 64911021
Learn about all sorts of vehicles that run on the rails including subways, trains, streetcars, and more! Enjoy the retro video game graphics, too! Freight Train Cars video here: https://youtu.be/V0IZq0vM6z4 Includes the classic song "I've Been Working on the Railroad." Follow us on Facebook: https://www.facebook.com/thekidspictureshow Follow us on Twitter: https://twitter.com/KidsPictureShow The Kids' Picture Show playlists: Shapes: http://bit.ly/NdG7mi Fun Learning Videos: http://bit.ly/1qCXcWN Communication Skills: http://bit.ly/1gqnmYi Learn to Read: Phonics & Rhyming: http://bit.ly/1fwF6g7 Addition with The Number Guys: http://bit.ly/1dZIkwn Vocabulary Flash Cards: http://bit.ly/NdGVrp Picture Card Phrases: http://bit.ly/1m3Pzbm Life Instructions: http://bit.ly/Oc2Hgd My Fridge: http://bit.ly/1o11S6I Poem of the Day: http://bit.ly/PABFjE Looking for a kids' channel that's not too "kiddie?" Check out the Kids' Picture Show! Learn shapes, colors, numbers, the alphabet, communications skills and more with The Shapesters, Robot DJ, The Number Guys, My Fridge and the popular "What Shape Is It?" series. The Kids' Picture Show is an educational channel for toddlers, pre-schoolers, kindergarteners and elementary school-age students to learn language and life skills. Children can explore speaking, listening and reading through poems, songs, flash cards, and lots of humorous videos. Great for all kids including reluctant learners, visual learners, ESL students and even children with developmental disabilities such as autism.
https://wn.com/Railway_Vehicles_Trains_And_Subways_The_Kids'_Picture_Show_(Fun_Educational_Learning_Video)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Long MBTA Commuter Rail Trains
    29:50
    Long MBTA Commuter Rail Trainsremove from playlist
  • Boston MBTA Commuter Trains
    6:07
    Boston MBTA Commuter Trainsremove from playlist
  • The Trains that Subsidize Suburbia - GO Transit Commuter Rail
    15:49
    The Trains that Subsidize Suburbia - GO Transit Commuter Railremove from playlist
  • A Guide to Commuter Railroads - East Coast: Train Talk Ep. 37
    25:44
    A Guide to Commuter Railroads - East Coast: Train Talk Ep. 37remove from playlist
  • America’s Weirdest Train: WES Commuter Rail in Portland
    11:21
    America’s Weirdest Train: WES Commuter Rail in Portlandremove from playlist
  • Train or traffic: What's the best way to commute?
    2:56
    Train or traffic: What's the best way to commute?remove from playlist
  • 11-Car MBTA Commuter Rail Train
    0:11
    11-Car MBTA Commuter Rail Trainremove from playlist
  • Railway Vehicles - Trains and Subways - The Kids' Picture Show (Fun & Educational Learning Video)
    4:39
    Railway Vehicles - Trains and Subways - The Kids' Picture Show (Fun & Educational Learning Video)remove from playlist
PLAYLIST TIME:

Long MBTA Commuter Rail Trains

Thank you for watching and I hope you enjoy the video. If you are new here, my channel mostly consists of railroad videography from around the Northeastern USA. Please note that all content that I post is mine and should not be used without my consent. If you are interested in more content from me, my photography can be viewed on Instagram at: https://instagram.com/rail_spike_productions About this video: This production focuses on some of the longest MBTA trains that I have captured over the years. Details about the clips in this video are listed below. 1. (0:03) MBTA’s Polar Express in Hamilton, MA on 12/4/2021 2. (0:52) An MBTA rescue extra in Hamilton, MA on 12/20/2021 3. (1:40) The MBTA work extra/coach equipment move in Westminster, MA on 2/10/2022 4. (3:39) An MBTA triple-draft extra equipment move in Beverly, MA on 5/7/2022 5. (4:52) An MBTA Middleboro extra equipment move in Fairmount, Boston, MA on 6/5/2022 6, 7, and 8. (starts at 5:35) The MBTA work extra/welded rail train on the Haverhill Line on 6/20/2022 9. (8:02) An MBTA Middleboro extra equipment move in Holbrook, MA on 7/31/2022 10. (8:59) An MBTA Middleboro extra equipment move in Boston, MA on 7/31/2022 11. (9:55) An MBTA extra equipment move in Lincoln, MA on 8/25/2022 12. (12:10) The MBTA Football Train in Dedham, MA on 10/9/2022 13. (12:44) The MBTA Football Train in Westwood, MA on 10/9/2022 14. (13:13) The MBTA Readville switcher in Boston, MA on 10/9/2022 15 and 16. (starts at 14:09) MBTA’s Polar Express in Ipswich, MA on on 12/3/2022 17 and 18. (starts at 16:47) The MBTA work extra/double rescue on the Rockport Line on 12/27/2022 19. (19:17) An MBTA triple-draft extra equipment move in Melrose, MA on 3/12/2023 20 and 21. (starts at 20:02) The MBTA Readville switcher in Cambridge, MA on 4/5/2023 22. (23:11) An MBTA Middleboro extra equipment move in Randolph, MA on 4/8/2023 23. (24:59) An MBTA triple-draft extra equipment move in Andover, MA on 5/7/2023 24. (25:51) An MBTA triple-draft extra equipment move in Montserrat, Beverly, MA on 5/13/2023 25. (26:58) An MBTA Middleboro extra equipment move in Braintree, MA on 6/3/2023 26. (27:30) An MBTA Middleboro extra equipment move in Fairmount, Boston, MA on 6/3/2023 27. (28:36) An Inbound MBTA train in Framingham, MA on 7/17/2023
29:50
Long MBTA Commuter Rail Trains
Thank you for watching and I hope you enjoy the video. If you are new here, my channel mos...
published: 23 Jul 2023
Play in Full Screen
6:07
Boston MBTA Commuter Trains
Come along as we take a look at the Massachusetts Bay Transportation Authority's commuter ...
published: 08 Apr 2016
Play in Full Screen
15:49
The Trains that Subsidize Suburbia - GO Transit Commuter Rail
Watch this video ad-free on Nebula: https://nebula.tv/videos/not-just-bikes-the-trains-tha...
published: 27 Sep 2021
Play in Full Screen
25:44
A Guide to Commuter Railroads - East Coast: Train Talk Ep. 37
Hello everyone, and welcome back to Train Talk! In this episode, we will begin a three par...
published: 22 Sep 2023
Play in Full Screen
11:21
America’s Weirdest Train: WES Commuter Rail in Portland
Keep Portland weird, the saying goes. That is certainly true for its commuter rail system....
published: 25 Jun 2022
Play in Full Screen
2:56
Train or traffic: What's the best way to commute?
Public transportation beat the traffic in our races to and from various points around the ...
published: 08 Oct 2019
Play in Full Screen
0:11
11-Car MBTA Commuter Rail Train
Keolis Boston hitched two MBTA trains to create an 11 car train on Saturday, January 21, t...
published: 21 Jan 2017
Play in Full Screen
0:14
Man Killed By MBTA Commuter Rail Train In Hanson
WBZ TV's Kate Merrill reports.
published: 29 May 2019
Play in Full Screen
4:39
Railway Vehicles - Trains and Subways - The Kids' Picture Show (Fun & Educational Learning Video)
Learn about all sorts of vehicles that run on the rails including subways, trains, streetc...
published: 07 Jul 2014
Play in Full Screen
'); } 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)); } }); }); }); // -->

Latest News for: commuter rail

Edit

Why's it called that? The short history of Putnam Lane includes a tie to a U.S. president

The Gardner News 09 May 2025
Until May 21, 2011, Putnam Lane was a normal road, about one-third of a mile, traveling under freight and commuter rail tracks ... Like any area with a rail line, grade crossings are not easy to come by.
Edit

Nova Scotia government reviewing Sydney commuter rail study

CBC 08 May 2025
Nova Scotia’s deputy minister of public works says government officials are reviewing a report on commuter rail in Cape Breton to determine what track to take ... .
Edit

NJ Transit strike from May 16? What you should know

Hindustan Times 08 May 2025
The Brotherhood of Locomotive Engineers and Trainmen recently rejected a proposed labor agreement, intensifying concerns over a possible work stoppage that would disrupt rail services across the state, as reported by AP News.
Edit

Most Commuter Rail Systems Are Still Struggling Post-PandemicImage (GAO - Government Accountability Office)

Public Technologies 08 May 2025
) Commuter rail systems are still recovering from historic ridership dips seen during COVID-19 ... Today's WatchBlog post looks at our new report on trends in commuter rail use ...
Edit

New details on Amtrak Mardi Gras service from Mobile to New Orleans. How often will it run?

The Gadsden Times 08 May 2025
The rail service announced plans for its New ... Additionally, Amtrak helps train services for four commuter rail agencies, which provide daily services for people traveling between suburbs and cities.
Edit

City council, county commissioners discuss federal funding cuts, Mountain Rail, Core Trail updates in joint meeting

Steamboat Pilot 08 May 2025
Commissioner Macys then provided an in-depth look at the newly approved Moffat Tunnel lease and Mountain Rail access agreement, both signed for 25 years ...The state has now been provided with 506,000 rail miles for free.
Edit

Inside the detached 5-bedroom house next to Stow Park Tennis Club that's up for sale

Yahoo Daily News 08 May 2025
The location offers excellent road and rail links for commuters and has nearby primary and secondary schools, making it ideal for families ... (Image ... .
Edit

Take your business meeting on the Brightline. Book an entire train car for your meeting

Florida Today 08 May 2025
“From Miami to Orlando, we’re excited to continue our missions to redefine commuter rail, turning Brightline’s stations and bookable train cars into business-friendly hubs that align with our guests’ ...
Edit

Take this survey: How can Tri-Rail improve onboard travel, safety and getting to stations?

The Palm Beach Post 07 May 2025
The commuter rail service would have to dip into its savings, which would be depleted by the end of 2028, Tri-Rail officials have warned ... Tri-Rail announced in April it would crack down on fare dodgers ...
Edit

Millbury approves MBTA housing law, zoning changes for land at town meeting

The Gardner News 07 May 2025
The law singled out communities that host transportation hubs or are adjacent to municipalities that have commuter rail, high-speed rail or ferry service for the specialized zoning ... a high-speed rail.
Edit

Commuter Rail: Most Systems Struggling to Recover Ridership Following the Covid-19 Pandemic (GAO - Government Accountability Office)

Public Technologies 07 May 2025
Commuter rail is a transit alternative to driving between suburban communities and city centers ... Commuter Rail Systems' Total Funding by Source, Fiscal Years 2019, 2023 ... Commuter rail was particularly ...
Edit

Avelo Airlines resumes nonstop service between from Okaloosa County and Connecticut

NWF Daily News 07 May 2025
The route connects travelers to Southern Connecticut and the greater New England and New York regions via HVN, a small coastal airport known for its convenience and proximity to major highways and commuter rail lines.
Edit

MBTA explains South Coast Rail train delays, cancellations. Senator demands accountability

Taunton Daily Gazette 06 May 2025
That estimate came from the MBTA and commuter rail line operator Keolis ... The MBTA and our commuter rail operator, Keolis, apologize to every passenger who had a negative experience.
Edit

John Swinney scraps peak-time rail fares in Scotland

AOL 06 May 2025
... commuters, from climate activists and from the business community, I can confirm that from Sept 1 this year, peak rail fares in Scotland will be scrapped for good,” he said.‘A better deal for people’.
Edit

John Swinney says he offers a ‘programme for a better Scotland’

AOL 06 May 2025
... the calls from commuters, from climate activists and from the business community, I can confirm that, from&nbsp;September 1 this year, peak rail fares in Scotland will be scrapped for good.”.
×