- published: 15 May 2023
- views: 3669
'+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; })); }); -->
Oregon Route 66 is an Oregon state highway that runs between the cities of Ashland and Klamath Falls. The highway is known as the Green Springs Highway No. 21 (see Oregon highways and routes), and is signed east-to-west.
Oregon Route 66 begins (at its western terminus) at an intersection with Oregon Route 99 just east of downtown Ashland. The highway heads northeast, crosses and intersects with Interstate 5, and continues east along the northern edge of the Siskiyou Mountains. Before ascending into the mountains, it passes alongside Emigrant Reservoir. Six miles east of Ashland, the highway intersects with Oregon Route 273, near the Klamath Falls Junction.
The highway then passes over the mountains. The highway ends at an interchange with U.S. Route 97 in Klamath Falls; just west of this interchange the highway intersects and briefly overlaps Oregon Route 140. OR 140 continues east of the US 97 interchange, past the Klamath Falls airport, and eventually towards Lakeview.
Oregon Route 201 is a north–south state highway in eastern Oregon. It currently runs from the Idaho state line just south of Adrian to Interstate 84 south of Huntington. Between the state line and Nyssa, it is known as the Succor Creek Highway No. 450 (see Oregon highways and routes), including the Homedale Spur of the same highway. Between Nyssa and Cairo Junction, it is part of the Central Oregon Highway No. 7 as a concurrency with U.S. Route 20 and U.S. Route 26, and north of Cairo Junction, it is the Olds Ferry-Ontario Highway No. 455. At the Idaho state line, Oregon Route 201 becomes State Highway 19.
An unbuilt extension of the Succor Creek Highway is designated southward from the start of the Homedale Spur to US 95.
Oregon Route 201 originally existed only as the Succor Creek Highway. It continued south of Adrian via Jordan Valley to McDermitt, where it continued as Nevada State Route 8. The route was completely decommissioned in 1940 with the extension of U.S. Route 95 through Oregon. It would not see new life until U.S. Route 30 was rerouted around Farewell Bend on roughly its current route.
Oregon Route 7 is an Oregon state highway which runs from Interstate 84 at Baker City to U.S. Route 26 at Austin Junction. OR 7 traverses several highways of the Oregon state highway system: Whitney Highway No. 71, part of the La Grande–Baker Highway No. 66, and part of the Baker–Copperfield Highway No 12. A short spur, Oregon Route 410, serves the city of Sumpter.
OR 7 has its southern terminus at a junction with U.S. Route 26 at the unincorporated locale of Austin Junction. From Austin Junction, it runs roughly northeast, passing near Bates and Austin, and crossing the Middle Fork John Day River. The route continues northeast through the Malheur National Forest until it crosses the North Fork Burnt River and passes into the Wallowa–Whitman National Forest. The road follows the river roughly eastward until it reaches the community of Whitney, where it turns northeast again. South of Sumpter the route crosses the Powder River—in an area covered with gold dredge tailings—and forms a junction with Oregon Route 410. OR 7 continues southeast along the Powder River and passes Phillips Lake, an impoundment of the river dating from 1968. At its junction with Oregon Route 245 at Salisbury, the route veers north as it continues to follow the river, terminating in Baker City at an interchange with I-84.
Oregon Route 39 is an Oregon state highway that runs between the city of Klamath Falls in Southern Oregon, and the California border between Merrill, Oregon, and Tulelake, California.
Oregon Route 39 begins at an interchange with U.S. Route 97, north of downtown Klamath Falls, and just west of the main campus of the Oregon Institute of Technology. For the first 5 miles (8.0 km) of its existence, it is an urban expressway, known locally as either Kit Carson Way or as the East Side Bypass, that skirts the eastern edge of Klamath Falls. The northernmost mile or so is shared with U.S. Route 97 Business, which departs from OR 39 and heads downtown via Esplanade Street.
East of the junction with Main Street, OR 39 continues in a southeasterly direction, skirting the main business district. The East Side Bypass ends at an intersection with 6th Street (OR 39 Business), in the eastern suburb of Altamont. OR 39 then heads east-southeast on 6th street for several more miles, until an intersection with Oregon Route 140. From U.S. Route 97, including the concurrency with U.S. 97 Business, to its departure from OR 140, including the concurrency, OR 39 consists of concurrent parts of the Klamath Falls-Malin Highway No. 50 (see Oregon highways and routes) and the Klamath Falls-Lakeview Highway No. 20.
Route 66 is a west–east state highway in Massachusetts.
Route 66 begins at Route 112 in the Knightville section of Huntington. It passes over Norwich Hill into the town of Westhampton, crossing through the southern end of that town into Northampton. It passes through the southwestern part of that town, passing the former Northampton State Hospital and Smith College before ending in front of Smith College at Route 9, just yards west of where that route meets Route 10. For its entire length, Route 66 does not junction any other routes.
Route 15 is a bus route operated by the Maryland Transit Administration in Baltimore and its suburbs. The line currently runs from Security Square Mall, Westview Mall, Windsor Hills, or Walbrook Junction (all in West Baltimore or Baltimore County) through downtown Baltimore and northeast to Overlea, with selected peak hour express trips to Perry Hall. The main roads on which it operates include Security Boulevard, Windsor Mill Road, Forest Park Avenue, Poplar Grove Street, Edmondson Avenue, Saratoga Street, Gay Street, and Belair Road, and is one of the most heavily used bus routes operated by the MTA.
The bus route is the successor to the 4 Edmondson Avenue and 15 Gay Street streetcar lines.
Route 15 is the successor to two streetcar lines, numbered in 1899: the west half of Route 4 on Bloomingdale Road and Edmondson Avenue and the east half of the original Route 15 on Gay Street and Belair Road.
The Baltimore City Passenger Railway opened its Gay Street Line to Boundary Avenue (now North Avenue) on December 11, 1861, and through-routed it with the Baltimore Street Line to West Baltimore (now part of Route 20) as the Red Line. The line was equipped with cable traction on July 23, 1893, and electrified in 1899.. An extension along Belair Road was built by the Central Passenger Railway in the late 1890s, branching off their Preston Street Line via Milton Avenue, and the Baltimore, Gardenville and Bel Air Electric Railway later opened an extension to Overlea.
The following highways in Virginia have been known as State Route 66:
The last section of the ORBDR leaves Government Camp on Highways 26 and 35. After leaving pavement, the route follows a blissful series of roads on a circuitous route through Mount Hood National Forest. The byways in this area to the southeast of Mount Hood are rocky and exposed at times, so keep your focus and ride within your ability. Factor in stopping at the numerous amazing viewpoints along the way. The route follows a short segment of the historic Old Barlow Wagon Road which unfortunately has been closed recently due to forest fires—hopefully it will open again soon. The track then heads true north following high elevation ridges on Gunsight Butte, Lookout Mountain, and Surveyors Ridge. The last ten miles are on pavement, but they are exceptionally scenic and pass through rural farms...
The Oregon Backcountry Discovery Route (ORBDR) is the 12th route developed by the BDR organization for dual-sport and adventure motorcycle travel. To become a BDR Supporter: https://ridebdr.com/become-a-supporter/ About The Route and Film: The Oregon Backcountry Discovery Route (ORBDR) is a 750-mile, multi-day off-pavement ride designed for adventure and dual-sport motorcycles. Starting in the high deserts of the southeast and exploring north through ancient pine forests and into the rugged mountains of the Cascade Range, challenges include lava rocks, silt, sand, and arduous mountain roads. From sagebrush steppe and hot springs, to caverns and glaciated volcanoes, riders are guided into remote territories that reveal many of the state’s natural wonders, providing prime sightseeing and r...
Join us on an unforgettable 9-day offroad and overland expedition through the rugged terrain of Oregon's Backcountry Discovery Route (OBDR). In this video, we document the hard times, challenges, and triumphs we encountered on our adrenaline-fueled journey. This was a BEAST of a video to film and edit, but I think we ended up with a great second episode of the Powerstop Trail Series! I hope this inspires you to call your adventure buddies and plan your next big trip. Please support the companies that support this type of content! 15% off Powerstop Brake products on https://www.summitracing.com/ Code "PSTRAIL Good from June 18th 2023 - July 18th 2023 ONX MAPS https://webmap.onxmaps.com/purchase/offroad/membership?promo=dirtlifestyle *Shirts & Hats on our website!!* https://www.thedirtli...
This drive begins along the Oregon Coast Highway in Lincoln City, Oregon and heads 44 miles north up the coast to Tillamook, Oregon. This is the seventh of eight drives spanning the entire Oregon Coast Highway 101 from California to Washington. 00:00 Lincoln City 06:04 Neskowin 09:09 Cloverdale 10:18 Hebo 12:05 Beaver 15:08 Pleasant Valley 17:16 Tillamook All of the music in this video is produced and copyrighted by Samuel Orson. Orson is an experimental guitarist from Seattle, Washington. With his unique approach to the acoustic guitar, he is able to create soundscapes and melodies unlike anything I've found. He is best known for his 120 Days of Music Project, where he composed, arranged, and recorded a studio quality song every day for 120 days. If you like what you hear, check o...
The fifth and final day of our Oregon BDR motorcycle trip started at Olallie Lake with some epic views and delicious lakeside coffee. Motorcycle camping on the Oregon BDR is fantastic and there are so many amazing places to motocamp along the way. Next up: finishing Oregon BDR section 6 and on to Oregon BDR section 7, featuring Bennett Pass and incredible views of Mt. Hood. Somewhere along the way on ORBDR section 7 I may have taken a wrong turn and lost my traveling companion Tim along the way. The highlight of our ORBDR trip was that first glimpse of the Columbia River letting us know that we were almost at the end of the route. Completing the Oregon BDR was an amazing feeling and I hope that our example can inspire some of you to get out and do an ORBDR trip of your own. Tha...
5619 Route 7 departs 16th-Oregon To 33rd-Dauphin
For the full trail guide please visit: https://www.trailsoffroad.com/trails/2894-7-up-tillamook-state-forest 7 Up 4wd trail is an iconic and very difficult offroad trail that should only be attempted in highly modified vehicles and with highly qualified drivers, spotters, and winchers. The 4x4 trail is also a challenging but manageable adventure through the forest to the top of the hill. There are three legs to 7 Up which include two legs that are passable by normal 4x4s and average drivers and one leg that is a challenge for even the most built buggies. On warm summer afternoons, rock buggies can often be found battling up the eastern leg of 7 Up where they often break axles, drive lines, and occasionally flip over and crash down the hill. The other two legs are a popular trail that many...
In today’s journey through the Pacific Northwest we will explore several filming locations from the 1985 adventure film “The Goonies.” I fondly remember watching this movie many times throughout my childhood. Being able to travel to these extraordinary destinations from the film was a surreal experience that I will never forget. Today’s trip will begin from our previous stop in Cannon Beach, Oregon - which was utilized in filming The Goonies. This incredible beach stretches for 4 miles leading up to the famous Haystack Rock formation - the centerpiece of this beach. After exploring the various tidal pools and witnessing the power of the Pacific Ocean it was now time to travel to today’s first stop on this itinerary. Ecola State Park is a cliffside paradise located just a few minutes away...
Seven people were killed and three others injured in a crash involving two semi trucks and one passenger vehicle. » Subscribe to NBC News: http://nbcnews.to/SubscribeToNBC » Watch more NBC video: http://bit.ly/MoreNBCNews NBC News Digital is a collection of innovative and powerful news brands that deliver compelling, diverse and engaging news stories. NBC News Digital features NBCNews.com, MSNBC.com, TODAY.com, Nightly News, Meet the Press, Dateline, and the existing apps and digital extensions of these respective properties. We deliver the best in breaking news, live video coverage, original journalism and segments from your favorite NBC News Shows. Connect with NBC News Online! NBC News App: https://smart.link/5d0cd9df61b80 Breaking News Alerts: https://link.nbcnews.com/join/5cj/brea...
Oregon Route 66 is an Oregon state highway that runs between the cities of Ashland and Klamath Falls. The highway is known as the Green Springs Highway No. 21 (see Oregon highways and routes), and is signed east-to-west.
Oregon Route 66 begins (at its western terminus) at an intersection with Oregon Route 99 just east of downtown Ashland. The highway heads northeast, crosses and intersects with Interstate 5, and continues east along the northern edge of the Siskiyou Mountains. Before ascending into the mountains, it passes alongside Emigrant Reservoir. Six miles east of Ashland, the highway intersects with Oregon Route 273, near the Klamath Falls Junction.
The highway then passes over the mountains. The highway ends at an interchange with U.S. Route 97 in Klamath Falls; just west of this interchange the highway intersects and briefly overlaps Oregon Route 140. OR 140 continues east of the US 97 interchange, past the Klamath Falls airport, and eventually towards Lakeview.
Now if you ever plan to motor west
Travel my way take the highway that's the best
Gets your kicks on Route 66
It winds from Chicago to LA
More than 2000 miles all the way
Get your kicks on Route 66
It goes through St. Louis
Joplin, Missouri and
Oklahoma City
Lookin mighty pretty You'll see Amarillo, Gallup, New Mexico
Flagstaff, Arizona, don't forget Winona, Barstow, Reno
San Bernidino
Won't you get hip to this timely tip
When you make that California trip
Get your kicks on Route 66
Now if you ever plan to motor west
Travel my way take the highway that's the best
Gets your kicks on Route 66
Gets your kicks on Route 66 x 5.