{"id":312,"date":"2021-05-16T21:30:00","date_gmt":"2021-05-16T11:30:00","guid":{"rendered":"https:\/\/fernygroveweather.com\/blog\/?p=312"},"modified":"2021-05-16T21:21:13","modified_gmt":"2021-05-16T11:21:13","slug":"uv-radiation-data","status":"publish","type":"post","link":"https:\/\/fernygroveweather.com\/blog\/2021\/05\/16\/uv-radiation-data\/","title":{"rendered":"UV radiation data"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">The website have been updated (v1.11.0) with new data that is now available on multiple pages to incorporate Ultraviolet (UV) radiation data following the start of recording this data from 21 March 2021. This addition is part of changes to measure solar radiation and air quality and to switch to a <a rel=\"noreferrer noopener\" href=\"https:\/\/www.davisinstruments.com\/weatherlinklive\/\" target=\"_blank\">Weatherlink Live<\/a> receiving unit between 19 and 26 December 2020.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The following pages have been updated with additional data:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>The <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/index.php\" target=\"_blank\">home page<\/a>: the UV Index have been added to the real time updates including the UV Index exposure categories in the international colours with sun protection suggestions when hovering over the UV Index category<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/gauges.php\" target=\"_blank\">Gauges<\/a>: A gauge for UV Index was added<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/recent-graphs.php\" target=\"_blank\">Recent Graphs<\/a>, <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/past-month-graphs.php\" target=\"_blank\">Past Months Graphs<\/a> and <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/historic-graphs.php\" target=\"_blank\">Historical Graphs<\/a>: updated with new graphs containing UV Index (with banding for the exposure categories) and UV Dose data, as well as adding the UV Index to the existing Solar radiation graphs<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/today-yesterday.php\" target=\"_blank\">Today and Yesterday<\/a>: Extremes and total for UV Index and UV Dose added<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/month-year.php\" target=\"_blank\">This Month and Year<\/a>: Extremes for UV Index added<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/annual-data-summary.php\" target=\"_blank\">Annual Data Summary<\/a>: Data for UV Index added<\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/alltime-records.php\" target=\"_blank\">All-Time Records<\/a>: Extremes for UV Index added<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/top10-records.php\" target=\"_blank\">Top 10 Records<\/a>: UV Index records added<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/since.php\" target=\"_blank\">Recent Extremes Since<\/a>: UV Index extremes added for today and yesterday<\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/about.php\" target=\"_blank\">About<\/a>: updated with new information regarding the addition of the UV sensor that have been installed<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/system-status.php\" target=\"_blank\">System Status<\/a>: Reworked to align with the system changes and to provide additional system information now available with this change<\/li><li>\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/glossary.php\" target=\"_blank\">Glossary<\/a>: Updated with additional terms for UV Index and UV Dose, including details of the formula used to calculate the UV Dose.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">\u00a0Other changes made with this update include:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>The database script that updates the <a rel=\"noreferrer noopener\" href=\"\/website-analytics.php\" data-type=\"URL\" data-id=\"\/website-analytics.php\" target=\"_blank\">Website Analytics<\/a> page with current rainfall data by website visitors is now automated at the start of each month. This is a very expensive series of calculations that is only updated monthly. <\/li><li>On the <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/website-analytics.php\" target=\"_blank\">Website Analytics<\/a> page an issue fixed with the showing values greater than 90% on the Daily Rain by Visits graph<\/li><li>Fix an issue with the &#8220;New records in last 10 days&#8221; on the <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/index.php\" target=\"_blank\">home page<\/a> that didn&#8217;t show the month for a new monthly rain rate record<\/li><li>Added a note of discouragement to the link page about not requesting links to be added for commerical or spam purposes.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The UV Dose was added as to quantify the amount of UV radiation received at this location for each hour and over the course of day. This is because it is known that it is both the magnitude and length of time that determines how much radiation exposure is being received for sun protection purposes. This is calculated for each hour and shown on several pages. Whilst the <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/glossary.php\" target=\"_blank\">Glossary<\/a> page provides more information about this measure and how it calculated, for those interested below is the SQL statement to calculate the UV Dose from the real-time data for the <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/recent-graphs.php\" target=\"_blank\">Recent Graphs<\/a> page.<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:mysql decode:true \" title=\"UV Dose from Realtime data\" >SELECT \n\tUNIX_TIMESTAMP(LogDateTime) AS LogDateTime, \n\tuv_dose,\n\tSUM(uv_dose) OVER ( PARTITION BY DATE(LogDateTime) ORDER BY LogDateTime) AS uv_dose_total\nFROM (\n\tSELECT \tLogDateTime,\n\t\t\tCASE \n\t\t\t\tWHEN AVG(uv) = ROUND(0,1) THEN 0\n\t\t\t\tWHEN MINUTE(MAX(LogDateTime)) = 59 THEN ROUND((60*60)\/(100\/((AVG(uv))*25\/1000)),1)\n\t\t\t\tELSE ROUND((60*MINUTE(MAX(LogDateTime)))\/(100\/((AVG(uv))*25\/1000)),1) END AS uv_dose,\n\t\t\tMAX(LogDateTime)\n\tFROM Realtime\n\tGROUP BY YEAR(LogDateTime), MONTH(LogDateTime), DAY(LogDateTime), HOUR(LogDateTime)  \n) AS rt1<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">And similarly the SQL statement for UV Dose on the <a rel=\"noreferrer noopener\" href=\"https:\/\/fernygroveweather.com\/past-month-graphs.php\" target=\"_blank\">Past Months Graphs<\/a> page:<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:mysql decode:true \" title=\"UV Dose data from logged data\" >SELECT \n\tUNIX_TIMESTAMP(LogDateTime) AS LogDateTime, \n\tuv_dose,\n\tSUM(uv_dose) OVER ( PARTITION BY DATE(LogDateTime) ORDER BY LogDateTime) AS uv_dose_total\nFROM (\n\tSELECT \tLogDateTime,\n\t\t\tCASE \n\t\t\t\tWHEN AVG(UVindex) = ROUND(0,1) THEN 0\n\t\t\t\tWHEN MINUTE(MAX(LogDateTime)) = 55 THEN ROUND((60*60)\/(100\/((AVG(UVindex))*25\/1000)),1)\n\t\t\t\tELSE ROUND((60*MINUTE(MAX(LogDateTime)))\/(100\/((AVG(UVindex))*25\/1000)),1) END AS uv_dose,\n\t\t\tMAX(LogDateTime)\n\tFROM Monthly\n\tWHERE LogDateTime &gt;= (CURDATE() - INTERVAL 1 MONTH )\n\tGROUP BY YEAR(LogDateTime), MONTH(LogDateTime), DAY(LogDateTime), HOUR(LogDateTime)  \n) AS rt1<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Feel free to let us know of your thoughts or suggestions regarding these additions.<\/p>\n<div class=\"pld-like-dislike-wrap pld-template-1\">\r\n    <div class=\"pld-like-wrap  pld-common-wrap\">\r\n    <a href=\"javascript:void(0)\" class=\"pld-like-trigger pld-like-dislike-trigger  \" title=\"\" data-post-id=\"312\" data-trigger-type=\"like\" data-restriction=\"cookie\" data-already-liked=\"0\">\r\n                        <i class=\"fas fa-thumbs-up\"><\/i>\r\n                <\/a>\r\n    <span class=\"pld-like-count-wrap pld-count-wrap\">0    <\/span>\r\n<\/div><div class=\"pld-dislike-wrap  pld-common-wrap\">\r\n    <a href=\"javascript:void(0)\" class=\"pld-dislike-trigger pld-like-dislike-trigger  \" title=\"\" data-post-id=\"312\" data-trigger-type=\"dislike\" data-restriction=\"cookie\" data-already-liked=\"0\">\r\n                        <i class=\"fas fa-thumbs-down\"><\/i>\r\n                <\/a>\r\n    <span class=\"pld-dislike-count-wrap pld-count-wrap\">0<\/span>\r\n<\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>The website have been updated (v1.11.0) with new data that is now available on multiple pages to incorporate Ultraviolet (UV) radiation data following the start of recording this data from 21 March 2021. This addition is part of changes to measure solar radiation and air quality and to switch to a Weatherlink Live receiving unit [&hellip;]<\/p>\n<div style='clear:both'><\/div><div  class='the_champ_sharing_container the_champ_horizontal_sharing' data-super-socializer-href=\"https:\/\/fernygroveweather.com\/blog\/2021\/05\/16\/uv-radiation-data\/\"><div class='the_champ_sharing_title' style=\"font-weight:bold\" >Want to share this?<\/div><div class=\"the_champ_sharing_ul\"><a aria-label=\"Facebook\" class=\"the_champ_facebook\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Ffernygroveweather.com%2Fblog%2F2021%2F05%2F16%2Fuv-radiation-data%2F\" title=\"Facebook\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg\" style=\"background-color:#0765FE;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M28 16c0-6.627-5.373-12-12-12S4 9.373 4 16c0 5.628 3.875 10.35 9.101 11.647v-7.98h-2.474V16H13.1v-1.58c0-4.085 1.849-5.978 5.859-5.978.76 0 2.072.15 2.608.298v3.325c-.283-.03-.775-.045-1.386-.045-1.967 0-2.728.745-2.728 2.683V16h3.92l-.673 3.667h-3.247v8.245C23.395 27.195 28 22.135 28 16Z\"><\/path><\/svg><\/span><span class=\"the_champ_square_count the_champ_facebook_count\">&nbsp;<\/span><\/a><a aria-label=\"Twitter\" class=\"the_champ_button_twitter\" href=\"https:\/\/twitter.com\/intent\/tweet?text=UV%20radiation%20data&url=https%3A%2F%2Ffernygroveweather.com%2Fblog%2F2021%2F05%2F16%2Fuv-radiation-data%2F\" title=\"Twitter\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg the_champ_s__default the_champ_s_twitter\" style=\"background-color:#55acee;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"-4 -4 39 39\"><path d=\"M28 8.557a9.913 9.913 0 0 1-2.828.775 4.93 4.93 0 0 0 2.166-2.725 9.738 9.738 0 0 1-3.13 1.194 4.92 4.92 0 0 0-3.593-1.55 4.924 4.924 0 0 0-4.794 6.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942 4.942 0 0 0-.665 2.477c0 1.71.87 3.214 2.19 4.1a4.968 4.968 0 0 1-2.23-.616v.06c0 2.39 1.7 4.38 3.952 4.83-.414.115-.85.174-1.297.174-.318 0-.626-.03-.928-.086a4.935 4.935 0 0 0 4.6 3.42 9.893 9.893 0 0 1-6.114 2.107c-.398 0-.79-.023-1.175-.068a13.953 13.953 0 0 0 7.55 2.213c9.056 0 14.01-7.507 14.01-14.013 0-.213-.005-.426-.015-.637.96-.695 1.795-1.56 2.455-2.55z\" fill=\"#fff\"><\/path><\/svg><\/span><span class=\"the_champ_square_count the_champ_twitter_count\">&nbsp;<\/span><\/a><a aria-label=\"Linkedin\" class=\"the_champ_button_linkedin\" href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Ffernygroveweather.com%2Fblog%2F2021%2F05%2F16%2Fuv-radiation-data%2F\" title=\"Linkedin\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg the_champ_s__default the_champ_s_linkedin\" style=\"background-color:#0077b5;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path d=\"M6.227 12.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43 2.43 0 0 1 0 4.86c-1.344 0-2.428-1.09-2.428-2.43s1.084-2.43 2.428-2.43m4.72 6.7h4.02v1.84h.058c.56-1.058 1.927-2.176 3.965-2.176 4.238 0 5.02 2.792 5.02 6.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18 0-2.514 1.7-2.514 3.46v6.668h-4.187V12.61z\" fill=\"#fff\"><\/path><\/svg><\/span><span class=\"the_champ_square_count the_champ_linkedin_count\">&nbsp;<\/span><\/a><a aria-label=\"Email\" class=\"the_champ_email\" href=\"https:\/\/fernygroveweather.com\/blog\/2021\/05\/16\/uv-radiation-data\/\" onclick=\"event.preventDefault();window.open('mailto:?subject=' + decodeURIComponent('UV%20radiation%20data').replace('&', '%26') + '&body=' + decodeURIComponent('https%3A%2F%2Ffernygroveweather.com%2Fblog%2F2021%2F05%2F16%2Fuv-radiation-data%2F'), '_blank')\" title=\"Email\" rel=\"noopener\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg\" style=\"background-color:#649a3f;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"-.5 -.5 36 36\"><path d=\"M 5.5 11 h 23 v 1 l -11 6 l -11 -6 v -1 m 0 2 l 11 6 l 11 -6 v 11 h -22 v -11\" stroke-width=\"1\" fill=\"#fff\"><\/path><\/svg><\/span><span class=\"the_champ_square_count the_champ_email_count\">&nbsp;<\/span><\/a><a aria-label=\"Outlook.com\" class=\"the_champ_button_outlook_com\" href=\"https:\/\/mail.live.com\/default.aspx?rru=compose?subject=UV%20radiation%20data&body=https%3A%2F%2Ffernygroveweather.com%2Fblog%2F2021%2F05%2F16%2Fuv-radiation-data%2F&lc=1033&id=64855&mkt=en-us&cbcxt=mai\" title=\"Outlook.com\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg the_champ_s__default the_champ_s_outlook_com\" style=\"background-color:#0072c6;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"-4 -3.5 40 40\" width=\"100%\" height=\"100%\"><path fill=\"#fff\" d=\"M19.52 8.29v5.5l1.92 1.208c.053.016.163.016.212 0l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z\"\/><path fill=\"#fff\" d=\"M19.52 15.84l1.755 1.204c.246.183.543 0 .543 0-.297.183 8.104-5.397 8.104-5.397V21.75c0 1.102-.704 1.562-1.496 1.562H19.52V15.84z\"\/><g fill=\"#fff\"><path d=\"M10.445 13.305c-.6 0-1.073.282-1.426.842-.355.56-.53 1.305-.53 2.23 0 .936.175 1.677.53 2.22.347.546.813.82 1.38.82.59 0 1.055-.266 1.4-.795.344-.53.517-1.266.517-2.206 0-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z\"\/><path d=\"M2.123 5.5v21.51l16.362 3.428V2.33L2.123 5.5zm10.95 14.387c-.693.91-1.594 1.367-2.706 1.367-1.082 0-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448 0-1.496.343-2.707 1.037-3.63.693-.926 1.614-1.388 2.754-1.388 1.08 0 1.955.438 2.62 1.324.667.885 1 2.05 1 3.495.004 1.496-.345 2.695-1.034 3.604z\"\/><\/g><\/svg><\/span><span class=\"the_champ_square_count the_champ_Outlook.com_count\">&nbsp;<\/span><\/a><a aria-label=\"Gmail\" class=\"the_champ_button_google_gmail\" href=\"https:\/\/mail.google.com\/mail\/?ui=2&view=cm&fs=1&tf=1&su=UV%20radiation%20data&body=Link:https%3A%2F%2Ffernygroveweather.com%2Fblog%2F2021%2F05%2F16%2Fuv-radiation-data%2F\" title=\"Google Gmail\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg the_champ_s__default the_champ_s_Google_Gmail\" style=\"background-color:#e5e5e5;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M2.902 6.223h26.195v19.554H2.902z\"><\/path><path fill=\"#E14C41\" class=\"the_champ_no_fill\" d=\"M2.902 25.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034 6.9-5.558 2.09 1.77 1.854-1.63 7.42 5.246zm0-.672l-7.027-4.917 7.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356 2.284-4.693 4.75-7.17 6.876l-.078.06L8.062 6.39l16.11.033zm-10.597 9.61l-6.62 5.294.016-10.914 6.607 5.62\"><\/path><\/svg><\/span><span class=\"the_champ_square_count the_champ_Google_Gmail_count\">&nbsp;<\/span><\/a><a aria-label=\"Copy Link\" class=\"the_champ_button_copy_link\" title=\"Copy Link\" rel=\"noopener\" href=\"https:\/\/fernygroveweather.com\/blog\/2021\/05\/16\/uv-radiation-data\/\" onclick=\"event.preventDefault()\" style=\"font-size:24px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"the_champ_svg the_champ_s__default the_champ_s_copy_link\" style=\"background-color:#ffc112;width:35px;height:35px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:24px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"-4 -4 40 40\"><path fill=\"#fff\" d=\"M24.412 21.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235 1.235 0 0 0-.913-.378c-.377 0-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37 0 .36-.126.666-.377.918a1.25 1.25 0 0 1-.918.377 1.4 1.4 0 0 1-.373-.047 1.062 1.062 0 0 1-.345-.175 2.268 2.268 0 0 1-.256-.2 6.815 6.815 0 0 1-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984 0 .36.126.664.377.916l2.778 2.79c.243.243.548.364.917.364.36 0 .665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235 1.235 0 0 0-.913-.378c-.35 0-.656.12-.917.364L7.967 9.92c-.254.252-.38.553-.38.903 0 .36.126.665.38.917l2.802 2.804c.242.243.547.364.916.364.377 0 .7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675 2.675 0 0 1-.2-.255 1.052 1.052 0 0 1-.176-.344 1.396 1.396 0 0 1-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136 0 .26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27 21.177c0 1.078-.382 1.99-1.146 2.736l-1.982 1.968c-.745.75-1.658 1.12-2.736 1.12-1.087 0-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737 0-1.106.392-2.046 1.183-2.818l-1.186-1.185c-.774.79-1.708 1.186-2.805 1.186-1.078 0-1.995-.376-2.75-1.13l-2.803-2.81C5.377 12.82 5 11.903 5 10.826c0-1.08.382-1.993 1.146-2.738L8.128 6.12C8.873 5.372 9.785 5 10.864 5c1.087 0 2.004.382 2.75 1.146l2.777 2.79c.75.747 1.12 1.66 1.12 2.737 0 1.105-.392 2.045-1.183 2.817l1.186 1.186c.774-.79 1.708-1.186 2.805-1.186 1.078 0 1.995.377 2.75 1.132l2.804 2.804c.754.755 1.13 1.672 1.13 2.75z\"\/><\/svg><\/span><span class=\"the_champ_square_count the_champ_Copy_Link_count\">&nbsp;<\/span><\/a><a class=\"the_champ_more\" title=\"More\" rel=\"nofollow noopener\" style=\"font-size:24px!important;border:0;box-shadow:none;display:inline-block!important;font-size:16px;padding:0 4px;vertical-align: middle;display:inline;\" href=\"https:\/\/fernygroveweather.com\/blog\/2021\/05\/16\/uv-radiation-data\/\" onclick=\"event.preventDefault()\"><span class=\"the_champ_square_count\">&nbsp;<\/span><span class=\"the_champ_svg\" style=\"background-color:#ee8e2d;width:35px;height:35px;border-radius:999px;display:inline-block!important;opacity:1;float:left;font-size:32px!important;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;display:inline;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box;\" onclick=\"theChampMoreSharingPopup(this, 'https:\/\/fernygroveweather.com\/blog\/2021\/05\/16\/uv-radiation-data\/', 'UV%20radiation%20data', '' )\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" viewBox=\"-.3 0 32 32\" version=\"1.1\" width=\"100%\" height=\"100%\" style=\"display:block;border-radius:999px;\" xml:space=\"preserve\"><g><path fill=\"#fff\" d=\"M18 14V8h-4v6H8v4h6v6h4v-6h6v-4h-6z\" fill-rule=\"evenodd\"><\/path><\/g><\/svg><\/span><\/a><a style=\"font-size:24px!important;box-shadow:none;display:inline-block!important;font-size: 16px;padding: 0 4px;vertical-align:middle;display:inline;\" class=\"theChampSharingRound\"><span class=\"the_champ_square_count\">&nbsp;<\/span><div style=\"width:35px;height:35px;border-radius:999px;margin-left:9px !important;\" title=\"Total Shares\" class=\"theChampSharing theChampTCBackground\"><\/div><\/a><\/div><\/div><div style='clear:both'><\/div>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,5],"tags":[],"class_list":["post-312","post","type-post","status-publish","format-standard","hentry","category-announcements","category-web-development"],"_links":{"self":[{"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/posts\/312","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/comments?post=312"}],"version-history":[{"count":6,"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/posts\/312\/revisions"}],"predecessor-version":[{"id":318,"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/posts\/312\/revisions\/318"}],"wp:attachment":[{"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/media?parent=312"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/categories?post=312"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fernygroveweather.com\/blog\/wp-json\/wp\/v2\/tags?post=312"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}