Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/dh4/WeatherRadar
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Hasting committed Oct 23, 2022
2 parents e7d197f + eac62ee commit c057cb3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void refreshRadar() {
}

private String displayMosaicImage(String mosaic, Boolean loop) {
String url = "https://radar.weather.gov/ridge/lite/";
String url = "https://radar.weather.gov/ridge/standard/";
if (loop) {
url += mosaic + "_loop.gif";
} else {
Expand All @@ -107,7 +107,7 @@ private String displayMosaicImage(String mosaic, Boolean loop) {
}

private String displayLiteImage(String loc, String type, Boolean loop) {
String url = "https://radar.weather.gov/ridge/lite/";
String url = "https://radar.weather.gov/ridge/standard/";
if (loop) {
url += loc + "_loop.gif";
} else {
Expand Down

0 comments on commit c057cb3

Please sign in to comment.