- published: 16 May 2024
- views: 173448458
'+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; })); }); -->
Memorial Bridge may refer to:
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.
Terrifying dashcam vision of a crash, which left a semi-truck precariously dangling from the edge of a Louisville bridge has been released. On March 1, the 26-year-old driver, Sydney Thomas, was airlifted to safety after nearly plunging into the Ohio River when attempting to avoid a vehicle swerving into her lane. The footage was shown in a U.S court this week. The driver of the swerving car, 33-year-old Jeffersonville man Trevor Branham, has been charged with wanton endangerment and operating a motor vehicle with a suspended licence. Subscribe to 10 News First to get the latest updates and breaking news: https://bit.ly/37DDbL1 Join the conversation and follow us on: Twitter: http://twitter.com/10NewsFirst Facebook: http://www.facebook.com/10NewsFirst/ Instagram: http://www.instagram.c...
A person has jumped off the Memorial Bridge in Springfield on Sunday. Stay informed about Massachusetts news, weather, breaking news and investigations! Follow WWLP on our website and social channels: https://www.wwlp.com/ https://www.youtube.com/user/wwlp https://www.facebook.com/WWLP22News https://twitter.com/WWLP22News https://www.instagram.com/wwlp22news/
It’s a big day for one Springfield landmark. The Memorial Bridge celebrated its 100th birthday on Wednesday.
West Springfield Police requested the assistance of Springfield and Agawam to help rescue a man who jumped off the Memorial Bridge into the Connecticut River.
WEST SPRINGFIELD, Mass. (WWLP) - Crews are investigating reports of a person who allegedly jumped from the Memorial Bridge in West Springfield Tuesday. Stay informed about Massachusetts news, weather, breaking news and investigations! Follow WWLP on our website and social channels: https://www.wwlp.com/ https://www.youtube.com/user/wwlp https://www.facebook.com/WWLP22News https://twitter.com/WWLP22News https://www.instagram.com/wwlp22news/
Dashcam shows a pickup truck slam in Sydney Thomas' semi-truck while on the Clark Memorial Bridge on March 1, 2024. Exclusive interview with the semi driver: https://www.whas11.com/article/news/local/sydney-thomas-louisville-bridge-rescue-march-clark-memorial-interview/417-5146a417-5d7e-4f8b-807c-d5fbd5eb2334 -------------- Follow WHAS11 on Social: Facebook: https://www.facebook.com/WHAS11/ Twitter: https://twitter.com/WHAS11 Website: https://www.whas11.com/ Subscribe to WHAS11 for exclusive content: https://www.youtube.com/c/WHAS11News Download the WHAS11 News app: Apple: https://itunes.apple.com/us/app/whas11-news-louisville/id1453184391?ls=1&mt=8 Android: https://play.google.com/store/apps/details?id=com.doapps.android.mln.MLN_b3ff766402d6d975200b86a42ea504b0 #louisville #bridge ...
KYTC officials say the bridge is safe but due age-related deterioration, they will enforce weight limits to protect the bridge from damage and ensure traffic safety. ----------- Follow WHAS11 on Social: Facebook: https://www.facebook.com/WHAS11 X: https://x.com/WHAS11 Instagram: https://www.instagram.com/whas11/ Subscribe to WHAS11 for exclusive content: http://www.youtube.com/c/WHAS11News?s... Download the WHAS11 News app: Apple: https://apple.co/325dTnY Android: https://bit.ly/3hfvOg8 #louisville #kentucky #localnews
The body of a man police believe ended up in the Connecticut River after a car accident in West Springfield was found by the State Police Dive Team Saturday morning.
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...
Augusta ME to Wiscasset along the eastern shore of the Kennebec River. 0:00 I-95 northbound 0:50 US 202 Western Ave, Augusta 5:11 Memorial Dr over Kennebec River 6:18 Route 9 9:58 Chelsea ME 14:14 Randolph ME 15:57 Route 27, Randolph 17:13 Pittston ME 25:13 Dresden ME 26:28 Dresden Eastern River to Wiscasset 36:53 US-1 Bath Road Tags: State: Maine Names: US 1, SR 126, Maine Route 126, Maine Route 9, SR 9, ME-126, ME-9,Route 202, Route 11, Route 17, Route 100, Western Avenue, Memorial Drive, Memorial Bridge, Memorial Circle, Cony Circle, Stone St, I-95, Hospital St, River Road, Water St, Wiscasset Road, Gardiner Road, Counties: Lincoln, Kennebec Water: Kennebec River, Eastern River, Togus Stream, Towns: Wiscasett, Dresdon, Pittston, Randolph, Augusta ul20230603
Presentation given to Maine State Officials in Augusta, May 29, 2009.
five Hoyle, Tanner bridge inspectors including three SPRAT1 and/or IRATA2 rope access inspectors completed a bi-annual inspection of the Memorial Bridge in Augusta, Maine. This 2,100 foot long, 75 foot high historic deck truss bridge posed many challenges for bridge inspection access. Access from the ground below was limited because part of the bridge is over the Kennebec River, and access from above was prevented by a tall chain link fencing that runs the entire length of the bridge.
Veteran's Memorial Bridge is a bridge connecting the cities of Portland, Maine and South Portland, Maine. The bridge spans the Fore River and is part of U.S. Route 1. The original Veteran's Memorial Bridge was built in 1954 and was described as 'rapidly deteriorating' prior to its demolition. Designated a top infrastructure priority by Maine state government, a new bridge was built beginning in 2010. The new bridge was completed on November 30, 2012. General contractor Reed & Reed of Woolwich, Maine was awarded the rebuilding contractor. Reed & Reed estimated the new bridge would stand for 100 years. Portland is the most populous city in the U.S. state of Maine and the seat of Cumberland County. Portland's population was 66,215 as of 2019. The Greater Portland metropolitan area is home to...
On 7-30-19 we were tagged in a video on Facebook showing dangerous motorcycle operation across the Memorial Bridge. Yesterday APD was tagged in this video showing a dangerous driver on the Memorial Bridge. He is seen operating his motorcycle while standing on the seat and bouncing up and down. This is dangerous driving and should not be encouraged. We would like to learn the identify of this person and speak to him about this incident. If you know who this is please call us or text anonymously AUGUTAPD to 847411.
Augusta, the capital city of Maine, was the political and military hub of the Pine Tree State during the Civil War. Years later local residents formed the Augusta Monument Association to raise funds for an ornate monument designed by New York City sculptor Maurice J. Power. Dedicated on September 21, 1882, the monument stands in Monument Park, within view of the Maine State Capitol dome on nearby State Street.
five Hoyle, Tanner bridge inspectors including three SPRAT1 and/or IRATA2 rope access inspectors completed a bi-annual inspection of the Memorial Bridge in Augusta, Maine. This 2,100 foot long, 75 foot high historic deck truss bridge posed many challenges for bridge inspection access. Access from the ground below was limited because part of the bridge is over the Kennebec River, and access from above was prevented by a tall chain link fencing that runs the entire length of the bridge.
A look at the historic Butt Memorial Bridge in Augusta, Ga.
Memorial Bridge may refer to:
Uncle Jack, when i look back, sent a lot down to me. my mom would say we both seemed to be the life of the party. he was a picker, and a drinker. he took one step over the edge. a drinker, and he ended up with some debt i guess. nobody knows what really happened. the river was swollen when they found him in it, and it rained all weekend on the bridge leaving town. this is how i see it. this is not something i was told. i envisioned it to be dark, wet, and cold. if he jumped, or if he fell, no one knows. but ive got a different picture for each one of those. i was a baby. and we never really met, its really sad, i guess. he was a musician, just like his nephew and if he couldve i wouldve wanted him to teach me. but all i ever got from him, Uncle Jack, was his need to stop drinking.