Doppler radar map

Discuss other useful utilities, general computing tips & tricks, Internet resources, etc.
User avatar
flyingDman
Posts: 2817
Joined: 29 Sep 2013, 19:01

Doppler radar map

17 Feb 2024, 17:46

Nice Doppler map that can be opened with one key. Latitude, longitude and zoomlevel can be set (now set for Southern California). Height is set for a 16:10 aspect ratio.

Code: Select all

#Requires AutoHotkey v2.0
var := "
(
<!doctype html><html lang="en-US">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body style="background-color:black;">
<div style="width:100%; height:950px;">
<wx-widget type="map" latitude="34.5" longitude="-119.5" menuitems="0001" mapid="0002" memberid="1384" zoomlevel="8" fullscreen="true" animate="true"></wx-widget>
<script async defer type="text/javascript" src="https://widgets.media.weather.com/wxwidget.loader.js?cid=878507589"></script>
</div></body></html>
)"

if FileExist(flnm := A_Temp "\doppler.html")
	filedelete flnm
fileappend var, flnm
run flnm
14.3 & 1.3.7
RussF
Posts: 1269
Joined: 05 Aug 2021, 06:36

Re: Doppler radar map

18 Feb 2024, 07:54

Sweet! Nice one-click access to weather map. Thanks for sharing!

Russ
garry
Posts: 3771
Joined: 22 Dec 2013, 12:50

Re: Doppler radar map

18 Feb 2024, 10:20

@flyingDman thank you, I tried to ahk V1

Code: Select all

#Requires AutoHotkey v1
flnm := A_desktop . "\doppler.html"
var=
(
<!doctype html><html lang="en-US">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body style="background-color:black;">
<div style="width:100`%; height:950px;">
<wx-widget type="map" latitude="34.5" longitude="-119.5" menuitems="0001" mapid="0002" memberid="1384" zoomlevel="8" fullscreen="true" animate="true"></wx-widget>
<script async defer type="text/javascript" src="https://widgets.media.weather.com/wxwidget.loader.js?cid=878507589"></script>
</div></body></html>
)
ifexist,%flnm%
  filedelete,%flnm%
fileappend,%var%,%flnm%,utf-8
try,run,%flnm%
exitapp
;=====================================
;- some links :
-
Asia ; https://earth.nullschool.net/#current/wind/surface/level/orthographic=123.04,23.45,1821/loc=124.879,13.692
USA ; https://earth.nullschool.net/#current/wind/surface/level/orthographic=-93.17,32.94,1821/loc=124.879,13.692
Europe ; https://earth.nullschool.net/#current/wind/surface/level/orthographic=-5.39,44.57,1821/loc=124.879,13.692
Asia Warnings ; https://www.metoc.navy.mil/jtwc/jtwc.html
WeatherRadar PT ; https://www.accuweather.com/en/pt/national/weather-radar
Ship sea ; https://map.openseamap.org/
Airplane ; https://www.flightradar24.com/60,15/6
AirTraffic ; https://globe.theairtraffic.com/
Train Germany ; https://tracker.geops.ch/?z=15&s=1&x=940661.1131&y=6358612.4752&l=transport
Ship Germany ; https://www.marinetraffic.com/de/ais/home/centerx:8.458/centery:49.505/zoom:13
Weather ; https://www.timeanddate.com/weather/china/suzhou
Time & Date ; https://www.timeanddate.com/time/map/

Return to “Other Utilities & Resources”

Who is online

Users browsing this forum: No registered users and 48 guests