- published: 05 Jun 2021
- views: 151
'+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; })); }); -->
The Memorial Bridge is a two-lane, 785 feet (239 m) long bridge spanning the Roanoke River along U.S. Route 11 (Memorial Avenue) in Roanoke, Virginia. The bridge serves as a connection between the southwestern areas of the city (including the Grandin Village area) with central Roanoke. Built by contractor W.W. Boxley, the bridge consists of five 120 feet (37 m) spans, with construction commencing in summer 1925. The bridge officially opened to traffic on May 6, 1926, at a final cost of $282,750.
Although officially open to traffic for over four months, its official dedication occurred on August 30 with U.S. Representative Clifton Woodrum in attendance. The delay in its dedication was attributed to delays involving the creation of the bronze, dedication plaques. It is officially dedicated to Roanoke's veterans of World War I.
The bridge features five plaques, with their contents determined by the Roanoke City Council. Four of them feature quotations from notable historic figures: Patrick Henry, Theodore Roosevelt, Stonewall Jackson and Thomas Jefferson; with the fifth containing the names of all the soldiers from Roanoke who died in World War I. Although dedicated to the veterans who fought in World War I, many did not attend due to the dedication ceremony due to not being originally conceived as a monument to former servicemen. The bridge was officially rededicated on November 11, 1991, sixty-five years after its original dedication.
The Memorial Bridge, also known as the Kennebec Memorial Bridge, the Kennebec River Bridge, or simply the Kennebec Bridge, is a bridge in Augusta, Maine, that crosses the Kennebec River, joining the east and west sides of the city. It carries U.S. Route 201, U.S. Route 202, Route 11, and Route 100. The bridge is approximately 2,100 feet (640 m) long and has two lanes for traffic and a sidewalk for pedestrians on each side of the roadway. It was first completed in 1949.
The Memorial Bridge is located near a state psychiatric hospital, the Riverview Psychiatric Center. After a number of suicides involving people jumping off the bridge, an 11-foot‐high safety fence was installed on each side of the bridge in 1983. The fence proved effective in preventing suicides from the bridge. In 2006, the fence was temporarily removed due to a renovation project, and this sparked debate about whether the fence was necessary. The fence was described by some as "a cage", and without it they could experience a "sweeping, majestic view". By the end of the year, the fence was reinstalled and it continued to perform well in preventing suicide jumping from the bridge.
The Memorial Bridge, locally known as the toll bridge, crosses the Ohio River connecting Belpre, Ohio and Parkersburg, West Virginia. The bridge is an alternate route to access U.S. Route 50 in Ohio from central Parkersburg.
While some internal WVDOT documents refer to the bridge as West Virginia Route 140, the number is not signed nor shown on state-issued maps.
The bridge was completed c. 1954, and is of a steel truss design. It accommodates two lanes of traffic, one in either direction.
This bridge has a toll for passenger cars of $0.50; travelers may also purchase tickets to reduce the toll from $0.50 to $0.40 per trip when $2.00 worth are purchased. There are no automatic lanes and E-ZPass is not accepted.
Coordinates: 39°17′00″N 81°33′47″W / 39.28333°N 81.56306°W / 39.28333; -81.56306
The Memorial Bridge (Thai: สะพานปฐมบรมราชานุสรณ์) is a bridge over the Chao Phraya River in Bangkok, Thailand, connecting the districts of Phra Nakhon and Thonburi.
The bridge was opened on 6 April 1932, by King Prajadhipok (Rama VII) in commemoration of the 150th anniversary of the Chakri Dynasty and the foundation of Bangkok, shortly before the Siamese Coup d'état on 24 June 1932. In English the bridge is commonly known as Memorial Bridge, however in Thai it is most commonly known as Phra Phuttayotfa Bridge (สะพานพระพุทธยอดฟ้า), after King Phutthayotfa Chulalok (Rama I), the first king of the Chakri Dynasty.
Construction of the bridge was started on 3 December 1929 by Dorman Long, Middlesbrough, England. The bridge used to have a double-leaf bascule-type lifting mechanism, which is now disused.
On 5 June 1944, as part of the bombing of Bangkok in World War II, a force of B-29 Superfortresses, in a test of their capabilities before being deployed against the Japanese home islands, were targeting against the bridge. The bombs fell over two kilometres away damaging no civilian structures, but downed some tram lines and destroyed a Japanese military hospital and the Japanese secret police headquarters. It was not until 1947 that Thai authorities learned of the intended target.
Roanoke is an independent city in the southern U.S. state of Virginia. As of the 2010 census, the population was 97,032. It is located in the Roanoke Valley of the Roanoke Region of Virginia.
Roanoke is the largest municipality in Southwest Virginia, and is the principal municipality of the Roanoke Metropolitan Statistical Area (MSA), which had a 2010 population of 308,707. It is composed of the independent cities of Roanoke and Salem, and Botetourt, Craig, Franklin, and Roanoke counties. Bisected by the Roanoke River, Roanoke is the commercial and cultural hub of much of Southwest Virginia and portions of Southern West Virginia.
The town first called Big Lick was established in 1852 and chartered in 1874. It was named for a large outcropping of salt which drew the wildlife to the site near the Roanoke River. In 1882 it became the town of Roanoke, and in 1884 it was chartered as the independent city of Roanoke. The name Roanoke is said to have originated from an Algonquian word for shell "money". This was also the name of the river that bisected it (probably where shells had come from) and the county. The city grew frequently through annexation through the middle of the twentieth century. The last annexation was in 1976. The state legislature has since prohibited cities from annexing land from adjacent counties. Roanoke's location in the Blue Ridge Mountains, in the middle of the Roanoke Valley between Maryland and Tennessee, made it the transportation hub of western Virginia and contributed to its rapid growth.
50 Virginia /vərˈdʒɪnjə/ is a large, very dark main belt asteroid. It was discovered by American astronomer James Ferguson on October 4, 1857 from the United States Naval Observatory in Washington, D.C. German astronomer Robert Luther discovered it independently on October 19 from Düsseldorf, and his discovery was announced first.
The reason for Virginia's name is not known; it may be named after Verginia, the Roman noblewoman slain by her father, but it may alternatively have been named after the American state of Virginia, which is contiguous with Washington.
Photometric observations of this asteroid at the Organ Mesa Observatory in Las Cruces, New Mexico during 2008 gave a light curve with a period of 14.315 ± 0.001 hours and a brightness variation of 0.19 ± 0.02 in magnitude. The shape of the light curve at the maximum was found to change with phase angle.
The orbit of 50 Virginia places it in an 11:4 mean motion resonance with the planet Jupiter. The computed Lyapunov time for this asteroid is only 10,000 years, indicating that it occupies a chaotic orbit that will change randomly over time because of gravitational perturbations of the planets.
Virginia is a 1941 American drama film directed by Edward H. Griffith. It featured the onscreen debut of Sterling Hayden.
Walking at the Memorial Bridge Park/Greenway.
The Virginia Dare Memorial Bridge is a four-lane automobile bridge spanning the Croatan Sound, between Manns Harbor and Roanoke Island, in Dare County, North Carolina. The bridge carries US 64 Bypass and is utilized by local and seasonal tourist traffic. The bridge is dedicated to the memory of Virginia Dare, the first English child born in the Americas, in 1587. At a length of 5.2 miles (8.4 km), the Virginia Dare Memorial Bridge is the longest in the state. It travels over .75 miles (1.21 km) of wetlands, with the remaining 4.45 miles (7.16 km) over the Croatan Sound. The bridge rises to 65 feet (20 m) at its apex and is supported by 88 concrete columns and more than 2,000 pilings, which extend 100 feet (30 m) below the water. The bridge deck has 7,250 tons of epoxy-coated reinforcement ...
The Virginia Dare Memorial Bridge is a four-lane bridge spanning the Croatan Sound, between Manns Harbor and Roanoke Island. Here is some history of the bridge and also of the person the bridge is named for. Don't forget to Subscribe: https://www.youtube.com/c/altitude12/?sub_confirmation=1 Here are some playlists to check out for more Beach updates: A Drive on the Beach: https://www.youtube.com/playlist?list=PLiFJkgPf8a3p64n7YYHSbjXvU29VdwHTh A Bucket full of BS: https://www.youtube.com/playlist?list=PLiFJkgPf8a3r6LuuuThRU-4aZANh5wF6j Manage your YouTube channel: https://www.tubebuddy.com/altitude12 Some of my equipment: DJI Mavic Air: https://click.dji.com/AMon7Sxh1UPn7N4ZP2T6lA?pm=video https://click.dji.com/AMon7Sxh1UPn7N4ZP2T6lA?pm=video Insta 360 one x Camera: https://www.in...
RIYANSH REDDY KUNDURU and SAMAIRA REDDY KUNDURU, Outer Banks Drive, Longest bridge in NC built on Sea
"The Bridges," Roanoke, Virginia Riverside Development Project is one of the largest mixed-use development project of its kind in Roanoke, Virginia. The Project will expand over a decade of Construction.
We visited Roanoke, Virginia, and were surprised at what we saw. Travel Vlog 139
The "Bridge the Gap" campaign is an effort to raise the necessary funds to complete a continuous 18 miles of greenway along the Roanoke River. There is currently a four-mile section that is not funded. We're half way to our goal - make your donation today at www.greenways.org (click on "Bridge the Gap").
A walk around the Roanoke River Greenway, near the Bridge Street Trailhead. Exploring a rocky shore, kudzu patch, and abandoned train tracks underneath Memorial Ave SW Bridge, Roanoke, Virginia. Would you like to see more POV walks and hikes? What can I do to improve my videos? What else would you like to see? Leave a comment below. "LOOK around" © 2023 Zephyr Greyhaven Filmed using Hohem iSteady Pro4 gimbal and GoPro Hero9 Black September 11, 2023
Paddling the Roanoke River VA. under Memorial Bridge on 03/01/2012
We have an immediate goal to connect all sections of Roanoke River Greenway through the urban portion of the valley. As of May 2012, funding has been secured for all segments of this route except the 4-mile "gap" that lies between Roanoke and Salem, and we are now over halfway to raising the $7 million that will be needed to "Bridge the Gap". While the Roanoke River Greenway is an excellent example of shared public/private vision, the majority of funding has come from government sources. To finish it will require the shared commitment and contributions of individuals, corporations, and concerned organizations. While we hope to benefit from federal and state grants, these resources are uncertain. Because our goal and benefits are clear, Bridging the Gap is the way to take control and respon...
The Memorial Bridge is a two-lane, 785 feet (239 m) long bridge spanning the Roanoke River along U.S. Route 11 (Memorial Avenue) in Roanoke, Virginia. The bridge serves as a connection between the southwestern areas of the city (including the Grandin Village area) with central Roanoke. Built by contractor W.W. Boxley, the bridge consists of five 120 feet (37 m) spans, with construction commencing in summer 1925. The bridge officially opened to traffic on May 6, 1926, at a final cost of $282,750.
Although officially open to traffic for over four months, its official dedication occurred on August 30 with U.S. Representative Clifton Woodrum in attendance. The delay in its dedication was attributed to delays involving the creation of the bronze, dedication plaques. It is officially dedicated to Roanoke's veterans of World War I.
The bridge features five plaques, with their contents determined by the Roanoke City Council. Four of them feature quotations from notable historic figures: Patrick Henry, Theodore Roosevelt, Stonewall Jackson and Thomas Jefferson; with the fifth containing the names of all the soldiers from Roanoke who died in World War I. Although dedicated to the veterans who fought in World War I, many did not attend due to the dedication ceremony due to not being originally conceived as a monument to former servicemen. The bridge was officially rededicated on November 11, 1991, sixty-five years after its original dedication.