{"id":7510,"date":"2022-11-28T16:10:03","date_gmt":"2022-11-28T21:10:03","guid":{"rendered":"https:\/\/weather.umd.edu\/wordpress\/?page_id=7510"},"modified":"2023-05-24T17:00:51","modified_gmt":"2023-05-24T21:00:51","slug":"micronet","status":"publish","type":"page","link":"https:\/\/weather.umd.edu\/wordpress\/micronet\/","title":{"rendered":"Micronet"},"content":{"rendered":"\n<!--\n<body>\n        <form action = 'actionfile.php' method=\"post\">\n            <fieldset>\n                <legend> Station Selection <\/legend>\n                <label for=\"station_select\">Select Station:<\/label>\n                <select id=\"station_select\" name=\"station_select\">\n                    <option value=\"atlantic\">Atlantic<\/option>\n                    <option value=\"golf_course\">Golf Course<\/option>\n                <\/select><br>\n            <\/fieldset>\n\n            <br>\n\n            <fieldset>\n                <legend>Select Time Range <\/legend>\n                <label for=\"start_date\">Start Date:<\/label>\n                <input id=\"start_date\" type=\"Date\" name=\"start_date\"><br>\n                <label for=\"end_date\">End Date:<\/label>\n                <input id=\"end_date\" type=\"Date\" name=\"end_date\"><br>\n            <\/fieldset>\n\n            <br>\n\n            <fieldset>\n                <legend> Select Data Types <\/legend>\n                <label>Select Data to Include:<\/label><br>\n                <table>\n                    <tr>\n                        <td><label for =\"all\">All Data Types<\/label><\/td>\n                        <td><input id =\"all\" type=\"checkbox\" name=\"checkbox\" value=\"all_data\"><\/td>\n                    <\/tr>\n                    <tr>\n                        <td><label for =\"temperature\">Temperature<\/label><\/td>\n                        <td><input id =\"temperature\" type=\"checkbox\" name=\"checkbox\" value=\"temp\"><\/td>\n                    <\/tr>\n                    <tr>\n                        <td><label for =\"dewpoint\">Dewpoint<\/label><\/td>\n                        <td><input id =\"dewpoint\" type=\"checkbox\" name=\"checkbox\" value=\"dewpt\"><\/td>\n                    <\/tr>\n                    <tr>\n                        <td><label for =\"press\">Pressure<\/label><\/td>\n                        <td><input id =\"press\" type=\"checkbox\" name=\"checkbox\" value=\"dewpt\"><\/td>\n                    <\/tr>\n                    <tr>\n                        <td><label for =\"Wind Speed and Direction\">Wind Speed and Direction<\/label><\/td>\n                        <td><input id =\"wind\" type=\"checkbox\" name=\"checkbox\" value=\"wind_spd_dir\"><\/td>\n                    <\/tr>\n                    <tr>\n                        <td><label for =\"rain\">Precipitation<\/label><\/td>\n                        <td><input id =\"rain\" type=\"checkbox\" name=\"checkbox\" value=\"precip\"><\/td>\n                    <\/tr>\n                <\/table>\n            <\/fieldset>\n\n            <br>\n\n            <label for=\"output\">Choose Output File Type:<\/label>\n            <select id=\"output\" name=\"output\">\n                <option value=\"CSV\">CSV<\/option>\n                <option value=\"TSV\">TSV<\/option>\n            <\/select><br>\n            <input type=\"submit\"> <input type=\"reset\">\n        <\/form> \n    <\/body>\n-->\n\n\n        <style>\r\n          .widget_umdwx_micronet_widget {\r\n            width: 50%;\r\n            float: left;\r\n          }\r\n          #map {\r\n            width: 50%;\r\n            float: right;\r\n          }\r\n          #mnet_refer {\r\n            display: none;\r\n          }\r\n\r\n          @media only screen and (max-width: 768px) {\r\n            .widget_umdwx_micronet_widget {\r\n              width: 100%;\r\n              float: left;\r\n            }\r\n            #map {\r\n              width: 100%;\r\n              float: left;\r\n            }\r\n          }\r\n        <\/style>\r\n        <form name='station-selector' style=\"padding-bottom:16px;\">\r\n          <label for=\"station\"><\/label>\r\n          <select name=\"station\" id=\"station\" onchange=\"return getStation()\">\r\n              <option value=\"atlantic\">Atlantic<\/option>\r\n              <option value=\"williams\">AV Williams<\/option>\r\n              <option value=\"chem\">Chemistry<\/option>\r\n              <option value=\"ches\">Chesapeake<\/option>\r\n              <option value=\"essic\">ESSIC<\/option>\r\n              <option value=\"golf\">Golf Course<\/option>\r\n              <option value=\"observ\">Observatory<\/option>\r\n              <option value=\"vmh\">Van Munching<\/option>\r\n          <\/select>\r\n          <!-- <input type=\"submit\"> -->\r\n        <\/form>\r\n        <script>\r\n          var stationCoords = {\r\n              'williams': [38.990812, -76.936336],\r\n              'atlantic': [38.991044, -76.941954],\r\n              'vmh': [38.982587, -76.947069],\r\n              'golf': [38.990851, -76.955100],\r\n              'chem': [38.989532, -76.940115],\r\n              'observ': [39.002, -76.956],\r\n              'avrum': [39.004, -76.942],\r\n              'essic': [38.582, -76.552],\r\n              'ches': [38.998, -76.942],\r\n          }\r\n\r\n          var control = true\r\n\r\n          console.log('BABABABABA')\r\n          \/\/ console.log(stationCoords['golf'])\r\n          \/\/ L.setView(stationCoords['golf'], 15)\r\n          \/\/ console.log('SEt Viesw')\r\n\r\n          dirs = ['N','NNE','NE','ENE','E','ESE','SE','SSE','S','SSW','SW','WSW','W','WNW','NW','NNW']\r\n\r\n          function getStation() {\r\n            let newStation = document.forms['station-selector']['station'].value;\r\n            console.log(stationCoords)\r\n            console.log(station)\r\n            console.log(newStation)\r\n            if (station != newStation) {\r\n              \/\/ station = newStation\r\n              \/\/ console.log(station)\r\n              \r\n              map.setView(stationCoords[newStation], 18)\r\n\r\n              try {\r\n                dt = new Date(json_data[newStation][0]['dateTime']*1000)\r\n                console.log(dt)\r\n                var hours = dt.getHours();\r\n                var ampm = hours >= 12 ? 'PM' : 'AM';\r\n                hours = hours % 12;\r\n                hours = hours ? hours : 12;\r\n                dtStr = hours+':'+('0'+dt.getMinutes()).slice(-2)+' '+ampm+' '+(dt.getMonth()+1)+'\/'+dt.getDate()\r\n                document.getElementsByClassName('wxc_title')[0].innerHTML = stationTitleMap[newStation]\r\n                document.getElementsByClassName('wxc_subtitle')[0].innerHTML = 'As of '+dtStr\r\n                document.querySelector('div.wxc_temp span.wxc_val').innerHTML = Math.round(10*json_data[newStation][0]['outTemp'])\/10\r\n                document.querySelector('span#prs').innerHTML = Math.round(10*json_data[newStation][0]['barometer']*33.864)\/10\r\n                document.querySelector('span#dpt').innerHTML = Math.round(10*json_data[newStation][0]['dewpoint'])\/10\r\n                document.querySelector('span#rrt').innerHTML = json_data[newStation][0]['rainRate']\r\n                document.querySelector('span#wind').innerHTML = Math.round(json_data[newStation][0]['windSpeed'])\r\n                windDir = json_data[newStation][0]['windDir']\r\n                console.log(windDir)\r\n                document.querySelector('div#windDir').innerHTML = dirs[Math.round(windDir*16\/360)]\r\n                document.querySelector('div#wxc_pointer').style = 'transform:rotate('+(windDir-90)+'deg) translate(37px,0px) rotate(0deg);'\r\n                \/\/ console.log(json_data)\r\n                \/\/ console.log(json_data)dirs[round($windDirection*16\/360)]\r\n\r\n                \/\/ This sets station to newStation!\r\n                getTimeRange()\r\n                \r\n              }\r\n              catch(err) {console.log(err.message)}\r\n            }\r\n            return false\r\n          }\r\n\r\n          \/\/ window.onload = function() {\r\n          \/\/   console.log('WINDOW LOAD')\r\n          \/\/   var currentCond = document.getElementsByClassName('widget_umdwx_micronet_widget')[0]\r\n          \/\/   currentCond.style['width'] = '50%'\r\n          \/\/   currentCond.style['float'] = 'left'\r\n          \/\/   var mapDiv = document.getElementById('map')[0]\r\n          \/\/   mapDiv.style['width'] = '50%'\r\n          \/\/   mapDiv.style['float'] = 'right'\r\n          \/\/ }\r\n          \r\n          window.addEventListener('load', function() {\r\n            station = document.forms['station-selector']['station'].value\r\n            console.log('FFFFFFFFFFFFFFFFFFFFF')\r\n            console.log(station)\r\n\r\n            var paramString = window.location.href;\r\n            console.log(paramString.substring(paramString.indexOf('?')))\r\n            var searchParams = new URLSearchParams(paramString.substring(paramString.indexOf('?')));\r\n            console.log(searchParams.get('station'))\r\n            var paramstation = searchParams.get('station')\r\n            if (paramstation == null) paramstation = 'atlantic'\r\n            \r\n            if (paramstation != 'atlantic') {\r\n              document.forms['station-selector']['station'].value = paramstation\r\n              getStation()\r\n            }\r\n          })\r\n        <\/script>\r\n        \n\n\n      <style>\r\n        \/* .widget_umdwx_micronet_widget {\r\n          width: 50%;\r\n          float: left;\r\n        } *\/\r\n        .wxc_icon {\r\n          width:90px !important;\r\n        }\r\n        .wxc_wulogo {\r\n          width:40px !important;\r\n          float:right;\r\n          }\r\n        .wxc_footer{\r\n          margin-top:1em;\r\n          border-top:1px solid gray;\r\n          font-size:0.75em;\r\n          padding-top:0.5em;\r\n          color:gray;\r\n          overflow:auto;\r\n          clear:both;\r\n        }\r\n        #wxc_main{\r\n          \/\/      height:200px;\r\n          overflow:auto;\r\n          padding:0.5em 0em;\r\n          }\r\n        .wxc_title{\r\n          padding:0.5em 0.5em 0em;\r\n          color:#000;\r\n          font-size:1.2em;\r\n        }\r\n        .wxc_subtitle{\r\n          padding: 0.5em 0.5em 0em;\r\n          color:#000;\r\n          font-size:1em;\r\n        }\r\n        #wxc_circle\t_wrapper{\r\n        }\r\n        #wxc_left, #wxc_right{\r\n          float:left;\r\n          width:49%;\r\n          text-align:center;\r\n        }\r\n        .wxc_wx{\r\n          font-weight:bold;\r\n        }\r\n        .wxc_temp{\r\n          font-size:200%;\r\n          line-height:1.3em;\r\n        }\r\n        .wxc_wind{\r\n          margin-top:5px;\r\n          font-size:90%;\r\n          }\r\n        .wxc_val {\r\n          font-weight:bold;\r\n          font-size:1.25em;\r\n          color:#600;\r\n          }\r\n        #wxc_circle {\r\n          margin:10px auto;      \r\n          width:80px;\r\n          height:80px;\r\n          border:5px solid #88F;\r\n          border-radius:55px;\r\n          text-align:center;\r\n          position:relative;\r\n        }\r\n        .wxc_rb{\r\n        text-align:left;\r\n        }\r\n        .wxc_rb_l{\r\n        width:77px;\r\n        font-size:90%;\r\n        float:left;\r\n        \r\n        }\r\n        #wxc_pointer {\r\n          width:1px;\r\n          height:1px;\r\n          border:8px solid transparent;\r\n          border-right:15px solid #116;\r\n          position: absolute;\r\n          left: 26px;\r\n          top: 30px;\r\n          transform:rotate(180deg) translate(37px,0px) rotate(0deg);\r\n          }\r\n      <\/style>\r\n\r\n      <script>\r\n\r\n        console.log('[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[')\r\n        if (typeof(control) !== 'undefined') {\r\n          console.log('chilling. wait to get filled in')\r\n        } else {\r\n          \/\/ var paramString = window.location.href;\r\n          \/\/ console.log(paramString.substring(paramString.indexOf('?')))\r\n          \/\/ var searchParams = new URLSearchParams(paramString.substring(paramString.indexOf('?')));\r\n          \/\/ console.log(searchParams.get('station'))\r\n          \/\/ var station = searchParams.get('station')\r\n\r\n          \/\/ if (station != 'atlantic') {\r\n\r\n          \/\/ }\r\n\r\n          \/\/ json_data = {\"atlantic\":[{\"outTemp\":\"80.6\",\"dateTime\":\"1776176280\",\"dewpoint\":\"58.48057234774038\",\"barometer\":\"29.952\",\"rainRate\":\"0\",\"windDir\":\"270\",\"windGust\":\"4\",\"windSpeed\":\"2\"},{\"outTemp\":\"80.6\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.48057234774038\",\"barometer\":\"29.949\",\"rainRate\":\"0\",\"windDir\":\"270\",\"windGust\":\"7\",\"windSpeed\":\"2\"}],\"essic\":[{\"outTemp\":\"78.8\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.120296483632316\",\"barometer\":\"30.067\",\"rainRate\":\"0\",\"windDir\":\"135\",\"windGust\":\"2\",\"windSpeed\":\"1\"},{\"outTemp\":\"78.7\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.47454389094101\",\"barometer\":\"30.069\",\"rainRate\":\"0\",\"windDir\":\"135\",\"windGust\":\"3\",\"windSpeed\":\"1\"}],\"golf\":[{\"outTemp\":\"76.8\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.896382753278225\",\"barometer\":\"30.095\",\"rainRate\":\"0\",\"windDir\":\"337.5\",\"windGust\":\"4\",\"windSpeed\":\"3\"},{\"outTemp\":\"76.7\",\"dateTime\":\"1776176220\",\"dewpoint\":\"59.803406700666685\",\"barometer\":\"30.1\",\"rainRate\":\"0\",\"windDir\":\"337.5\",\"windGust\":\"5\",\"windSpeed\":\"4\"}],\"williams\":[{\"outTemp\":\"77.6\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.09258060638199\",\"barometer\":\"30.08\",\"rainRate\":\"0\",\"windDir\":\"247.5\",\"windGust\":\"3\",\"windSpeed\":\"2\"},{\"outTemp\":\"77.6\",\"dateTime\":\"1776176220\",\"dewpoint\":\"59.09258060638199\",\"barometer\":\"30.078\",\"rainRate\":\"0\",\"windDir\":\"247.5\",\"windGust\":\"2\",\"windSpeed\":\"1\"}],\"vmh\":[{\"outTemp\":\"78.1\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.02020854586742\",\"barometer\":\"30.059\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"5\",\"windSpeed\":\"2\"},{\"outTemp\":\"78\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.92809693232295\",\"barometer\":\"30.059\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"3\",\"windSpeed\":\"2\"}],\"observ\":[{\"outTemp\":\"78.4\",\"dateTime\":\"1776176280\",\"dewpoint\":\"63.34429529082519\",\"barometer\":\"29.976\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"2\",\"windSpeed\":\"1\"},{\"outTemp\":\"78.3\",\"dateTime\":\"1776176220\",\"dewpoint\":\"62.77160371766209\",\"barometer\":\"29.974\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"1\",\"windSpeed\":\"1\"}],\"chem\":[{\"outTemp\":\"80.1\",\"dateTime\":\"1776176280\",\"dewpoint\":\"58.613635126481725\",\"barometer\":\"30.059\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"3\",\"windSpeed\":\"2\"},{\"outTemp\":\"79.9\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.4312813715911\",\"barometer\":\"30.062\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"2\",\"windSpeed\":\"1\"}],\"avrum\":[{\"outTemp\":\"35.3\",\"dateTime\":\"1772000580\",\"dewpoint\":\"18.070431830155478\",\"barometer\":\"29.849\",\"rainRate\":\"0\",\"windDir\":\"0\",\"windGust\":\"4\",\"windSpeed\":\"2\"},{\"outTemp\":\"35.3\",\"dateTime\":\"1772000520\",\"dewpoint\":\"17.59286628410773\",\"barometer\":\"29.85\",\"rainRate\":\"0\",\"windDir\":\"0\",\"windGust\":\"3\",\"windSpeed\":\"1\"}],\"ches\":[{\"outTemp\":\"78\",\"dateTime\":\"1776176280\",\"dewpoint\":\"62.49092571245819\",\"barometer\":\"29.979\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"3\",\"windSpeed\":\"2\"},{\"outTemp\":\"77.9\",\"dateTime\":\"1776176220\",\"dewpoint\":\"62.39736379253698\",\"barometer\":\"29.977\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"2\",\"windSpeed\":\"1\"}]};\r\n          \/\/ data = json_data[station]\r\n          \/\/ var stationTitleMap = {\r\n          \/\/     atlantic: 'Atlantic Building',\r\n          \/\/     williams: 'AV Williams Building',\r\n          \/\/     golf: 'Golf Course'\r\n          \/\/ }\r\n          \/\/ document.getElementsByClassName('wxc_title')[0].innerHTML = stationTitleMap[station]\r\n          \/\/ document.getElementsByClassName('wxc_subtitle')[0].innerHTML = 'As of '\/\/ + json_data\r\n\r\n        }\r\n      <\/script>\r\n\r\n      <div class=\"widget widget_umdwx_micronet_widget\">      <h2 class=\"widgettitle\">Current Conditions<\/h2>      <div>\r\n        <div class=\"wxc_title\">Atlantic<\/div>\r\n        <div class=\"wxc_subtitle\">As of 10:18 AM 4\/14<\/div>\r\n        \r\n        <div id=\"wxc_main\">\r\n          <div id=\"wxc_left\">\r\n            <img decoding=\"async\" class=\"wxc_icon\" src=\"https:\/\/api.weather.gov\/icons\/land\/day\/sct?size=medium\" alt=\"Partly Cloudy\"\/>\r\n            <div class=\"wxc_wx wxc_val\">Partly Cloudy<\/div>\r\n            <div class=\"wxc_temp\"><span class=\"wxc_val\">80.6<\/span>&deg;F<\/div>\r\n                        <!-- <div class=\"wxc_feel\">Feels Like <span class=\"wxc_val\"><\/span>&deg;F<\/div> -->\r\n          <\/div>\r\n          <div id=\"wxc_right\">\r\n            <div id=\"wxc_circle_wrapper\">\r\n              <div id=\"wxc_circle\">\r\n                <div id=\"wxc_pointer\"><\/div>\r\n                <div class=\"wxc_wind\">\r\n                    wind \r\n                  <div class=\"wxc_val\" id=\"windDir\"> W<\/div>\r\n                  <div > <span class=\"wxc_val\" id=\"wind\">2<\/span> mph<\/div>\r\n                <\/div>\r\n              <\/div>\r\n            <\/div>\r\n            <div class=\"wxc_rb\">\r\n              <div><div class=\"wxc_rb_l\">Pressure<\/div><span class=\"wxc_val\" id=\"prs\">1014.3<\/span> mb<\/div>\r\n              <!--<div><div class=\"wxc_rb_l\">Precip<\/div><span class=\"wxc_val\"><\/span>&nbsp;\"<\/div>-->\r\n              <div><div class=\"wxc_rb_l\">Dew point<\/div><span class=\"wxc_val\" id=\"dpt\">58.5<\/span>&deg;F<\/div>\r\n              <div><div class=\"wxc_rb_l\">Rain rate<\/div><span class=\"wxc_val\" id=\"rrt\">0<\/span> in\/hr<\/div>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n        <div id='mnet_refer'>Data from UMD Micronet. <a href=\"https:\/\/weather.umd.edu\/micronet\">View stations and past data<\/a><\/div>\r\n      <\/div>\r\n      <\/div>\t\r\n      \n\n\n        <div id=\"map\"><\/div>\r\n\r\n        <link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.3\/dist\/leaflet.css\"\r\n            integrity=\"sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=\"\r\n            crossorigin=\"\"\/>\r\n\r\n        <style>\r\n            #map {\r\n                height: 600px;\r\n            }\r\n            .circle {\r\n                display: table-cell;\r\n                text-align: center;\r\n                vertical-align: middle;\r\n                border-radius: 50%;\r\n                border-style: solid;\r\n                font-size: 16px;\r\n                font-weight: bold;\r\n            }\r\n            .circle.circle1 {\r\n                background: rgba(0, 57, 128, 0.2);\r\n                border-color: #3388FF;\r\n                color: white;\r\n            }\r\n            .circle.circle2 {\r\n                background: rgba(0, 57, 128, 0.2);\r\n                border-color: green;\r\n                color: yellow;\r\n            }\r\n        <\/style>\r\n\r\n        <script src=\"https:\/\/unpkg.com\/leaflet@1.9.3\/dist\/leaflet.js\"\r\n            integrity=\"sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=\"\r\n            crossorigin=\"\"><\/script>\r\n\r\n        <script src=\"https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/widget\/js-colormaps\/js-colormaps.js\"><\/script>\r\n\r\n        <script>\r\n\r\n            \/\/ Rotated marker hack\r\n            var proto_initIcon = L.Marker.prototype._initIcon;\r\n            var proto_setPos = L.Marker.prototype._setPos;\r\n            var oldIE = (L.DomUtil.TRANSFORM === 'msTransform');\r\n\r\n            L.Marker.addInitHook(function () {\r\n                var iconOptions = this.options.icon && this.options.icon.options;\r\n                var iconAnchor = iconOptions && this.options.icon.options.iconAnchor;\r\n                if (iconAnchor) {\r\n                    iconAnchor = (iconAnchor[0] + 'px ' + iconAnchor[1] + 'px');\r\n                }\r\n                this.options.rotationOrigin = this.options.rotationOrigin || iconAnchor || 'center bottom';\r\n                this.options.rotationAngle = this.options.rotationAngle || 0;\r\n                this.on('drag', function(e) { e.target._applyRotation(); });\r\n            });\r\n\r\n            L.Marker.include({\r\n                _initIcon: function() {\r\n                    proto_initIcon.call(this);\r\n                },\r\n                _setPos: function (pos) {\r\n                    proto_setPos.call(this, pos);\r\n                    this._applyRotation();\r\n                },\r\n                _applyRotation: function () {\r\n                    if(this.options.rotationAngle) {\r\n                        this._icon.style[L.DomUtil.TRANSFORM+'Origin'] = this.options.rotationOrigin;\r\n                        if(oldIE) {\r\n                            this._icon.style[L.DomUtil.TRANSFORM] = 'rotate(' + this.options.rotationAngle + 'deg)';\r\n                        } else {\r\n                            this._icon.style[L.DomUtil.TRANSFORM] += ' rotateZ(' + this.options.rotationAngle + 'deg)';\r\n                        }\r\n                    }\r\n                },\r\n                setRotationAngle: function(angle) {\r\n                    this.options.rotationAngle = angle;\r\n                    this.update();\r\n                    return this;\r\n                },\r\n                setRotationOrigin: function(origin) {\r\n                    this.options.rotationOrigin = origin;\r\n                    this.update();\r\n                    return this;\r\n                }\r\n            });\r\n\r\n            barbSymbols = [\r\n                '',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/6\/6a\/Symbol_wind_speed_01.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/4\/43\/Symbol_wind_speed_02.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/5\/5a\/Symbol_wind_speed_03.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/c\/c8\/Symbol_wind_speed_04.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/e\/ec\/Symbol_wind_speed_05.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/9\/9c\/Symbol_wind_speed_06.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/7\/70\/Symbol_wind_speed_07.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/c\/c1\/Symbol_wind_speed_08.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/2\/28\/Symbol_wind_speed_09.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/d2\/Symbol_wind_speed_10.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/2\/21\/Symbol_wind_speed_11.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/6\/6d\/Symbol_wind_speed_12.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/7\/79\/Symbol_wind_speed_13.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/1\/1e\/Symbol_wind_speed_14.svg',\r\n                'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/a\/a7\/Symbol_wind_speed_15.svg',\r\n            ];\r\n\r\n            json_data = {\"atlantic\":[{\"outTemp\":\"80.6\",\"dateTime\":\"1776176280\",\"dewpoint\":\"58.48057234774038\",\"barometer\":\"29.952\",\"rainRate\":\"0\",\"windDir\":\"270\",\"windGust\":\"4\",\"windSpeed\":\"2\"},{\"outTemp\":\"80.6\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.48057234774038\",\"barometer\":\"29.949\",\"rainRate\":\"0\",\"windDir\":\"270\",\"windGust\":\"7\",\"windSpeed\":\"2\"}],\"essic\":[{\"outTemp\":\"78.8\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.120296483632316\",\"barometer\":\"30.067\",\"rainRate\":\"0\",\"windDir\":\"135\",\"windGust\":\"2\",\"windSpeed\":\"1\"},{\"outTemp\":\"78.7\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.47454389094101\",\"barometer\":\"30.069\",\"rainRate\":\"0\",\"windDir\":\"135\",\"windGust\":\"3\",\"windSpeed\":\"1\"}],\"golf\":[{\"outTemp\":\"76.8\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.896382753278225\",\"barometer\":\"30.095\",\"rainRate\":\"0\",\"windDir\":\"337.5\",\"windGust\":\"4\",\"windSpeed\":\"3\"},{\"outTemp\":\"76.7\",\"dateTime\":\"1776176220\",\"dewpoint\":\"59.803406700666685\",\"barometer\":\"30.1\",\"rainRate\":\"0\",\"windDir\":\"337.5\",\"windGust\":\"5\",\"windSpeed\":\"4\"}],\"williams\":[{\"outTemp\":\"77.6\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.09258060638199\",\"barometer\":\"30.08\",\"rainRate\":\"0\",\"windDir\":\"247.5\",\"windGust\":\"3\",\"windSpeed\":\"2\"},{\"outTemp\":\"77.6\",\"dateTime\":\"1776176220\",\"dewpoint\":\"59.09258060638199\",\"barometer\":\"30.078\",\"rainRate\":\"0\",\"windDir\":\"247.5\",\"windGust\":\"2\",\"windSpeed\":\"1\"}],\"vmh\":[{\"outTemp\":\"78.1\",\"dateTime\":\"1776176280\",\"dewpoint\":\"59.02020854586742\",\"barometer\":\"30.059\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"5\",\"windSpeed\":\"2\"},{\"outTemp\":\"78\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.92809693232295\",\"barometer\":\"30.059\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"3\",\"windSpeed\":\"2\"}],\"observ\":[{\"outTemp\":\"78.4\",\"dateTime\":\"1776176280\",\"dewpoint\":\"63.34429529082519\",\"barometer\":\"29.976\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"2\",\"windSpeed\":\"1\"},{\"outTemp\":\"78.3\",\"dateTime\":\"1776176220\",\"dewpoint\":\"62.77160371766209\",\"barometer\":\"29.974\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"1\",\"windSpeed\":\"1\"}],\"chem\":[{\"outTemp\":\"80.1\",\"dateTime\":\"1776176280\",\"dewpoint\":\"58.613635126481725\",\"barometer\":\"30.059\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"3\",\"windSpeed\":\"2\"},{\"outTemp\":\"79.9\",\"dateTime\":\"1776176220\",\"dewpoint\":\"58.4312813715911\",\"barometer\":\"30.062\",\"rainRate\":\"0\",\"windDir\":\"202.5\",\"windGust\":\"2\",\"windSpeed\":\"1\"}],\"avrum\":[{\"outTemp\":\"35.3\",\"dateTime\":\"1772000580\",\"dewpoint\":\"18.070431830155478\",\"barometer\":\"29.849\",\"rainRate\":\"0\",\"windDir\":\"0\",\"windGust\":\"4\",\"windSpeed\":\"2\"},{\"outTemp\":\"35.3\",\"dateTime\":\"1772000520\",\"dewpoint\":\"17.59286628410773\",\"barometer\":\"29.85\",\"rainRate\":\"0\",\"windDir\":\"0\",\"windGust\":\"3\",\"windSpeed\":\"1\"}],\"ches\":[{\"outTemp\":\"78\",\"dateTime\":\"1776176280\",\"dewpoint\":\"62.49092571245819\",\"barometer\":\"29.979\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"3\",\"windSpeed\":\"2\"},{\"outTemp\":\"77.9\",\"dateTime\":\"1776176220\",\"dewpoint\":\"62.39736379253698\",\"barometer\":\"29.977\",\"rainRate\":\"0\",\"windDir\":\"180\",\"windGust\":\"2\",\"windSpeed\":\"1\"}]};\r\n\r\n            function circleWithText2(latLng, txt, radius, borderWidth, circleClass, colors) {\r\n                var size = radius * 2;\r\n                var style = 'style=\"width: ' + size + 'px; height: ' + size +\r\n                    'px; border-width: ' + borderWidth +\r\n                    'px; background: rgba('+colors[0]+','+colors[1]+','+colors[2]+', 0.3);' +\r\n                    'border-color: rgba('+colors[0]+','+colors[1]+','+colors[2]+', 1);\"';\r\n                var iconSize = size + (borderWidth * 2);\r\n                var icon = L.divIcon({\r\n                    html: '<span class=\"circle\" id=\"' + circleClass + '\" ' + style + '>' + txt + '<\/span>',\r\n                    className: '',\r\n                    iconSize: [iconSize, iconSize]\r\n                });\r\n                return L.marker(latLng, {icon: icon});\r\n            }\r\n\r\n            var southWest = L.latLng(38.965000, -76.960344),\r\n                northEast = L.latLng(39.004378, -76.920000),\r\n                bounds = L.latLngBounds(southWest, northEast);\r\n\r\n            var map = L.map('map', {\r\n                minZoom: 12,\r\n                bounds: bounds,\r\n                maxBounds: bounds,\r\n                maxBoundsViscosity: .5,\r\n                dragging: window.innerWidth > 768\r\n            }).setView([38.987034, -76.946182], 14);\r\n\r\n            L.tileLayer('https:\/\/tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\r\n                attribution: '&copy; OpenStreetMap'\r\n            }).addTo(map);\r\n\r\n            var maxTemp = 100;\r\n            var minTemp = 0;\r\n\r\n            var stationTitleMap = {\r\n                atlantic: 'Atlantic',\r\n                vmh: 'Van Munching',\r\n                williams: 'AV Williams',\r\n                golf: 'Golf Course',\r\n                chem: 'Chemistry',\r\n                observ: 'Observatory',\r\n                avrum: 'Avrum Gudelsky',\r\n                essic: 'ESSIC',\r\n                ches: 'Chesapeake',\r\n            };\r\n\r\n            var stationCoords = {\r\n                'williams': [38.990812, -76.936336],\r\n                'atlantic': [38.991044, -76.941954],\r\n                'vmh': [38.982587, -76.947069],\r\n                'golf': [38.990851, -76.955100],\r\n                'chem': [38.989626, -76.940357],\r\n                'observ': [39.002, -76.956],\r\n                'avrum': [39.004, -76.942],\r\n                'essic': [38.9709, -76.9219],\r\n                'ches': [38.998, -76.942],\r\n            };\r\n\r\n            for (station of Object.keys(stationCoords)) {\r\n\r\n                \/\/ SKIP STATIONS WITH NO DATA\r\n                if (!json_data[station] || json_data[station].length === 0) {\r\n                    console.warn(\"Skipping station due to missing data: \" + station);\r\n                    continue;\r\n                }\r\n\r\n                \/\/ --- robust rounding & display to tenths ---\r\n                \/\/ raw value from JSON\/DB\r\n                var raw = parseFloat(json_data[station][0]['outTemp']);\r\n                \/\/ numeric value for calculations\r\n                var value = Number.isFinite(raw) ? Math.round(raw * 10) \/ 10 : raw;\r\n                \/\/ label always shows one decimal when numeric (e.g. 69.0)\r\n                var label = Number.isFinite(raw) ? (value).toFixed(1) : String(json_data[station][0]['outTemp']);\r\n\r\n                var normValue = (Number.isFinite(value) ? value : 0 - minTemp) \/ (maxTemp - minTemp);\r\n                if (normValue > 1) normValue = 1;\r\n                if (normValue < 0) normValue = 0;\r\n\r\n                windKt = json_data[station][0]['windSpeed'] * 0.868976;\r\n                barbNumber = Math.round(windKt * (16 \/ 75));\r\n\r\n                if (barbNumber > 0) {\r\n                    var iconWidth = 48;\r\n                    var barbIcon = L.icon({\r\n                        iconUrl: barbSymbols[barbNumber],\r\n                        iconSize: [iconWidth, iconWidth],\r\n                        iconAnchor: [iconWidth*(27\/20), iconWidth*(13\/20)],\r\n                    });\r\n                    L.marker(stationCoords[station], {\r\n                        icon: barbIcon,\r\n                        rotationAngle: json_data[station][0]['windDir']\r\n                    }).addTo(map);\r\n                }\r\n\r\n                var marker1 = circleWithText2(\r\n                    stationCoords[station],\r\n                    label,\r\n                    20,\r\n                    1,\r\n                    'circle1',\r\n                    gist_rainbow_r(normValue)\r\n                ).addTo(map);\r\n\r\n                marker1.bindPopup(\r\n                    stationTitleMap[station] +\r\n                    '<br><a href=\"https:\/\/weather.umd.edu\/micronet\/?station=' +\r\n                    station + '\">Link to plotting page<\/a>'\r\n                );\r\n            }\r\n\r\n            var paramString = window.location.href;\r\n            var searchParams = new URLSearchParams(paramString.substring(paramString.indexOf('?')));\r\n            var station = searchParams.get('station');\r\n\r\n            if (!paramString.includes('map') && station == null)\r\n                station = 'atlantic';\r\n\r\n            if (station != null)\r\n                map.setView(stationCoords[station], 18);\r\n\r\n        <\/script>\r\n        \n\n\n        <script src=\"https:\/\/code.highcharts.com\/highcharts.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/modules\/boost.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/highcharts-more.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/stock\/highcharts-more.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/modules\/accessibility.js\"><\/script>\r\n        <!-- <script src=\"https:\/\/code.highcharts.com\/highcharts-more.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/modules\/exporting.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/modules\/export-data.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/modules\/accessibility.js\"><\/script>\r\n        <script src=\"https:\/\/code.highcharts.com\/themes\/high-contrast-light.js\"><\/script> -->\r\n\r\n        <form name='data-selector' onsubmit=\"return getTimeRange()\" style='clear:both'>\r\n            <!-- <label for=\"station\"><\/label>\r\n            <select name=\"station\" id=\"station\">\r\n                <option value=\"atlantic\">Atlantic<\/option>\r\n                <option value=\"golf\">Golf Course<\/option>\r\n                <option value=\"williams\">AV Williams<\/option>\r\n                <option value=\"mdday\">Maryland Day<\/option>\r\n                <option value=\"observ\">Observatory<\/option>\r\n                <option value=\"avrum\">Avrum Gudelsky<\/option>\r\n                <option value=\"ches\">Chesapeake<\/option>\r\n                <option value=\"chem\">Chemistry<\/option>\r\n                <option value=\"essic\">ESSIC<\/option>\r\n            <\/select><br> -->\r\n\r\n            <label for=\"starttime\">Select start time<\/label>\r\n            <input type=\"datetime-local\" id=\"starttime\" name=\"starttime\">\r\n\r\n            <label for=\"endtime\">Select end time<\/label>\r\n            <input type=\"datetime-local\" id=\"endtime\" name=\"endtime\">\r\n            <input type=\"submit\">\r\n        <\/form>\r\n        \r\n        <!-- The Modal -->\r\n        <!-- <div id=\"myModal\" class=\"modal\">\r\n            <div class=\"modal-content\">\r\n                <span class=\"close\">&times;<\/span>\r\n                <p>Variable info<\/p>\r\n                <p>Variable precision<\/p>\r\n            <\/div>\r\n        <\/div> -->\r\n\r\n        <div id=\"container\" style=\"height:800px; width:100%;\"><\/div>\r\n        <!-- <button id='myBtn'>?<\/button> -->\r\n        <div id=\"container2\" style=\"height:400px; width:100%;\"><\/div>\r\n        <div id=\"co2_container\" style=\"height:400px; width:100%;\"><\/div>\r\n        \r\n        <style>\r\n            #myBtn {\r\n                width: 25px;\r\n                height: 25px;\r\n                border-radius: 12px;\r\n                border: none;\r\n                background: #5383db;\r\n                color: white;\r\n                font-weight: bold\r\n            }\r\n            #myBtn:hover {\r\n                cursor:pointer\r\n            }\r\n\r\n            \/* The Modal (background) *\/\r\n            .modal {\r\n                display: none; \/* Hidden by default *\/\r\n                position: fixed; \/* Stay in place *\/\r\n                z-index: 2; \/* Sit on top *\/\r\n                padding-top: 100px; \/* Location of the box *\/\r\n                left: 0;\r\n                top: 0;\r\n                width: 100%; \/* Full width *\/\r\n                height: 100%; \/* Full height *\/\r\n                overflow: auto; \/* Enable scroll if needed *\/\r\n                background-color: rgb(0,0,0); \/* Fallback color *\/\r\n                background-color: rgba(0,0,0,0.4); \/* Black w\/ opacity *\/\r\n            }\r\n\r\n            #map {\r\n                z-index: 2;\r\n            }\r\n\r\n            \/* Modal Content *\/\r\n            .modal-content {\r\n                background-color: #fefefe;\r\n                margin: auto;\r\n                padding: 20px;\r\n                border: 1px solid #888;\r\n                width: 80%;\r\n            }\r\n\r\n            \/* The Close Button *\/\r\n            .close {\r\n                color: #aaaaaa;\r\n                float: right;\r\n                font-size: 28px;\r\n                font-weight: bold;\r\n            }\r\n\r\n            .close:hover,\r\n            .close:focus {\r\n                color: #000;\r\n                text-decoration: none;\r\n                cursor: pointer;\r\n            }\r\n        <\/style>    \r\n\r\n        <script type=\"text\/javascript\">\r\n            \/\/ var modal = document.getElementById(\"myModal\");\r\n            \/\/ var btn = document.getElementById(\"myBtn\");\r\n            \/\/ var span = document.getElementsByClassName(\"close\")[0];\r\n            \/\/ btn.onclick = function() {\r\n            \/\/     modal.style.display = \"block\";\r\n            \/\/ }\r\n            \/\/ span.onclick = function() {\r\n            \/\/     modal.style.display = \"none\";\r\n            \/\/ }\r\n            \/\/ window.onclick = function(event) {\r\n            \/\/     if (event.target == modal) {\r\n            \/\/         modal.style.display = \"none\";\r\n            \/\/     }\r\n            \/\/ }\r\n\r\n            var records = \"month,day,max_avg,min_avg,max_temp,min_temp,max_year,min_year,avg_max_year,avg_min_year\\n1,1,58,8,72,4,1993,1964,1973,2018\\n1,2,56,1,67,-6,2005,1968,1955,1968\\n1,3,60,7,67,-1,2000,1968,1964,2018\\n1,4,64,8,67,6,2000,1979,1951,2014\\n1,5,61,8,71,5,1997,1981,1997,1969\\n1,6,63,8,70,5,1997,1969,2007,2018\\n1,7,61,4,72,4,2007,2014,1998,2014\\n1,8,69,6,70,-3,2008,1968,1998,1970\\n1,9,62,7,71,0,2008,1981,1998,1970\\n1,10,59,4,65,-8,2008,1982,2016,1982\\n1,11,68,-3,74,-12,1975,1982,1975,1988\\n1,12,65,3,71,-27,1975,1982,2020,1981\\n1,13,64,1,70,-5,2017,1981,1972,1981\\n1,14,63,10,73,-1,1995,1954,1992,1954\\n1,15,70,-4,73,-8,1952,1964,1952,1964\\n1,16,53,2,72,-5,1952,1964,2020,1964\\n1,17,56,-4,71,-8,1953,1982,1973,1982\\n1,18,64,-2,69,-15,1990,1957,1990,1957\\n1,19,62,-5,70,-8,1951,1957,1951,1994\\n1,20,64,0,70,-5,1951,1984,1951,1984\\n1,21,65,-2,70,-5,1951,1985,1959,1985\\n1,22,62,-6,71,-14,1959,1961,1973,1961\\n1,23,71,3,72,-7,1967,1984,1967,2014\\n1,24,70,2,73,-5,1967,1963,1967,1963\\n1,25,70,7,74,0,1967,1987,1967,1961\\n1,26,58,9,72,-8,1967,1961,1952,1961\\n1,27,61,5,72,-6,1974,1987,2012,1982\\n1,28,58,1,73,-13,1954,1961,1974,1987\\n1,29,73,-5,73,-11,1975,1961,1975,1963\\n1,30,59,8,75,-5,1975,1963,2013,1961\\n1,31,63,0,72,-7,2002,1965,1974,1965\\n2,1,59,11,65,-3,1974,1965,1988,1965\\n2,2,63,0,76,-7,2002,1961,1973,1961\\n2,3,54,7,69,-2,1967,1961,1952,1955\\n2,4,58,10,67,3,1991,1965,1991,1951\\n2,5,64,2,71,-4,1991,1996,1962,1996\\n2,6,66,2,75,-6,1991,1966,2008,1966\\n2,7,59,11,72,1,2008,1966,2020,1996\\n2,8,65,-1,71,-9,2017,1967,1965,1967\\n2,9,55,0,69,-6,1965,1967,1956,1967\\n2,10,67,5,68,-12,2001,1979,1959,1979\\n2,11,58,5,67,-11,1959,1979,1960,1979\\n2,12,62,8,71,0,2009,1979,1965,1955\\n2,13,68,11,73,-1,1999,1955,1951,1979\\n2,14,60,1,73,-9,1951,1979,1984,1979\\n2,15,74,7,71,0,1990,1979,1954,2015\\n2,16,72,7,76,6,1954,1960,1954,2015\\n2,17,69,9,78,-2,1954,1958,1976,1958\\n2,18,62,6,76,-5,1976,1979,2008,2015\\n2,19,65,11,76,6,1976,2015,1961,2015\\n2,20,70,4,71,-4,1997,1979,1971,2015\\n2,21,63,11,76,1,2018,2015,1953,2015\\n2,22,72,8,79,4,2018,1968,1974,1963\\n2,23,68,12,72,0,1974,1963,1985,1963\\n2,24,67,7,78,-17,2023,1989,1961,2015\\n2,25,62,11,82,7,1985,2015,2017,1967\\n2,26,67,13,78,4,2000,1994,1951,1970\\n2,27,69,13,70,9,1951,1963,1961,1963\\n2,28,68,13,75,11,1997,2014,1954,2014\\n2,29,72,16,75,7,1972,1980,1972,1980\\n3,1,75,12,78,10,1972,1980,1972,1980\\n3,2,78,13,79,7,1972,1984,1972,1980\\n3,3,75,14,78,12,1972,1980,1967,2009\\n3,4,77,13,79,3,1974,2014,1974,2014\\n3,5,71,18,83,12,1976,1978,1956,1978\\n3,6,61,12,81,10,1976,2015,2022,2015\\n3,7,72,14,78,7,2022,1960,1974,2015\\n3,8,64,18,77,6,2022,1986,1995,1996\\n3,9,78,17,83,2,2000,1960,1964,1960\\n3,10,73,18,80,12,2016,1984,1955,1996\\n3,11,68,18,78,-1,2006,1960,1986,1960\\n3,12,67,17,77,3,2021,1960,1957,1960\\n3,13,73,20,92,10,1990,1960,1990,2014\\n3,14,75,25,87,8,1990,1960,1990,1993\\n3,15,71,15,88,7,1990,1993,1990,1993\\n3,16,70,22,83,10,1990,1960,1990,1992\\n3,17,73,23,83,18,1990,1969,1990,2014\\n3,18,72,17,77,14,1963,1961,1966,1993\\n3,19,68,20,80,10,1989,1967,1969,1993\\n3,20,70,26,79,17,1976,1956,1959,1956\\n3,21,78,21,84,8,1952,1988,1952,1986\\n3,22,77,26,84,17,1952,1988,1966,2002\\n3,23,71,29,83,12,1968,1983,1966,1960\\n3,24,75,25,82,21,2012,1960,1959,2014\\n3,25,78,12,81,20,1959,1956,1959,1985\\n3,26,68,27,80,18,1959,1983,1970,1974\\n3,27,75,28,82,17,2021,1951,1968,1955\\n3,28,78,27,83,21,1998,1969,1960,1982\\n3,29,79,26,85,16,1985,1959,1968,2022\\n3,30,76,27,85,22,1998,1970,1962,1970\\n3,31,73,30,87,17,1998,1964,1979,1964\\n4,1,73,32,84,18,1998,1969,1955,1964\\n4,2,87,31,88,15,1963,1989,1963,2021\\n4,3,85,33,87,24,1963,1966,1963,1971\\n4,4,82,30,87,19,1963,1965,1956,1954\\n4,5,72,30,85,21,1956,1965,1956,2016\\n4,6,80,34,86,24,2023,1966,1967,1975\\n4,7,82,27,90,21,2010,1982,1991,1982\\n4,8,85,29,89,21,2010,1955,1959,1972\\n4,9,81,31,90,23,1991,1977,1969,1972\\n4,10,82,31,90,20,1959,1960,1955,1997\\n4,11,76,35,89,20,2013,1960,1954,1974\\n4,12,82,33,86,20,1977,1967,1977,1959\\n4,13,84,32,90,25,1977,1976,1971,1957\\n4,14,88,32,89,23,1960,1957,1960,1975\\n4,15,86,40,90,25,1960,1953,1960,1971\\n4,16,75,34,87,25,1960,1957,1959,2014\\n4,17,86,38,92,26,1976,1980,1964,1962\\n4,18,90,36,94,24,1976,1951,2009,1996\\n4,19,92,33,96,28,1976,1960,2009,2001\\n4,20,87,38,95,29,1976,1953,1985,1974\\n4,21,80,40,93,21,1976,1956,1952,1953\\n4,22,85,37,91,24,1985,1953,1962,1975\\n4,23,93,34,96,30,1985,1978,1960,1989\\n4,24,83,39,93,28,1960,1956,1957,1956\\n4,25,92,31,94,24,1960,1956,1960,1993\\n4,26,86,41,92,28,1960,1963,1962,1964\\n4,27,87,39,93,30,1990,1964,1962,1967\\n4,28,92,34,94,30,1957,1972,1957,1972\\n4,29,91,42,93,31,1957,1967,1974,1999\\n4,30,88,40,91,25,1974,2001,1974,1971\\n5,1,85,42,89,34,1974,1952,1957,1963\\n5,2,89,43,90,28,1954,1960,1954,1959\\n5,3,89,42,92,29,1965,1963,1965,1966\\n5,4,90,40,91,27,1965,1957,1965,1957\\n5,5,89,43,91,29,1965,1966,1955,1974\\n5,6,88,44,90,35,1966,1963,1966,1992\\n5,7,91,41,93,30,1986,1970,1959,1970\\n5,8,88,37,91,30,1959,1974,1963,1956\\n5,9,95,39,96,30,1963,1956,1963,1976\\n5,10,90,37,95,29,1963,1962,1965,1966\\n5,11,86,41,93,27,1963,1966,1965,1966\\n5,12,79,44,92,34,1959,1963,1955,1963\\n5,13,93,44,93,31,1956,1963,1956,1951\\n5,14,92,46,95,33,1956,1951,1956,1996\\n5,15,91,46,96,35,1962,1951,1962,1954\\n5,16,86,48,95,34,1962,1973,1951,1964\\n5,17,91,41,93,26,1974,1956,1974,1956\\n5,18,94,47,96,30,1962,1956,1962,1973\\n5,19,95,46,97,36,1962,1956,1962,2002\\n5,20,92,47,95,36,1962,1991,1962,2002\\n5,21,88,46,95,34,1996,1992,1962,2002\\n5,22,88,47,93,38,1996,1968,1964,1967\\n5,23,92,49,94,35,1964,1961,1964,2006\\n5,24,88,47,94,33,1992,1963,1955,1967\\n5,25,86,45,92,31,1964,1956,1955,1992\\n5,26,91,50,95,36,1991,1956,1957,1956\\n5,27,86,47,93,39,1991,1958,1964,1961\\n5,28,88,51,103,33,1991,1961,1959,1968\\n5,29,97,50,97,38,1969,1953,1969,1956\\n5,30,93,49,97,39,1969,1996,1987,2021\\n5,31,90,52,100,35,1991,1961,1956,1967\\n6,1,89,52,97,39,1991,1967,1951,1967\\n6,2,93,54,96,42,2011,1966,1961,1966\\n6,3,91,52,95,41,1951,1966,1951,1997\\n6,4,90,55,93,39,1973,1964,1973,1997\\n6,5,89,55,92,39,1973,1960,1955,1990\\n6,6,90,55,94,40,1953,1954,1953,1976\\n6,7,90,55,94,42,2005,1958,1953,1997\\n6,8,92,54,97,37,1999,1977,1984,1957\\n6,9,93,54,97,43,1999,1980,1959,1955\\n6,10,96,55,98,42,2011,1960,1964,1988\\n6,11,92,52,97,37,2008,1972,1970,1972\\n6,12,92,56,96,41,1984,1972,1961,1966\\n6,13,96,58,98,45,1986,1980,1956,1951\\n6,14,96,55,97,44,1956,1979,1956,1978\\n6,15,93,56,99,45,1994,1978,1956,1961\\n6,16,92,54,99,43,1991,1959,1967,1965\\n6,17,94,57,100,42,1991,1964,1957,1959\\n6,18,90,55,97,45,1957,1958,1970,1965\\n6,19,95,59,98,43,1957,1965,1975,1959\\n6,20,88,57,98,45,1994,1954,1969,1956\\n6,21,92,58,100,45,1987,1968,1967,1968\\n6,22,93,50,99,42,1988,1963,1956,1992\\n6,23,93,54,101,44,1988,1992,1965,1972\\n6,24,95,59,98,43,1975,1963,1966,1972\\n6,25,92,58,98,47,2010,1979,1971,1979\\n6,26,94,60,99,45,1954,1979,1952,1979\\n6,27,95,58,100,47,1952,1979,1966,1965\\n6,28,96,58,99,47,1959,1970,1966,1985\\n6,29,100,61,100,48,1959,1970,1959,1974\\n6,30,101,66,102,50,1959,1967,1959,1967\\n7,1,96,60,102,45,1959,1988,1968,1988\\n7,2,96,61,99,44,1966,1952,1956,1978\\n7,3,94,60,102,47,1966,1957,1955,1959\\n7,4,92,60,101,50,1966,1986,1955,1959\\n7,5,91,57,98,50,2002,1963,1957,1963\\n7,6,92,60,101,47,1990,1979,1958,1979\\n7,7,92,62,101,50,1990,1979,1966,1972\\n7,8,93,62,101,49,2012,1960,1962,2000\\n7,9,95,60,100,50,1993,1959,1974,1963\\n7,10,94,65,101,42,1993,1963,1993,1961\\n7,11,95,64,101,50,1988,1953,1966,2002\\n7,12,92,63,100,49,1988,1953,1957,1978\\n7,13,98,61,99,49,1954,1978,1954,1990\\n7,14,100,65,102,51,1954,1955,1954,1963\\n7,15,93,63,102,53,1954,1981,1957,1987\\n7,16,95,64,101,33,1995,1986,1988,1966\\n7,17,98,62,104,52,1988,1954,1977,1987\\n7,18,96,61,100,53,1988,1954,1969,1958\\n7,19,93,65,100,52,1953,1957,1963,1962\\n7,20,95,64,99,55,1977,1951,1957,1965\\n7,21,96,63,101,48,1957,1965,1955,1970\\n7,22,100,61,102,49,1957,1966,1955,1971\\n7,23,96,63,102,52,1957,1966,1972,1966\\n7,24,95,65,103,51,1991,1985,1968,1957\\n7,25,93,62,100,52,2010,1976,1961,2013\\n7,26,96,62,100,51,2016,1953,1966,1976\\n7,27,96,62,98,45,1966,1962,1955,1975\\n7,28,96,60,98,46,1954,1962,1954,1962\\n7,29,97,62,100,54,1954,1962,1954,1962\\n7,30,91,60,99,52,1954,1956,1983,1956\\n7,31,94,61,104,48,1954,1956,1958,1956\\n8,1,95,61,103,50,1954,1966,1968,1990\\n8,2,99,62,101,52,1955,1962,1955,1990\\n8,3,94,64,101,48,1955,1959,1955,1976\\n8,4,96,62,99,50,1980,1985,1955,1966\\n8,5,95,62,100,45,1995,1951,1955,1951\\n8,6,96,60,100,45,1955,1951,1955,1957\\n8,7,93,62,99,51,1955,1964,1968,2004\\n8,8,93,60,96,51,2007,1989,1960,1957\\n8,9,92,63,101,50,2007,1964,1951,1964\\n8,10,91,61,98,53,2000,1964,1956,1989\\n8,11,91,57,97,47,2010,1972,1957,1972\\n8,12,93,60,97,48,1980,1962,1973,1974\\n8,13,93,59,96,50,2002,1971,1959,1979\\n8,14,93,60,98,48,2002,1954,1959,1964\\n8,15,89,57,98,44,1985,1964,1951,1964\\n8,16,94,58,104,50,1988,1964,1951,1972\\n8,17,99,53,101,47,1997,1979,1988,1979\\n8,18,94,61,102,46,1997,1981,1956,1981\\n8,19,93,60,100,46,1988,1953,1966,1958\\n8,20,97,57,100,46,1962,1964,1962,1964\\n8,21,96,58,103,47,1983,1953,1959,1965\\n8,22,94,57,96,47,1959,1956,1968,1956\\n8,23,96,55,99,46,1983,1952,1968,1956\\n8,24,91,38,97,42,1968,1952,1972,1990\\n8,25,96,55,97,43,1968,1952,1968,1971\\n8,26,96,56,99,46,1975,1977,1975,1963\\n8,27,90,59,97,50,1959,1968,1959,1963\\n8,28,92,56,98,50,1987,1968,1961,1969\\n8,29,92,53,98,38,1993,1982,1960,1965\\n8,30,94,54,98,41,1953,1986,1962,1965\\n8,31,94,50,100,44,1953,1986,1962,1986\\n9,1,97,54,103,47,1953,1954,1953,1967\\n9,2,99,56,102,46,1953,1970,1953,1970\\n9,3,96,48,102,43,1953,1967,1953,1967\\n9,4,95,55,99,48,1953,1965,1964,1997\\n9,5,97,56,99,45,1954,1997,1954,1972\\n9,6,97,54,99,43,1954,1976,1954,1964\\n9,7,92,53,100,41,1954,1962,1954,1964\\n9,8,87,48,98,42,1954,1962,1965,1962\\n9,9,90,49,93,40,2015,1986,1964,1986\\n9,10,91,51,95,35,1985,1956,1965,1975\\n9,11,92,48,99,39,1983,1976,1961,1972\\n9,12,90,50,99,38,1983,1967,1961,1959\\n9,13,89,48,95,38,1983,1958,1957,1959\\n9,14,91,47,94,37,1952,1953,1952,1975\\n9,15,91,48,94,39,1952,1964,1970,1975\\n9,16,93,51,96,41,1970,1985,1970,1966\\n9,17,91,48,99,40,1991,1986,1958,1959\\n9,18,85,35,98,38,1991,1959,1967,1959\\n9,19,86,46,93,36,1965,1959,1954,1959\\n9,20,89,42,94,36,1983,1959,1965,1959\\n9,21,89,43,91,30,1965,1956,1965,1962\\n9,22,93,38,97,33,1970,1962,1970,1962\\n9,23,95,43,95,37,1970,1962,1970,1976\\n9,24,89,40,95,31,1970,1963,1959,1963\\n9,25,92,40,95,31,1970,1963,1970,1963\\n9,26,91,42,95,36,1970,1967,1970,1965\\n9,27,83,42,95,34,1986,1957,1986,1957\\n9,28,84,41,95,32,1998,1957,1959,1957\\n9,29,88,44,93,34,1954,1951,1954,1957\\n9,30,86,42,93,33,1954,1951,1954,1961\\n10,1,82,39,93,34,1986,1993,1954,1993\\n10,2,83,41,91,35,1986,1997,1951,1972\\n10,3,85,36,94,33,2019,1974,1954,2003\\n10,4,86,30,93,25,1954,1974,1967,1974\\n10,5,91,37,94,28,1951,1965,1951,1963\\n10,6,87,32,93,26,1951,1965,1959,1965\\n10,7,83,37,88,31,1951,1964,1963,1964\\n10,8,81,31,90,26,2007,1954,1959,1954\\n10,9,81,32,89,28,2007,1978,1959,2001\\n10,10,83,36,93,31,2007,1978,1958,1979\\n10,11,85,32,87,26,1954,1964,1962,1964\\n10,12,87,32,89,24,1954,1964,1962,1964\\n10,13,84,32,92,27,1954,1957,1954,1957\\n10,14,80,33,92,27,1954,1988,1960,2006\\n10,15,79,33,88,29,1975,1987,1958,1987\\n10,16,81,36,86,32,1960,1959,1958,1959\\n10,17,82,37,87,30,1992,1952,1963,1961\\n10,18,80,33,86,28,1958,1982,1963,1977\\n10,19,75,31,83,25,2016,1976,1985,1976\\n10,20,81,28,86,25,2016,1974,1969,1972\\n10,21,77,28,84,20,1969,1952,1963,1974\\n10,22,73,28,85,24,1979,1952,1968,1974\\n10,23,74,28,84,22,1979,1976,1959,1997\\n10,24,74,24,83,20,1978,1969,1963,1969\\n10,25,76,29,82,23,2001,1969,1963,1962\\n10,26,74,31,79,23,2021,1952,1964,1960\\n10,27,72,29,84,26,1963,1988,1984,1972\\n10,28,73,27,84,24,1984,1976,1971,1976\\n10,29,76,28,85,23,1984,1965,1971,1976\\n10,30,71,29,82,19,1984,1952,1971,1965\\n10,31,75,34,83,22,2016,1965,1974,1954\\n11,1,76,33,84,22,1974,1954,1971,1954\\n11,2,84,33,85,23,1971,1976,1971,1976\\n11,3,74,32,84,24,1971,1959,1990,1951\\n11,4,77,26,83,18,1974,1951,1990,1951\\n11,5,76,29,82,19,1974,1951,1961,1952\\n11,6,71,27,82,19,1961,1967,1959,1953\\n11,7,68,28,79,20,2015,1962,2022,1982\\n11,8,70,26,80,15,1975,1953,1975,1953\\n11,9,71,27,79,18,1975,1967,1966,1976\\n11,10,70,27,82,22,1994,1973,1966,1955\\n11,11,68,25,77,19,2020,1954,2020,2017\\n11,12,68,26,76,15,2006,1957,1964,1957\\n11,13,74,25,76,15,1955,1983,1955,2019\\n11,14,71,25,78,18,1955,1986,1955,1986\\n11,15,71,28,79,13,1985,1986,1973,1969\\n11,16,73,24,83,19,1993,1967,1955,1967\\n11,17,66,26,76,19,2005,1976,1966,1976\\n11,18,70,21,74,-2,1953,1983,1963,1959\\n11,19,65,23,73,19,2016,2014,1957,2014\\n11,20,66,27,75,17,1985,1959,1985,1959\\n11,21,68,20,78,12,1985,1951,1991,1951\\n11,22,66,20,75,15,1991,1951,1991,1951\\n11,23,64,23,75,13,2007,1964,1951,1964\\n11,24,69,21,74,13,1979,1989,1958,1970\\n11,25,72,21,75,14,1973,1956,1973,2005\\n11,26,66,26,75,20,1973,1959,1979,1959\\n11,27,66,22,72,14,1979,1974,1988,1955\\n11,28,66,19,71,11,1973,1951,1973,1951\\n11,29,65,18,73,10,1990,1955,1960,1955\\n11,30,66,18,73,13,1998,1958,2001,1958\\n12,1,67,17,74,9,1991,1967,2006,1976\\n12,2,69,19,75,5,2006,1967,1970,1967\\n12,3,63,14,69,4,1970,1967,1956,1976\\n12,4,67,16,71,6,1998,1966,1982,1966\\n12,5,64,17,75,12,1982,1966,1973,1976\\n12,6,66,17,74,7,1998,1957,1982,2007\\n12,7,70,9,77,7,1998,2002,1951,2002\\n12,8,68,19,78,9,1998,2002,1966,1964\\n12,9,65,16,73,11,1980,1976,1966,1960\\n12,10,63,12,71,9,1966,1960,1966,1960\\n12,11,63,10,72,4,1966,1968,1971,1968\\n12,12,59,12,68,8,2021,1968,1959,1962\\n12,13,60,9,70,5,2015,1988,1968,1960\\n12,14,63,14,74,0,1952,1960,1991,1989\\n12,15,70,11,70,2,2015,1962,1971,1962\\n12,16,66,11,72,3,1971,1958,1971,1958\\n12,17,61,7,70,-3,1971,1951,2000,1951\\n12,18,67,7,70,1,1984,1960,1984,1960\\n12,19,58,12,73,2,2006,1960,1967,1960\\n12,20,62,6,64,1,1956,1960,1957,1960\\n12,21,63,13,65,7,1956,1960,2018,1981\\n12,22,68,5,70,3,2013,1989,2013,1989\\n12,23,66,1,68,-7,2013,1960,1990,1960\\n12,24,65,6,70,-1,1990,1960,2015,2022\\n12,25,68,2,71,0,2015,1989,1964,1983\\n12,26,65,8,72,-35,1964,1983,1964,1958\\n12,27,69,7,72,1,1964,1983,1971,1958\\n12,28,65,12,78,6,1982,1955,1968,1955\\n12,29,57,12,71,7,1984,1963,1954,1977\\n12,30,64,12,77,8,1984,1976,1971,1976\\n12,31,65,6,68,-1,1990,1963,1972,1963\\n\";\r\n\r\n            records = records.split('\\n')\r\n            records = records.map((x) => {\r\n                return x.split(',')\r\n            })\r\n            console.log(records)\r\n\r\n            record_days = records.map(x => x[0]+'-'+x[1])\r\n\r\n            console.log('MMMMMMMMMMMMMMMMMMMMMM')\r\n            var normals = \"\\\"STATION\\\",\\\"NAME\\\",\\\"DATE\\\",\\\"DLY-DUTR-NORMAL\\\",\\\"DLY-DUTR-STDDEV\\\",\\\"DLY-TAVG-NORMAL\\\",\\\"DLY-TAVG-STDDEV\\\",\\\"DLY-TMAX-NORMAL\\\",\\\"DLY-TMAX-STDDEV\\\",\\\"DLY-TMIN-NORMAL\\\",\\\"DLY-TMIN-STDDEV\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-01\\\",\\\"16.4\\\",\\\"7.3\\\",\\\"34.9\\\",\\\"9.8\\\",\\\"43.1\\\",\\\"11.0\\\",\\\"26.7\\\",\\\"9.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-02\\\",\\\"16.5\\\",\\\"7.3\\\",\\\"34.8\\\",\\\"9.9\\\",\\\"43.0\\\",\\\"11.1\\\",\\\"26.5\\\",\\\"10.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-03\\\",\\\"16.5\\\",\\\"7.3\\\",\\\"34.7\\\",\\\"9.9\\\",\\\"42.9\\\",\\\"11.1\\\",\\\"26.4\\\",\\\"10.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-04\\\",\\\"16.5\\\",\\\"7.3\\\",\\\"34.6\\\",\\\"9.9\\\",\\\"42.9\\\",\\\"11.1\\\",\\\"26.3\\\",\\\"10.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-05\\\",\\\"16.6\\\",\\\"7.4\\\",\\\"34.5\\\",\\\"10.0\\\",\\\"42.8\\\",\\\"11.1\\\",\\\"26.2\\\",\\\"10.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-06\\\",\\\"16.6\\\",\\\"7.4\\\",\\\"34.5\\\",\\\"10.0\\\",\\\"42.8\\\",\\\"11.2\\\",\\\"26.2\\\",\\\"10.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-07\\\",\\\"16.7\\\",\\\"7.4\\\",\\\"34.4\\\",\\\"10.0\\\",\\\"42.8\\\",\\\"11.2\\\",\\\"26.1\\\",\\\"10.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-08\\\",\\\"16.7\\\",\\\"7.4\\\",\\\"34.4\\\",\\\"10.0\\\",\\\"42.8\\\",\\\"11.1\\\",\\\"26.0\\\",\\\"10.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-09\\\",\\\"16.8\\\",\\\"7.4\\\",\\\"34.4\\\",\\\"10.0\\\",\\\"42.8\\\",\\\"11.1\\\",\\\"26.0\\\",\\\"10.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-10\\\",\\\"16.8\\\",\\\"7.4\\\",\\\"34.4\\\",\\\"10.0\\\",\\\"42.8\\\",\\\"11.1\\\",\\\"26.0\\\",\\\"10.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-11\\\",\\\"16.9\\\",\\\"7.4\\\",\\\"34.4\\\",\\\"10.1\\\",\\\"42.8\\\",\\\"11.1\\\",\\\"25.9\\\",\\\"10.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-12\\\",\\\"17.0\\\",\\\"7.3\\\",\\\"34.4\\\",\\\"10.1\\\",\\\"42.9\\\",\\\"11.1\\\",\\\"25.9\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-13\\\",\\\"17.0\\\",\\\"7.3\\\",\\\"34.4\\\",\\\"10.1\\\",\\\"42.9\\\",\\\"11.0\\\",\\\"25.9\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-14\\\",\\\"17.1\\\",\\\"7.3\\\",\\\"34.4\\\",\\\"10.1\\\",\\\"43.0\\\",\\\"11.0\\\",\\\"25.9\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-15\\\",\\\"17.1\\\",\\\"7.3\\\",\\\"34.5\\\",\\\"10.1\\\",\\\"43.0\\\",\\\"11.0\\\",\\\"25.9\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-16\\\",\\\"17.2\\\",\\\"7.3\\\",\\\"34.5\\\",\\\"10.0\\\",\\\"43.1\\\",\\\"11.0\\\",\\\"25.9\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-17\\\",\\\"17.2\\\",\\\"7.3\\\",\\\"34.6\\\",\\\"10.1\\\",\\\"43.2\\\",\\\"11.0\\\",\\\"25.9\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-18\\\",\\\"17.3\\\",\\\"7.3\\\",\\\"34.6\\\",\\\"10.1\\\",\\\"43.3\\\",\\\"11.0\\\",\\\"26.0\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-19\\\",\\\"17.4\\\",\\\"7.3\\\",\\\"34.7\\\",\\\"10.1\\\",\\\"43.4\\\",\\\"11.0\\\",\\\"26.0\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-20\\\",\\\"17.4\\\",\\\"7.3\\\",\\\"34.7\\\",\\\"10.1\\\",\\\"43.5\\\",\\\"11.0\\\",\\\"26.0\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-21\\\",\\\"17.5\\\",\\\"7.3\\\",\\\"34.8\\\",\\\"10.1\\\",\\\"43.6\\\",\\\"11.0\\\",\\\"26.1\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-22\\\",\\\"17.5\\\",\\\"7.3\\\",\\\"34.9\\\",\\\"10.0\\\",\\\"43.7\\\",\\\"11.0\\\",\\\"26.1\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-23\\\",\\\"17.6\\\",\\\"7.3\\\",\\\"35.0\\\",\\\"10.0\\\",\\\"43.8\\\",\\\"11.0\\\",\\\"26.2\\\",\\\"10.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-24\\\",\\\"17.6\\\",\\\"7.4\\\",\\\"35.1\\\",\\\"10.0\\\",\\\"43.9\\\",\\\"11.0\\\",\\\"26.3\\\",\\\"10.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-25\\\",\\\"17.7\\\",\\\"7.4\\\",\\\"35.2\\\",\\\"10.0\\\",\\\"44.0\\\",\\\"11.0\\\",\\\"26.3\\\",\\\"10.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-26\\\",\\\"17.8\\\",\\\"7.4\\\",\\\"35.3\\\",\\\"10.0\\\",\\\"44.2\\\",\\\"11.0\\\",\\\"26.4\\\",\\\"10.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-27\\\",\\\"17.8\\\",\\\"7.4\\\",\\\"35.4\\\",\\\"9.9\\\",\\\"44.3\\\",\\\"11.0\\\",\\\"26.5\\\",\\\"10.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-28\\\",\\\"17.9\\\",\\\"7.4\\\",\\\"35.5\\\",\\\"9.9\\\",\\\"44.4\\\",\\\"11.0\\\",\\\"26.5\\\",\\\"10.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-29\\\",\\\"17.9\\\",\\\"7.4\\\",\\\"35.6\\\",\\\"9.8\\\",\\\"44.6\\\",\\\"10.9\\\",\\\"26.6\\\",\\\"10.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-30\\\",\\\"18.0\\\",\\\"7.4\\\",\\\"35.7\\\",\\\"9.8\\\",\\\"44.7\\\",\\\"10.9\\\",\\\"26.7\\\",\\\"10.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"01-31\\\",\\\"18.1\\\",\\\"7.4\\\",\\\"35.8\\\",\\\"9.7\\\",\\\"44.8\\\",\\\"10.8\\\",\\\"26.8\\\",\\\"10.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-01\\\",\\\"18.1\\\",\\\"7.4\\\",\\\"35.9\\\",\\\"9.6\\\",\\\"45.0\\\",\\\"10.7\\\",\\\"26.9\\\",\\\"9.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-02\\\",\\\"18.2\\\",\\\"7.4\\\",\\\"36.1\\\",\\\"9.5\\\",\\\"45.1\\\",\\\"10.7\\\",\\\"27.0\\\",\\\"9.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-03\\\",\\\"18.2\\\",\\\"7.4\\\",\\\"36.2\\\",\\\"9.5\\\",\\\"45.3\\\",\\\"10.6\\\",\\\"27.1\\\",\\\"9.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-04\\\",\\\"18.3\\\",\\\"7.4\\\",\\\"36.3\\\",\\\"9.4\\\",\\\"45.5\\\",\\\"10.6\\\",\\\"27.1\\\",\\\"9.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-05\\\",\\\"18.4\\\",\\\"7.4\\\",\\\"36.4\\\",\\\"9.4\\\",\\\"45.6\\\",\\\"10.5\\\",\\\"27.2\\\",\\\"9.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-06\\\",\\\"18.4\\\",\\\"7.3\\\",\\\"36.6\\\",\\\"9.3\\\",\\\"45.8\\\",\\\"10.5\\\",\\\"27.4\\\",\\\"9.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-07\\\",\\\"18.5\\\",\\\"7.3\\\",\\\"36.7\\\",\\\"9.3\\\",\\\"45.9\\\",\\\"10.5\\\",\\\"27.5\\\",\\\"9.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-08\\\",\\\"18.5\\\",\\\"7.3\\\",\\\"36.8\\\",\\\"9.3\\\",\\\"46.1\\\",\\\"10.4\\\",\\\"27.6\\\",\\\"9.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-09\\\",\\\"18.6\\\",\\\"7.3\\\",\\\"37.0\\\",\\\"9.2\\\",\\\"46.3\\\",\\\"10.4\\\",\\\"27.7\\\",\\\"9.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-10\\\",\\\"18.7\\\",\\\"7.3\\\",\\\"37.1\\\",\\\"9.2\\\",\\\"46.5\\\",\\\"10.4\\\",\\\"27.8\\\",\\\"9.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-11\\\",\\\"18.7\\\",\\\"7.3\\\",\\\"37.3\\\",\\\"9.1\\\",\\\"46.6\\\",\\\"10.4\\\",\\\"27.9\\\",\\\"9.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-12\\\",\\\"18.8\\\",\\\"7.3\\\",\\\"37.4\\\",\\\"9.1\\\",\\\"46.8\\\",\\\"10.4\\\",\\\"28.0\\\",\\\"9.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-13\\\",\\\"18.8\\\",\\\"7.4\\\",\\\"37.6\\\",\\\"9.1\\\",\\\"47.0\\\",\\\"10.4\\\",\\\"28.2\\\",\\\"9.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-14\\\",\\\"18.9\\\",\\\"7.4\\\",\\\"37.7\\\",\\\"9.1\\\",\\\"47.2\\\",\\\"10.4\\\",\\\"28.3\\\",\\\"9.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-15\\\",\\\"18.9\\\",\\\"7.4\\\",\\\"37.9\\\",\\\"9.1\\\",\\\"47.4\\\",\\\"10.4\\\",\\\"28.4\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-16\\\",\\\"19.0\\\",\\\"7.4\\\",\\\"38.1\\\",\\\"9.1\\\",\\\"47.6\\\",\\\"10.4\\\",\\\"28.6\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-17\\\",\\\"19.1\\\",\\\"7.4\\\",\\\"38.2\\\",\\\"9.1\\\",\\\"47.8\\\",\\\"10.4\\\",\\\"28.7\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-18\\\",\\\"19.1\\\",\\\"7.4\\\",\\\"38.4\\\",\\\"9.1\\\",\\\"48.0\\\",\\\"10.5\\\",\\\"28.9\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-19\\\",\\\"19.2\\\",\\\"7.5\\\",\\\"38.6\\\",\\\"9.1\\\",\\\"48.2\\\",\\\"10.5\\\",\\\"29.0\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-20\\\",\\\"19.2\\\",\\\"7.5\\\",\\\"38.8\\\",\\\"9.1\\\",\\\"48.4\\\",\\\"10.5\\\",\\\"29.2\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-21\\\",\\\"19.3\\\",\\\"7.5\\\",\\\"39.0\\\",\\\"9.1\\\",\\\"48.6\\\",\\\"10.5\\\",\\\"29.3\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-22\\\",\\\"19.3\\\",\\\"7.6\\\",\\\"39.2\\\",\\\"9.1\\\",\\\"48.8\\\",\\\"10.6\\\",\\\"29.5\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-23\\\",\\\"19.4\\\",\\\"7.6\\\",\\\"39.4\\\",\\\"9.1\\\",\\\"49.1\\\",\\\"10.6\\\",\\\"29.7\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-24\\\",\\\"19.4\\\",\\\"7.6\\\",\\\"39.6\\\",\\\"9.2\\\",\\\"49.3\\\",\\\"10.7\\\",\\\"29.9\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-25\\\",\\\"19.5\\\",\\\"7.7\\\",\\\"39.8\\\",\\\"9.2\\\",\\\"49.5\\\",\\\"10.7\\\",\\\"30.1\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-26\\\",\\\"19.5\\\",\\\"7.7\\\",\\\"40.0\\\",\\\"9.2\\\",\\\"49.8\\\",\\\"10.8\\\",\\\"30.3\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-27\\\",\\\"19.6\\\",\\\"7.8\\\",\\\"40.2\\\",\\\"9.3\\\",\\\"50.0\\\",\\\"10.9\\\",\\\"30.5\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-28\\\",\\\"19.6\\\",\\\"7.8\\\",\\\"40.5\\\",\\\"9.3\\\",\\\"50.3\\\",\\\"10.9\\\",\\\"30.7\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"02-29\\\",\\\"19.6\\\",\\\"7.8\\\",\\\"40.6\\\",\\\"9.4\\\",\\\"50.4\\\",\\\"11.0\\\",\\\"30.8\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-01\\\",\\\"19.7\\\",\\\"7.8\\\",\\\"40.7\\\",\\\"9.4\\\",\\\"50.5\\\",\\\"11.0\\\",\\\"30.9\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-02\\\",\\\"19.7\\\",\\\"7.9\\\",\\\"41.0\\\",\\\"9.4\\\",\\\"50.8\\\",\\\"11.1\\\",\\\"31.1\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-03\\\",\\\"19.8\\\",\\\"7.9\\\",\\\"41.2\\\",\\\"9.4\\\",\\\"51.1\\\",\\\"11.2\\\",\\\"31.3\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-04\\\",\\\"19.8\\\",\\\"7.9\\\",\\\"41.5\\\",\\\"9.4\\\",\\\"51.4\\\",\\\"11.2\\\",\\\"31.6\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-05\\\",\\\"19.9\\\",\\\"7.9\\\",\\\"41.7\\\",\\\"9.5\\\",\\\"51.7\\\",\\\"11.3\\\",\\\"31.8\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-06\\\",\\\"19.9\\\",\\\"7.9\\\",\\\"42.0\\\",\\\"9.5\\\",\\\"52.0\\\",\\\"11.3\\\",\\\"32.1\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-07\\\",\\\"20.0\\\",\\\"8.0\\\",\\\"42.3\\\",\\\"9.5\\\",\\\"52.3\\\",\\\"11.3\\\",\\\"32.3\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-08\\\",\\\"20.0\\\",\\\"8.0\\\",\\\"42.6\\\",\\\"9.5\\\",\\\"52.6\\\",\\\"11.4\\\",\\\"32.6\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-09\\\",\\\"20.1\\\",\\\"8.0\\\",\\\"42.9\\\",\\\"9.5\\\",\\\"52.9\\\",\\\"11.4\\\",\\\"32.8\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-10\\\",\\\"20.1\\\",\\\"8.1\\\",\\\"43.2\\\",\\\"9.5\\\",\\\"53.2\\\",\\\"11.4\\\",\\\"33.1\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-11\\\",\\\"20.2\\\",\\\"8.1\\\",\\\"43.5\\\",\\\"9.5\\\",\\\"53.6\\\",\\\"11.4\\\",\\\"33.4\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-12\\\",\\\"20.2\\\",\\\"8.1\\\",\\\"43.8\\\",\\\"9.5\\\",\\\"53.9\\\",\\\"11.4\\\",\\\"33.7\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-13\\\",\\\"20.3\\\",\\\"8.1\\\",\\\"44.1\\\",\\\"9.5\\\",\\\"54.2\\\",\\\"11.4\\\",\\\"34.0\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-14\\\",\\\"20.3\\\",\\\"8.1\\\",\\\"44.4\\\",\\\"9.5\\\",\\\"54.6\\\",\\\"11.4\\\",\\\"34.3\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-15\\\",\\\"20.4\\\",\\\"8.1\\\",\\\"44.7\\\",\\\"9.5\\\",\\\"54.9\\\",\\\"11.5\\\",\\\"34.6\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-16\\\",\\\"20.4\\\",\\\"8.1\\\",\\\"45.1\\\",\\\"9.5\\\",\\\"55.3\\\",\\\"11.5\\\",\\\"34.9\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-17\\\",\\\"20.5\\\",\\\"8.1\\\",\\\"45.4\\\",\\\"9.5\\\",\\\"55.7\\\",\\\"11.4\\\",\\\"35.2\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-18\\\",\\\"20.6\\\",\\\"8.1\\\",\\\"45.7\\\",\\\"9.5\\\",\\\"56.0\\\",\\\"11.4\\\",\\\"35.5\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-19\\\",\\\"20.6\\\",\\\"8.1\\\",\\\"46.1\\\",\\\"9.5\\\",\\\"56.4\\\",\\\"11.4\\\",\\\"35.8\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-20\\\",\\\"20.7\\\",\\\"8.1\\\",\\\"46.4\\\",\\\"9.5\\\",\\\"56.8\\\",\\\"11.4\\\",\\\"36.1\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-21\\\",\\\"20.8\\\",\\\"8.1\\\",\\\"46.8\\\",\\\"9.5\\\",\\\"57.2\\\",\\\"11.4\\\",\\\"36.4\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-22\\\",\\\"20.8\\\",\\\"8.1\\\",\\\"47.1\\\",\\\"9.5\\\",\\\"57.6\\\",\\\"11.4\\\",\\\"36.7\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-23\\\",\\\"20.9\\\",\\\"8.1\\\",\\\"47.5\\\",\\\"9.5\\\",\\\"57.9\\\",\\\"11.4\\\",\\\"37.0\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-24\\\",\\\"21.0\\\",\\\"8.1\\\",\\\"47.9\\\",\\\"9.4\\\",\\\"58.3\\\",\\\"11.3\\\",\\\"37.4\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-25\\\",\\\"21.1\\\",\\\"8.0\\\",\\\"48.2\\\",\\\"9.4\\\",\\\"58.7\\\",\\\"11.2\\\",\\\"37.7\\\",\\\"9.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-26\\\",\\\"21.1\\\",\\\"8.0\\\",\\\"48.6\\\",\\\"9.3\\\",\\\"59.1\\\",\\\"11.2\\\",\\\"38.0\\\",\\\"9.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-27\\\",\\\"21.2\\\",\\\"8.0\\\",\\\"48.9\\\",\\\"9.2\\\",\\\"59.5\\\",\\\"11.1\\\",\\\"38.3\\\",\\\"8.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-28\\\",\\\"21.3\\\",\\\"8.0\\\",\\\"49.3\\\",\\\"9.2\\\",\\\"59.9\\\",\\\"11.0\\\",\\\"38.7\\\",\\\"8.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-29\\\",\\\"21.4\\\",\\\"7.9\\\",\\\"49.7\\\",\\\"9.1\\\",\\\"60.3\\\",\\\"10.9\\\",\\\"39.0\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-30\\\",\\\"21.4\\\",\\\"7.9\\\",\\\"50.0\\\",\\\"9.0\\\",\\\"60.7\\\",\\\"10.9\\\",\\\"39.3\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"03-31\\\",\\\"21.5\\\",\\\"7.9\\\",\\\"50.4\\\",\\\"9.0\\\",\\\"61.2\\\",\\\"10.8\\\",\\\"39.6\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-01\\\",\\\"21.6\\\",\\\"7.9\\\",\\\"50.8\\\",\\\"8.9\\\",\\\"61.6\\\",\\\"10.7\\\",\\\"39.9\\\",\\\"8.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-02\\\",\\\"21.7\\\",\\\"7.9\\\",\\\"51.1\\\",\\\"8.9\\\",\\\"62.0\\\",\\\"10.7\\\",\\\"40.3\\\",\\\"8.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-03\\\",\\\"21.8\\\",\\\"7.9\\\",\\\"51.5\\\",\\\"8.8\\\",\\\"62.4\\\",\\\"10.6\\\",\\\"40.6\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-04\\\",\\\"21.8\\\",\\\"7.9\\\",\\\"51.8\\\",\\\"8.7\\\",\\\"62.8\\\",\\\"10.6\\\",\\\"40.9\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-05\\\",\\\"21.9\\\",\\\"7.9\\\",\\\"52.2\\\",\\\"8.7\\\",\\\"63.2\\\",\\\"10.5\\\",\\\"41.2\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-06\\\",\\\"22.0\\\",\\\"7.9\\\",\\\"52.6\\\",\\\"8.6\\\",\\\"63.6\\\",\\\"10.5\\\",\\\"41.5\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-07\\\",\\\"22.1\\\",\\\"8.0\\\",\\\"52.9\\\",\\\"8.6\\\",\\\"64.0\\\",\\\"10.4\\\",\\\"41.9\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-08\\\",\\\"22.2\\\",\\\"8.0\\\",\\\"53.3\\\",\\\"8.6\\\",\\\"64.3\\\",\\\"10.4\\\",\\\"42.2\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-09\\\",\\\"22.2\\\",\\\"8.0\\\",\\\"53.6\\\",\\\"8.5\\\",\\\"64.7\\\",\\\"10.4\\\",\\\"42.5\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-10\\\",\\\"22.3\\\",\\\"8.0\\\",\\\"54.0\\\",\\\"8.5\\\",\\\"65.1\\\",\\\"10.4\\\",\\\"42.8\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-11\\\",\\\"22.4\\\",\\\"8.0\\\",\\\"54.3\\\",\\\"8.5\\\",\\\"65.5\\\",\\\"10.4\\\",\\\"43.1\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-12\\\",\\\"22.4\\\",\\\"8.0\\\",\\\"54.7\\\",\\\"8.5\\\",\\\"65.9\\\",\\\"10.4\\\",\\\"43.4\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-13\\\",\\\"22.5\\\",\\\"8.0\\\",\\\"55.0\\\",\\\"8.5\\\",\\\"66.2\\\",\\\"10.4\\\",\\\"43.7\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-14\\\",\\\"22.6\\\",\\\"8.1\\\",\\\"55.3\\\",\\\"8.4\\\",\\\"66.6\\\",\\\"10.4\\\",\\\"44.1\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-15\\\",\\\"22.6\\\",\\\"8.1\\\",\\\"55.7\\\",\\\"8.4\\\",\\\"67.0\\\",\\\"10.4\\\",\\\"44.4\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-16\\\",\\\"22.7\\\",\\\"8.1\\\",\\\"56.0\\\",\\\"8.4\\\",\\\"67.3\\\",\\\"10.3\\\",\\\"44.7\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-17\\\",\\\"22.7\\\",\\\"8.1\\\",\\\"56.3\\\",\\\"8.3\\\",\\\"67.7\\\",\\\"10.3\\\",\\\"45.0\\\",\\\"8.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-18\\\",\\\"22.8\\\",\\\"8.1\\\",\\\"56.7\\\",\\\"8.3\\\",\\\"68.0\\\",\\\"10.2\\\",\\\"45.3\\\",\\\"8.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-19\\\",\\\"22.8\\\",\\\"8.1\\\",\\\"57.0\\\",\\\"8.2\\\",\\\"68.4\\\",\\\"10.2\\\",\\\"45.6\\\",\\\"7.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-20\\\",\\\"22.8\\\",\\\"8.1\\\",\\\"57.3\\\",\\\"8.1\\\",\\\"68.7\\\",\\\"10.1\\\",\\\"45.9\\\",\\\"7.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-21\\\",\\\"22.9\\\",\\\"8.1\\\",\\\"57.6\\\",\\\"8.1\\\",\\\"69.1\\\",\\\"10.1\\\",\\\"46.2\\\",\\\"7.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-22\\\",\\\"22.9\\\",\\\"8.1\\\",\\\"58.0\\\",\\\"8.0\\\",\\\"69.4\\\",\\\"10.0\\\",\\\"46.5\\\",\\\"7.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-23\\\",\\\"22.9\\\",\\\"8.1\\\",\\\"58.3\\\",\\\"8.0\\\",\\\"69.7\\\",\\\"10.0\\\",\\\"46.8\\\",\\\"7.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-24\\\",\\\"22.9\\\",\\\"8.0\\\",\\\"58.6\\\",\\\"8.0\\\",\\\"70.1\\\",\\\"9.9\\\",\\\"47.1\\\",\\\"7.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-25\\\",\\\"22.9\\\",\\\"8.0\\\",\\\"58.9\\\",\\\"7.9\\\",\\\"70.4\\\",\\\"9.9\\\",\\\"47.4\\\",\\\"7.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-26\\\",\\\"22.9\\\",\\\"8.0\\\",\\\"59.2\\\",\\\"7.9\\\",\\\"70.7\\\",\\\"9.8\\\",\\\"47.7\\\",\\\"7.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-27\\\",\\\"22.9\\\",\\\"8.0\\\",\\\"59.5\\\",\\\"7.8\\\",\\\"71.0\\\",\\\"9.8\\\",\\\"48.1\\\",\\\"7.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-28\\\",\\\"22.9\\\",\\\"8.0\\\",\\\"59.8\\\",\\\"7.8\\\",\\\"71.3\\\",\\\"9.7\\\",\\\"48.4\\\",\\\"7.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-29\\\",\\\"22.9\\\",\\\"7.9\\\",\\\"60.1\\\",\\\"7.8\\\",\\\"71.6\\\",\\\"9.7\\\",\\\"48.7\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"04-30\\\",\\\"22.9\\\",\\\"7.9\\\",\\\"60.4\\\",\\\"7.7\\\",\\\"71.9\\\",\\\"9.6\\\",\\\"49.0\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-01\\\",\\\"22.9\\\",\\\"7.9\\\",\\\"60.7\\\",\\\"7.7\\\",\\\"72.2\\\",\\\"9.6\\\",\\\"49.3\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-02\\\",\\\"22.9\\\",\\\"7.9\\\",\\\"61.0\\\",\\\"7.7\\\",\\\"72.5\\\",\\\"9.6\\\",\\\"49.6\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-03\\\",\\\"22.8\\\",\\\"7.8\\\",\\\"61.3\\\",\\\"7.7\\\",\\\"72.8\\\",\\\"9.6\\\",\\\"49.9\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-04\\\",\\\"22.8\\\",\\\"7.8\\\",\\\"61.6\\\",\\\"7.7\\\",\\\"73.1\\\",\\\"9.5\\\",\\\"50.2\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-05\\\",\\\"22.8\\\",\\\"7.8\\\",\\\"61.9\\\",\\\"7.7\\\",\\\"73.3\\\",\\\"9.5\\\",\\\"50.6\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-06\\\",\\\"22.7\\\",\\\"7.7\\\",\\\"62.2\\\",\\\"7.6\\\",\\\"73.6\\\",\\\"9.5\\\",\\\"50.9\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-07\\\",\\\"22.7\\\",\\\"7.7\\\",\\\"62.5\\\",\\\"7.6\\\",\\\"73.9\\\",\\\"9.4\\\",\\\"51.2\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-08\\\",\\\"22.6\\\",\\\"7.7\\\",\\\"62.8\\\",\\\"7.6\\\",\\\"74.2\\\",\\\"9.4\\\",\\\"51.5\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-09\\\",\\\"22.6\\\",\\\"7.7\\\",\\\"63.1\\\",\\\"7.6\\\",\\\"74.4\\\",\\\"9.4\\\",\\\"51.8\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-10\\\",\\\"22.5\\\",\\\"7.6\\\",\\\"63.4\\\",\\\"7.6\\\",\\\"74.7\\\",\\\"9.4\\\",\\\"52.2\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-11\\\",\\\"22.5\\\",\\\"7.6\\\",\\\"63.7\\\",\\\"7.6\\\",\\\"75.0\\\",\\\"9.3\\\",\\\"52.5\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-12\\\",\\\"22.4\\\",\\\"7.6\\\",\\\"64.1\\\",\\\"7.6\\\",\\\"75.3\\\",\\\"9.3\\\",\\\"52.8\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-13\\\",\\\"22.4\\\",\\\"7.5\\\",\\\"64.4\\\",\\\"7.6\\\",\\\"75.5\\\",\\\"9.3\\\",\\\"53.2\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-14\\\",\\\"22.3\\\",\\\"7.5\\\",\\\"64.7\\\",\\\"7.6\\\",\\\"75.8\\\",\\\"9.3\\\",\\\"53.5\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-15\\\",\\\"22.3\\\",\\\"7.5\\\",\\\"65.0\\\",\\\"7.6\\\",\\\"76.1\\\",\\\"9.3\\\",\\\"53.8\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-16\\\",\\\"22.2\\\",\\\"7.4\\\",\\\"65.3\\\",\\\"7.6\\\",\\\"76.4\\\",\\\"9.3\\\",\\\"54.2\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-17\\\",\\\"22.2\\\",\\\"7.4\\\",\\\"65.6\\\",\\\"7.6\\\",\\\"76.7\\\",\\\"9.2\\\",\\\"54.5\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-18\\\",\\\"22.1\\\",\\\"7.3\\\",\\\"65.9\\\",\\\"7.5\\\",\\\"76.9\\\",\\\"9.2\\\",\\\"54.8\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-19\\\",\\\"22.0\\\",\\\"7.3\\\",\\\"66.2\\\",\\\"7.6\\\",\\\"77.2\\\",\\\"9.2\\\",\\\"55.2\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-20\\\",\\\"22.0\\\",\\\"7.2\\\",\\\"66.5\\\",\\\"7.6\\\",\\\"77.5\\\",\\\"9.2\\\",\\\"55.5\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-21\\\",\\\"21.9\\\",\\\"7.2\\\",\\\"66.8\\\",\\\"7.6\\\",\\\"77.8\\\",\\\"9.2\\\",\\\"55.8\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-22\\\",\\\"21.9\\\",\\\"7.1\\\",\\\"67.1\\\",\\\"7.6\\\",\\\"78.1\\\",\\\"9.2\\\",\\\"56.2\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-23\\\",\\\"21.8\\\",\\\"7.1\\\",\\\"67.4\\\",\\\"7.6\\\",\\\"78.3\\\",\\\"9.1\\\",\\\"56.5\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-24\\\",\\\"21.8\\\",\\\"7.1\\\",\\\"67.7\\\",\\\"7.6\\\",\\\"78.6\\\",\\\"9.1\\\",\\\"56.9\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-25\\\",\\\"21.7\\\",\\\"7.0\\\",\\\"68.1\\\",\\\"7.5\\\",\\\"78.9\\\",\\\"9.1\\\",\\\"57.2\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-26\\\",\\\"21.7\\\",\\\"7.0\\\",\\\"68.4\\\",\\\"7.5\\\",\\\"79.2\\\",\\\"9.1\\\",\\\"57.5\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-27\\\",\\\"21.6\\\",\\\"6.9\\\",\\\"68.7\\\",\\\"7.5\\\",\\\"79.5\\\",\\\"9.0\\\",\\\"57.9\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-28\\\",\\\"21.6\\\",\\\"6.9\\\",\\\"69.0\\\",\\\"7.5\\\",\\\"79.8\\\",\\\"9.0\\\",\\\"58.2\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-29\\\",\\\"21.5\\\",\\\"6.8\\\",\\\"69.3\\\",\\\"7.4\\\",\\\"80.1\\\",\\\"8.9\\\",\\\"58.6\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-30\\\",\\\"21.5\\\",\\\"6.8\\\",\\\"69.6\\\",\\\"7.4\\\",\\\"80.4\\\",\\\"8.8\\\",\\\"58.9\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"05-31\\\",\\\"21.4\\\",\\\"6.7\\\",\\\"70.0\\\",\\\"7.4\\\",\\\"80.7\\\",\\\"8.8\\\",\\\"59.2\\\",\\\"7.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-01\\\",\\\"21.4\\\",\\\"6.7\\\",\\\"70.3\\\",\\\"7.3\\\",\\\"81.0\\\",\\\"8.7\\\",\\\"59.6\\\",\\\"7.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-02\\\",\\\"21.3\\\",\\\"6.6\\\",\\\"70.6\\\",\\\"7.3\\\",\\\"81.2\\\",\\\"8.6\\\",\\\"59.9\\\",\\\"7.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-03\\\",\\\"21.3\\\",\\\"6.6\\\",\\\"70.9\\\",\\\"7.2\\\",\\\"81.5\\\",\\\"8.6\\\",\\\"60.3\\\",\\\"7.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-04\\\",\\\"21.2\\\",\\\"6.5\\\",\\\"71.2\\\",\\\"7.2\\\",\\\"81.8\\\",\\\"8.5\\\",\\\"60.6\\\",\\\"7.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-05\\\",\\\"21.2\\\",\\\"6.4\\\",\\\"71.5\\\",\\\"7.1\\\",\\\"82.1\\\",\\\"8.4\\\",\\\"60.9\\\",\\\"7.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-06\\\",\\\"21.2\\\",\\\"6.4\\\",\\\"71.8\\\",\\\"7.1\\\",\\\"82.4\\\",\\\"8.3\\\",\\\"61.3\\\",\\\"7.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-07\\\",\\\"21.1\\\",\\\"6.3\\\",\\\"72.1\\\",\\\"7.0\\\",\\\"82.7\\\",\\\"8.2\\\",\\\"61.6\\\",\\\"7.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-08\\\",\\\"21.1\\\",\\\"6.2\\\",\\\"72.5\\\",\\\"6.9\\\",\\\"83.0\\\",\\\"8.1\\\",\\\"61.9\\\",\\\"7.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-09\\\",\\\"21.0\\\",\\\"6.2\\\",\\\"72.8\\\",\\\"6.8\\\",\\\"83.3\\\",\\\"8.0\\\",\\\"62.2\\\",\\\"7.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-10\\\",\\\"21.0\\\",\\\"6.1\\\",\\\"73.1\\\",\\\"6.8\\\",\\\"83.6\\\",\\\"7.8\\\",\\\"62.6\\\",\\\"7.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-11\\\",\\\"20.9\\\",\\\"6.1\\\",\\\"73.4\\\",\\\"6.7\\\",\\\"83.8\\\",\\\"7.7\\\",\\\"62.9\\\",\\\"7.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-12\\\",\\\"20.9\\\",\\\"6.0\\\",\\\"73.7\\\",\\\"6.6\\\",\\\"84.1\\\",\\\"7.6\\\",\\\"63.2\\\",\\\"6.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-13\\\",\\\"20.9\\\",\\\"6.0\\\",\\\"73.9\\\",\\\"6.5\\\",\\\"84.4\\\",\\\"7.5\\\",\\\"63.5\\\",\\\"6.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-14\\\",\\\"20.8\\\",\\\"6.0\\\",\\\"74.2\\\",\\\"6.5\\\",\\\"84.6\\\",\\\"7.4\\\",\\\"63.8\\\",\\\"6.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-15\\\",\\\"20.8\\\",\\\"5.9\\\",\\\"74.5\\\",\\\"6.4\\\",\\\"84.9\\\",\\\"7.3\\\",\\\"64.1\\\",\\\"6.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-16\\\",\\\"20.7\\\",\\\"5.9\\\",\\\"74.8\\\",\\\"6.3\\\",\\\"85.1\\\",\\\"7.2\\\",\\\"64.4\\\",\\\"6.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-17\\\",\\\"20.7\\\",\\\"5.9\\\",\\\"75.1\\\",\\\"6.3\\\",\\\"85.4\\\",\\\"7.1\\\",\\\"64.7\\\",\\\"6.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-18\\\",\\\"20.6\\\",\\\"5.9\\\",\\\"75.3\\\",\\\"6.2\\\",\\\"85.6\\\",\\\"7.1\\\",\\\"65.0\\\",\\\"6.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-19\\\",\\\"20.6\\\",\\\"5.8\\\",\\\"75.6\\\",\\\"6.2\\\",\\\"85.9\\\",\\\"7.0\\\",\\\"65.3\\\",\\\"6.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-20\\\",\\\"20.5\\\",\\\"5.8\\\",\\\"75.8\\\",\\\"6.1\\\",\\\"86.1\\\",\\\"6.9\\\",\\\"65.6\\\",\\\"6.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-21\\\",\\\"20.5\\\",\\\"5.8\\\",\\\"76.1\\\",\\\"6.1\\\",\\\"86.3\\\",\\\"6.9\\\",\\\"65.8\\\",\\\"6.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-22\\\",\\\"20.4\\\",\\\"5.8\\\",\\\"76.3\\\",\\\"6.0\\\",\\\"86.5\\\",\\\"6.8\\\",\\\"66.1\\\",\\\"6.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-23\\\",\\\"20.3\\\",\\\"5.7\\\",\\\"76.5\\\",\\\"6.0\\\",\\\"86.7\\\",\\\"6.7\\\",\\\"66.4\\\",\\\"6.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-24\\\",\\\"20.3\\\",\\\"5.7\\\",\\\"76.8\\\",\\\"5.9\\\",\\\"86.9\\\",\\\"6.7\\\",\\\"66.6\\\",\\\"6.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-25\\\",\\\"20.2\\\",\\\"5.7\\\",\\\"77.0\\\",\\\"5.9\\\",\\\"87.1\\\",\\\"6.6\\\",\\\"66.9\\\",\\\"6.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-26\\\",\\\"20.2\\\",\\\"5.7\\\",\\\"77.2\\\",\\\"5.8\\\",\\\"87.3\\\",\\\"6.6\\\",\\\"67.1\\\",\\\"6.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-27\\\",\\\"20.1\\\",\\\"5.6\\\",\\\"77.4\\\",\\\"5.8\\\",\\\"87.4\\\",\\\"6.6\\\",\\\"67.3\\\",\\\"6.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-28\\\",\\\"20.0\\\",\\\"5.6\\\",\\\"77.6\\\",\\\"5.8\\\",\\\"87.6\\\",\\\"6.5\\\",\\\"67.6\\\",\\\"6.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-29\\\",\\\"20.0\\\",\\\"5.6\\\",\\\"77.7\\\",\\\"5.7\\\",\\\"87.7\\\",\\\"6.5\\\",\\\"67.8\\\",\\\"6.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"06-30\\\",\\\"19.9\\\",\\\"5.6\\\",\\\"77.9\\\",\\\"5.7\\\",\\\"87.9\\\",\\\"6.4\\\",\\\"68.0\\\",\\\"6.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-01\\\",\\\"19.8\\\",\\\"5.6\\\",\\\"78.1\\\",\\\"5.7\\\",\\\"88.0\\\",\\\"6.4\\\",\\\"68.2\\\",\\\"6.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-02\\\",\\\"19.8\\\",\\\"5.5\\\",\\\"78.2\\\",\\\"5.6\\\",\\\"88.1\\\",\\\"6.3\\\",\\\"68.3\\\",\\\"6.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-03\\\",\\\"19.7\\\",\\\"5.5\\\",\\\"78.4\\\",\\\"5.6\\\",\\\"88.2\\\",\\\"6.3\\\",\\\"68.5\\\",\\\"6.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-04\\\",\\\"19.7\\\",\\\"5.5\\\",\\\"78.5\\\",\\\"5.6\\\",\\\"88.3\\\",\\\"6.2\\\",\\\"68.7\\\",\\\"6.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-05\\\",\\\"19.6\\\",\\\"5.5\\\",\\\"78.6\\\",\\\"5.5\\\",\\\"88.4\\\",\\\"6.2\\\",\\\"68.8\\\",\\\"6.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-06\\\",\\\"19.5\\\",\\\"5.4\\\",\\\"78.7\\\",\\\"5.5\\\",\\\"88.5\\\",\\\"6.2\\\",\\\"69.0\\\",\\\"6.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-07\\\",\\\"19.5\\\",\\\"5.4\\\",\\\"78.8\\\",\\\"5.5\\\",\\\"88.6\\\",\\\"6.1\\\",\\\"69.1\\\",\\\"6.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-08\\\",\\\"19.4\\\",\\\"5.4\\\",\\\"78.9\\\",\\\"5.4\\\",\\\"88.7\\\",\\\"6.1\\\",\\\"69.2\\\",\\\"6.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-09\\\",\\\"19.4\\\",\\\"5.4\\\",\\\"79.0\\\",\\\"5.4\\\",\\\"88.7\\\",\\\"6.1\\\",\\\"69.3\\\",\\\"6.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-10\\\",\\\"19.3\\\",\\\"5.4\\\",\\\"79.1\\\",\\\"5.4\\\",\\\"88.8\\\",\\\"6.1\\\",\\\"69.4\\\",\\\"5.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-11\\\",\\\"19.3\\\",\\\"5.3\\\",\\\"79.2\\\",\\\"5.4\\\",\\\"88.8\\\",\\\"6.1\\\",\\\"69.5\\\",\\\"5.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-12\\\",\\\"19.2\\\",\\\"5.3\\\",\\\"79.2\\\",\\\"5.3\\\",\\\"88.8\\\",\\\"6.1\\\",\\\"69.6\\\",\\\"5.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-13\\\",\\\"19.2\\\",\\\"5.3\\\",\\\"79.3\\\",\\\"5.3\\\",\\\"88.9\\\",\\\"6.1\\\",\\\"69.7\\\",\\\"5.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-14\\\",\\\"19.2\\\",\\\"5.3\\\",\\\"79.3\\\",\\\"5.3\\\",\\\"88.9\\\",\\\"6.1\\\",\\\"69.7\\\",\\\"5.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-15\\\",\\\"19.1\\\",\\\"5.2\\\",\\\"79.3\\\",\\\"5.3\\\",\\\"88.9\\\",\\\"6.1\\\",\\\"69.8\\\",\\\"5.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-16\\\",\\\"19.1\\\",\\\"5.2\\\",\\\"79.4\\\",\\\"5.3\\\",\\\"88.9\\\",\\\"6.1\\\",\\\"69.8\\\",\\\"5.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-17\\\",\\\"19.1\\\",\\\"5.2\\\",\\\"79.4\\\",\\\"5.3\\\",\\\"88.9\\\",\\\"6.1\\\",\\\"69.8\\\",\\\"5.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-18\\\",\\\"19.1\\\",\\\"5.2\\\",\\\"79.4\\\",\\\"5.3\\\",\\\"88.9\\\",\\\"6.1\\\",\\\"69.9\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-19\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.4\\\",\\\"5.2\\\",\\\"88.9\\\",\\\"6.0\\\",\\\"69.9\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-20\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.4\\\",\\\"5.2\\\",\\\"88.9\\\",\\\"6.0\\\",\\\"69.8\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-21\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.4\\\",\\\"5.2\\\",\\\"88.9\\\",\\\"6.0\\\",\\\"69.8\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-22\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.3\\\",\\\"5.2\\\",\\\"88.9\\\",\\\"6.0\\\",\\\"69.8\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-23\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.3\\\",\\\"5.2\\\",\\\"88.9\\\",\\\"6.0\\\",\\\"69.8\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-24\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.3\\\",\\\"5.2\\\",\\\"88.8\\\",\\\"6.0\\\",\\\"69.7\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-25\\\",\\\"19.1\\\",\\\"5.1\\\",\\\"79.2\\\",\\\"5.2\\\",\\\"88.8\\\",\\\"6.0\\\",\\\"69.7\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-26\\\",\\\"19.2\\\",\\\"5.1\\\",\\\"79.2\\\",\\\"5.2\\\",\\\"88.8\\\",\\\"6.0\\\",\\\"69.6\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-27\\\",\\\"19.2\\\",\\\"5.1\\\",\\\"79.1\\\",\\\"5.2\\\",\\\"88.7\\\",\\\"6.0\\\",\\\"69.5\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-28\\\",\\\"19.3\\\",\\\"5.1\\\",\\\"79.1\\\",\\\"5.2\\\",\\\"88.7\\\",\\\"6.0\\\",\\\"69.5\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-29\\\",\\\"19.3\\\",\\\"5.1\\\",\\\"79.0\\\",\\\"5.2\\\",\\\"88.7\\\",\\\"6.0\\\",\\\"69.4\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-30\\\",\\\"19.4\\\",\\\"5.2\\\",\\\"79.0\\\",\\\"5.2\\\",\\\"88.6\\\",\\\"6.1\\\",\\\"69.3\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"07-31\\\",\\\"19.4\\\",\\\"5.2\\\",\\\"78.9\\\",\\\"5.2\\\",\\\"88.6\\\",\\\"6.1\\\",\\\"69.2\\\",\\\"5.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-01\\\",\\\"19.5\\\",\\\"5.2\\\",\\\"78.8\\\",\\\"5.2\\\",\\\"88.6\\\",\\\"6.1\\\",\\\"69.1\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-02\\\",\\\"19.6\\\",\\\"5.3\\\",\\\"78.7\\\",\\\"5.3\\\",\\\"88.5\\\",\\\"6.1\\\",\\\"69.0\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-03\\\",\\\"19.6\\\",\\\"5.3\\\",\\\"78.7\\\",\\\"5.3\\\",\\\"88.5\\\",\\\"6.2\\\",\\\"68.8\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-04\\\",\\\"19.7\\\",\\\"5.4\\\",\\\"78.6\\\",\\\"5.3\\\",\\\"88.4\\\",\\\"6.2\\\",\\\"68.7\\\",\\\"5.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-05\\\",\\\"19.8\\\",\\\"5.4\\\",\\\"78.5\\\",\\\"5.3\\\",\\\"88.4\\\",\\\"6.2\\\",\\\"68.6\\\",\\\"5.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-06\\\",\\\"19.9\\\",\\\"5.5\\\",\\\"78.4\\\",\\\"5.4\\\",\\\"88.3\\\",\\\"6.3\\\",\\\"68.5\\\",\\\"5.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-07\\\",\\\"19.9\\\",\\\"5.5\\\",\\\"78.3\\\",\\\"5.4\\\",\\\"88.3\\\",\\\"6.3\\\",\\\"68.3\\\",\\\"5.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-08\\\",\\\"20.0\\\",\\\"5.6\\\",\\\"78.2\\\",\\\"5.4\\\",\\\"88.2\\\",\\\"6.3\\\",\\\"68.2\\\",\\\"5.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-09\\\",\\\"20.1\\\",\\\"5.6\\\",\\\"78.1\\\",\\\"5.5\\\",\\\"88.2\\\",\\\"6.4\\\",\\\"68.1\\\",\\\"5.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-10\\\",\\\"20.2\\\",\\\"5.7\\\",\\\"78.0\\\",\\\"5.5\\\",\\\"88.1\\\",\\\"6.4\\\",\\\"67.9\\\",\\\"5.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-11\\\",\\\"20.3\\\",\\\"5.7\\\",\\\"77.9\\\",\\\"5.5\\\",\\\"88.0\\\",\\\"6.5\\\",\\\"67.8\\\",\\\"5.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-12\\\",\\\"20.3\\\",\\\"5.8\\\",\\\"77.8\\\",\\\"5.6\\\",\\\"88.0\\\",\\\"6.5\\\",\\\"67.6\\\",\\\"6.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-13\\\",\\\"20.4\\\",\\\"5.8\\\",\\\"77.7\\\",\\\"5.6\\\",\\\"87.9\\\",\\\"6.5\\\",\\\"67.5\\\",\\\"6.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-14\\\",\\\"20.5\\\",\\\"5.9\\\",\\\"77.6\\\",\\\"5.6\\\",\\\"87.8\\\",\\\"6.5\\\",\\\"67.3\\\",\\\"6.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-15\\\",\\\"20.6\\\",\\\"5.9\\\",\\\"77.4\\\",\\\"5.7\\\",\\\"87.7\\\",\\\"6.6\\\",\\\"67.2\\\",\\\"6.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-16\\\",\\\"20.6\\\",\\\"6.0\\\",\\\"77.3\\\",\\\"5.7\\\",\\\"87.6\\\",\\\"6.6\\\",\\\"67.0\\\",\\\"6.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-17\\\",\\\"20.7\\\",\\\"6.0\\\",\\\"77.2\\\",\\\"5.7\\\",\\\"87.5\\\",\\\"6.6\\\",\\\"66.8\\\",\\\"6.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-18\\\",\\\"20.8\\\",\\\"6.0\\\",\\\"77.1\\\",\\\"5.8\\\",\\\"87.4\\\",\\\"6.6\\\",\\\"66.7\\\",\\\"6.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-19\\\",\\\"20.8\\\",\\\"6.1\\\",\\\"76.9\\\",\\\"5.8\\\",\\\"87.3\\\",\\\"6.6\\\",\\\"66.5\\\",\\\"6.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-20\\\",\\\"20.9\\\",\\\"6.1\\\",\\\"76.8\\\",\\\"5.8\\\",\\\"87.2\\\",\\\"6.6\\\",\\\"66.4\\\",\\\"6.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-21\\\",\\\"20.9\\\",\\\"6.2\\\",\\\"76.6\\\",\\\"5.9\\\",\\\"87.1\\\",\\\"6.7\\\",\\\"66.2\\\",\\\"6.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-22\\\",\\\"21.0\\\",\\\"6.2\\\",\\\"76.5\\\",\\\"5.9\\\",\\\"87.0\\\",\\\"6.7\\\",\\\"66.0\\\",\\\"6.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-23\\\",\\\"21.0\\\",\\\"6.2\\\",\\\"76.3\\\",\\\"6.0\\\",\\\"86.8\\\",\\\"6.8\\\",\\\"65.8\\\",\\\"6.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-24\\\",\\\"21.0\\\",\\\"6.3\\\",\\\"76.2\\\",\\\"6.0\\\",\\\"86.7\\\",\\\"6.8\\\",\\\"65.7\\\",\\\"6.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-25\\\",\\\"21.0\\\",\\\"6.3\\\",\\\"76.0\\\",\\\"6.0\\\",\\\"86.5\\\",\\\"6.8\\\",\\\"65.5\\\",\\\"6.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-26\\\",\\\"21.1\\\",\\\"6.3\\\",\\\"75.8\\\",\\\"6.1\\\",\\\"86.4\\\",\\\"6.8\\\",\\\"65.3\\\",\\\"6.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-27\\\",\\\"21.1\\\",\\\"6.4\\\",\\\"75.6\\\",\\\"6.1\\\",\\\"86.2\\\",\\\"6.8\\\",\\\"65.1\\\",\\\"6.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-28\\\",\\\"21.1\\\",\\\"6.4\\\",\\\"75.4\\\",\\\"6.2\\\",\\\"86.0\\\",\\\"6.9\\\",\\\"64.9\\\",\\\"7.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-29\\\",\\\"21.1\\\",\\\"6.4\\\",\\\"75.2\\\",\\\"6.2\\\",\\\"85.8\\\",\\\"6.9\\\",\\\"64.7\\\",\\\"7.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-30\\\",\\\"21.1\\\",\\\"6.4\\\",\\\"75.0\\\",\\\"6.3\\\",\\\"85.6\\\",\\\"6.9\\\",\\\"64.5\\\",\\\"7.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"08-31\\\",\\\"21.1\\\",\\\"6.5\\\",\\\"74.8\\\",\\\"6.3\\\",\\\"85.4\\\",\\\"7.0\\\",\\\"64.3\\\",\\\"7.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-01\\\",\\\"21.1\\\",\\\"6.5\\\",\\\"74.6\\\",\\\"6.4\\\",\\\"85.1\\\",\\\"7.0\\\",\\\"64.1\\\",\\\"7.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-02\\\",\\\"21.1\\\",\\\"6.5\\\",\\\"74.4\\\",\\\"6.4\\\",\\\"84.9\\\",\\\"7.0\\\",\\\"63.8\\\",\\\"7.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-03\\\",\\\"21.0\\\",\\\"6.5\\\",\\\"74.1\\\",\\\"6.4\\\",\\\"84.6\\\",\\\"7.0\\\",\\\"63.6\\\",\\\"7.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-04\\\",\\\"21.0\\\",\\\"6.6\\\",\\\"73.9\\\",\\\"6.5\\\",\\\"84.4\\\",\\\"7.1\\\",\\\"63.4\\\",\\\"7.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-05\\\",\\\"21.0\\\",\\\"6.6\\\",\\\"73.6\\\",\\\"6.6\\\",\\\"84.1\\\",\\\"7.1\\\",\\\"63.1\\\",\\\"7.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-06\\\",\\\"21.0\\\",\\\"6.6\\\",\\\"73.3\\\",\\\"6.6\\\",\\\"83.8\\\",\\\"7.1\\\",\\\"62.9\\\",\\\"7.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-07\\\",\\\"20.9\\\",\\\"6.6\\\",\\\"73.1\\\",\\\"6.6\\\",\\\"83.5\\\",\\\"7.1\\\",\\\"62.6\\\",\\\"7.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-08\\\",\\\"20.9\\\",\\\"6.6\\\",\\\"72.8\\\",\\\"6.7\\\",\\\"83.2\\\",\\\"7.2\\\",\\\"62.3\\\",\\\"7.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-09\\\",\\\"20.9\\\",\\\"6.6\\\",\\\"72.5\\\",\\\"6.7\\\",\\\"82.9\\\",\\\"7.2\\\",\\\"62.0\\\",\\\"7.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-10\\\",\\\"20.8\\\",\\\"6.6\\\",\\\"72.2\\\",\\\"6.8\\\",\\\"82.6\\\",\\\"7.3\\\",\\\"61.7\\\",\\\"7.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-11\\\",\\\"20.8\\\",\\\"6.7\\\",\\\"71.8\\\",\\\"6.8\\\",\\\"82.2\\\",\\\"7.3\\\",\\\"61.4\\\",\\\"7.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-12\\\",\\\"20.8\\\",\\\"6.7\\\",\\\"71.5\\\",\\\"6.9\\\",\\\"81.9\\\",\\\"7.3\\\",\\\"61.1\\\",\\\"8.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-13\\\",\\\"20.7\\\",\\\"6.7\\\",\\\"71.2\\\",\\\"6.9\\\",\\\"81.6\\\",\\\"7.4\\\",\\\"60.8\\\",\\\"8.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-14\\\",\\\"20.7\\\",\\\"6.7\\\",\\\"70.8\\\",\\\"6.9\\\",\\\"81.2\\\",\\\"7.4\\\",\\\"60.5\\\",\\\"8.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-15\\\",\\\"20.7\\\",\\\"6.8\\\",\\\"70.5\\\",\\\"7.0\\\",\\\"80.8\\\",\\\"7.5\\\",\\\"60.1\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-16\\\",\\\"20.7\\\",\\\"6.8\\\",\\\"70.1\\\",\\\"7.0\\\",\\\"80.5\\\",\\\"7.5\\\",\\\"59.8\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-17\\\",\\\"20.7\\\",\\\"6.8\\\",\\\"69.7\\\",\\\"7.1\\\",\\\"80.1\\\",\\\"7.6\\\",\\\"59.4\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-18\\\",\\\"20.6\\\",\\\"6.8\\\",\\\"69.4\\\",\\\"7.1\\\",\\\"79.7\\\",\\\"7.6\\\",\\\"59.0\\\",\\\"8.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-19\\\",\\\"20.6\\\",\\\"6.8\\\",\\\"69.0\\\",\\\"7.1\\\",\\\"79.3\\\",\\\"7.7\\\",\\\"58.7\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-20\\\",\\\"20.6\\\",\\\"6.8\\\",\\\"68.6\\\",\\\"7.2\\\",\\\"78.9\\\",\\\"7.7\\\",\\\"58.3\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-21\\\",\\\"20.6\\\",\\\"6.8\\\",\\\"68.2\\\",\\\"7.2\\\",\\\"78.5\\\",\\\"7.8\\\",\\\"57.9\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-22\\\",\\\"20.6\\\",\\\"6.8\\\",\\\"67.8\\\",\\\"7.2\\\",\\\"78.1\\\",\\\"7.8\\\",\\\"57.5\\\",\\\"8.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-23\\\",\\\"20.6\\\",\\\"6.8\\\",\\\"67.4\\\",\\\"7.3\\\",\\\"77.7\\\",\\\"7.9\\\",\\\"57.0\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-24\\\",\\\"20.7\\\",\\\"6.8\\\",\\\"66.9\\\",\\\"7.4\\\",\\\"77.3\\\",\\\"7.9\\\",\\\"56.6\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-25\\\",\\\"20.7\\\",\\\"6.8\\\",\\\"66.5\\\",\\\"7.4\\\",\\\"76.9\\\",\\\"8.0\\\",\\\"56.2\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-26\\\",\\\"20.7\\\",\\\"6.8\\\",\\\"66.1\\\",\\\"7.4\\\",\\\"76.5\\\",\\\"8.0\\\",\\\"55.7\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-27\\\",\\\"20.8\\\",\\\"6.8\\\",\\\"65.7\\\",\\\"7.4\\\",\\\"76.1\\\",\\\"8.1\\\",\\\"55.3\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-28\\\",\\\"20.8\\\",\\\"6.8\\\",\\\"65.2\\\",\\\"7.5\\\",\\\"75.7\\\",\\\"8.1\\\",\\\"54.8\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-29\\\",\\\"20.9\\\",\\\"6.8\\\",\\\"64.8\\\",\\\"7.5\\\",\\\"75.2\\\",\\\"8.1\\\",\\\"54.4\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"09-30\\\",\\\"20.9\\\",\\\"6.8\\\",\\\"64.4\\\",\\\"7.5\\\",\\\"74.8\\\",\\\"8.1\\\",\\\"53.9\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-01\\\",\\\"21.0\\\",\\\"6.8\\\",\\\"64.0\\\",\\\"7.5\\\",\\\"74.4\\\",\\\"8.1\\\",\\\"53.5\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-02\\\",\\\"21.0\\\",\\\"6.8\\\",\\\"63.5\\\",\\\"7.6\\\",\\\"74.0\\\",\\\"8.2\\\",\\\"53.0\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-03\\\",\\\"21.1\\\",\\\"6.8\\\",\\\"63.1\\\",\\\"7.6\\\",\\\"73.6\\\",\\\"8.2\\\",\\\"52.5\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-04\\\",\\\"21.2\\\",\\\"6.9\\\",\\\"62.7\\\",\\\"7.6\\\",\\\"73.3\\\",\\\"8.2\\\",\\\"52.1\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-05\\\",\\\"21.3\\\",\\\"6.9\\\",\\\"62.2\\\",\\\"7.6\\\",\\\"72.9\\\",\\\"8.2\\\",\\\"51.6\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-06\\\",\\\"21.3\\\",\\\"6.9\\\",\\\"61.8\\\",\\\"7.6\\\",\\\"72.5\\\",\\\"8.2\\\",\\\"51.1\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-07\\\",\\\"21.4\\\",\\\"7.0\\\",\\\"61.4\\\",\\\"7.6\\\",\\\"72.1\\\",\\\"8.2\\\",\\\"50.7\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-08\\\",\\\"21.5\\\",\\\"7.0\\\",\\\"61.0\\\",\\\"7.6\\\",\\\"71.7\\\",\\\"8.2\\\",\\\"50.2\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-09\\\",\\\"21.6\\\",\\\"7.0\\\",\\\"60.6\\\",\\\"7.6\\\",\\\"71.4\\\",\\\"8.2\\\",\\\"49.7\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-10\\\",\\\"21.7\\\",\\\"7.1\\\",\\\"60.1\\\",\\\"7.6\\\",\\\"71.0\\\",\\\"8.2\\\",\\\"49.3\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-11\\\",\\\"21.8\\\",\\\"7.1\\\",\\\"59.7\\\",\\\"7.6\\\",\\\"70.6\\\",\\\"8.3\\\",\\\"48.8\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-12\\\",\\\"21.9\\\",\\\"7.1\\\",\\\"59.3\\\",\\\"7.6\\\",\\\"70.3\\\",\\\"8.3\\\",\\\"48.4\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-13\\\",\\\"22.0\\\",\\\"7.2\\\",\\\"59.0\\\",\\\"7.6\\\",\\\"69.9\\\",\\\"8.3\\\",\\\"48.0\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-14\\\",\\\"22.1\\\",\\\"7.2\\\",\\\"58.6\\\",\\\"7.5\\\",\\\"69.6\\\",\\\"8.3\\\",\\\"47.5\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-15\\\",\\\"22.2\\\",\\\"7.3\\\",\\\"58.2\\\",\\\"7.5\\\",\\\"69.3\\\",\\\"8.3\\\",\\\"47.1\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-16\\\",\\\"22.3\\\",\\\"7.4\\\",\\\"57.8\\\",\\\"7.5\\\",\\\"68.9\\\",\\\"8.4\\\",\\\"46.7\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-17\\\",\\\"22.3\\\",\\\"7.4\\\",\\\"57.4\\\",\\\"7.5\\\",\\\"68.6\\\",\\\"8.4\\\",\\\"46.3\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-18\\\",\\\"22.4\\\",\\\"7.5\\\",\\\"57.1\\\",\\\"7.5\\\",\\\"68.3\\\",\\\"8.4\\\",\\\"45.9\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-19\\\",\\\"22.5\\\",\\\"7.6\\\",\\\"56.7\\\",\\\"7.5\\\",\\\"68.0\\\",\\\"8.4\\\",\\\"45.5\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-20\\\",\\\"22.5\\\",\\\"7.6\\\",\\\"56.4\\\",\\\"7.6\\\",\\\"67.7\\\",\\\"8.4\\\",\\\"45.1\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-21\\\",\\\"22.6\\\",\\\"7.7\\\",\\\"56.0\\\",\\\"7.6\\\",\\\"67.3\\\",\\\"8.5\\\",\\\"44.7\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-22\\\",\\\"22.7\\\",\\\"7.7\\\",\\\"55.7\\\",\\\"7.5\\\",\\\"67.0\\\",\\\"8.5\\\",\\\"44.4\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-23\\\",\\\"22.7\\\",\\\"7.8\\\",\\\"55.4\\\",\\\"7.5\\\",\\\"66.7\\\",\\\"8.5\\\",\\\"44.0\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-24\\\",\\\"22.7\\\",\\\"7.8\\\",\\\"55.1\\\",\\\"7.5\\\",\\\"66.4\\\",\\\"8.6\\\",\\\"43.7\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-25\\\",\\\"22.8\\\",\\\"7.9\\\",\\\"54.7\\\",\\\"7.5\\\",\\\"66.1\\\",\\\"8.6\\\",\\\"43.4\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-26\\\",\\\"22.8\\\",\\\"7.9\\\",\\\"54.4\\\",\\\"7.5\\\",\\\"65.8\\\",\\\"8.7\\\",\\\"43.0\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-27\\\",\\\"22.8\\\",\\\"8.0\\\",\\\"54.1\\\",\\\"7.6\\\",\\\"65.5\\\",\\\"8.7\\\",\\\"42.7\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-28\\\",\\\"22.8\\\",\\\"8.0\\\",\\\"53.8\\\",\\\"7.6\\\",\\\"65.2\\\",\\\"8.8\\\",\\\"42.4\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-29\\\",\\\"22.8\\\",\\\"8.0\\\",\\\"53.5\\\",\\\"7.6\\\",\\\"64.9\\\",\\\"8.8\\\",\\\"42.1\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-30\\\",\\\"22.7\\\",\\\"8.0\\\",\\\"53.2\\\",\\\"7.6\\\",\\\"64.6\\\",\\\"8.9\\\",\\\"41.9\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"10-31\\\",\\\"22.7\\\",\\\"8.0\\\",\\\"52.9\\\",\\\"7.6\\\",\\\"64.3\\\",\\\"8.9\\\",\\\"41.6\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-01\\\",\\\"22.7\\\",\\\"8.0\\\",\\\"52.6\\\",\\\"7.7\\\",\\\"64.0\\\",\\\"9.0\\\",\\\"41.3\\\",\\\"8.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-02\\\",\\\"22.6\\\",\\\"8.0\\\",\\\"52.4\\\",\\\"7.7\\\",\\\"63.7\\\",\\\"9.0\\\",\\\"41.1\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-03\\\",\\\"22.5\\\",\\\"8.0\\\",\\\"52.1\\\",\\\"7.8\\\",\\\"63.3\\\",\\\"9.1\\\",\\\"40.8\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-04\\\",\\\"22.4\\\",\\\"8.0\\\",\\\"51.8\\\",\\\"7.8\\\",\\\"63.0\\\",\\\"9.2\\\",\\\"40.6\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-05\\\",\\\"22.4\\\",\\\"8.0\\\",\\\"51.5\\\",\\\"7.9\\\",\\\"62.7\\\",\\\"9.2\\\",\\\"40.3\\\",\\\"8.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-06\\\",\\\"22.3\\\",\\\"8.0\\\",\\\"51.2\\\",\\\"8.0\\\",\\\"62.4\\\",\\\"9.3\\\",\\\"40.1\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-07\\\",\\\"22.1\\\",\\\"8.0\\\",\\\"51.0\\\",\\\"8.0\\\",\\\"62.0\\\",\\\"9.4\\\",\\\"39.9\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-08\\\",\\\"22.0\\\",\\\"8.0\\\",\\\"50.7\\\",\\\"8.1\\\",\\\"61.7\\\",\\\"9.4\\\",\\\"39.7\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-09\\\",\\\"21.9\\\",\\\"7.9\\\",\\\"50.4\\\",\\\"8.1\\\",\\\"61.3\\\",\\\"9.5\\\",\\\"39.4\\\",\\\"8.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-10\\\",\\\"21.8\\\",\\\"7.9\\\",\\\"50.1\\\",\\\"8.2\\\",\\\"61.0\\\",\\\"9.5\\\",\\\"39.2\\\",\\\"8.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-11\\\",\\\"21.6\\\",\\\"7.9\\\",\\\"49.8\\\",\\\"8.2\\\",\\\"60.6\\\",\\\"9.5\\\",\\\"39.0\\\",\\\"8.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-12\\\",\\\"21.5\\\",\\\"7.8\\\",\\\"49.5\\\",\\\"8.2\\\",\\\"60.2\\\",\\\"9.5\\\",\\\"38.8\\\",\\\"8.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-13\\\",\\\"21.3\\\",\\\"7.8\\\",\\\"49.2\\\",\\\"8.2\\\",\\\"59.9\\\",\\\"9.5\\\",\\\"38.6\\\",\\\"8.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-14\\\",\\\"21.1\\\",\\\"7.8\\\",\\\"48.9\\\",\\\"8.3\\\",\\\"59.5\\\",\\\"9.6\\\",\\\"38.4\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-15\\\",\\\"21.0\\\",\\\"7.7\\\",\\\"48.6\\\",\\\"8.3\\\",\\\"59.1\\\",\\\"9.6\\\",\\\"38.2\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-16\\\",\\\"20.8\\\",\\\"7.7\\\",\\\"48.3\\\",\\\"8.3\\\",\\\"58.7\\\",\\\"9.6\\\",\\\"37.9\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-17\\\",\\\"20.6\\\",\\\"7.6\\\",\\\"48.0\\\",\\\"8.3\\\",\\\"58.3\\\",\\\"9.6\\\",\\\"37.7\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-18\\\",\\\"20.4\\\",\\\"7.6\\\",\\\"47.7\\\",\\\"8.3\\\",\\\"57.9\\\",\\\"9.5\\\",\\\"37.5\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-19\\\",\\\"20.2\\\",\\\"7.6\\\",\\\"47.4\\\",\\\"8.3\\\",\\\"57.5\\\",\\\"9.5\\\",\\\"37.3\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-20\\\",\\\"20.0\\\",\\\"7.5\\\",\\\"47.1\\\",\\\"8.3\\\",\\\"57.1\\\",\\\"9.5\\\",\\\"37.1\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-21\\\",\\\"19.8\\\",\\\"7.5\\\",\\\"46.7\\\",\\\"8.3\\\",\\\"56.7\\\",\\\"9.5\\\",\\\"36.8\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-22\\\",\\\"19.6\\\",\\\"7.4\\\",\\\"46.4\\\",\\\"8.3\\\",\\\"56.2\\\",\\\"9.5\\\",\\\"36.6\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-23\\\",\\\"19.5\\\",\\\"7.4\\\",\\\"46.1\\\",\\\"8.3\\\",\\\"55.8\\\",\\\"9.5\\\",\\\"36.4\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-24\\\",\\\"19.3\\\",\\\"7.4\\\",\\\"45.7\\\",\\\"8.4\\\",\\\"55.4\\\",\\\"9.5\\\",\\\"36.1\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-25\\\",\\\"19.1\\\",\\\"7.3\\\",\\\"45.4\\\",\\\"8.4\\\",\\\"54.9\\\",\\\"9.4\\\",\\\"35.9\\\",\\\"8.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-26\\\",\\\"18.9\\\",\\\"7.3\\\",\\\"45.1\\\",\\\"8.4\\\",\\\"54.5\\\",\\\"9.4\\\",\\\"35.6\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-27\\\",\\\"18.7\\\",\\\"7.3\\\",\\\"44.7\\\",\\\"8.4\\\",\\\"54.1\\\",\\\"9.5\\\",\\\"35.4\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-28\\\",\\\"18.5\\\",\\\"7.2\\\",\\\"44.4\\\",\\\"8.4\\\",\\\"53.6\\\",\\\"9.5\\\",\\\"35.1\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-29\\\",\\\"18.4\\\",\\\"7.2\\\",\\\"44.0\\\",\\\"8.4\\\",\\\"53.2\\\",\\\"9.5\\\",\\\"34.8\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"11-30\\\",\\\"18.2\\\",\\\"7.2\\\",\\\"43.7\\\",\\\"8.5\\\",\\\"52.7\\\",\\\"9.5\\\",\\\"34.6\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-01\\\",\\\"18.0\\\",\\\"7.1\\\",\\\"43.3\\\",\\\"8.5\\\",\\\"52.3\\\",\\\"9.5\\\",\\\"34.3\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-02\\\",\\\"17.9\\\",\\\"7.1\\\",\\\"42.9\\\",\\\"8.5\\\",\\\"51.9\\\",\\\"9.5\\\",\\\"34.0\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-03\\\",\\\"17.7\\\",\\\"7.1\\\",\\\"42.6\\\",\\\"8.5\\\",\\\"51.4\\\",\\\"9.6\\\",\\\"33.7\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-04\\\",\\\"17.6\\\",\\\"7.1\\\",\\\"42.2\\\",\\\"8.5\\\",\\\"51.0\\\",\\\"9.6\\\",\\\"33.4\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-05\\\",\\\"17.4\\\",\\\"7.1\\\",\\\"41.9\\\",\\\"8.6\\\",\\\"50.6\\\",\\\"9.7\\\",\\\"33.2\\\",\\\"8.8\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-06\\\",\\\"17.3\\\",\\\"7.0\\\",\\\"41.5\\\",\\\"8.6\\\",\\\"50.2\\\",\\\"9.7\\\",\\\"32.9\\\",\\\"8.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-07\\\",\\\"17.2\\\",\\\"7.0\\\",\\\"41.2\\\",\\\"8.6\\\",\\\"49.7\\\",\\\"9.8\\\",\\\"32.6\\\",\\\"8.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-08\\\",\\\"17.0\\\",\\\"7.0\\\",\\\"40.8\\\",\\\"8.7\\\",\\\"49.3\\\",\\\"9.8\\\",\\\"32.3\\\",\\\"8.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-09\\\",\\\"16.9\\\",\\\"7.0\\\",\\\"40.5\\\",\\\"8.7\\\",\\\"48.9\\\",\\\"9.9\\\",\\\"32.0\\\",\\\"8.9\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-10\\\",\\\"16.8\\\",\\\"7.0\\\",\\\"40.1\\\",\\\"8.8\\\",\\\"48.5\\\",\\\"10.0\\\",\\\"31.7\\\",\\\"9.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-11\\\",\\\"16.7\\\",\\\"7.0\\\",\\\"39.8\\\",\\\"8.9\\\",\\\"48.2\\\",\\\"10.1\\\",\\\"31.4\\\",\\\"9.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-12\\\",\\\"16.7\\\",\\\"7.0\\\",\\\"39.5\\\",\\\"9.0\\\",\\\"47.8\\\",\\\"10.2\\\",\\\"31.1\\\",\\\"9.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-13\\\",\\\"16.6\\\",\\\"7.0\\\",\\\"39.1\\\",\\\"9.0\\\",\\\"47.4\\\",\\\"10.3\\\",\\\"30.8\\\",\\\"9.0\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-14\\\",\\\"16.5\\\",\\\"7.0\\\",\\\"38.8\\\",\\\"9.0\\\",\\\"47.1\\\",\\\"10.4\\\",\\\"30.6\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-15\\\",\\\"16.5\\\",\\\"7.0\\\",\\\"38.5\\\",\\\"9.1\\\",\\\"46.7\\\",\\\"10.4\\\",\\\"30.3\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-16\\\",\\\"16.4\\\",\\\"7.1\\\",\\\"38.2\\\",\\\"9.2\\\",\\\"46.4\\\",\\\"10.5\\\",\\\"30.0\\\",\\\"9.1\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-17\\\",\\\"16.4\\\",\\\"7.1\\\",\\\"37.9\\\",\\\"9.2\\\",\\\"46.1\\\",\\\"10.6\\\",\\\"29.7\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-18\\\",\\\"16.3\\\",\\\"7.1\\\",\\\"37.6\\\",\\\"9.3\\\",\\\"45.8\\\",\\\"10.7\\\",\\\"29.5\\\",\\\"9.2\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-19\\\",\\\"16.3\\\",\\\"7.1\\\",\\\"37.4\\\",\\\"9.4\\\",\\\"45.5\\\",\\\"10.7\\\",\\\"29.2\\\",\\\"9.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-20\\\",\\\"16.3\\\",\\\"7.1\\\",\\\"37.1\\\",\\\"9.4\\\",\\\"45.2\\\",\\\"10.8\\\",\\\"29.0\\\",\\\"9.3\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-21\\\",\\\"16.3\\\",\\\"7.1\\\",\\\"36.8\\\",\\\"9.4\\\",\\\"45.0\\\",\\\"10.8\\\",\\\"28.7\\\",\\\"9.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-22\\\",\\\"16.2\\\",\\\"7.1\\\",\\\"36.6\\\",\\\"9.4\\\",\\\"44.7\\\",\\\"10.8\\\",\\\"28.5\\\",\\\"9.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-23\\\",\\\"16.2\\\",\\\"7.1\\\",\\\"36.4\\\",\\\"9.5\\\",\\\"44.5\\\",\\\"10.8\\\",\\\"28.3\\\",\\\"9.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-24\\\",\\\"16.2\\\",\\\"7.1\\\",\\\"36.2\\\",\\\"9.5\\\",\\\"44.3\\\",\\\"10.8\\\",\\\"28.0\\\",\\\"9.4\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-25\\\",\\\"16.3\\\",\\\"7.1\\\",\\\"36.0\\\",\\\"9.5\\\",\\\"44.1\\\",\\\"10.8\\\",\\\"27.8\\\",\\\"9.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-26\\\",\\\"16.3\\\",\\\"7.2\\\",\\\"35.8\\\",\\\"9.5\\\",\\\"43.9\\\",\\\"10.9\\\",\\\"27.6\\\",\\\"9.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-27\\\",\\\"16.3\\\",\\\"7.2\\\",\\\"35.6\\\",\\\"9.6\\\",\\\"43.7\\\",\\\"10.9\\\",\\\"27.4\\\",\\\"9.5\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-28\\\",\\\"16.3\\\",\\\"7.2\\\",\\\"35.4\\\",\\\"9.6\\\",\\\"43.6\\\",\\\"10.9\\\",\\\"27.3\\\",\\\"9.6\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-29\\\",\\\"16.3\\\",\\\"7.2\\\",\\\"35.3\\\",\\\"9.6\\\",\\\"43.4\\\",\\\"10.9\\\",\\\"27.1\\\",\\\"9.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-30\\\",\\\"16.4\\\",\\\"7.2\\\",\\\"35.1\\\",\\\"9.7\\\",\\\"43.3\\\",\\\"11.0\\\",\\\"26.9\\\",\\\"9.7\\\"\\n\\\"USC00181995\\\",\\\"COLLEGE PARK, MD US\\\",\\\"12-31\\\",\\\"16.4\\\",\\\"7.3\\\",\\\"35.0\\\",\\\"9.7\\\",\\\"43.2\\\",\\\"11.0\\\",\\\"26.8\\\",\\\"9.8\\\"\\n\";\r\n\r\n            normals = normals.split('\\n')\r\n            normals = normals.map((x) => {\r\n                return x.split(',')\r\n            })\r\n\r\n            days = normals.map(x => x[3])\r\n            console.log(days)\r\n\r\n            var paramString = window.location.href;\r\n            console.log(paramString.substring(paramString.indexOf('?')))\r\n            var searchParams = new URLSearchParams(paramString.substring(paramString.indexOf('?')));\r\n            console.log(searchParams.get('station'))\r\n            var station = searchParams.get('station')\r\n            if (station == null) station = 'atlantic'\r\n            \/\/ document.getElementById('station').value = station\r\n\r\n            var stationDbMap = {\r\n                atlantic: 'mesoterp13DB',\r\n                vmh: 'mesoterp1DB',\r\n                williams: 'mesoterp8DB',\r\n                golf: 'mesoterp6DB',\r\n                chem: 'mesoterp3DB',\r\n                observ: 'mesoterp2DB',\r\n                avrum: 'mesoterp7DB',\r\n                essic: 'mesoterp12DB',\r\n                ches: 'mesoterp10DB',\r\n                mdday: 'Maryland_DayDB',\r\n                test: 'simulated_data'\r\n            }\r\n            var stationTitleMap = {\r\n                atlantic: 'Atlantic',\r\n                vmh: 'Van Munching',\r\n                williams: 'AV Williams',\r\n                golf: 'Golf Course',\r\n                chem: 'Chemistry',\r\n                observ: 'Observatory',\r\n                avrum: 'Avrum Gudelsky',\r\n                essic: 'ESSIC',\r\n                ches: 'Chesapeake',\r\n                mdday: 'Maryland Day',\r\n                test: 'Simulated Data'\r\n            }\r\n\r\n            var today_utc = new Date()\r\n            var yesterday_utc = new Date(new Date().getTime() - (24 * 60 * 60 * 1000))\r\n            var dailiesStart = new Date(new Date().getTime() - (365 * 24 * 60 * 60 * 1000))\r\n            var today = new Date(JSON.parse(JSON.stringify(today_utc)));\r\n            var yesterday = new Date(JSON.parse(JSON.stringify(yesterday_utc)));\r\n            document.addEventListener(\"DOMContentLoaded\", function(event) {\r\n                console.log('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')\r\n                today.setMinutes(today.getMinutes() - today.getTimezoneOffset());\r\n                yesterday.setMinutes(yesterday.getMinutes() - yesterday.getTimezoneOffset());\r\n                document.getElementById('endtime').value = today.toISOString().slice(0,16);\r\n                document.getElementById('starttime').value = yesterday.toISOString().slice(0,16);\r\n            });\r\n\r\n            \/\/ Highcharts.setOptions({  \/\/ This is for all plots, change Date axis to local timezone\r\n            \/\/     global: {\r\n            \/\/         useUTC: true\r\n            \/\/     }\r\n            \/\/ });\r\n\r\n            function getTimeRange() {\r\n                let starttime = document.forms['data-selector']['starttime'].value;\r\n                let endtime = document.forms['data-selector']['endtime'].value;\r\n                let newStation = document.forms['station-selector']['station'].value;\r\n                console.log(starttime)\r\n                console.log(endtime)\r\n                if (starttime == '' || endtime == '') {\r\n                    alert('Both a start time and an end time must be selected');\r\n                    return false\r\n                }\r\n                startDt = new Date(starttime)\r\n                endDt = new Date(endtime)\r\n                console.log(startDt.getTime())\r\n                console.log(endDt.getTime())\r\n                var diff = endDt - startDt\r\n                console.log(diff)\r\n                if (diff < 0) {\r\n                    alert('Start time must be before end time')\r\n                    return false\r\n                }\r\n                maxDays = 99\r\n                if (diff > 1000*60*60*24*maxDays) {\r\n                    alert('Plotting more than ' + maxDays + ' days of data results in a fair amount of lag (and may not look very good on a plot). If you would like to access and plot large ranges of data yourself, see the data download form below.')\r\n                    return false\r\n                }\r\n\r\n                t1 = Date.now()\r\n                document.getElementById('container').style.opacity = 0.5;\r\n                console.log('BEFORE FETCH')\r\n\r\n                fetch('https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/functions\/get-data.php', {\r\n                    method: \"POST\",\r\n                    mode: \"same-origin\",\r\n                    cache: 'no-cache',\r\n                    credentials: \"same-origin\",\r\n                    headers: {\r\n                        \"Content-Type\": \"application\/json\",\r\n                        \"Accept\": \"application\/json\"\r\n                    },\r\n                    redirect: 'follow',\r\n                    referrerPolicy: 'no-referrer',\r\n                    body: JSON.stringify({\r\n                        startms: startDt.getTime()\/1000,\r\n                        endms: endDt.getTime()\/1000,\r\n                        db: stationDbMap[newStation],\r\n                        table: 'archive',\r\n                        cols: ['dateTime', 'outTemp', 'dewpoint', 'barometer', 'rainRate', 'windSpeed', 'windGust', 'windDir']\r\n                    }),\r\n                })\r\n                .then(data => {\r\n                    return data.json();\r\n                })\r\n                .then(data => {\r\n                    data_series = []\r\n                    data['data'].forEach((ob) => {\r\n                        data_series.push([\r\n                            ob['dateTime']*1000,\r\n                            parseFloat(ob['outTemp']),\r\n                            Math.round(parseFloat(ob['dewpoint'])*10)\/10,\r\n                            parseFloat(ob['rainRate']),\r\n                            Math.round(parseFloat(ob['barometer'])*33.864*10)\/10,\r\n                            parseFloat(ob['windGust']),\r\n                            parseFloat(ob['windSpeed']),\r\n                            parseFloat(ob['windDir']),\r\n                        ]);\r\n                    });\r\n                    data_series.reverse()\r\n\r\n                    chart.series[0].setData(data_series.map(i => [i[0], i[1]]))\r\n                    chart.series[1].setData(data_series.map(i => [i[0], i[2]]))\r\n                    chart.series[2].setData(data_series.map(i => [i[0], i[6]]))\r\n                    chart.series[3].setData(data_series.map(i => [i[0], i[5]]))\r\n                    chart.series[4].setData(data_series.map(i => [i[0], i[4]]))\r\n                    chart.series[5].setData(data_series.map(i => [i[0], i[3]]))\r\n                    chart.series[6].setData(data_series.map(i => [i[0], i[7]]))\r\n                    chart.setTitle({text: stationTitleMap[newStation] + ' Station'})\r\n\r\n                    console.log(Date.now() - t1)\r\n                    document.getElementById('container').style.opacity = 1;\r\n\r\n                })\r\n                .catch (error => console.log('Error:' + error));\r\n\r\n\r\n\r\n                if (newStation=='atlantic') {\r\n                    console.log('alkjd')\r\n                    console.log(today)\r\n                    fetch('https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/functions\/get-data.php', {\r\n                        method: \"POST\",\r\n                        mode: \"same-origin\",\r\n                        cache: 'no-cache',\r\n                        credentials: \"same-origin\",\r\n                        headers: {\r\n                            \"Content-Type\": \"application\/json\",\r\n                            \"Accept\": \"application\/json\"\r\n                        },\r\n                        redirect: 'follow',\r\n                        referrerPolicy: 'no-referrer',\r\n                        body: JSON.stringify({\r\n                            start_timestamp: startDt.toISOString().replace(\"T\",\" \").substring(0, 19),\r\n                            end_timestamp: endDt.toISOString().replace(\"T\",\" \").substring(0, 19),\r\n                            db: 'atl_co2',\r\n                            table: 'co2_readings',\r\n                            cols: ['timestamp', 'measurement_value']\r\n                        }),\r\n                    })\r\n                    .then(data => {\r\n                        return data.json();\r\n                    })\r\n                    .then(data => {\r\n                        data_series = []\r\n                        offset = new Date().getTimezoneOffset();\r\n                        data['data'].forEach((ob) => {\r\n                            dt = new Date(Date.parse(ob['timestamp']+' UTC'))\r\n                            data_series.push([\r\n                                dt.setMinutes(dt.getMinutes() - offset),\r\n                                parseFloat(ob['measurement_value']),\r\n                            ]);\r\n                        });\r\n                        data_series.reverse()\r\n\r\n                        chart_co2.series[0].setData(data_series.map(i => [i[0], i[1]]))\r\n                        \/\/ document.getElementById('co2_container').style.opacity = 1;\r\n                        document.getElementById('co2_container').style.display = 'block'\r\n                    })\r\n                    .catch (error => console.log('Error:' + error));\r\n                } else document.getElementById('co2_container').style.display = 'none';\r\n\r\n\r\n                \/\/ Highcharts.setOptions({  \/\/ This is for all plots, change Date axis to local timezone\r\n                \/\/     global: {\r\n                \/\/         useUTC: false\r\n                \/\/     }\r\n                \/\/ });\r\n\r\n\r\n                console.log('BBBBBBBBBBBBBBB')\r\n                console.log(station)\r\n                console.log(newStation)\r\n                if (station != newStation) {\r\n                    document.getElementById('container2').style.opacity = 0.5;\r\n                    console.log('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')\r\n                    station = newStation\r\n                    console.log(station)\r\n                    fetch('https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/functions\/get-data.php', {\r\n                        method: \"POST\",\r\n                        mode: \"same-origin\",\r\n                        cache: 'no-cache',\r\n                        credentials: \"same-origin\",\r\n                        headers: {\r\n                            \"Content-Type\": \"application\/json\",\r\n                            \"Accept\": \"application\/json\"\r\n                        },\r\n                        redirect: 'follow',\r\n                        referrerPolicy: 'no-referrer',\r\n                        body: JSON.stringify({\r\n                            startms: dailiesStart.getTime()\/1000,\r\n                            endms: today.getTime()\/1000,\r\n                            db: stationDbMap[station],\r\n                            table: 'archive_day_outTemp',\r\n                            cols: ['dateTime', 'min', 'max', 'sum', 'count']\r\n                        }),\r\n                    })\r\n                    .then(data => {\r\n                        return data.json();\r\n                    })\r\n                    .then(data => {\r\n                        console.log(data)\r\n                        data_series = []\r\n                        data['data'].forEach((ob) => {\r\n                            data_series.push([\r\n                                parseFloat(ob['dateTime'])*1000,\r\n                                parseFloat(ob['min']),\r\n                                parseFloat(ob['max']),\r\n                                Math.round(10*parseFloat(ob['sum'])\/parseFloat(ob['count']))\/10,\r\n                            ]);\r\n                        });\r\n                        data_series.reverse()\r\n\r\n                        constr_normals = data_series.map((x) => {\r\n                            dt = new Date(x[0])\r\n                            month_day = '\\\"'+('0'+(dt.getMonth()+1)).slice(-2)+'-'+('0'+dt.getDate()).slice(-2)+'\\\"'\r\n                            return normals[days.indexOf(month_day)]\r\n                        })\r\n\r\n                        normal_series = data_series.map((x,i) => [\r\n                            x[0],\r\n                            parseFloat(constr_normals[i][8].slice(1,-1)), \r\n                            parseFloat(constr_normals[i][10].slice(1,-1)), \r\n                            parseFloat(constr_normals[i][6].slice(1,-1)), \r\n                            parseFloat(constr_normals[i][9].slice(1,-1)), \r\n                            parseFloat(constr_normals[i][11].slice(1,-1))\r\n                        ])\r\n\r\n                        normal_series = normal_series.map(x => [\r\n                            x[0], x[1], x[2], x[3], x[1]+2*x[4], x[1]-2*x[4], x[2]+2*x[5], x[2]-2*x[5]\r\n                        ])\r\n\r\n                        function csort(a,b) {\r\n                            if (a[0] === b[0]) return 0\r\n                            else return (a[0] < b[0]) ? -1 : 1\r\n                        }\r\n                        normal_series.sort(csort)\r\n\r\n                        console.log('halloooooooo\/\/????')\r\n\r\n                        chart_daily.series[0].setData(data_series.map(i => [i[0], i[2]]))\r\n                        chart_daily.series[1].setData(data_series.map(i => [i[0], i[1]]))\r\n                        chart_daily.series[2].setData(data_series.map(i => [i[0], i[3]]))\r\n                        chart_daily.series[3].setData(normal_series.map(i => [i[0], i[2]]))\r\n                        chart_daily.series[4].setData(normal_series.map(i => [i[0], i[1]]))\r\n                        chart_daily.series[5].setData(normal_series.map(i => [i[0], i[3]]))\r\n                        chart_daily.series[6].setData(normal_series.map(i => [i[0], i[5], i[4]]))\r\n                        chart_daily.series[7].setData(normal_series.map(i => [i[0], i[7], i[6]]))                      \r\n\r\n                        console.log(Date.now() - t1)\r\n                        document.getElementById('container2').style.opacity = 1;\r\n\r\n                    })\r\n                    .catch (error => console.log('Error: ' + error));\r\n\r\n                }\r\n\r\n                console.log('AFTER FETCH')\r\n\r\n                return false\r\n            }\r\n\r\n            document.getElementById('container').style.opacity = 0.5;\r\n            console.log('BEFORE FETCH')\r\n            console.log(station)\r\n            console.log(yesterday)\r\n            console.log(today)\r\n\r\n            fetch('https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/functions\/get-data.php', {\r\n                method: \"POST\",\r\n                mode: \"same-origin\",\r\n                cache: 'no-cache',\r\n                credentials: \"same-origin\",\r\n                headers: {\r\n                    \"Content-Type\": \"application\/json\",\r\n                    \"Accept\": \"application\/json\"\r\n                },\r\n                redirect: 'follow',\r\n                referrerPolicy: 'no-referrer',\r\n                body: JSON.stringify({\r\n                    startms: yesterday.getTime()\/1000,\r\n                    endms: today.getTime()\/1000,\r\n                    db: stationDbMap[station],\r\n                    table: 'archive',\r\n                    cols: ['dateTime', 'outTemp', 'dewpoint', 'barometer', 'rainRate', 'windSpeed', 'windGust', 'windDir']\r\n                }),\r\n            })\r\n            .then(data => {\r\n                return data.json();\r\n            })\r\n            .then(data => {\r\n                console.log(data)\r\n                data_series = []\r\n                data['data'].forEach((ob) => {\r\n                    data_series.push([\r\n                        ob['dateTime']*1000,\r\n                        parseFloat(ob['outTemp']),\r\n                        Math.round(parseFloat(ob['dewpoint'])*10)\/10,\r\n                        parseFloat(ob['rainRate']),\r\n                        Math.round(parseFloat(ob['barometer'])*33.864*10)\/10,\r\n                        parseFloat(ob['windGust']),\r\n                        parseFloat(ob['windSpeed']),\r\n                        parseFloat(ob['windDir']),\r\n                    ]);\r\n                });\r\n                data_series.reverse()\r\n\r\n                chart = Highcharts.chart('container', {\r\n                    time: {\r\n                        timezone: 'America\/New_York'\r\n                    },\r\n                    title: {\r\n                        text: stationTitleMap[station] + ' Station'\r\n                    },\r\n                    tooltip: {\r\n                        crosshairs: true,\r\n                        shared: true,\r\n                    },\r\n                    chart: {\r\n                        zoomType: 'x'\r\n                    },\r\n                    yAxis: [{\r\n                            title: {\r\n                                text: 'Temperature (&deg;F)'\r\n                            },\r\n                            height: '26%',\r\n                        }, {\r\n                            title: {\r\n                                text: 'Wind Speed (mph)'\r\n                            },\r\n                            top: '37%',\r\n                            height: '26%',\r\n                            offset: 0,\r\n                        }, {\r\n                            title: {\r\n                                text: 'Wind Direction (deg)'\r\n                            },\r\n                            top: '37%',\r\n                            height: '26%',\r\n                            offset: 0,\r\n                            opposite: true\r\n                        },\r\n                        {\r\n                            title: {\r\n                                text: 'Pressure (mb)'\r\n                            },\r\n                            top: '74%',\r\n                            height: '26%',\r\n                            offset: 1,\r\n                        }, {\r\n                            title: {\r\n                                text: 'Rain Rate (in\/hr)'\r\n                            },\r\n                            top: '74%',\r\n                            height: '26%',\r\n                            offset: 1,\r\n                            opposite: true\r\n                        },\r\n                    ],\r\n                    xAxis: [{\r\n                        type: 'datetime'\r\n                    }, {\r\n                        type: 'datetime',\r\n                        top: '18%',\r\n                        height: '0',\r\n                    }, {\r\n                        type: 'datetime',\r\n                        top: '47%',\r\n                        height: '0',\r\n                    },],\r\n                    series: [{\r\n                        name: 'Temp',\r\n                        data: data_series.map(i => [i[0], i[1]]),\r\n                        tooltip: {valueSuffix: ' &deg;F'},\r\n                        color: '#fc0204',\r\n                        xAxis: 0,\r\n                    }, {\r\n                        name: 'Dewpoint',\r\n                        data: data_series.map(i => [i[0], i[2]]),\r\n                        tooltip: {valueSuffix: ' &deg;F'},\r\n                        color: '#048a04',\r\n                        xAxis: 0,\r\n                        yAxis: 0\r\n                    }, {\r\n                        name: 'Wind speed',\r\n                        data: data_series.map(i => [i[0], i[6]]),\r\n                        tooltip: {valueSuffix: ' mph'},\r\n                        color: '#2c3ede',\r\n                        opacity: 0.5,\r\n                        xAxis: 1,\r\n                        yAxis: 1\r\n                    }, {\r\n                        name: 'Wind gust',\r\n                        data: data_series.map(i => [i[0], i[5]]),\r\n                        tooltip: {valueSuffix: ' mph'},\r\n                        color: '#2c8ede',\r\n                        opacity: 0.5,\r\n                        xAxis: 1,\r\n                        yAxis: 1\r\n                    }, {\r\n                        name: 'Pressure',\r\n                        data: data_series.map(i => [i[0], i[4]]),\r\n                        tooltip: {valueSuffix: ' mb'},\r\n                        color: '#000000',\r\n                        xAxis: 2,\r\n                        yAxis: 3\r\n                    }, {\r\n                        name: 'Rain rate',\r\n                        data: data_series.map(i => [i[0], i[3]]),\r\n                        tooltip: {valueSuffix: ' in\/hr'},\r\n                        color: '#4fa1e3',\r\n                        xAxis: 2,\r\n                        yAxis: 4\r\n                    },\r\n                    {\r\n                        name: 'Wind direction',\r\n                        data: data_series.map(i => [i[0], i[7]]),\r\n                        tooltip: {valueSuffix: ' degrees'},\r\n                        color: '#b5b5b5',\r\n                        yAxis: 2,\r\n                        type: 'spline',\r\n                        lineWidth: 0,\r\n                        marker: {\r\n                            enabled: \"true\",\r\n                            symbol: 'circle',\r\n                            states: {\r\n                                hover: {\r\n                                    enabled: \"true\"\r\n                                }\r\n                            },\r\n                            radius: 2\r\n                        },\r\n                        states: {\r\n                            hover: {\r\n                                lineWidthPlus: 0\r\n                            }\r\n                        },\r\n                    },\r\n                    ]\r\n                })\r\n\r\n                document.getElementById('container').style.opacity = 1;\r\n            })\r\n            .catch (error => console.log('Error:' + error));\r\n\r\n\r\n\r\n            fetch('https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/functions\/get-data.php', {\r\n                method: \"POST\",\r\n                mode: \"same-origin\",\r\n                cache: 'no-cache',\r\n                credentials: \"same-origin\",\r\n                headers: {\r\n                    \"Content-Type\": \"application\/json\",\r\n                    \"Accept\": \"application\/json\"\r\n                },\r\n                redirect: 'follow',\r\n                referrerPolicy: 'no-referrer',\r\n                body: JSON.stringify({\r\n                    startms: dailiesStart.getTime()\/1000,\r\n                    endms: today.getTime()\/1000,\r\n                    db: stationDbMap[station],\r\n                    table: 'archive_day_outTemp',\r\n                    cols: ['dateTime', 'min', 'max', 'sum', 'count']\r\n                }),\r\n            })\r\n            .then(data => {\r\n                return data.json();\r\n            })\r\n            .then(data => {\r\n                console.log(data)\r\n                data_series = []\r\n                data['data'].forEach((ob) => {\r\n                    data_series.push([\r\n                        \/\/ new Date(ob['dateTime']*1000),\r\n                        parseFloat(ob['dateTime'])*1000,\r\n                        parseFloat(ob['min']),\r\n                        parseFloat(ob['max']),\r\n                        Math.round(10*parseFloat(ob['sum'])\/parseFloat(ob['count']))\/10,\r\n                        \/\/ parseFloat(ob['sum']),\r\n                        \/\/ parseFloat(ob['count']),\r\n                    ]);\r\n                });\r\n                data_series.reverse()\r\n                console.log(data_series)\r\n\r\n                constr_records = data_series.map((x) => {\r\n                    dt = new Date(x[0])\r\n                    month_day = (dt.getMonth()+1)+'-'+dt.getDate()\r\n                    return records[record_days.indexOf(month_day)]\r\n                })\r\n\r\n                record_series = data_series.map((x,i) => [\r\n                    x[0],\r\n                    parseFloat(constr_records[i][4]),\r\n                    parseFloat(constr_records[i][5]),\r\n                ])\r\n                console.log(record_series)\r\n\r\n                function csort(a,b) {\r\n                    if (a[0] === b[0]) return 0\r\n                    else return (a[0] < b[0]) ? -1 : 1\r\n                }\r\n                record_series.sort(csort)\r\n                console.log(record_series)\r\n\r\n                constr_normals = data_series.map((x) => {\r\n                    dt = new Date(x[0])\r\n                    month_day = '\\\"'+('0'+(dt.getMonth()+1)).slice(-2)+'-'+('0'+dt.getDate()).slice(-2)+'\\\"'\r\n                    return normals[days.indexOf(month_day)]\r\n                })\r\n\r\n                normal_series = data_series.map((x,i) => [\r\n                    x[0],\r\n                    parseFloat(constr_normals[i][8].slice(1,-1)), \r\n                    parseFloat(constr_normals[i][10].slice(1,-1)), \r\n                    parseFloat(constr_normals[i][6].slice(1,-1)), \r\n                    parseFloat(constr_normals[i][9].slice(1,-1)), \r\n                    parseFloat(constr_normals[i][11].slice(1,-1))\r\n                ])\r\n\r\n                normal_series = normal_series.map(x => [\r\n                    x[0], x[1], x[2], x[3], x[1]+2*x[4], x[1]-2*x[4], x[2]+2*x[5], x[2]-2*x[5]\r\n                ])\r\n\r\n                normal_series.sort(csort)\r\n\r\n                console.log('PPPPPPPPPPPPPPPPP')\r\n                console.log(constr_normals)\r\n\r\n                \/\/ min_data = normal_series.map(i => [i[0], parseFloat(i[2])])\r\n                \/\/ console.log(min_data)\r\n                \/\/ min_data.sort(csort)\r\n                \/\/ max_data = normal_series.map(i => [i[0], parseFloat(i[1])])\r\n                \/\/ max_data.sort(csort)\r\n            \r\n                \/\/ console.log(min_data)\r\n                \/\/ console.log(max_data)\r\n\r\n                console.log(data_series.map(i => [i[0], i[2]]))\r\n                console.log(normal_series.map(i => i[1]))\r\n\r\n                chart_daily = Highcharts.chart('container2', {\r\n                    title: {\r\n                        text: 'Daily Statistics'\r\n                    },\r\n                    subtitle: {\r\n                        useHTML: true,\r\n                        text: 'Normals are daily averages over 1981-2010 for College Park, from <a href=\"https:\/\/www.ncei.noaa.gov\/cdo-web\/\">ncei.noaa.gov\/cdo-web\/<\/a>.'\r\n                    },\r\n                    tooltip: {\r\n                        crosshairs: true,\r\n                        shared: true,\r\n                    },\r\n                    chart: {\r\n                        \/\/ type: 'scatter',\r\n                        zoomType: 'x'\r\n                    },\r\n                    yAxis: {\r\n                            title: {\r\n                                text: 'Temperature (F)'\r\n                            },\r\n                            \/\/ height: '33%',\r\n                            max: 110,\r\n                            endOnTick: false,\r\n                    },\r\n                    xAxis: {\r\n                        type: 'datetime'\r\n                    },\r\n                    series: [{\r\n                        name: 'Max',\r\n                        data: data_series.map(i => [i[0], i[2]]),\r\n                        color: '#d62e1c',\r\n                        yAxis: 0,\r\n                        marker: {\r\n                            symbol: 'square'\r\n                        }\r\n                    }, {\r\n                        name: 'Min',\r\n                        data: data_series.map(i => [i[0], i[1]]),\r\n                        color: '#1c85d6',\r\n                        marker: {\r\n                            symbol: 'square'\r\n                        }\r\n                    }, {\r\n                        name: 'Mean',\r\n                        data: data_series.map(i => [i[0], i[3]]),\r\n                        color: '#303030',\r\n                        marker: {\r\n                            symbol: 'square'\r\n                        }\r\n                    }, {\r\n                        name: 'Normal min',\r\n                        data: normal_series.map(i => [i[0], i[2]]),\r\n                        color: '#1c85d6',\r\n                        opacity: 0.6,\r\n                        marker: {\r\n                            symbol: 'square',\r\n                            enabled: false\r\n                        }\r\n                    }, {\r\n                        name: 'Normal max',\r\n                        data: normal_series.map(i => [i[0], i[1]]),\r\n                        color: '#d62e1c',\r\n                        opacity: 0.6,\r\n                        marker: {\r\n                            symbol: 'square',\r\n                            enabled: false\r\n                        }\r\n                    }, {\r\n                        name: 'Normal mean',\r\n                        data: normal_series.map(i => [i[0], i[3]]),\r\n                        color: '#303030',\r\n                        opacity: 0.6,\r\n                        marker: {\r\n                            symbol: 'square',\r\n                            enabled: false\r\n                        }\r\n                    }, {\r\n                        name: '2 sigma normal max',\r\n                        showInLegend: false,\r\n                        enableMouseTracking: false,\r\n                        type: 'arearange',\r\n                        data: normal_series.map(i => [i[0], i[5], i[4]]),\r\n                        color: '#d62e1c',\r\n                        opacity: 0.15,\r\n                        marker: {enabled:false}\r\n                    }, {\r\n                        name: '2 sigma normal min',\r\n                        showInLegend: false,\r\n                        enableMouseTracking: false,\r\n                        type: 'arearange',\r\n                        data: normal_series.map(i => [i[0], i[7], i[6]]),\r\n                        color: '#1c85d6',\r\n                        opacity: 0.15,\r\n                        marker: {enabled:false}\r\n                    \/\/ }, {\r\n                    \/\/     name: 'Record min',\r\n                    \/\/     data: record_series.map(i => [i[0], i[2]]),\r\n                    \/\/     color: '#1c85d6',\r\n                    \/\/     opacity: 0.6,\r\n                    \/\/     marker: {\r\n                    \/\/         symbol: 'square',\r\n                    \/\/         enabled: false\r\n                    \/\/     }\r\n                    \/\/ }, {\r\n                    \/\/     name: 'Record max',\r\n                    \/\/     data: record_series.map(i => [i[0], i[1]]),\r\n                    \/\/     color: '#d62e1c',\r\n                    \/\/     opacity: 0.6,\r\n                    \/\/     marker: {\r\n                    \/\/         symbol: 'square',\r\n                    \/\/         enabled: false\r\n                    \/\/     }\r\n                    }\r\n                    ]\r\n                })\r\n\r\n                document.getElementById('container2').style.opacity = 1;\r\n            })\r\n            .catch (error => console.log('Error:' + error));\r\n\r\n            if (station=='atlantic') {\r\n                console.log('qpoie')\r\n                console.log(today)\r\n                fetch('https:\/\/weather.umd.edu\/wordpress\/wp-content\/plugins\/meso-fsct\/functions\/get-data.php', {\r\n                    method: \"POST\",\r\n                    mode: \"same-origin\",\r\n                    cache: 'no-cache',\r\n                    credentials: \"same-origin\",\r\n                    headers: {\r\n                        \"Content-Type\": \"application\/json\",\r\n                        \"Accept\": \"application\/json\"\r\n                    },\r\n                    redirect: 'follow',\r\n                    referrerPolicy: 'no-referrer',\r\n                    body: JSON.stringify({\r\n                        \/\/ startms: dailiesStart.getTime()\/1000,\r\n                        \/\/ endms: today.getTime()\/1000,\r\n                        start_timestamp: yesterday.toISOString().replace(\"T\",\" \").substring(0, 19),\r\n                        end_timestamp: today.toISOString().replace(\"T\",\" \").substring(0, 19),\r\n                        db: 'atl_co2',\r\n                        table: 'co2_readings',\r\n                        cols: ['timestamp', 'measurement_value']\r\n                    }),\r\n                })\r\n                .then(data => {\r\n                    return data.json();\r\n                })\r\n                .then(data => {\r\n                    console.log('co2 section')\r\n                    console.log(data)\r\n                    console.log(yesterday.toISOString().replace(\"T\",\" \").substring(0, 19))\r\n                    data_series = []\r\n                    offset = new Date().getTimezoneOffset();\r\n                    data['data'].forEach((ob) => {\r\n                        dt = new Date(Date.parse(ob['timestamp']+' UTC'))\r\n                        data_series.push([\r\n                            dt.setMinutes(dt.getMinutes() - offset),\r\n                            parseFloat(ob['measurement_value']),\r\n                        ]);\r\n                    });\r\n                    data_series.reverse()\r\n                    console.log(data_series)\r\n\r\n                    chart_co2 = Highcharts.chart('co2_container', {\r\n                        title: {\r\n                            text: 'Greenhouse Gas'\r\n                        },\r\n                        tooltip: {\r\n                            crosshairs: true,\r\n                            shared: true,\r\n                        },\r\n                        chart: {\r\n                            \/\/ type: 'scatter',\r\n                            zoomType: 'x'\r\n                        },\r\n                        yAxis: {\r\n                            title: {\r\n                                text: 'CO2 concentration (ppm)'\r\n                            },\r\n                            \/\/ max: 110,\r\n                            endOnTick: false,\r\n                        },\r\n                        xAxis: {\r\n                            type: 'datetime'\r\n                        },\r\n                        series: [{\r\n                            name: 'CO2',\r\n                            data: data_series.map(i => [i[0], i[1]]),\r\n                            color: '#303030',\r\n                            tooltip: {valueSuffix: ' ppm'},\r\n                            marker: {\r\n                                symbol: 'square'\r\n                            }\r\n                        },\r\n                        ]\r\n                    })\r\n\r\n                    document.getElementById('container').style.opacity = 1;\r\n                })\r\n                .catch (error => console.log('Error:' + error));\r\n            }\r\n            console.log('AFTER FETCH')\r\n\r\n        <\/script>\r\n\r\n        \n","protected":false},"excerpt":{"rendered":"","protected":false},"author":77,"featured_media":0,"parent":0,"menu_order":-1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-7510","page","type-page","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/pages\/7510","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/users\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/comments?post=7510"}],"version-history":[{"count":23,"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/pages\/7510\/revisions"}],"predecessor-version":[{"id":7959,"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/pages\/7510\/revisions\/7959"}],"wp:attachment":[{"href":"https:\/\/weather.umd.edu\/wordpress\/wp-json\/wp\/v2\/media?parent=7510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}