November 2022 Weather (CONUS Satellite Radar)

1 year ago
52

Images pulled from:
https://weather.cod.edu/satrad/?parms=continental-conus-comp_radar-200-1-10-12&checked=map&colorbar=undefined

See also:
https://ntrl.ntis.gov/NTRL/dashboard/searchResults/titleDetail/ADA333462.xhtml

and

https://archive.org/details/WeatherAsAForceMultiplier

My script for pulling the static images (the 2nd one is the local Maryland map).:

<?php

$ts = date("Ymd.H2500",strtotime(date("Y-m-d H:i:s")));//." -1 hour"));
$ts1 = date("Ymd.H4500",strtotime(date("Y-m-d H:i:s")));//." -1 hour"));

$url = "https://weather.cod.edu/satrad/assets/php/scripts/saveFrame.php?stack=https://weather.cod.edu/cdata/satellite_r/continental/conus/radar/conus.radar.$ts.gif,https://weather.cod.edu/data/satellite/continental/conus/maps/conus_map.png?v=20220817162743&vars=continental-conus-comp_radar&checked=map&colorbar=undefined&colorbarID=undefine";

$fh1 = fopen("/opt/acuparse/cam/tmp/image1.gif", "w");
$ch1 = curl_init();
curl_setopt($ch1, CURLOPT_URL, "$url");
curl_setopt($ch1, CURLOPT_FILE, $fh1);
curl_exec($ch1);
curl_close($ch1);

$url = "https://weather.cod.edu/satrad/assets/php/scripts/saveFrame.php?stack=https://weather.cod.edu/cdata/satellite_r/local/Virginia/radar/Virginia.radar.$ts1.gif,https://weather.cod.edu/data/satellite/local/Virginia/maps/Virginia_map.png?v=20220817162651&vars=local-Virginia-comp_radar&checked=map&colorbar=undefined&colorbarID=undefined";
//wprint "$ts1 - $url\n";

$fh = fopen("/opt/acuparse/cam/tmp/image2.gif", "w");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$url");
curl_setopt($ch, CURLOPT_FILE, $fh);
curl_exec($ch);
curl_close($ch);

?>

Loading comments...