ADVERTISEMENT

In New Orleans, awaiting orders to get out ahead of blast

Published Oct 19, 2019 09:52 pm
By the Associated Press People living and working near a corner of New Orleans' historic French Quarter were being told they should prepare to evacuate for several hours Saturday — once workers complete preparations for controlled explosions they hope will bring down two giant, damaged construction cranes without damaging nearby buildings. Workers in a bucket hoisted by a crane begin the process of preparing the two unstable cranes for implosion at the collapse site of the Hard Rock Hotel, which underwent a partial, major collapse while under construction last Sat., Oct., 12, in New Orleans, Friday, Oct. 18, 2019. Authorities plan to blow up the two towering construction cranes that have become unstable at the site of the collapsed hotel. They hope to bring down the cranes with series of small controlled blasts just ahead of approaching tropical weather. The mayor has imposed a state of emergency to seize property and force people out if necessary. They hope to avoid more damage to gas and power lines and historic buildings. (AP Photo/Gerald Herbert/MANILA BULLETIN) Workers in a bucket hoisted by a crane begin the process of preparing the two unstable cranes for implosion at the collapse site of the Hard Rock Hotel, which underwent a partial, major collapse while under construction last Sat., Oct., 12, in New Orleans, Friday, Oct. 18, 2019. Authorities plan to blow up the two towering construction cranes that have become unstable at the site of the collapsed hotel. They hope to bring down the cranes with series of small controlled blasts just ahead of approaching tropical weather. The mayor has imposed a state of emergency to seize property and force people out if necessary. They hope to avoid more damage to gas and power lines and historic buildings. (AP Photo/Gerald Herbert/MANILA BULLETIN) The towers — one around 270 feet (82 meters) high, the other about 300 feet (91 meters) — weigh tons and have loomed over the wreckage of a partially collapsed building for a week. The Hard Rock Hotel under construction at the corner of Canal and Rampart Streets partially collapsed last Saturday, killing three workers. Two bodies remain in the unstable wreckage and Mayor LaToya Cantrell said recovering the remains would be a top priority once the area was rendered safe. If the plans succeed, the towers will drop vertically, sparing neighboring structures that include the Saenger Theatre and the New Orleans Athletic Club, both built in the 1920s. An existing evacuation area was to be expanded as the demolition hour approached — most likely some time Saturday afternoon. Officials said shelter would be provided for anyone needing it as a result. In a still-wider area, traffic was to be prohibited and people would be ordered to stay indoors until the demolition is complete and an all-clear is given. "If you are in line of sight of this you are too close," said city Homeland Security director Collin Arnold. Experts, including engineers who worked on demolitions following the 9/11 terrorist attacks, were called in to try to come up with a plan to clear the site and prevent further injury and damage before the cranes fell on their own. Heightening the urgency was the approach of Tropical Storm Nestor, which formed in the Gulf of Mexico on Friday. The storm's forecast track was well east of the city but officials worried wind from its outer bands could add to the threat of an uncontrolled fall of the cranes. On Thursday, officials announced plans to attach explosives to the structures. Once planned for Friday, the demolition was pushed back to Saturday. Intermittent wind and rain hampered the preparations as workers in buckets were suspended high over the disaster site. "They will work as long as it's safe," Fire Chief Tim McConnell said. "The objective is to get this down as quick as possible." The cause of the collapse remains unknown. The Occupational Health and Safety Administration is investigating and, Cantrell and McConnell said, evidence gathering began soon after the collapse. Lawsuits are already being filed on behalf of some of the more than 20 people injured against the project's owners and contractors.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.