@@ -37,21 +37,60 @@ def read_surfrad(filename):
37
37
Tuple of the form (data, metadata).
38
38
39
39
data: Dataframe
40
- Dataframe with the fields found in SURFRAD_COLUMNS .
40
+ Dataframe with the fields found below .
41
41
metadata: dict
42
42
Site metadata included in the file.
43
43
44
44
Notes
45
45
-----
46
- Metadata includes the following fields
47
- =============== ====== ===============
48
- key format description
49
- =============== ====== ===============
50
- station String site name
51
- latitude Float site latitude
52
- longitude Float site longitude
53
- elevation Int site elevation
54
- surfrad_version Int surfrad version
46
+ Metadata dictionary includes the following fields:
47
+
48
+ =============== ====== ===============
49
+ Key Format Description
50
+ =============== ====== ===============
51
+ station String site name
52
+ latitude Float site latitude
53
+ longitude Float site longitude
54
+ elevation Int site elevation
55
+ surfrad_version Int surfrad version
56
+ =============== ====== ===============
57
+
58
+ Dataframe includes the following fields:
59
+
60
+ ================== ====== ==========================================
61
+ SURFRAD data Field Format Description
62
+ ================== ====== ==========================================
63
+ year int year as 4 digit int
64
+ jday int day of year 1-365(or 366)
65
+ month int month (1-12)
66
+ day int day of month(1-31)
67
+ hour int hour (0-23)
68
+ minute int minute (0-59)
69
+ dt float decimal time i.e. 23.5 = 2330
70
+ zen float solar zenith angle (deg)
71
+ **Fields below have associated qc flags labeled <field>_flag.**
72
+ -----------------------------------------------------------------------
73
+ dw_solar float downwelling global solar(W/m^2)
74
+ uw_solar float updownwelling global solar(W/m^2)
75
+ direct_n float direct normal solar (W/m^2)
76
+ diffuse float downwelling diffuse solar (W/m^2)
77
+ dw_ir float downwelling thermal infrared (W/m^2)
78
+ dw_casetemp float downwelling IR case temp (K)
79
+ dw_dometemp float downwelling IR dome temp (K)
80
+ uw_ir float upwelling thermal infrared (W/m^2)
81
+ uw_casetemp float upwelling IR case temp (K)
82
+ uw_dometemp float upwelling IR case temp (K)
83
+ uvb float global uvb (miliWatts/m^2)
84
+ par float photosynthetically active radiation(W/m^2)
85
+ netsolar float net solar (dw_solar - uw_solar) (W/m^2)
86
+ netir float net infrared (dw_ir - uw_ir) (W/m^2)
87
+ totalnet float net radiation (netsolar+netir) (W/m^2)
88
+ temp float 10-meter air temperature (?C)
89
+ rh float relative humidity (%)
90
+ windspd float wind speed (m/s)
91
+ winddir float wind direction (deg, clockwise from north)
92
+ pressure float station pressure (mb)
93
+ ================== ====== ==========================================
55
94
56
95
See README files located in the station directories in the SURFRAD
57
96
data archives[2] for details on SURFRAD daily data files.
0 commit comments