Monitor - Public
Test of New Captioned Carousel
Monitor
Menú de navegación
Ruta de navegación
Publicador de contenidos
During the annual Atlantic storm season, which runs June 1-November 30, Citizens monitors the weather forecast 24/7 for potential storms or storm effects. For the most up-to-date information, Citizens relies on the National Oceanic and Atmospheric Administration and its National Hurricane Center (NHC) for storm advisories and other storm-related information.
The National Hurricane Center’s tropical storm forecasts are developed by several agencies that work collaboratively to issue timely and informative reports. Citizens also uses a geographic information system (GIS) tool that incorporates data from NHC and helps track and forecast projected storm paths and wind and surge information so Citizens can be ready when a storm strikes Florida.
Citizens has partnered with the Florida Public Radio Emergency Network (FPREN) to bring you the latest news about catastrophic weather impacting your area. FPREN updates can be heard on your local public radio station and by downloading their free Florida Storms app from iTunes and Google Play.
Publicador de contenidos
Publicador de contenidos
Publicador de contenidos
Java method "com.liferay.portal.kernel.util.DateUtil_IW.parseDate(String, String, Locale)" threw an exception when invoked on com.liferay.portal.kernel.util.DateUtil_IW object "com.liferay.portal.kernel.util.DateUtil_IW@70964f05"; see cause exception in the Java stack trace.
----
FTL stack trace ("~" means nesting-related):
- Failed at: feedDateObj = dateUtil.parseDate("EEE... [in template "20154#20194#7206842" at line 26, column 7]
----
1<style>
2</style>
3
4<#assign
5 feedDoc = saxReaderUtil.readURL("${cpicNoaaFeed.getData()}")
6 feedItems = feedDoc.selectNodes("/rss/channel/item")
7 image_path = themeDisplay.getPathThemeImages()
8/>
9
10<#list feedItems as item>
11
12 <#assign title = item.selectSingleNode('title').getData() />
13
14 <#if title == "NHC Atlantic Outlook">
15 <style>
16 .news-feed-noaa {
17 height: 21.9rem;
18 overflow-x: hidden;
19 overflow-y: scroll;
20 padding: 1.25rem;
21 }
22 </style>
23
24 <#assign
25 feedDate = getterUtil.getString(item.selectSingleNode('pubDate').getData())
26 feedDateObj = dateUtil.parseDate("EEE, dd MMM yyyy hh:mm:ss Z", feedDate, locale)
27 description = item.selectSingleNode('description').getData()
28 description = description?replace('a href', 'a target="_blank" href')
29 />
30
31 <div class="cpic-content more-content news-feed">
32 <div class="h2 news-feed-header rounded-top text-center">
33 <img class="noaaHeaderImage" src="${image_path}/custom/NOAA Logo.png" alt="NOAA Logo" />
34 <div class="noaaHeaderText">Storm Tracker</div>
35 </div>
36 <div class="news-feed-noaa">
37 <div class="feed-title noaa-feed-title" style="font-weight: bold;">${.vars['reserved-article-title'].data}</div>
38 <div class="feed-entries">
39 <div class="feed-entry">
40 <div class="feed-entry-title noaa-item-title" style="font-weight: bold;"><a href="${item.selectSingleNode('link').getData()}" target="_blank">${item.selectSingleNode('title').getData()}</a></div>
41 <div class="feed-entry-content">
42 <div class="feed-date noaa-feed-date" style="padding-bottom: .5rem;">${feedDateObj?datetime}</div>
43 <div class="noaa-item-description">${description}</div>
44 </div>
45 </div>
46 </div>
47 </div>
48 </#if>
49</#list>