Skip to content

Commit

Permalink
55934-elys
Browse files Browse the repository at this point in the history
  • Loading branch information
ELY M committed Jan 23, 2025
1 parent 861072b commit c6a1ec1
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 9 deletions.
7 changes: 7 additions & 0 deletions app/src/main/java/joshuatee/wx/util/DownloadText.kt
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,13 @@ object DownloadText {
"product discontinued via SCN23-101: Termination of the Weather Prediction Center Day 3-7 Hazards Outlook Discussion Effective November 15, 2023"
}

prod.contains("WEEK34") -> {
val textUrl =
"https://www.cpc.ncep.noaa.gov/products/predictions/WK34/texts/week34fcst.txt"
text = textUrl.getHtmlWithNewLine()
text = text.removeHtml()
}

prod.contains("PMD30D") -> {
val textUrl =
GlobalVariables.TGFTP_WEBSITE_PREFIX + "/data/raw/fx/fxus07.kwbc.pmd.30d.txt"
Expand Down
16 changes: 9 additions & 7 deletions app/src/main/java/joshuatee/wx/wpc/UtilityWPCImages.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import joshuatee.wx.ui.MenuTitle
internal object UtilityWpcImages {

private val titles = listOf(
MenuTitle("Surface Analysis", 9),
MenuTitle("Surface Analysis", 8),
MenuTitle("Forecast Maps", 17),
MenuTitle("QPF", 29),
MenuTitle("Snow / Ice", 17),
Expand All @@ -48,8 +48,9 @@ internal object UtilityWpcImages {
"Analysis with Satellite (NHEM)",
"Analysis with Satellite (NHEM+PAC)",
"High resolution surface analysis",
"Significant Surface Low Tracks",
"Low Tracks and Clusters",
"Automated Low Clusters",
// "Significant Surface Low Tracks",
// "Low Tracks and Clusters",

"National Forecast Chart Day 1",
"National Forecast Chart Day 2",
Expand Down Expand Up @@ -141,8 +142,8 @@ internal object UtilityWpcImages {
"8-14 Day Heat Index Outlook",
"6-10 Day Lowest Wind Chill Outlook",
"8-14 Day Lowest Wind Chill Outlook",
"Week 3-4 Outlooks - Temperature ( Experimental )",
"Week 3-4 Outlooks - Precipitation ( Experimental )",
"Week 3-4 Outlooks - Temperature",
"Week 3-4 Outlooks - Precipitation",
"One Month Outlook - Temperature",
"One Month Outlook - Precipitation",
"Three Month Outlook - Temperature",
Expand Down Expand Up @@ -188,8 +189,9 @@ internal object UtilityWpcImages {
"${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/sfc/satsfcnps.gif",
"${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/sfc/satsfc.gif",
"${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/sfc/lrgnamsfc09wbg.gif",
"${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/wwd/lowtrack_circles.gif",
"${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/lowtracks/lowtrack_ensembles.gif",
"${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/lowclusters/lowclusters_latest.png",
// "${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/wwd/lowtrack_circles.gif",
// "${GlobalVariables.NWS_WPC_WEBSITE_PREFIX}/lowtracks/lowtrack_ensembles.gif",

GlobalVariables.NWS_WPC_WEBSITE_PREFIX + "/NationalForecastChart/staticmaps/noaad1.png",
GlobalVariables.NWS_WPC_WEBSITE_PREFIX + "/NationalForecastChart/staticmaps/noaad2.png",
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/joshuatee/wx/wpc/UtilityWPCText.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ internal object UtilityWpcText {
}

private val titles = listOf(
MenuTitle("General Forecast Discussions", 9),
MenuTitle("General Forecast Discussions", 10),
MenuTitle("Precipitation Discussions", 2),
MenuTitle("Hazards", 7),
MenuTitle("Ocean Weather", 34),
Expand All @@ -68,6 +68,7 @@ internal object UtilityWpcText {
"pmdak: Alaska Extended Forecast Discussion",
"pmdca: Tropical Discussion",
"pmdmrd: Prognostic disc for 6-10 and 8-14 Day Outlooks",
"week34: Prognostic Discussion for Week 3-4 Temperature and Precipitation Outlooks",
"pmd30d: Prognostic disc for Monthly Outlook",
"pmd90d: Prognostic disc for long-lead Seasonal Outlooks",
"pmdhco: Prognostic disc for long-lead Hawaiian Outlooks",
Expand Down
21 changes: 20 additions & 1 deletion doc/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,26 @@

# Developer ChangeLog

## 55934 2025_01_18
## 55934 2025_01_22

* [ADD] In National Images remove "experimental" from the label for "Week 3-4 Outlooks -
Temperature" and "Week 3-4 Outlooks - Precipitation" per *SCN24-104: The Experimental Weeks 3-4
Precipitation Outlooks Will Become Operational on or about January 17, 2025*
* [ADD] "Prognostic Discussion for Week 3-4 Temperature and Precipitation Outlooks" in National Text
Product Screen under **General Forecast Discussions**
* [ADD] NWS has discontinued the following per SCN24-108: Termination of the 72-Hour Low Tracks
Graphic and the Non-Technical 72-Hour Low Tracks Graphic to be Replaced by Automated Low Clusters
Forecast Tool: Effective January 20, 2025 , remove from National Images

```
"Significant Surface Low Tracks",
"Low Tracks and Clusters",
```

* [ADD] "Automated Low Clusters" in National Images per SCN24-108: Termination of the 72-Hour Low
Tracks
Graphic and the Non-Technical 72-Hour Low Tracks Graphic to be Replaced by Automated Low Clusters
Forecast Tool: Effective January 20, 2025

* [ADD] lib update

Expand Down

0 comments on commit c6a1ec1

Please sign in to comment.