mattritchey commited on
Commit
92a9734
·
verified ·
1 Parent(s): 2752b4d

Update pages/Hail.py

Browse files
Files changed (1) hide show
  1. pages/Hail.py +1 -1
pages/Hail.py CHANGED
@@ -86,7 +86,7 @@ def get_pngs_parallel(dates):
86
  def png_data(date):
87
  year, month, day = date[:4], date[4:6], date[6:]
88
  url = f'https://mrms.nssl.noaa.gov/qvs/product_viewer/local/render_multi_domain_product_layer.php?mode=run&cpp_exec_dir=/home/metop/web/specific/opv/&web_resources_dir=/var/www/html/qvs/product_viewer/resources/&prod_root={prod_root}&qperate_pal_option=0&qpe_pal_option=0&year={year}&month={month}&day={day}&hour={hour}&minute={minute}&clon={lon}&clat={lat}&zoom={zoom}&width=920&height=630'
89
- response = requests.get(url,verify=False)
90
  image_data = io.BytesIO(response.content)
91
  data = imread(image_data)
92
 
 
86
  def png_data(date):
87
  year, month, day = date[:4], date[4:6], date[6:]
88
  url = f'https://mrms.nssl.noaa.gov/qvs/product_viewer/local/render_multi_domain_product_layer.php?mode=run&cpp_exec_dir=/home/metop/web/specific/opv/&web_resources_dir=/var/www/html/qvs/product_viewer/resources/&prod_root={prod_root}&qperate_pal_option=0&qpe_pal_option=0&year={year}&month={month}&day={day}&hour={hour}&minute={minute}&clon={lon}&clat={lat}&zoom={zoom}&width=920&height=630'
89
+ response = requests.get(url,verify=False)
90
  image_data = io.BytesIO(response.content)
91
  data = imread(image_data)
92