- published: 11 Feb 2024
- views: 364811
'+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; })); }); -->
U.S. Route 69 is a north–south United States highway. When it was first created, it was only 150 miles (241 km) long, but it has since been expanded into a Minnesota to Texas cross-country route. The highway's southern terminus (as well as those of US 287 and US 96) is in Port Arthur, Texas at an intersection with State Highway 87. Its northern terminus is in Albert Lea, Minnesota at Minnesota State Highway 13.
US 69 begins at its southern terminus with SH 87 in Port Arthur. This intersection is also the southern terminus for US 96 and US 287, which are concurrent with US 69. US 69, US 96, and US 287 continue in a northwest, then west, route until its intersection with Interstate 10 in southern Beaumont. At this intersection, US 69, US 96, and US 287 merge with I-10. I-10/US 69/US 96/US 287 continue in a northerly direction through Beaumont for several miles. Just after the intersection with US 90, I-10 splits from the multiplex and resumes its easterly course, leaving US 69, US 96, and US 287 heading northwest through Beaumont. US 69 north of I-10 is also known officially known as Eastex Freeway, and is an official evacuation route, just as Interstate 69/US 59 heading north from Houston is known as Eastex Freeway as well.
U.S. Route 66 (US 66 or Route 66), also known as the Will Rogers Highway and colloquially known as the Main Street of America or the Mother Road, was one of the original highways within the U.S. Highway System. Route 66 was established on November 11, 1926, with road signs erected the following year. The highway, which became one of the most famous roads in America, originally ran from Chicago, Illinois, through Missouri, Kansas, Oklahoma, Texas, New Mexico, and Arizona before ending at Santa Monica, California, covering a total of 2,448 miles (3,940 km). It was recognized in popular culture by both the hit song "(Get Your Kicks on) Route 66" and the Route 66 television show in the 1960s.
Route 66 served as a major path for those who migrated west, especially during the Dust Bowl of the 1930s, and it supported the economies of the communities through which the road passed. People doing business along the route became prosperous due to the growing popularity of the highway, and those same people later fought to keep the highway alive in the face of the growing threat of being bypassed by the new Interstate Highway System.
U.S. Route 160 is a 1,465 mile (2,358 km) long east–west United States highway in the Midwestern United States. The western terminus of the route is at US 89 five miles (8 km) west of Tuba City, Arizona. The eastern terminus is at US 67 and Missouri 158 southwest of Poplar Bluff, Missouri.
Its route, if not its number, was made famous in song in 1975, as the road from Wolf Creek Pass to Pagosa Springs, Colorado in C.W. McCall's country music song Wolf Creek Pass.
US 160 begins at US 89 near the western edge of Navajo Nation. Near Tuba City, it intersects State Route 264. It goes through Tonalea and Cow Springs before entering Kayenta, where it intersects U.S. Route 163. It continues northeast through Dennehotso, then has a brief overlap with U.S. Route 191 in Mexican Water. It goes east until Teec Nos Pos, where it intersects U.S. Route 64, then turns northeast to go to the Four Corners and enters New Mexico.
US 160 is one of the major routes crossing the Navajo Nation and in Arizona does not leave the Navajo Nation.
Oregon (i/ˈɔːrᵻɡən/ AWR-ə-gən) is a state in the Pacific Northwest region of the United States. Oregon is bordered on the west by the Pacific Ocean, on the north by Washington, on the south by California, on the east by Idaho, and on the southeast by Nevada. The Columbia River delineates much of Oregon's northern boundary, and the Snake River delineates much of the eastern boundary. The parallel 42° north delineates the southern boundary with California and Nevada. It is one of only three states of the contiguous United States to have a coastline on the Pacific Ocean, and the proximity to the ocean heavily influences the state's mild winter climate, despite the latitude.
Oregon was inhabited by many indigenous tribes before Western traders, explorers, and settlers arrived. An autonomous government was formed in the Oregon Country in 1843, the Oregon Territory was created in 1848, and Oregon became the 33rd state on February 14, 1859. Today, at 98,000 square miles, Oregon is the ninth largest and, with a population of 4 million, 26th most populous U.S. state. The capital of Oregon is Salem, the second most populous of its cities, with 160,614 residents (2013 estimate). With 609,456 residents (2013 estimate), Portland is the largest city in Oregon and ranks 29th in the U.S. Its metro population of 2,314,554 (2013 estimate) is 24th. The Willamette Valley in western Oregon is the state's most densely populated area, home to eight of the ten most populous cities.
Oregon is a city in and the county seat of Ogle County, Illinois, United States. The population was 3,721 at the 2010 census.
The land Oregon, Illinois was founded on was previously held by the Potawatomi and Winnebago Indian tribes. In fact, later, settlers discovered that the area contained a large number of Indian mounds, most 10 to 12 feet in diameter.
Ogle County was a New England settlement. The original founders of Oregon and Rochelle consisted entirely of settlers from New England. These people were "Yankees", that is to say they were descended from the English Puritans who settled New England in the 1600s. They were part of a wave of New England farmers who headed west into what was then the wilds of the Northwest Territory during the early 1800s. Most of them arrived as a result of the completion of the Erie Canal. When they arrived in what is now Bureau County there was nothing but a virgin forest and wild prairie, the New Englanders laid out farms, constructed roads, erected government buildings and established post routes. They brought with them many of their Yankee New England values, such as a passion for education, establishing many schools as well as staunch support for abolitionism. They were mostly members of the Congregationalist Church though some were Episcopalian. Culturally Bureau County, like much of northern Illinois would be culturally very continuous with early New England culture, for most of its history.
Oregon is an American jazz and world music group, originally formed in 1971 by Ralph Towner (guitar, piano, synthesizer, trumpet), Paul McCandless (woodwind instruments), Glen Moore (double bass, violin, piano), and Collin Walcott (percussion, sitar, tabla).
Towner and Moore had been friends and occasional collaborators since meeting in 1960 as students at the University of Oregon. By 1969, both were working musicians living in New York; while collaborating with folksinger Tim Hardin they were introduced to world music pioneer Paul Winter's "Consort" ensemble, particularly member Collin Walcott, with whom Towner began improvising as an informal duo. By 1970 Towner and Moore had joined the Winter Consort and met fellow member McCandless; the four began exploring improvisation on their own, while their contributions continued to be seminal in redefining the Winter Consort "sound" in compositions like Towner's "Icarus".
The four musicians made their first group recording in 1970, but the label, Increase Records, went out of business before it could be released (it eventually was issued by Vanguard in 1980 as Our First Record). Oregon made its "formal" debut in NYC in 1971 (originally named "Thyme — Music of Another Present Era", the name change to Oregon was suggested by McCandless).
Did I miss anything on this road trip down Oregon's coastline? I don't think so! It took two weeks to stop at every town (and other features - like the famed lighthouses and viewpoints). The Oregon Coast is almost entirely accessible by vehicle. It is 362 miles long from north to south. It also has a couple other names and designations: Highway 101, The People's Coast and The Pacific Coast Scenic Byway. It's also an All American Road, which is a Federal Highway Administration designation. The criteria for an All American Road is that it must feature two or more intrinsic qualities that are nationally significant and do not exist elsewhere. The road must also be a destination unto itself, which means the actual drive is the primary reason for the trip. #oregoncoast #highway101 #...
Go on an unforgettable journey along the Oregon Coast while watching our new 4K UHD scenic road video from https://beautifulwashington.com and https://proartinc.net Download our video in perfect 4K at https://proartinc.net/shop/scenic-drives-relax-4k/us-route-101/ U.S. Route 101 or U.S. Highway 101 is a unique opportunity to explore the Oregon Coast. Actually, it runs through the states of California, Oregon, and Washington. You’ll take a scenic drive along the Pacific Coast. Take all the fabulous views on your way and relax! It’s a wonderful highway offering the incredibly beautiful scenery! During your virtual drive you’ll pass plenty of bridges, a tunnel and lush forests. Stunning views make this drive incredibly attractive and interesting. You can stop anywhere along the coast to ge...
S U P P O R T U S 🤗 A little bit goes a long way. Help us Eat, See, and RV more! → Become a Patreon & Join our Community: https://www.patreon.com/eatseerv → Shop through our links or give a friendly donation: http://eatseerv.com/support-us/ 🚐 Book easier with Arvie → https://link.eatseerv.com/arvie We finally made it to the Oregon Coast! This week we take you with us on an epic RV road trip along the Southern Oregon Coast. We start in Brookings and make our way toward Thor's Well in Cape Perpetua. We show you all the must-see stops, beautiful beaches, hidden treasures, delicious seafood, and fantastic Oregon coast camping along the way. 0:00 Intro to Oregon Coast RV vlog 0:42 Driving Oregon's southern coast in an RV 1:44 Fresh seafood at the Crazy Norwegian's 2:14 Tide pools and beac...
Is this the MOST beautiful drive in the WORLD! Hello all you good people and welcome to another Adventure. Kim and I took an epic Oregon Coast to California Coast road trip. This has got to be one of the best stretches of highway in the world. We hit up all the best sites along the way including the always amazing Avenue of the Giants, San Francisco, Big Sur, and Monterey, Carmel-by-the-Sea, just to name a few. There is a full list of stops and sites below. We hope you enjoy our Oregon to California Coast road trip and please comment and consider subscribing if you want to see more of our travel adventures. We respond to every comment so don't be shy. Question of the day! Have you ever driven the Oregon or California Coast? If so, what did you think about it? What was your favorite sp...
Full Time RV Living / RV Travel Videos/RVerTV Traveled t along highway 101 south the Oregon Coastal Scenic Highway http://www.oregoncoasttravel.net https://en.wikipedia.org/wiki/U.S._Route_101_in_Oregon http://traveloregon.com/trip-ideas/scenic-byways/the-pacific-coast-scenic-byway/ Support RVerTV For Free! Click Here : http://amzn.to/1Qd5z80 Social Contact Pages: RVerTV On Facebook ... https://www.facebook.com/rvertv.tv RVerTV On Twitter... https://twitter.com/rvertv My New RVerTV Website.... : http://rvertv.tv/ RVerTV Cameras Used in This Video: Sony a6000 http://amzn.to/1VLz1U3 Nikon 3300 http://amzn.to/1XSX0Cj Canon XA20 http://amzn.to/1VLBbDc GoPro4 Black http://amzn.to/1VLz3eO Brinno Timelapse http://amzn.to/1VLAbPx Quadcopter Drone I Used In This Video: Yuneec Q500 4K...
Driving up the Hwy 101 Oregon Coast Manzanita to Seaside.
I grew up on The Oregon Coast north of Cannon Beach and south of Astoria in one of the best beach towsn of Seaside, Oregon, and its easily one of my favorite places in the whole world and is home to some of the most dramatic and beautiful coasts on earth from the giant sand dunes to the offshore rock stacks - it has it all. Since I grew up in Seaside and Cannon Beach (northern), I figured I would make this travel guide for exploring the Oregon Coast is very special to me. The Oregon Coast is part of the 7 wonders of Oregon, and even though I am biased, I think it's the best one ;) I've driven every mile of HWY 101 from California to Washington and I wish that I had explored more of every beach, rock stack hike along the Whole coastline, but I will travel Oregon for the rest of my life. Th...
I recently spent a week on the Oregon Coast camping, hiking and capturing some of my favorite drone footage to date. Big thanks to Jackery for sponsoring this video. Use code "JackeryCa" to get 10% off your purchase! (Offer good through March 31st) - https://ca.jackery.com/ https://www.amazon.com/Jackery-Generator-SolarSaga-Overlanding-Emergency/dp/B08Z3FRXW4?ref_=ast_sto_dp Aidan Stott - https://www.instagram.com/astott_overland/ PRE ORDER Ikamper 3.0 - https://ikamper.com/ Big shoutout to TOYO Tires for helping me out with a new set of tires - https://www.toyotires.com/product/open-country-at3/ HOW I FIND CAMPING: https://thedyrt.com/promo/drew90 - 3 FREE Months of the DYRT PRO with code "drew90" NFT Release: https://foundation.app/@drewsimms/fading-summer-night-52874 Follow Me ...
Stock footage of this video of The California Coast is available for licensing, contact [email protected]. Usually we send you the video without the graphics within a couple of hours. A tour of the California Coast by Highway 101 and the Pacific Coast Highway. We start on Highway 101 at the Oregon Border and continue to Crescent City where it becomes the Redwood Highway. We then follow it through the Wine Country of Sonoma County and into San Francisco across the Golden Gate Bridge. Highway 101 becomes the Bayshore Freeway as we travel across the Silicon Valley to San Jose. We the move to the Pacific Coast Highway just south of Monterey and follow across the Bixby Creek Bridge through twisting, cliff hanging curves with a spectacular view of the Pacific Ocean. At San L...
Day 77 of the National Parks Plus USA Road Trip. A meandering and beautiful drive down Highway 101 on the Oregon coast. Bridges, lighthouses, seafood, and sea gulls enliven this drive, one of the trip's best. 0:00 Intro 0:22 Groggy breakfast in Reedsport 0:44 Umpqua River Lighthouse tour 2:55 Views along US 101 in Oregon 4:26 Bandon, OR and Coquille River South Jetty 5:51 Face Rock in Bandon, OR 6:27 Lunch at Brewed Awakenings 6:43 Bridges and views on US 101 in Oregon 10:35 Brookings, Oregon 10:58 Sunset over the Pacific Ocean 12:21 Coming tomorrow on Day 78 🔔 *SUBSCRIBE* → www.youtube.com/t1dwanderer?sub_confirmation=1 👉 *PATREON* → https://www.patreon.com/t1dwanderer 🌍 *EMAIL NEWSLETTER* → https://www.t1dwanderer.com/subscribe
U.S. Route 69 is a north–south United States highway. When it was first created, it was only 150 miles (241 km) long, but it has since been expanded into a Minnesota to Texas cross-country route. The highway's southern terminus (as well as those of US 287 and US 96) is in Port Arthur, Texas at an intersection with State Highway 87. Its northern terminus is in Albert Lea, Minnesota at Minnesota State Highway 13.
US 69 begins at its southern terminus with SH 87 in Port Arthur. This intersection is also the southern terminus for US 96 and US 287, which are concurrent with US 69. US 69, US 96, and US 287 continue in a northwest, then west, route until its intersection with Interstate 10 in southern Beaumont. At this intersection, US 69, US 96, and US 287 merge with I-10. I-10/US 69/US 96/US 287 continue in a northerly direction through Beaumont for several miles. Just after the intersection with US 90, I-10 splits from the multiplex and resumes its easterly course, leaving US 69, US 96, and US 287 heading northwest through Beaumont. US 69 north of I-10 is also known officially known as Eastex Freeway, and is an official evacuation route, just as Interstate 69/US 59 heading north from Houston is known as Eastex Freeway as well.