In [1]:
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
from __future__ import division
from datetime import datetime,timedelta
%matplotlib inline
pd.options.display.max_rows = 99
pd.options.display.max_columns = 999

Sensor data!


In [2]:
def pad(x):
    time = x.astype(str).zfill(4)
    return time[:2] + ':' + time[2:]

In [5]:
#contains headers for all data (I edited "nothing" column in header file b/c it's just 0's)

filefolder = 'data/sensor_data/colorado6months/'
desired_file = '20140401.csv'

def return_sensor_data(desired_file, filefolder):
    '''Input: desired file and folder
    Output: sensor data pandas dataframe
    Usage: filefolder = 'data/sensor_data/colorado6months/'
    desired_file = '20140401.csv'
    return_sensor_data(myfile, filefolder)'''
    
    df_header = pd.read_csv(filefolder + 'header.csv')
    headers = df_header.columns
    df_sensor = pd.read_csv(filefolder + desired_file,header=None) #sensors
    df_sensor.columns = headers
    df_sensor['MST'] = df_sensor['MST'].map(pad)
    #make a datetime index:
    df_sensor['datetime'] = pd.to_datetime(df_sensor['Year'].astype(str)+
                                           df_sensor['DOY'].astype(str)+
                                           df_sensor['MST'].astype(str), 
                                           format='%Y%j%H:%M')
    #convert to UTC time, website shows that they disregard daylight savings time
    df_sensor['datetime'] = df_sensor['datetime'] + pd.Timedelta(hours=7) 
    df_sensor.set_index(['datetime'],inplace=True) #set created column as index ...
    df_sensor = df_sensor.resample('H')# ... so that we can resample it (hourly)
    return df_sensor  

return_sensor_data(desired_file, filefolder)


Out[5]:
nothing Year DOY CR3000 CF Change [counts] CR3000 Zen Angle [degrees] Global LI-200 [W/m^2] Global CM22 (vent/cor) [W/m^2] Global RG780 PSP (vent/cor) [W/m^2] Global TSP-1 [W/m^2] Global CM6b (cor) [W/m^2] Global SP Lite [W/m^2] Global SP-110 [W/m^2] Global TSP-700 Vent [W/m^2] Research 1 Research 2 Global TUVR [W/m^2] Global 501A [W/m^2] Global 501A [MED/hr] Global MS210W [W/m^2] Global CUVA1 [W/m^2] Global CUVB1 [W/m^2] Global UV-S-A-T [W/m^2] Global UV-S-B-T [W/m^2] Global UVB-1 [W/m^2] Global 501A [Index] Direct NIP #1 [W/m^2] Direct NIP #2 [W/m^2] Direct LI-201 [W/m^2] Direct RG780 NIP [W/m^2] Direct CH1 [W/m^2] Zebra PSP (cor) [W/m^2] Direct CUVA2 [W/m^2] Direct CUVB2 [W/m^2] 500nm TWC Photometer [V] Global SPN1 [W/m^2] Diffuse SPN1 [W/m^2] Data lab Dry Bulb Temp [deg C] Data lab RH [%] Diffuse PSP (sband/cor) [W/m^2] Research F1 Diffuse 8-48 (vent) [W/m^2] Diffuse CM22 (vent/cor) [W/m^2] Research F0 Research 3 Downwelling IR PIR Vent [W/m^2] Downwelling IR CG4 Vent [W/m^2] Upwelling IR PIR [W/m^2] Instrument Net DW PIR [W/m^2] Instrument Net DW CG4 [W/m^2] Instrument Net UW PIR [W/m^2] Global PSP (cor) [W/m^2] Global PSP (vent/cor) [W/m^2] Diffuse PSP (vent/cor) [W/m^2] Diffuse CUV4 [W/m^2] Global CUV4 [W/m^2] Avg Wind Speed @ 19ft [m/s] Avg Wind Direction @ 19ft [deg from N] Peak Wind Speed @ 19ft [m/s] Direct MS-56 [W/m^2] Research 4 PIR DW Dome Temp [deg K] PIR DW Case Temp [deg K] CG4 DW Case Temp [deg K] PIR UW Dome Temp [deg K] PIR UW Case Temp [deg K] CR3000 Temp [deg C] Deck Dry Bulb Temp [deg C] Deck RH [%] 501A Temp [deg C] CUVA1 Temp [deg C] CUVB1 Temp [deg C] CUVA2 Temp [deg C] CUVB2 Temp [deg C] UVSAT Temp [deg C] UVSBT Temp [deg C] UVB-1 Temp [deg C] Horiz TP Thermal Corr CR3000 Battery [VDC] CR3000 Pgm Time [s] Direct Quantum LI-190 [umol/s/m^2] Direct TUVR [W/m^2] Global PSP [mV] Global PSP Vent [mV] Global CM22 [mV] Global RG780 PSP [mV] Global CM6b [mV] Zebra PSP [mV] Diffuse PSP (sband) [mV] Diffuse PSP [mV] Diffuse CM22 [mV] Global Quantum LI-190 [umol/s/m^2] Global Photometric LI-210 [klux] Upwelling Shortwave CM3 (CNR1) [W/m^2] Upwelling IR CG3 (CNR1) [W/m^2] Instrument Net UW CG3 [W/m^2] Upwelling Shortwave PSP [W/m^2] Upwelling Shortwave LI-200 [W/m^2] Upwelling Quantum LI-190 [umol/s/m^2] CNR1 Case Temp [deg K] Global CM3 (CNR1) [W/m^2] Downwelling IR CG3 (CNR1) [W/m^2] Instrument Net DW CG3 [W/m^2] Snow Depth [cm] Precipitation [mm] Precipitation (Accumulated) [mm] Station Pressure [mBar] Global 40-South PSP [W/m^2] Global 40-South LI-200 [W/m^2] Global Normal CM-21 [W/m^2] Global 90-North PSP [W/m^2] Global 90-North LI-200 [W/m^2] Global 90-East PSP [W/m^2] Global 90-East LI-200 [W/m^2] Global 90-South PSP [W/m^2] Global 90-South LI-200 [W/m^2] Global 90-West PSP [W/m^2] Global 90-West LI-200 [W/m^2] Research RT0 Research RT1 Research RT2 Atmospheric Electric Field [kV/m] CR10X Temp (Rad-Twr) [deg C] CR10X Battery (Rad-Twr) [VDC] LI-2020 Battery [VDC] Tower Dry Bulb Temp [deg C] Tower RH [%] Avg Wind Speed @ 6ft [m/s] Avg Wind Direction @ 6ft [deg from N] Peak Wind Speed @ 6ft [m/s] CR10X Overuns (Rad-Twr) [counts] Snow Depth Quality SE Dry Bulb Temp [deg C] SE RH [%] SE-POA Angle [degrees] Global SE-POA LI-200 [W/m^2] CR10X Overuns (Met-Twr) [counts] CR10X Temp (Met-Twr) [deg C] CR10X Battery (Met-Twr) [VDC] Vertical Wind Shear [1/s] Research PVT1 Research PVT2 Avg Wind Speed @ 22ft [m/s] Avg Wind Direction @ 22ft [deg from N] Avg Wind Speed @ 42ft [m/s] Avg Wind Direction @ 42ft [deg from N] Research PVT0 Peak Wind Speed @ 22ft [m/s] Peak Wind Speed @ 42ft [m/s] Delta UT1 [seconds] 500nm TWC AOD Net Radiation Eppley [W/m^2] Net Radiation K&Z [W/m^2] Atmos Net Infrared PIRs [W/m^2] Atmos Net Infrared K&Zs [W/m^2] Albedo (PSP) Albedo (K&Z) Albedo (LI-200) Albedo Quantum (LI-190) Broadband Turbidity 500nm Estimated AOD Sea-Level Pressure (Est) [mBar] Tower Dew Point Temp [deg C] Tower Wet Bulb Temp [deg C] Tower Wind Chill Temp [deg C] Deck Wind Chill Temp [deg C] Total Cloud Cover [%] Opaque Cloud Cover [%] Global Extraterrestrial (calc) [W/m^2] Direct Extraterrestrial (calc) [W/m^2] Zenith Angle [degrees] Azimuth Angle [degrees] Airmass Delta T [seconds] 315nm POM-01 Photometer [nA] 400nm POM-01 Photometer [uA] 500nm POM-01 Photometer [uA] 675nm POM-01 Photometer [uA] 870nm POM-01 Photometer [uA] 940nm POM-01 Photometer [uA] 1020nm POM-01 Photometer [uA] 315nm Obsolete AOD 400nm Obsolete AOD 500nm Obsolete AOD 675nm Obsolete AOD 870nm Obsolete AOD 940nm Obsolete AOD 1020nm Obsolete AOD Research F2
datetime
2014-04-01 07:00:00 0 2014 91 0 135.162783 -0.057713 -0.378273 -1.188463 3.154796 -0.592370 0.000231 -0.000736 0.430110 -0.000369 -11.826723 -0.001850 0.000000 0.000000 0.000000 -0.001883 0.000000 0.289183 0.003000 -0.002000 0.000000 0.595537 0.385513 0.157467 0.379208 -0.650401 1.936944 0.006800 -0.000967 0.000009 -0.949420 1.683162 20.951167 42.063333 2.717713 0.601490 -0.317465 -0.291207 2.853340 0.000047 262.818783 262.898783 320.319450 -74.192045 -60.314888 -4.835604 3.043059 0.654774 2.864373 -0.000667 -0.000350 0.389917 43.595000 0.736667 -0.225806 -0.000103 276.958767 277.257283 275.088900 274.882500 274.973917 22.110167 1.633700 53.005667 24.751167 39.885833 39.879833 40.723167 39.731333 24.793167 24.443000 46.529667 1.000000 13.06 2.682267 -0.319109 -0.002149 -0.029930 -0.042085 -0.009491 -0.053405 -0.025007 -0.026520 -0.021291 -0.030730 -0.008213 -0.091540 0.000000 1.729642 319.237133 -0.121204 -0.463229 -0.019910 0.000000 273.298933 -2.516079 260.265500 -56.779863 -0.070067 0 0 813.806450 -2.588342 -0.005089 -0.335771 -1.810622 -0.042282 -1.775484 -0.024794 -1.648470 -0.096056 -1.585964 -0.057002 0 0 0 0.039413 5.513950 13.909667 19.542500 1.418617 56.466667 0.915633 83.734167 1.291667 0 194.030000 1.268400 55.972500 -1.959367 0.000000 0 2.240583 12.331000 0.111617 0 0 0.663717 60.967833 1.344217 98.071667 0 1.161000 1.807417 0.1 0.000000 -56.382700 -58.446233 -57.500667 -56.338350 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1015.081500 -5.573400 -1.508400 0.904700 1.435483 -1.000000 -1.000000 0.000000 0.000000 135.169852 38.774864 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.717713
2014-04-01 08:00:00 0 2014 91 0 131.439633 -0.031592 -0.402762 -0.743244 2.928847 -0.815485 0.000628 -0.001673 0.561647 -0.000437 -11.770308 -0.001967 0.000000 0.000000 0.000000 -0.001833 0.000000 0.288450 0.003000 -0.002000 0.000000 1.806709 1.678900 0.145302 1.415801 -0.685835 1.246333 0.006733 -0.000967 0.000010 -1.218052 1.483983 20.964167 40.469667 2.225765 0.874242 -0.363137 -0.364490 1.920637 0.000049 262.960450 262.945300 315.665783 -70.923260 -57.480082 -6.152236 2.052663 0.952191 2.601132 -0.000333 -0.000283 0.000367 1.426667 0.007500 -0.233050 -0.000074 276.357233 276.636033 274.470500 274.201533 274.289033 22.078833 0.879017 55.708667 24.793167 39.920167 39.912167 40.734167 39.734833 24.806667 24.452667 46.534833 1.000000 13.06 2.677150 -0.305316 -0.001993 -0.035680 -0.038188 -0.009500 -0.047759 -0.026553 -0.030642 -0.023404 -0.030395 -0.008669 -0.096568 0.000000 2.850575 314.062800 0.916466 -0.145634 -0.004929 0.000000 271.953900 -1.705619 260.644217 -50.391922 -0.033667 0 0 812.876883 -2.885035 -0.000452 -0.198589 -1.553082 -0.007312 -1.576223 -0.004052 -2.149338 -0.030246 -1.183967 -0.012668 0 0 0 0.035800 4.528833 13.940167 19.482833 0.846750 58.938333 0.034917 11.559167 0.079167 0 194.028333 -0.139267 61.647833 -1.951800 0.000000 0 0.512367 12.296333 0.001683 0 0 0.000000 0.000000 0.010333 5.288333 0 0.000000 0.063217 0.1 0.000000 -51.607417 -54.370833 -52.705333 -51.117500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1014.151500 -5.553383 -1.818383 0.846750 0.879017 -1.000000 -1.000000 0.000000 0.000000 131.446205 28.696564 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.225765
2014-04-01 09:00:00 0 2014 91 0 124.468717 -0.029547 -0.352172 -0.110254 3.044817 -0.819540 0.000033 -0.002008 0.179660 -0.000432 -11.775688 -0.001983 0.000000 0.000000 0.000000 -0.001700 0.000000 0.287633 0.003000 -0.002000 0.000000 1.294834 0.859053 0.151385 1.576925 -0.842857 2.330063 0.007217 -0.000983 0.000009 -1.160809 1.485424 21.093667 40.756833 3.076337 1.940840 -0.398499 -0.306392 3.018952 0.000028 245.923550 245.702450 308.785900 -85.486930 -72.138097 -10.059861 3.217118 2.083704 3.774704 -0.000400 -0.000483 0.008967 4.033333 0.031667 -0.576108 -0.000082 275.869317 276.178833 274.051083 273.566017 273.663500 22.062167 0.130917 58.774333 24.794167 39.927000 39.923167 40.734500 39.733833 24.796500 24.441167 46.535333 1.000000 13.06 2.676967 -0.312716 -0.001947 -0.037402 -0.040499 -0.010280 -0.051316 -0.031182 -0.030131 -0.025407 -0.032507 -0.009433 -0.082690 0.000000 3.396794 307.210900 -0.663851 -0.236228 -0.000690 0.000000 270.813217 -1.823460 242.411517 -63.037832 -0.077300 0 0 811.910100 -3.063321 0.000000 -0.173056 -2.050671 -0.001462 -1.515171 -0.000579 -2.265964 -0.005098 -1.832128 -0.001357 0 0 0 0.037483 3.600100 13.967000 19.421167 0.243583 61.269000 0.033333 7.101667 0.067500 0 194.045000 -1.074167 65.695667 -1.945517 0.000000 0 -1.232333 12.258333 0.007117 0 0 0.004633 2.063333 0.048050 10.791667 0 0.024667 0.126433 0.1 0.000000 -60.542450 -65.257433 -62.862350 -61.508450 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1013.186000 -5.616467 -2.178133 0.243583 0.130917 -1.000000 -1.000000 0.000000 0.000000 124.476137 45.530383 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.076337
2014-04-01 10:00:00 0 2014 91 0 115.330367 -0.019988 -0.381466 -0.386065 4.172143 -0.834784 0.001786 -0.001071 0.454911 -0.000427 -11.796903 -0.001717 0.000000 0.000000 0.000000 -0.002067 0.000000 0.286733 0.003000 -0.002000 0.000000 0.501132 -0.097640 0.144626 -0.081305 -0.771985 2.586846 0.006600 -0.000933 0.000006 -1.172329 1.432310 20.915167 42.506333 3.316883 1.682720 -0.342303 -0.306752 3.593805 0.000019 242.346150 242.116367 306.730483 -85.622973 -72.268252 -8.868090 3.833190 1.824111 4.623084 -0.000450 -0.000417 0.105867 14.920000 0.197500 -0.982323 -0.000117 275.090333 275.415333 273.307417 272.851117 272.949550 22.055500 -0.025983 59.233500 24.743500 39.892333 39.890333 40.718333 39.720500 24.745333 24.387167 46.512000 1.000000 13.06 2.676717 -0.303633 -0.002191 -0.032302 -0.042114 -0.010609 -0.053615 -0.031387 -0.027866 -0.023421 -0.026374 -0.009448 -0.075907 0.000000 3.101809 305.144350 -2.047806 -0.150768 0.000000 0.000000 270.674217 -1.688497 238.696133 -66.027648 -0.087517 0 0 811.026733 -2.637981 0.000000 0.137337 -1.435360 -0.000122 -0.968855 0.000000 -1.793931 -0.001246 -1.512253 -0.000226 0 0 0 0.039260 2.735367 13.987500 19.352667 -0.509167 64.086667 0.618083 65.033333 0.931667 0 194.081667 -0.811100 64.732000 -1.955683 0.000000 0 -2.436800 12.219667 0.129983 0 0 0.149333 33.441667 0.941950 92.212333 0 0.392667 1.479050 0.1 0.000000 -62.409433 -66.511267 -64.384333 -63.027983 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1012.301167 -5.783517 -2.660183 -0.611467 -0.051400 -1.000000 -1.000000 0.000000 0.000000 115.340581 59.243411 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.316883
2014-04-01 11:00:00 0 2014 91 0 104.880325 -0.010633 -0.434885 -0.638284 5.255002 -0.166084 0.000926 -0.000201 0.886524 -0.000473 -11.804185 -0.001833 0.000000 0.000000 0.000000 -0.002250 0.000000 0.286033 0.003000 -0.002000 0.000000 1.338867 1.692903 0.152060 1.417245 -0.423089 2.687546 0.006783 -0.000950 0.000007 -1.687991 1.157184 20.871500 44.140333 3.464543 1.198117 -0.316099 -0.286711 3.662333 0.000025 245.868117 245.453500 306.906200 -79.167260 -66.637472 -6.069392 3.906922 1.300552 5.745219 -0.000150 -0.000417 0.947533 177.698333 1.080000 -1.207839 -0.000120 274.502400 274.803167 272.758750 272.312617 272.395700 22.037667 -0.709450 62.128167 24.716333 39.881333 39.868333 40.708000 39.708833 24.727000 24.361500 46.493667 1.000000 13.06 2.678583 -0.301447 -0.001505 -0.026821 -0.041336 -0.010679 -0.051899 -0.022332 -0.023142 -0.018373 -0.013760 -0.008742 -0.056713 0.000000 2.963834 305.344883 -0.842510 0.147563 0.000000 0.000000 270.443300 -1.392699 242.657400 -61.178853 -0.016517 0 0 810.101383 -1.963475 0.000000 -0.658412 -1.275411 0.000000 -0.675744 0.000000 -1.183460 -0.000227 -0.946531 -0.000113 0 0 0 0.039349 2.080850 14.007167 19.282000 -0.900517 66.063333 1.093850 209.057500 1.339167 0 194.056667 -1.382933 67.227833 -1.954850 0.000000 0 -2.734733 12.178000 0.080533 0 0 0.937950 184.561667 1.428850 201.020000 0 1.174667 1.674800 0.1 0.000000 -59.885050 -63.290050 -61.038083 -59.891383 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1011.376500 -5.806067 -2.894400 -1.779967 -1.609733 -1.000000 -1.000000 0.000000 0.000000 104.898891 70.686948 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.464543
2014-04-01 12:00:00 0 2014 91 0 93.591755 2.596963 2.510263 0.416570 8.155280 2.406760 2.734236 3.013713 3.375866 -0.000436 -11.818420 0.185850 0.000633 0.001550 0.000617 0.210350 0.001233 0.477633 0.003833 -0.001667 0.003617 1.132023 2.686147 0.256138 1.089744 -0.401600 5.294215 0.007383 -0.000950 0.000011 1.148195 3.826909 20.860333 46.592833 5.920285 4.257295 2.661253 2.645205 6.777503 0.000056 238.659650 237.971633 306.476100 -84.955217 -71.691920 -5.699365 7.084622 4.462973 8.732907 0.174317 0.197617 1.421817 290.884850 1.829167 -1.179544 -0.000109 274.137583 274.469483 272.275250 272.140067 272.221683 22.023167 -1.038500 64.533333 24.697333 39.856333 39.848167 40.710333 39.698000 24.702500 24.334500 46.478333 1.000000 13.06 2.682483 -0.012279 -0.001307 -0.005016 -0.024849 0.020884 -0.046364 0.004150 -0.003870 -0.001820 0.003695 0.019338 5.550526 0.247172 3.098505 305.310583 -1.293181 0.513778 0.618686 0.613792 270.539067 0.886302 235.155167 -68.868697 -0.012683 0 0 809.461750 0.295259 2.606458 3.003503 0.367865 1.795877 3.492503 4.584086 0.572748 1.893734 0.069106 1.176477 0 0 0 0.041852 1.778250 14.016000 19.223167 -1.077300 67.921000 1.245317 258.136667 1.696667 0 194.063333 -1.945300 71.197667 -1.953917 2.585240 0 -2.928333 12.149000 0.100067 0 0 1.240150 301.673333 1.850000 304.600000 0 1.772000 2.306583 0.1 0.075842 -63.867217 -67.927183 -67.816450 -67.338950 0.012152 0.024998 0.016347 0.008382 0.128939 0.129717 1010.736833 -5.654750 -2.938083 -1.992100 -2.386817 -1.000000 -1.000000 5.542967 296.583117 93.644466 80.800323 12.648892 67.084 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 -1516.450000 6.419112
2014-04-01 13:00:00 0 2014 91 0 82.140220 93.006725 102.601872 40.586209 112.272325 97.271930 100.844092 111.313385 106.246223 -0.000479 -11.780922 4.441400 0.019117 0.046017 0.019683 4.712717 0.026550 4.531800 0.025050 0.014133 0.106783 347.214292 352.459132 342.261183 167.151123 340.639881 59.881038 2.379283 0.019017 0.732153 92.462173 43.406502 21.029333 45.595833 40.411885 101.230657 45.821745 45.404402 99.236167 0.000049 229.597533 228.486367 318.782333 -99.599148 -85.417478 3.872481 101.643190 104.169135 46.372518 3.640083 4.494100 0.148050 11.116600 0.378333 344.744966 -0.000092 275.705000 275.972517 273.321567 273.132683 273.084200 22.005667 0.484117 59.935667 24.777500 39.887500 39.884333 40.735833 39.725333 24.792333 24.404500 46.508333 1.000000 13.06 2.686433 567.697802 2.011980 0.754383 0.599119 1.107887 0.283573 1.034495 0.460871 0.268491 0.262553 0.434281 188.089645 9.071122 28.161402 315.984333 -1.996640 22.955795 28.938797 25.976689 273.001600 94.143645 226.328567 -88.385703 -0.081567 0 0 809.186183 80.056957 94.003352 436.032015 42.032792 43.033340 434.257802 497.607682 52.803713 53.805833 38.001897 39.538682 0 0 0 0.044829 1.997883 13.992167 19.805000 0.219750 64.324500 0.270683 19.910217 0.520833 0 194.050000 0.054367 64.023333 -10.070417 172.886655 0 -2.842733 12.248167 0.036700 0 0 0.122317 31.796833 0.346067 36.672833 0 0.201667 0.600550 0.1 0.163861 -7.971467 -13.057517 -89.184800 -87.497967 0.212958 0.284012 0.329208 0.137852 0.164464 0.177748 1010.460667 -5.119867 -2.028200 0.219750 0.484117 4.716667 1.633333 186.917950 1368.825533 82.138483 90.413872 8.195024 67.084 -3266.078876 -3262.250977 -3230.531833 -3190.539538 -3198.412110 -3245.836487 -3214.386885 -3266.196517 -3266.085689 -3266.109060 -3266.118844 -3266.122694 -3266.029577 -3266.116859 47.932593
2014-04-01 14:00:00 0 2014 91 0 70.739575 309.078667 328.021617 133.951197 343.093483 320.398183 321.973167 335.894933 331.976933 -0.000448 -11.814145 14.897333 0.107567 0.259400 0.107017 15.239833 0.103183 14.355500 0.121033 0.095550 0.600933 801.450017 805.352850 757.532867 332.148600 796.333633 125.476875 17.487667 0.161317 2.280753 345.793000 53.753785 20.905500 43.721500 49.154942 322.491048 59.689490 57.423580 326.506497 0.000042 224.955217 224.262667 353.693100 -120.744817 -97.759898 22.595795 333.606400 325.576867 52.170907 8.460333 14.784833 1.250367 36.995650 1.971667 801.588200 -0.000109 278.810900 279.207050 275.177300 276.747500 276.604950 21.981000 2.546667 53.730167 24.805167 39.899167 39.900667 40.754667 39.744000 24.895833 24.523833 46.567833 1.000000 13.06 2.689567 1515.284833 16.758361 2.667045 2.077005 3.557645 1.060836 3.464137 1.018831 0.327283 0.289775 0.550145 633.709817 30.701753 61.801647 349.455250 5.208744 66.314738 83.986832 82.415663 278.426067 317.681883 224.722333 -114.877050 -0.053100 0 0 808.839867 339.061650 370.202500 916.600433 71.748763 69.887100 861.250017 937.376333 205.149433 231.219733 81.025470 84.039700 0 0 0 0.100388 4.958150 13.885667 21.726333 2.392433 57.821667 1.392533 42.181100 2.054167 0 194.033333 1.663233 59.425500 -28.035667 664.295100 0 -0.164850 13.277833 0.057550 0 0 1.539617 60.287883 1.890467 48.295950 0 2.179333 2.420283 0.1 0.071731 130.524267 141.027350 -128.737883 -125.192583 0.205152 0.191617 0.274352 0.130862 0.074510 0.105396 1010.116833 -4.485350 -0.628683 1.486083 1.756200 1.366667 1.033333 450.822583 1368.793017 70.737625 100.321120 3.093707 67.084 -2797.566223 -2782.668883 -2704.529667 -2643.539500 -2673.809333 -2742.339967 -2703.006500 -2799.557365 -2799.515812 -2799.557142 -2799.574647 -2799.584262 -2799.467377 -2799.578437 58.362060
2014-04-01 15:00:00 0 2014 91 0 59.675297 515.724733 530.869983 217.584717 556.887833 526.208600 529.064717 537.373433 536.185000 -0.000428 -11.809245 26.582333 0.307633 0.741867 0.292183 26.423833 0.266900 25.594500 0.311583 0.286367 1.719000 850.945667 854.891467 785.683133 335.888800 847.109450 316.697337 27.100500 0.304583 2.560210 545.086617 86.807618 20.894333 45.554833 78.924567 526.211737 97.484863 94.525517 528.009047 0.000011 234.388450 233.429700 391.260367 -120.161483 -96.585663 47.275047 533.686533 530.449917 81.929157 12.151500 26.266000 1.266583 61.042983 2.170000 848.069050 -0.000107 280.882033 281.200233 276.849150 279.484283 279.256333 21.998000 3.580217 51.199000 24.853000 39.923833 39.919000 40.767167 39.756667 24.961167 24.633000 46.608500 0.996667 13.06 2.689850 1650.863517 27.757582 4.454995 3.488740 5.763251 1.767810 5.709255 2.680700 0.568784 0.503295 0.911403 1051.282233 50.274713 89.846665 387.098650 27.285707 100.039898 122.379018 125.097783 281.352617 528.731533 237.594950 -116.501485 0.031833 0 0 808.563117 596.762067 637.909267 993.891783 103.095687 102.912155 815.597267 870.387750 362.298317 392.404933 109.173517 117.157900 0 0 0 0.108705 8.686750 13.774833 21.657833 3.940467 53.820500 1.572250 44.258417 2.320833 0 194.063333 2.932200 55.437833 -41.448667 898.368650 0 4.178967 13.441000 0.050500 0 0 1.642017 71.602650 1.950183 70.062600 0 2.496667 2.641350 0.1 0.128819 273.538150 287.354400 -156.871917 -153.668950 0.188565 0.169273 0.238087 0.119153 0.122041 0.169344 1009.838333 -4.053717 0.351283 2.809950 2.694483 8.533333 1.833333 690.108133 1368.760550 59.673836 111.437533 1.994829 67.084 -2326.015468 -2307.797400 -2215.352750 -2157.977917 -2198.435917 -2259.567083 -2229.510583 -2332.943257 -2332.845700 -2332.908597 -2332.933071 -2332.944231 -2332.805651 -2332.936275 93.710953
2014-04-01 16:00:00 0 2014 91 0 49.526853 641.773733 650.031067 268.250167 678.837533 647.421233 647.844533 656.507150 654.817000 -0.000359 -11.689428 34.627167 0.546250 1.317567 0.496617 33.930167 0.487283 33.412833 0.523417 0.525300 3.052850 806.282114 809.282616 737.078850 309.199107 801.305856 473.442217 29.591050 0.408817 2.480198 657.486000 126.175005 20.850833 43.122833 107.915268 643.595630 134.607443 131.225467 645.495980 0.000034 246.152250 245.869450 421.995583 -122.794532 -98.357398 61.727173 652.468733 647.417067 117.244302 14.776667 34.388333 1.523517 33.183433 2.613333 804.065671 -0.000123 283.911750 284.180033 279.784783 282.676917 282.425633 22.035667 5.646283 45.116000 24.874667 39.965167 39.956667 40.788167 39.782500 25.041667 24.755667 46.649000 1.000000 13.06 2.690000 1569.591642 31.233589 5.560369 4.327001 7.058637 2.194006 7.030577 4.040896 0.801945 0.754344 1.268419 1297.439183 61.267473 107.812653 418.767817 44.974790 116.806883 139.573718 147.653308 283.925983 652.663017 251.363333 -115.875683 0.120767 0 0 807.996967 765.937583 805.547317 970.682467 117.465237 117.983573 639.504117 680.035450 464.445650 500.355600 127.556222 142.525907 0 0 0 0.100525 11.995833 13.667333 21.539000 6.306550 46.595000 2.206000 57.546167 3.133333 0 194.076667 5.284533 46.989833 -40.215500 862.534933 0 8.397383 13.359167 0.041717 0 0 2.133583 54.016583 2.387783 36.414783 0 3.090000 3.266717 0.1 0.454258 354.766867 369.320050 -175.843333 -172.898367 0.179115 0.164687 0.217523 0.113685 0.433366 0.494410 1009.272667 -3.791083 1.702250 4.792067 4.778117 14.616667 9.116667 887.439733 1368.728050 49.525984 124.991157 1.544909 67.084 -2089.157512 -2072.584433 -1981.180770 -1929.279015 -1971.052973 -2024.488623 -2000.014520 -2099.433496 -2099.261140 -2099.339196 -2099.365255 -2099.371276 -2099.216038 -2099.360080 127.898515
2014-04-01 17:00:00 0 2014 91 0 41.196412 600.609083 587.337800 237.178222 616.113483 587.383550 596.231583 602.039367 592.597183 -0.000371 -11.626752 32.305833 0.606700 1.463200 0.535383 31.362167 0.565333 31.022500 0.569500 0.592867 3.390300 338.970440 340.098909 308.016876 127.330554 335.042300 486.272650 13.667283 0.230150 1.032497 588.442567 321.229450 20.810333 41.647167 273.298850 584.933762 326.073100 323.491583 580.180125 0.000031 292.824450 293.028617 418.786800 -72.566883 -57.606343 57.839563 586.113950 584.753517 310.411200 19.437333 32.129500 2.907300 37.009333 4.012500 336.574740 -0.000114 284.192433 284.085417 280.696600 282.721467 282.502983 22.083333 6.443900 42.639333 24.843000 39.939333 39.936500 40.786000 39.786833 25.018167 24.716667 46.630000 1.000000 13.06 2.691000 684.942322 14.904951 5.111510 3.963605 6.380711 1.959564 6.388554 4.180706 2.172961 2.175312 3.143509 1190.709833 56.168585 96.839458 417.476067 45.146943 101.827673 123.786030 131.315422 283.616767 592.490550 297.758333 -69.672473 0.167150 0 0 807.772817 639.883667 669.281767 669.750700 175.716198 187.128367 331.558400 353.196017 385.969067 415.101483 172.731863 191.329117 0 0 0 0.074111 13.400333 13.654667 21.574333 6.894700 44.222333 2.513583 28.515050 3.437500 0 194.070000 6.278300 44.261833 -27.213333 610.574233 0 10.372333 13.374500 0.023817 0 0 3.506000 187.110450 3.651133 166.824983 0 4.513667 4.504783 0.1 2.466706 356.963467 366.050883 -125.962350 -124.447450 0.167550 0.159578 0.209398 0.110487 2.930044 3.000778 1009.048833 -3.954733 1.944767 5.213350 4.421450 80.933333 58.766667 1029.239867 1368.695667 41.196335 142.561463 1.329824 67.084 -1510.874753 -1505.370356 -1470.139893 -1451.619768 -1468.423441 -1487.837439 -1479.697544 -1514.482244 -1513.834141 -1513.897901 -1513.896135 -1513.885202 -1513.660427 -1513.852988 323.167590
2014-04-01 18:00:00 0 2014 91 0 36.092960 392.608133 390.294017 148.952277 409.233633 393.452417 396.336633 401.221767 393.053633 -0.000319 -11.811380 24.237167 0.484350 1.168117 0.431917 23.060667 0.461367 23.142000 0.459500 0.458733 2.706550 60.969345 60.800551 55.196354 21.891603 58.848041 311.073050 2.636850 0.047050 0.174497 390.401067 330.860900 20.877667 42.474500 292.770633 385.500145 335.574650 334.776217 384.168353 0.000001 298.899817 299.628983 398.117400 -70.657958 -54.354907 35.156542 387.947117 385.359033 325.396683 19.149333 23.958500 3.658483 18.526467 4.991667 59.389698 -0.000092 284.666483 284.639117 281.336167 282.811417 282.731750 22.109167 7.130867 43.429500 24.827000 39.922667 39.915000 40.776167 39.782667 25.000333 24.694833 46.621333 1.000000 13.06 2.690083 137.101354 2.992394 3.384602 2.612046 4.238643 1.215489 4.274480 2.659819 2.332975 2.285231 3.253642 797.031067 37.642922 63.403848 397.375600 28.991697 64.333240 82.239790 87.908562 283.012350 391.022983 300.819233 -63.582535 0.171017 0 0 807.336667 387.418967 402.882183 397.654900 158.864300 167.339050 204.075150 220.147583 240.684150 256.834500 163.442583 177.901183 0 0 0 0.069535 13.895667 13.648500 21.560833 7.500183 45.003667 3.245550 25.410167 4.312500 0 193.990000 7.121117 44.242500 -10.010117 383.087250 0 11.814167 13.384833 0.020683 0 0 4.633633 127.754417 4.759567 83.680167 0 5.729667 5.711267 0.1 5.338806 221.808200 229.143550 -99.217583 -97.746617 0.164533 0.160205 0.210423 0.110322 5.827364 5.904716 1008.612333 -3.233217 2.517950 5.400417 4.725917 91.200000 54.283333 1105.820100 1368.663200 36.094108 165.156999 1.236892 67.084 -1398.622142 -1397.888477 -1392.244784 -1389.808390 -1392.727708 -1395.636410 -1394.586051 -1395.749888 -1394.013087 -1394.017157 -1393.994070 -1394.044946 -1393.696674 -1394.002571 335.654353
2014-04-01 19:00:00 0 2014 91 0 35.654707 475.058217 465.267183 184.811535 489.113217 465.713900 474.310733 478.947500 471.199283 -0.000324 -11.728425 26.905667 0.533317 1.286250 0.474600 26.010000 0.504983 25.827000 0.502250 0.519067 2.980200 148.562719 150.322124 131.815084 55.988718 143.113575 321.919700 6.170583 0.110417 0.435379 466.735983 339.347400 20.918333 43.230833 295.433583 462.311345 343.026717 341.179450 465.388892 0.000015 303.583233 303.343100 409.775033 -66.103842 -56.227878 47.394700 461.562983 462.889667 337.312817 19.237000 26.759500 1.751883 39.059717 2.850000 143.800013 -0.000119 285.493300 285.250600 282.446800 283.131317 282.906283 22.141167 8.212800 41.031833 24.871667 39.952333 39.946000 40.796333 39.809500 25.053333 24.765167 46.625500 1.000000 13.06 2.690333 304.726351 6.823036 4.041615 3.148414 5.053619 1.519561 5.062003 2.754959 2.355458 2.371843 3.315795 950.773333 44.663148 78.699935 409.010367 36.707345 80.867508 97.828062 104.602865 283.680817 468.948850 306.355267 -61.677207 0.146950 0 0 806.843033 484.688617 504.839300 490.193483 165.247700 175.751183 183.777017 200.081517 293.953900 314.272383 206.972883 225.756683 0 0 0 0.057281 13.437000 13.663833 21.540333 8.782650 42.339167 2.226333 47.618200 3.054167 0 194.008333 8.268517 41.174333 8.031400 463.262800 0 11.274000 13.409000 0.049283 0 0 2.408117 50.870383 2.708083 48.660800 0 3.342000 3.468850 0.1 4.561166 275.830383 280.900017 -106.191800 -105.667267 0.169747 0.166275 0.207718 0.109820 3.764116 3.842199 1008.118000 -2.957200 3.266800 7.642767 7.436367 95.483333 62.333333 1111.967300 1368.630700 35.657372 190.676434 1.229968 67.084 -1163.123000 -1160.764310 -1144.060487 -1136.988669 -1145.762176 -1153.964046 -1151.096423 -1162.856527 -1161.595231 -1161.616104 -1161.576798 -1161.573965 -1161.243744 -1161.499249 341.726487
2014-04-01 20:00:00 0 2014 91 0 40.033195 601.494883 595.654600 243.419750 618.469217 597.310717 598.020183 600.819283 600.274200 -0.000262 -11.689897 33.087333 0.632500 1.525567 0.583383 32.561333 0.589000 32.136500 0.599100 0.630850 3.534767 193.057962 194.426235 171.044951 71.996035 183.489713 528.525317 7.967533 0.138067 0.550390 619.525750 455.724017 20.944500 43.543167 365.676333 592.916997 440.525833 437.032483 594.805643 -0.000026 291.985117 292.420650 443.846950 -99.498385 -84.635305 57.918085 588.608683 593.436017 427.429517 23.816167 33.196833 1.659667 82.682067 2.980833 184.998111 -0.000142 290.030917 289.761033 286.071600 287.598817 287.350100 22.150167 11.221167 29.555167 24.887833 39.998667 39.987333 40.811000 39.843333 25.191000 24.882000 46.682667 1.000000 13.06 2.690600 401.133670 8.807797 5.115239 4.011046 6.468666 1.993590 6.488323 4.529211 2.904211 2.993655 4.246171 1185.995650 54.940933 98.404693 444.623433 45.044565 102.269063 121.953165 131.859500 288.704300 593.252750 296.273600 -97.114743 0.032867 0 0 806.142533 632.323467 655.893033 645.493183 194.722217 205.827733 219.477250 236.965700 385.646867 413.929250 303.129200 329.561833 0 0 0 0.074763 15.014000 13.608667 21.274500 12.005667 30.023667 1.875200 102.789733 2.954167 0 193.998333 11.054167 29.749500 25.418667 592.803150 0 14.122167 13.315500 0.047567 0 0 2.581433 128.028000 2.871017 118.245733 0 3.804333 3.847850 0.1 2.378717 339.305167 345.047150 -151.861833 -152.202783 0.170435 0.164057 0.203528 0.111183 2.495319 2.566424 1007.416833 -4.485067 4.318933 11.566750 10.827350 97.050000 63.450000 1047.284600 1368.598267 40.037130 214.050943 1.306600 67.084 -2096.650390 -2094.523991 -2079.235124 -2072.836061 -2081.100463 -2088.243827 -2085.713050 -2098.022831 -2097.333265 -2097.364420 -2097.336384 -2097.300593 -2097.141142 -2097.275614 431.481208
2014-04-01 21:00:00 0 2014 91 0 47.914428 363.507883 363.376033 142.694905 377.115700 366.641850 368.235667 372.167783 366.009117 -0.000251 -11.789075 20.830000 0.338283 0.815783 0.320967 20.473333 0.306033 20.317667 0.333667 0.330417 1.890267 35.017409 34.888277 31.224659 11.725897 31.498370 322.930317 1.448700 0.020833 0.090247 375.314550 347.777017 20.875833 39.638500 286.357817 364.821098 337.268850 334.492950 369.484118 -0.000040 299.761983 300.913150 410.979267 -94.778737 -75.585773 24.250977 365.475283 362.841950 323.625683 17.531333 20.853667 3.138367 103.325200 4.575000 32.223834 -0.000118 289.284883 289.335083 285.885483 287.327217 287.277000 22.185167 11.848500 26.501333 24.868333 39.976000 39.963500 40.799000 39.848833 25.150167 24.779333 46.661167 1.000000 13.06 2.690683 86.838647 1.650372 3.106384 2.412607 3.944040 1.147990 3.975396 2.748291 2.266320 2.255246 3.248949 729.937917 33.859468 60.745680 410.776233 21.288320 60.737727 76.089023 81.364652 287.043200 362.669433 301.639150 -83.265957 0.073517 0 0 805.930967 365.271800 379.618550 363.248683 144.046783 153.210433 169.490850 185.004350 227.304450 243.385383 213.420400 231.896083 0 0 0 0.064225 16.601333 13.581500 21.351167 12.133667 27.731500 2.946333 95.833483 4.062500 0 193.956667 11.548833 27.008167 40.099833 334.248383 0 15.411167 13.333333 0.016950 0 0 4.434650 105.566250 4.538017 103.151017 0 5.577667 5.521800 0.1 3.456625 190.886933 192.767317 -111.217283 -109.863083 0.166758 0.166793 0.209388 0.111415 4.056570 4.117653 1007.207000 -5.305983 4.123017 11.191483 10.721050 99.066667 76.750000 916.216717 1368.565800 47.919115 232.468461 1.495610 67.084 -1282.657693 -1282.412708 -1280.324395 -1279.671170 -1280.920596 -1281.851177 -1281.551221 -1280.485584 -1279.431655 -1279.432265 -1279.394041 -1279.357092 -1279.152994 -1279.328659 337.405500
2014-04-01 22:00:00 0 2014 91 0 57.818428 242.212167 242.999267 94.553798 252.993033 245.911200 247.030617 250.872150 244.916950 -0.000238 -11.805457 14.018667 0.179833 0.433617 0.173167 13.852167 0.153350 13.819833 0.183717 0.174900 1.004733 4.738511 4.543892 3.649425 1.498908 2.772224 222.801400 0.152833 0.001200 0.006949 250.733800 250.874433 20.737667 39.816833 211.500000 249.204680 240.666017 238.824200 254.797725 -0.000019 294.613217 295.630233 393.454233 -95.782562 -77.329825 13.257701 252.193100 247.168750 233.858300 12.354333 14.026000 3.228717 21.010017 4.400000 3.055896 -0.000143 288.129400 288.282400 285.230167 286.064417 286.053700 22.193833 11.483333 27.505333 24.863333 39.958500 39.948333 40.798333 39.837667 25.111167 24.729833 46.642000 1.000000 13.06 2.690433 14.768461 0.196195 2.080768 1.600630 2.635082 0.741290 2.658108 1.878346 1.658923 1.610886 2.317616 487.530383 22.579413 40.809590 393.438883 12.277554 40.044615 50.894465 53.423933 285.565367 241.521917 295.402367 -81.673698 0.033683 0 0 805.995050 223.752250 232.461433 204.914317 107.807715 114.794350 122.464500 134.042667 135.105433 144.548717 134.235067 146.609300 0 0 0 0.051050 16.498667 13.588333 21.438167 11.617167 28.858167 2.966017 23.196333 3.945833 0 193.935000 11.267500 27.691167 42.700333 210.204983 0 14.452667 13.386833 0.017683 0 0 4.406283 60.130183 4.513867 52.302817 0 5.235667 5.294367 0.1 3.532886 108.283133 104.381000 -98.841017 -97.808650 0.161998 0.167938 0.210142 0.109585 3.701680 3.750510 1007.270833 -5.201567 3.894767 10.524600 10.252367 98.700000 81.333333 727.758050 1368.533400 57.823333 246.604316 1.889356 67.084 -699.863094 -699.861344 -699.757744 -699.739001 -699.806552 -699.853556 -699.838906 -697.006581 -696.092616 -696.072059 -695.970001 -695.867902 -695.638073 -695.796191 250.574370
2014-04-01 23:00:00 0 2014 91 0 68.759173 194.051233 198.755233 80.235270 206.265633 200.441350 197.755167 201.774083 201.052833 -0.000190 -11.778812 10.673867 0.093900 0.226550 0.093050 10.856133 0.081100 10.700267 0.103200 0.091533 0.524800 19.190415 19.082951 16.989494 7.135526 15.933266 174.545950 0.500083 0.004333 0.042144 209.350983 203.328083 20.822500 39.197833 164.797133 205.939388 191.515450 190.416300 213.762947 -0.000010 286.947250 287.493917 387.240600 -102.884262 -86.265775 8.216394 209.473783 204.377633 185.659617 9.357917 10.750367 2.028450 83.939467 3.155833 16.393984 -0.000125 288.194733 288.322917 285.463950 285.892283 285.881983 22.206000 11.885333 24.855667 24.869167 39.971000 39.962667 40.803667 39.841500 25.125167 24.747667 46.645000 1.000000 13.06 2.690083 46.624995 0.529627 1.664141 1.294275 2.153223 0.615488 2.159383 1.454184 1.275016 1.259082 1.845632 390.101050 17.906647 34.553562 387.259917 7.650369 33.535415 41.546012 43.549647 285.309333 195.617367 286.890983 -88.577107 -0.016933 0 0 806.107050 178.388233 184.311650 197.338650 87.301572 91.908037 87.128978 95.156292 104.855232 111.798048 157.102967 168.147800 0 0 0 0.052959 15.932833 13.600333 21.448333 11.953833 26.298667 2.154617 67.460800 3.063333 0 193.938333 11.623167 24.986833 28.823000 207.871750 0 13.579000 13.334167 0.033967 0 0 3.066167 97.822583 3.273100 108.162367 0 4.059000 4.195250 0.1 1.647150 70.548917 64.435733 -100.293350 -99.766000 0.163427 0.173833 0.214397 0.111637 1.604344 1.637040 1007.381167 -6.058317 3.814017 11.294167 11.334317 98.750000 67.850000 494.891900 1368.501000 68.763959 258.053650 2.806854 67.084 -699.810996 -699.625638 -698.712826 -698.318502 -698.895102 -699.441123 -699.218973 -698.505590 -698.131368 -698.125295 -698.081250 -698.013523 -697.815785 -697.959156 195.728895
2014-04-02 00:00:00 0 2014 91 0 80.126183 85.737807 89.636593 36.325315 91.194758 90.082392 87.262622 90.867118 90.618232 -0.000230 -11.900892 4.560467 0.023050 0.055517 0.023600 4.842667 0.027767 4.822550 0.030150 0.020233 0.128600 10.519153 9.459753 11.277067 3.209475 9.208591 81.577035 0.155383 0.000750 0.022141 97.269875 95.264268 20.994000 38.508833 76.708007 98.498742 87.158580 86.776975 99.414935 -0.000018 278.139500 278.628700 371.640067 -112.456033 -94.301503 -7.979606 97.143363 96.098902 83.480288 4.083300 4.650250 1.938300 256.698333 2.914167 9.882676 -0.000110 287.813367 288.099517 285.379400 285.852667 285.924067 22.212833 12.160833 21.410000 24.859333 39.974500 39.961167 40.804833 39.830833 25.115333 24.742000 46.639833 1.000000 13.06 2.690433 26.925951 0.145580 0.706524 0.542239 0.966096 0.239646 0.953236 0.641552 0.555276 0.519747 0.836147 169.872023 7.541788 16.805727 371.794900 -3.317426 13.817579 18.890884 18.916307 284.542167 85.591675 276.764917 -94.463482 -0.088017 0 0 806.369617 71.292293 80.269932 100.236498 41.543040 45.243682 37.338450 42.725397 46.138720 50.017582 88.300293 96.777337 0 0 0 0.048645 15.591167 13.614667 20.920167 12.064500 22.512000 1.830617 260.215000 2.841667 0 193.973333 11.711167 22.037500 9.817217 91.881112 0 12.896667 12.716667 0.071500 0 0 1.918633 257.541833 2.354333 270.686667 0 3.090000 3.304617 0.1 0.953873 -11.219233 -20.335383 -93.500567 -93.166200 0.138023 0.190088 0.220093 0.111783 1.196089 1.211443 1007.645333 -7.743450 3.407550 11.681733 11.713883 81.466667 30.516667 234.166417 1368.468500 80.130844 268.114101 6.290051 67.084 -1399.792280 -1399.693749 -1399.128473 -1398.730745 -1399.054748 -1399.541195 -1399.278592 -1399.193231 -1398.891252 -1398.880228 -1398.858095 -1398.831842 -1398.694442 -1398.810783 91.098543
2014-04-02 01:00:00 0 2014 91 0 91.522765 6.741764 6.805255 1.219648 5.463964 6.604028 6.819206 7.291261 6.583113 -0.000210 -11.879117 0.413050 0.001450 0.003517 0.001333 0.464100 0.002717 0.726650 0.005700 -0.000667 0.008200 -1.409811 -2.061471 0.259853 -1.003837 -0.709688 9.390413 0.006800 -0.000900 0.000016 8.707721 11.389517 20.882000 40.205333 10.147155 8.374545 6.855163 6.933463 11.439522 -0.000036 277.714883 278.103617 353.235050 -105.442278 -86.257790 -18.168087 11.524065 8.127080 7.476236 0.380400 0.431567 1.658367 87.886267 2.554167 -0.288003 -0.000112 285.828717 286.251267 283.658667 284.073567 284.228000 22.217167 10.613000 25.913667 24.839000 39.943500 39.939000 40.786333 39.806167 25.049500 24.657167 46.611000 1.000000 13.06 2.683350 -0.104968 -0.003022 0.016334 -0.014281 0.066246 -0.051497 0.045321 0.019810 0.020573 -0.019441 0.059741 12.675858 0.535282 2.671892 352.930683 -8.742796 -1.065612 1.434193 1.591101 281.998217 3.823558 275.244033 -83.261580 -0.135767 0 0 806.805967 1.759207 5.670234 4.737424 0.697371 3.966954 -0.206762 3.297672 -0.051928 3.449718 2.622758 6.124019 0 0 0 0.046647 14.698833 13.648000 19.713167 10.223833 27.864167 1.920650 91.554917 2.600000 0 194.001667 9.749833 27.507500 -1.072900 6.462765 0 11.071500 12.527833 0.072817 0 0 2.375183 134.916533 2.819267 115.923133 0 3.183667 3.506750 0.1 0.199782 -66.327450 -70.693717 -75.520167 -74.827067 0.012957 0.059510 0.053470 0.029322 0.371752 0.373545 1008.081000 -6.722750 2.760250 9.566017 10.148950 0.483333 -0.400000 19.090317 524.571033 91.582280 277.742003 15.896664 67.084 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 -2682.950000 11.139272
2014-04-02 02:00:00 0 2014 91 0 102.885935 -0.015336 -0.403198 -2.009595 -1.522223 -0.688208 0.000231 0.001606 -0.841985 -0.000213 -11.859873 -0.001683 0.000000 0.000000 -0.000367 -0.001950 0.000000 0.300517 0.004000 -0.002000 0.000083 -0.961992 -1.393946 0.172335 -0.354242 -0.647776 2.391880 0.006717 -0.000983 0.000003 1.099314 3.732281 20.906000 41.611333 3.387090 0.133935 -0.310105 -0.331556 3.485327 -0.000009 278.717733 279.310983 345.583833 -96.406143 -78.619467 -16.840123 3.725237 0.144439 2.241709 -0.000600 -0.000233 1.694233 26.682000 2.550000 -0.280760 -0.000134 284.297467 284.702100 282.333733 282.374850 282.516933 22.201333 9.273033 31.128500 24.835833 39.941500 39.930667 40.780000 39.793500 25.011000 24.619833 46.599333 1.000000 13.06 2.678533 -0.235335 -0.003342 -0.040722 -0.059134 -0.011431 -0.073291 -0.031806 -0.035508 -0.028799 -0.050518 -0.010274 -0.184172 0.000000 1.943042 345.031983 -8.604073 -1.512316 -0.127974 0.133776 280.419050 -2.477099 276.348733 -74.479698 -1.775733 0 0 807.582933 -3.719034 -0.139709 -1.213126 -2.597951 -0.043114 -2.589093 -0.008293 -3.272230 -0.013700 -2.545610 -0.001244 0 0 0 0.046028 13.158500 13.688667 19.606000 8.892433 33.277000 1.858550 37.905767 2.595833 0 193.938333 8.683417 32.271667 -1.858083 0.000000 0 9.026833 12.487500 0.104817 0 0 2.310983 60.761233 2.950150 45.738617 0 3.151000 3.702567 0.1 0.000000 -65.209350 -68.067267 -66.866100 -65.721000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1008.858500 -5.818283 2.371550 8.037683 8.475917 -1.000000 -1.000000 0.000000 0.000000 102.914436 287.739028 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.387090
2014-04-02 03:00:00 0 2014 91 0 113.456267 -0.016716 -0.386799 -2.613980 0.373369 -0.193752 -0.001521 -0.001071 -0.667926 -0.000333 -11.786662 -0.001683 0.000000 0.000000 -0.000033 -0.001967 0.000000 0.296567 0.004000 -0.002000 0.000000 -1.429903 -1.744282 0.210518 -0.618925 -0.557784 3.004769 0.006850 -0.000983 0.000003 0.361640 3.173785 20.957167 44.348333 3.984577 -0.472417 -0.111524 -0.245501 3.953577 0.000022 268.230633 268.633183 339.058783 -93.721045 -74.967525 -11.033229 4.218773 -0.502750 2.593539 -0.000667 -0.000200 3.191833 172.661150 4.283333 -0.284719 -0.000112 281.604600 282.042133 279.443983 279.891883 280.030567 22.198500 6.200317 50.359833 24.783000 39.893500 39.883000 40.753000 39.762167 24.915167 24.586167 46.564500 1.000000 13.06 2.679467 -0.251485 -0.004268 -0.034212 -0.061177 -0.010918 -0.076461 -0.025258 -0.028241 -0.022008 -0.045695 -0.009102 -0.244994 0.000000 1.642840 338.422733 -3.553348 -1.486960 -0.201584 0.060115 278.040100 -2.631797 265.703383 -73.389098 -0.013050 0 0 808.460783 -3.399521 -0.230269 -0.566150 -2.693104 -0.161630 -2.739786 -0.056319 -2.808393 -0.086961 -2.398476 -0.023289 0 0 0 0.047293 11.546500 13.738500 19.556167 6.062433 53.083667 2.335683 96.819167 3.179167 0 193.966667 5.684150 52.999333 -1.889183 0.000000 0 7.327133 12.456667 0.066450 0 0 3.999750 258.636500 4.405133 215.904250 0 4.919000 5.281733 0.1 0.000000 -69.843967 -71.819183 -70.828150 -69.789550 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1009.735333 -2.459483 2.086850 4.554150 3.928200 -1.000000 -1.000000 0.000000 0.000000 113.473283 298.917847 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.984577
2014-04-02 04:00:00 0 2014 91 0 122.816417 -0.019067 -0.554220 -1.355180 2.340684 -0.544696 -0.001223 -0.000736 0.154693 -0.000348 -11.787415 -0.001717 0.000000 0.000000 -0.000500 -0.002083 0.000000 0.295717 0.004000 -0.002000 0.000000 -0.196598 -0.036821 0.136853 0.616039 -0.292483 3.711211 0.006733 -0.001000 0.000002 -0.647472 1.971323 20.875667 46.322500 4.617081 1.013030 -0.084450 -0.376046 5.059500 0.000003 254.577117 254.522933 334.682200 -101.907845 -85.813252 -9.663189 5.388363 1.099886 6.534989 -0.000117 -0.000233 3.353717 329.161667 4.337500 -0.174424 -0.000103 280.689533 281.108533 278.881583 278.910550 279.000150 22.207833 5.825450 49.572500 24.766667 39.883833 39.878667 40.744667 39.751333 24.897667 24.562167 46.549833 1.000000 13.06 2.680600 -0.239878 -0.001387 -0.031382 -0.056696 -0.013723 -0.071165 -0.032484 -0.027449 -0.022221 -0.023712 -0.011358 -0.187465 0.000000 2.546550 334.129617 -4.717630 -0.207902 -0.211667 0.043851 277.413083 -2.117827 251.725367 -83.944273 -0.008717 0 0 808.103733 -2.516072 -0.187680 0.166954 -1.692143 -0.248270 -1.389791 -0.135996 -1.502954 -0.195806 -1.525610 -0.112960 0 0 0 0.048133 9.793333 13.785667 19.514333 5.746117 52.071500 1.972300 262.294333 2.766667 0 193.966667 5.326883 52.266833 -1.907200 0.000000 0 5.647667 12.427333 0.079383 0 0 3.913067 314.411667 4.396717 320.578333 0 4.773333 5.174350 0.1 0.000000 -78.797233 -82.707500 -80.105083 -79.606683 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1009.378667 -2.937400 1.735767 4.427483 3.317483 -1.000000 -1.000000 0.000000 0.000000 122.829207 312.191727 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.617081
2014-04-02 05:00:00 0 2014 91 0 130.164567 -0.013189 -0.370537 -1.349876 0.698233 -0.430616 -0.002282 -0.000736 -0.977338 -0.000372 -11.802148 -0.001600 0.000000 0.000000 -0.000183 -0.002017 0.000000 0.293567 0.004000 -0.002000 0.000000 -0.953543 -0.676502 0.200043 -0.219586 -0.628523 3.443909 0.006617 -0.000983 0.000001 -0.775378 1.931920 20.892000 43.790500 4.509819 1.161582 -0.080228 -0.255589 4.753023 0.000015 243.356283 243.715900 326.908100 -109.461383 -91.605488 -13.859590 5.066024 1.248165 5.680405 -0.000700 -0.000133 2.744600 94.192967 3.675000 -0.318812 -0.000093 279.905433 280.358367 277.903900 278.044967 278.181117 22.182167 4.737133 53.864833 24.760833 39.880667 39.877167 40.743000 39.744667 24.866000 24.523333 46.538500 1.000000 13.06 2.679883 -0.243243 -0.003349 -0.039702 -0.060532 -0.012251 -0.075599 -0.033050 -0.034251 -0.027570 -0.035151 -0.010710 -0.165926 0.000000 2.198714 326.408100 -5.936293 -1.350887 -0.183300 0.011755 276.079667 -2.870887 240.447433 -88.654620 -0.075067 0 0 807.747267 -3.762921 -0.137492 -0.230232 -2.863365 -0.242440 -2.542086 -0.154428 -2.984749 -0.234892 -2.329402 -0.140672 0 0 0 0.049294 8.691000 13.818833 19.435667 4.455833 57.420000 2.139917 72.586333 2.866667 0 193.970000 3.715533 59.080333 -1.904933 0.000000 0 4.288700 12.400500 0.061767 0 0 3.497567 153.844450 3.873733 145.834100 0 4.197000 4.473200 0.1 0.000000 -80.952767 -85.261417 -83.551817 -82.692200 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1009.022000 -2.893983 1.085683 2.733767 2.437417 -1.000000 -1.000000 0.000000 0.000000 130.174811 328.439539 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.509819
2014-04-02 06:00:00 0 2014 91 0 134.449400 0.002300 -0.406105 -1.023715 1.942328 -0.497009 -0.001719 -0.000602 -0.380009 -0.000504 -11.825365 -0.001650 0.000000 0.000000 0.000000 -0.001983 0.000000 0.290683 0.003567 -0.002000 0.000000 -0.519506 -0.105700 0.229780 0.287535 -0.503038 3.483105 0.006733 -0.001000 0.000001 -1.169034 1.670404 20.948333 41.519833 4.487795 1.244385 0.020740 -0.268307 4.492258 0.000033 239.513217 239.634450 322.068550 -103.503583 -86.997172 -10.297325 4.792650 1.345929 4.727171 -0.000600 -0.000217 2.885667 59.639667 3.845833 -1.015353 -0.000085 278.018367 278.434933 276.054150 276.354850 276.470850 22.164167 2.903483 63.489333 24.738833 39.867167 39.862833 40.729500 39.730167 24.810167 24.455833 46.519333 1.000000 13.06 2.679800 -0.227598 -0.002934 -0.037633 -0.056278 -0.012217 -0.069435 -0.032321 -0.030505 -0.024344 -0.037968 -0.010413 -0.113376 0.000000 2.472385 321.358017 -3.683002 -0.777386 -0.118853 0.002261 274.534683 -2.391492 236.870000 -85.023690 -0.500767 0 0 807.933250 -3.436008 -0.061398 -0.108847 -2.379781 -0.169225 -2.248630 -0.125880 -2.594049 -0.216890 -1.918726 -0.153906 0 0 0 0.044005 7.337517 13.859667 19.616667 2.843650 66.763000 2.377083 20.884000 3.058333 0 194.056667 2.340950 67.765833 -1.905067 0.000000 0 2.845683 12.369333 0.078617 0 0 3.257550 345.755000 3.736617 339.097083 0 4.070333 4.498467 0.1 0.000000 -80.432117 -84.602117 -82.555333 -81.723567 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1009.207833 -2.401950 0.426383 0.579450 0.167250 -1.000000 -1.000000 0.000000 0.000000 134.457681 347.828980 -1.000000 67.084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.487795

PV Output Data!


In [6]:
filefolder = 'data/pvoutput/pvoutput6months/'
desired_file = '20140401.csv'

def return_pvoutput_data(desired_file, filefolder):
    '''Input: Desired file and folder
    Output: PV Output dataframe
    Usage: filefolder = 'data/pvoutput/pvoutput6months/'
    desired_file = '20140401.csv'
    return_pvoutput_data(desired_file, filefolder)'''
    df_output = pd.read_csv(filefolder + desired_file) #pvoutput
    #df_output['datetime'] = df_output['datetime'] + pd.Timedelta(hours=6) #convert to utc time
    df_output['datetime'] = df_output['datetime'].apply(pd.to_datetime)
    df_output['datetime'] = df_output['datetime'] + pd.Timedelta(hours=6) #convert to utc time
    df_output.set_index(['datetime'],inplace=True) #set created column as index ...
    df_output = df_output.resample('H') # ...so that we can resample it (hourly)
    return df_output[['Power']]

return_pvoutput_data(desired_file, filefolder)


Out[6]:
Power
datetime
2014-04-01 06:00:00 0.000000
2014-04-01 07:00:00 0.000000
2014-04-01 08:00:00 0.000000
2014-04-01 09:00:00 0.000000
2014-04-01 10:00:00 0.000000
2014-04-01 11:00:00 0.000000
2014-04-01 12:00:00 8.333333
2014-04-01 13:00:00 669.416667
2014-04-01 14:00:00 3238.666667
2014-04-01 15:00:00 6951.916667
2014-04-01 16:00:00 9926.916667
2014-04-01 17:00:00 3256.666667
2014-04-01 18:00:00 5681.250000
2014-04-01 19:00:00 10425.083333
2014-04-01 20:00:00 5369.083333
2014-04-01 21:00:00 6518.333333
2014-04-01 22:00:00 3878.416667
2014-04-01 23:00:00 2280.083333
2014-04-02 00:00:00 1003.083333
2014-04-02 01:00:00 71.250000
2014-04-02 02:00:00 0.000000
2014-04-02 03:00:00 0.000000
2014-04-02 04:00:00 0.000000
2014-04-02 05:00:00 0.000000

Moooor Satellite Data


In [7]:
%run data_helper_functions.py
from data_helper_functions import plot_satellite_image, return_satellite_data

In [8]:
filename  = 'data/satellite/colorado/summer6months/data/goes15.2014.091.110018.BAND_06.nc'
plot_satellite_image(filename)



In [9]:
lons, lats, data = return_satellite_data(filename)

plt.figure(figsize=(8, 8))
imgplot = plt.imshow(data)
imgplot.set_interpolation('none')



In [ ]:

Find files based on channel and datetime for satellite data


In [10]:
import matplotlib.pyplot as plt
%matplotlib inline
from datetime import datetime
from data_helper_functions import plot_satellite_image, \
    return_satellite_data, find_closest_date, find_file_details, \
    find_closest_date, find_desired_file

In [11]:
filefolder = "data/satellite/colorado/summer6months/data/"
desired_datetime = datetime(2014, 5, 5, 22) #year, month, day [, hour, minute, second]
desired_channel = 'BAND_01' #channel

sat_image_file = filefolder+find_desired_file(desired_datetime, desired_channel, filefolder)

lons, lats, data = return_satellite_data(sat_image_file)
plt.figure(figsize=(8, 8))
imgplot = plt.imshow(data)
imgplot.set_interpolation('none')
plt.show()


Get correct file for Sensor Data and PV Output!

Now we have to do something similar to what we did for satellite data


In [12]:
import os
from datetime import datetime

def find_file_from_date(desired_datetime, filefolder, filetype = 'csv'):
    '''Input: datetime, folder, filetype; Output: file'''
    data_files = os.listdir(filefolder)

    list_of_files = [] #contains all the files
    list_of_files_details = [] #contains information collected from filename
    for myfile in data_files:
        if (myfile[-2:] == filetype or myfile[-3:] == filetype): #only get netCDF by default
            list_of_files.append(myfile)
            list_of_files_details.append(myfile.split('.'))

    for i,val in enumerate(list_of_files_details):
        try:   
            if datetime.strptime(list_of_files_details[i][0], '%Y%m%d') == desired_datetime:
                return list_of_files[i]
        except:
            pass
        
filefolder = "data/pvoutput/pvoutput6months/"
desired_datetime = datetime(2014, 5, 5) #year, month, day [, hour, minute, second]

find_file_from_date(desired_datetime, filefolder)


Out[12]:
'20140505.csv'

In [ ]: