Working with multiple ARM files and Xarray#
When working with multiple ARM files such as the datastream sgpmfrsraod1michE13.c1, errors can occur depending on the parameters used to read in the files. ACT uses xarray open_mfdataset to read in multiple files and feeds these parameters into the xarray function. Parameters such as combine (how xarray combines the files), data_vars (whether to attempt to combine all variables despite dimensions), and much more. Depending on how coordinates and dimensions are in the files, such as multiple dimensions outside of time, the default reader in ACT and xarray can fail.
Lets start by looking at one singular file in for our sgpmfrsraod1michE13.c1 datastream:
import glob
import xarray as xr
import act
files = sorted(glob.glob('sgpmfr_data/*'))
files
['sgpmfr_data/sgpmfrsraod1michE13.c1.20200101.000000.cdf',
'sgpmfr_data/sgpmfrsraod1michE13.c1.20200102.000000.cdf',
'sgpmfr_data/sgpmfrsraod1michE13.c1.20200103.000000.cdf',
'sgpmfr_data/sgpmfrsraod1michE13.c1.20200104.000000.cdf',
'sgpmfr_data/sgpmfrsraod1michE13.c1.20200105.000000.cdf',
'sgpmfr_data/sgpmfrsraod1michE13.c1.20200106.000000.cdf',
'sgpmfr_data/sgpmfrsraod1michE13.c1.20200107.000000.cdf']
ds = act.io.read_arm_netcdf(files[0])
ds
<xarray.Dataset> Size: 3MB
Dimensions: (time: 4320, bench_angle: 181,
wavelength: 750,
Io_interquartile_time: 121,
Io_wavelength: 5,
Io_gauss_time: 61)
Coordinates:
* time (time) datetime64[ns] 35kB 2020-...
* bench_angle (bench_angle) float32 724B 0.0 ....
* wavelength (wavelength) float32 3kB 325.0 ....
* Io_interquartile_time (Io_interquartile_time) object 968B ...
* Io_gauss_time (Io_gauss_time) object 488B 2019...
Dimensions without coordinates: Io_wavelength
Data variables: (12/245)
base_time datetime64[ns] 8B 2020-01-01
time_offset (time) datetime64[ns] 35kB 2020-...
hemisp_broadband_raw (time) float32 17kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter1_raw (time) float32 17kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter2_raw (time) float32 17kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter3_raw (time) float32 17kB dask.array<chunksize=(4320,), meta=np.ndarray>
... ...
direct_normal_transmittance_filter5 (time) float32 17kB dask.array<chunksize=(4320,), meta=np.ndarray>
Io_interquartile_values (Io_interquartile_time, Io_wavelength) float32 2kB dask.array<chunksize=(121, 5), meta=np.ndarray>
Io_gauss_values (Io_gauss_time, Io_wavelength) float32 1kB dask.array<chunksize=(61, 5), meta=np.ndarray>
lat float32 4B ...
lon float32 4B ...
alt float32 4B ...
Attributes: (12/83)
command_line: mfraod -n mfraod_mfrsr -s sg...
Conventions: ARM-1.3
process_version: vap-mfraod-2.9-1.el7
dod_version: mfrsraod1mich-c1-2.8
input_datastreams: sgpmetE13.b1 : 4.41 : 202001...
site_id: sgp
... ...
Forgan_EndDate: 20200131
history: created by user bfaye on mac...
_file_dates: ['20200101']
_file_times: ['000000']
_datastream: sgpmfrsraod1michE13.c1
_arm_standards_flag: 1- time: 4320
- bench_angle: 181
- wavelength: 750
- Io_interquartile_time: 121
- Io_wavelength: 5
- Io_gauss_time: 61
- time(time)datetime64[ns]2020-01-01 ... 2020-01-01T23:59:40
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2020-01-01T00:00:00.000000000', '2020-01-01T00:00:20.000000000', '2020-01-01T00:00:40.000000000', ..., '2020-01-01T23:59:00.000000000', '2020-01-01T23:59:20.000000000', '2020-01-01T23:59:40.000000000'], shape=(4320,), dtype='datetime64[ns]') - bench_angle(bench_angle)float320.0 1.0 2.0 ... 178.0 179.0 180.0
- long_name :
- Angle of incidence during cosine bench measurements
- units :
- degree
- head_orientation :
- Head is oriented so shadowband is south
- South_to_North :
- 0 is S, 90 is zenith, 180 is N
- West_to_East :
- 0 is W, 90 is zenith, 180 is E
array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24., 25., 26., 27., 28., 29., 30., 31., 32., 33., 34., 35., 36., 37., 38., 39., 40., 41., 42., 43., 44., 45., 46., 47., 48., 49., 50., 51., 52., 53., 54., 55., 56., 57., 58., 59., 60., 61., 62., 63., 64., 65., 66., 67., 68., 69., 70., 71., 72., 73., 74., 75., 76., 77., 78., 79., 80., 81., 82., 83., 84., 85., 86., 87., 88., 89., 90., 91., 92., 93., 94., 95., 96., 97., 98., 99., 100., 101., 102., 103., 104., 105., 106., 107., 108., 109., 110., 111., 112., 113., 114., 115., 116., 117., 118., 119., 120., 121., 122., 123., 124., 125., 126., 127., 128., 129., 130., 131., 132., 133., 134., 135., 136., 137., 138., 139., 140., 141., 142., 143., 144., 145., 146., 147., 148., 149., 150., 151., 152., 153., 154., 155., 156., 157., 158., 159., 160., 161., 162., 163., 164., 165., 166., 167., 168., 169., 170., 171., 172., 173., 174., 175., 176., 177., 178., 179., 180.], dtype=float32) - wavelength(wavelength)float32325.0 325.5 326.0 ... 998.0 999.0
- long_name :
- Top of atmosphere spectrum wavelengths
- units :
- nm
- reference :
- The Sun's Total and Spectral Irradiance for Solar Energy Applications and Solar Radiation Models, Gueymard, C., submitted to Solar Energy, 2003
array([325. , 325.5, 326. , ..., 997. , 998. , 999. ], shape=(750,), dtype=float32) - Io_interquartile_time(Io_interquartile_time)object2019-12-02 15:51:28 ... 2020-01-...
- long_name :
- Time for interquartile Io sample times
array([cftime.DatetimeGregorian(2019, 12, 2, 15, 51, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 2, 20, 45, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 3, 15, 53, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 3, 20, 45, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 4, 15, 55, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 4, 20, 43, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 5, 15, 57, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 5, 20, 43, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 6, 16, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 6, 20, 41, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 7, 16, 2, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 7, 20, 39, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 8, 16, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 8, 20, 39, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 9, 16, 6, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 9, 20, 37, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 10, 16, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 10, 20, 37, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 11, 16, 10, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 11, 20, 35, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 12, 16, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 12, 20, 35, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 13, 16, 14, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 13, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 14, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 14, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 15, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 15, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 16, 16, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 16, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 17, 16, 21, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 17, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 18, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 18, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 19, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 19, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 20, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 20, 20, 28, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 21, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 21, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 22, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 22, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 23, 16, 27, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 23, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 24, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 24, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 25, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 25, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 26, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 26, 20, 35, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 27, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 27, 20, 37, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 28, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 28, 20, 39, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 29, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 29, 20, 41, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 30, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 30, 20, 41, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 31, 16, 21, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 31, 20, 43, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 1, 16, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 1, 20, 48, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 2, 16, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 2, 20, 50, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 3, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 3, 20, 52, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 4, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 4, 20, 54, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 5, 16, 14, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 5, 20, 56, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 6, 16, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 6, 20, 58, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 7, 16, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 7, 21, 0, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 8, 16, 10, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 8, 21, 2, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 9, 16, 10, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 9, 21, 5, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 10, 16, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 10, 21, 7, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 11, 16, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 11, 21, 9, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 12, 16, 6, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 12, 21, 11, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 13, 16, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 13, 21, 13, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 14, 16, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 14, 21, 15, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 15, 16, 2, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 15, 21, 17, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 16, 16, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 16, 21, 20, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 17, 16, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 17, 21, 22, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 18, 15, 57, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 18, 21, 24, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 19, 15, 55, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 19, 21, 26, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 20, 15, 55, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 20, 21, 28, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 21, 21, 30, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 22, 15, 51, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 22, 21, 32, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 23, 15, 49, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 23, 21, 34, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 24, 15, 49, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 24, 21, 34, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 25, 15, 47, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 25, 21, 37, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 26, 15, 45, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 26, 21, 39, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 27, 15, 45, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 27, 21, 41, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 28, 15, 42, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 28, 21, 43, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 29, 15, 40, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 29, 21, 45, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 30, 15, 38, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 30, 21, 47, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 31, 15, 38, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 31, 21, 49, 52, 0, has_year_zero=False)], dtype=object) - Io_gauss_time(Io_gauss_time)object2019-12-03 00:00:00 ... 2020-02-...
- long_name :
- Time for Ios after gaussian filter
array([cftime.DatetimeGregorian(2019, 12, 3, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 4, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 5, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 6, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 7, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 8, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 9, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 10, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 11, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 12, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 13, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 14, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 15, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 16, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 17, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 18, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 19, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 20, 0, 46, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 21, 0, 42, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 22, 0, 38, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 23, 0, 36, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 24, 0, 32, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 25, 0, 27, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 26, 0, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 27, 0, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 28, 0, 14, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 29, 0, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 30, 0, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 31, 0, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 1, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 2, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 3, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 4, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 5, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 6, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 7, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 8, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 9, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 10, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 11, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 12, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 13, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 14, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 15, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 16, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 17, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 18, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 19, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 20, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 21, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 22, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 23, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 24, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 25, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 26, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 27, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 28, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 29, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 30, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 31, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 1, 0, 0, 0, 0, has_year_zero=False)], dtype=object)
- base_time()datetime64[ns]2020-01-01
- string :
- 2020-01-01 00:00:00 0:00
- long_name :
- Base time in Epoch
- ancillary_variables :
- time_offset
array('2020-01-01T00:00:00.000000000', dtype='datetime64[ns]') - time_offset(time)datetime64[ns]2020-01-01 ... 2020-01-01T23:59:40
- long_name :
- Time offset from base_time
- ancillary_variables :
- base_time
array(['2020-01-01T00:00:00.000000000', '2020-01-01T00:00:20.000000000', '2020-01-01T00:00:40.000000000', ..., '2020-01-01T23:59:00.000000000', '2020-01-01T23:59:20.000000000', '2020-01-01T23:59:40.000000000'], shape=(4320,), dtype='datetime64[ns]') - hemisp_broadband_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Hemispheric broadband irradiance
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter1_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 1
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter2_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 2
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter3_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 3
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter4_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 4
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter5_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 5
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter6_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 6
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_broadband_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse hemispheric broadband irradiance
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter1_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 1
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter2_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 2
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter3_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 3
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter4_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 4
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter5_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 5
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter6_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 6
- units :
- mV
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Hemispheric broadband irradiance, offset and cosine corrected, broadband scale factor applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- offset subtracted, cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_hemisp_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Hemispheric broadband irradiance, offset and cosine corrected, broadband scale factor applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse hemispheric broadband irradiance, offset subtracted, cosine corrected, broadband scale applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- offset subtracted, cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_diffuse_hemisp_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Diffuse hemispheric broadband irradiance, offset subtracted, cosine corrected, broadband scale applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Direct normal broadband irradiance, cosine corrected, broadband scale applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_direct_normal_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Direct normal broadband irradiance, cosine corrected, broadband scale applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 1, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 1, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 2, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 2, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 3, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 3, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 4, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 4, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 5, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 5, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 6, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 6, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime hemispheric broadband irradiance
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime hemispheric broadband irradiance
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 1
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 2
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter2
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 3
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter3
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 4
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter4
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 5
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter5
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 6
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter6
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Direct horizontal broadband irradiance, cosine corrected
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 1250.0
- corrections :
- cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_direct_horizontal_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Direct horizontal broadband irradiance, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 1, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.875
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 1, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 2, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.0
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 2, cosine corrected
- units :
- 1
- standard_name :
- quality_flag
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 3, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.875
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 3, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 4, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.75
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 4, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 5, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.25
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 5, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 6, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 6, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_broadband to diffuse_hemisp_broadband
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 5.0
- ancillary_variables :
- qc_direct_diffuse_ratio_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_broadband to diffuse_hemisp_broadband
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter1 to diffuse_hemisp_narrowband_filter1
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 6.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter1 to diffuse_hemisp_narrowband_filter1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter2 to diffuse_hemisp_narrowband_filter2
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 8.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter2
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter2 to diffuse_hemisp_narrowband_filter2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter3 to diffuse_hemisp_narrowband_filter3
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 18.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter3
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter3 to diffuse_hemisp_narrowband_filter3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter4 to diffuse_hemisp_narrowband_filter4
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 24.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter4
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter4 to diffuse_hemisp_narrowband_filter4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter5 to diffuse_hemisp_narrowband_filter5
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 48.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter5
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter5 to diffuse_hemisp_narrowband_filter5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter6 to diffuse_hemisp_narrowband_filter6
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter6
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter6 to diffuse_hemisp_narrowband_filter6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - head_temp(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Detector temperature
- units :
- degC
- valid_min :
- 30.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_head_temp
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_head_temp(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Detector temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Not likely for this measurement, but if bit 1 is set, data value was set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - head_temp2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Second detector temperature
- units :
- degC
- valid_min :
- 30.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_head_temp2
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_head_temp2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Second detector temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - logger_temp(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Internal logger temperature
- units :
- degC
- valid_min :
- -55.0
- valid_max :
- 85.0
- ancillary_variables :
- qc_logger_temp
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_logger_temp(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Internal logger temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - logger_volt(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Data logger supply voltage
- units :
- V
- valid_min :
- 10.0
- valid_max :
- 15.0
- ancillary_variables :
- qc_logger_volt
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_logger_volt(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Data logger supply voltage
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - solar_zenith_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Apparent solar zenith angle
- units :
- degree
- corrections :
- solar zenith angle corrected for refraction by atmosphere
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_solar_zenith_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine of apparent solar zenith angle
- units :
- 1
- corrections :
- solar zenith angle corrected for refraction by atmosphere
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - elevation_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Elevation angle
- units :
- degree
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - airmass(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Airmass
- units :
- 1
- corrections :
- approximately 1/cos(solar_zenith_angle) with corrections for refraction and spherical atmosphere
- ancillary_variables :
- qc_airmass
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_airmass(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Airmass
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - azimuth_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Azimuth angle
- units :
- degree
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - computed_cosine_correction_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_broadband
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_broadband
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_broadband
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter1
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter2
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter2
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter3
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter3
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter4
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter4
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter5
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter5
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter6
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter6
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - cosine_correction_sn_broadband(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, broadband channel
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter1(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter1
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter2(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter2
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter3(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter3
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter4(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter4
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter5(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter5
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter6(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter6
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_broadband(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, broadband channel
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter1(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter1
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter2(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter2
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter3(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter3
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter4(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter4
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter5(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter5
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter6(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter6
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - wavelength_filter1(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 1, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter1
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter1(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 1, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter1(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 1, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter1
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter1(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 1, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter2(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 2, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter2
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter2(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 2, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter2(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 2, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter2
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter2(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 2, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter3(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 3, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter3
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter3(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 3, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter3(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 3, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter3
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter3(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 3, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter4(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 4, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter4
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter4(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 4, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter4(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 4, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter4
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter4(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 4, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter5(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 5, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter5
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter5(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 5, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter5(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 5, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter5
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter5(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 5, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter6(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 6, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter6
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter6(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 6, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter6(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 6, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter6
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter6(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 6, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - TOA_irradiance(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Top of atmosphere direct normal solar irradiance
- units :
- W/(m^2 nm)
- description :
- Gueymard TOA convoluted with a 10 nm FWHM Gaussian envelope
- reference :
- The Sun's Total and Spectral Irradiance for Solar Energy Applications and Solar Radiation Models, Gueymard, C., submitted to Solar Energy, 2003
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - offset_broadband()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse broadband data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter1()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter1 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter2()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter2 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter3()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter3 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter4()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter4 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter5()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter5 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter6()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter6 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- diffuse_correction_broadband()float32...
- long_name :
- Cosine correction of broadband diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter1()float32...
- long_name :
- Cosine correction of filter1 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter2()float32...
- long_name :
- Cosine correction of filter2 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter3()float32...
- long_name :
- Cosine correction of filter3 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter4()float32...
- long_name :
- Cosine correction of filter4 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter5()float32...
- long_name :
- Cosine correction of filter5 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter6()float32...
- long_name :
- Cosine correction of filter6 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- nominal_calibration_factor_broadband()float32...
- long_name :
- Nominal calibration factor, applied to broadband data
- units :
- mV/(W/m^2)
[1 values with dtype=float32]
- nominal_calibration_factor_filter1()float32...
- long_name :
- Nominal calibration factor, applied to filter1 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter2()float32...
- long_name :
- Nominal calibration factor, applied to filter2 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter3()float32...
- long_name :
- Nominal calibration factor, applied to filter3 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter4()float32...
- long_name :
- Nominal calibration factor, applied to filter4 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter5()float32...
- long_name :
- Nominal calibration factor, applied to filter5 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter6()float32...
- long_name :
- Nominal calibration factor, applied to filter6 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- total_optical_depth_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 1
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter1 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter1 < Rayleigh_optical_depth_filter1
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 2
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter2
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter2 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter2 < Rayleigh_optical_depth_filter2
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 3
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter3
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter3 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter3 < Rayleigh_optical_depth_filter3
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 4
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter4
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter4 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter4 < Rayleigh_optical_depth_filter4
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 5
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter5
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter5 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter5 < Rayleigh_optical_depth_filter5
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - angstrom_exponent(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Angstrom exponent
- units :
- 1
- comment1 :
- Used AOD from 500 nm and 870 nm channels for computation of the Angstrom exponent.
- computation :
- angstrom exponent = log(aerosol_optical_depth_filter2 / aerosol_optical_depth_filter5) / log(filter5_CWL_nominal / filter2_CWL_nominal)
- comment2 :
- These filters were chosen so that we compute the most accurate values possible with the data available.
- ancillary_variables :
- qc_angstrom_exponent
- standard_name :
- angstrom_exponent_of_ambient_aerosol_in_air
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_angstrom_exponent(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Angstrom exponent
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- Aerosol_optical_depth_filter2 < 0.0 or aerosol_optical_depth_filter5 < 0, angstrom_exponent set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- variability_flag > variability_max_alarm
- bit_2_assessment :
- Bad
- bit_3_description :
- Angstrom_exponent < -1
- bit_3_assessment :
- Bad
- bit_4_description :
- Angstrom_exponent > 4
- bit_4_assessment :
- Bad
- bit_5_description :
- variability_flag > variability_max_warning
- bit_5_assessment :
- Indeterminate
- bit_6_description :
- Angstrom_exponent < 0
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Angstrom_exponent > 3
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Measured CWL missing, nominal value(s) used in computation of angstrom_exp
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- direct_normal_transmittance_filter2 < 0.01
- bit_9_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 1
- units :
- 1
- equation :
- aerosol_optical_depth_filter1 = (total_optical_depth_filter1 - Rayleigh_optical_depth_filter1 - Ozone_optical_depth_filter1)
- ancillary_variables :
- qc_aerosol_optical_depth_filter1
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter1 value < 0.0, aerosol_optical_depth_filter1 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter1 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter1 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Not used
- bit_8_assessment :
- Bad
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter1 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 2
- units :
- 1
- equation :
- aerosol_optical_depth_filter2 = (total_optical_depth_filter2 - Rayleigh_optical_depth_filter2 - Ozone_optical_depth_filter2)
- ancillary_variables :
- qc_aerosol_optical_depth_filter2
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter2 value < 0.0, aerosol_optical_depth_filter2 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter2 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter2 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter2 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 3
- units :
- 1
- equation :
- aerosol_optical_depth_filter3 = (total_optical_depth_filter3 - Rayleigh_optical_depth_filter3 - Ozone_optical_depth_filter3)
- ancillary_variables :
- qc_aerosol_optical_depth_filter3
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter3 value < 0.0, aerosol_optical_depth_filter3 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter3 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter3 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter3 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 4
- units :
- 1
- equation :
- aerosol_optical_depth_filter4 = (total_optical_depth_filter4 - Rayleigh_optical_depth_filter4 - Ozone_optical_depth_filter4)
- ancillary_variables :
- qc_aerosol_optical_depth_filter4
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter4 value < 0.0, aerosol_optical_depth_filter4 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter4 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter4 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter4 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 5
- units :
- 1
- equation :
- aerosol_optical_depth_filter5 = (total_optical_depth_filter5 - Rayleigh_optical_depth_filter5 - Ozone_optical_depth_filter5)
- ancillary_variables :
- qc_aerosol_optical_depth_filter5
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter5 value < 0.0, aerosol_optical_depth_filter5 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter5 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter5 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Not used
- bit_8_assessment :
- Bad
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter5 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - variability_flag(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Flag determined using cloud screen algorithm
- units :
- 1
- comment1 :
- Reference: Automated cloud screening algorithm for MFRSR data, Alexandrov, M., Geophysical Research Letters, Vol 31, L04118
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - surface_pressure()float32...
- long_name :
- Surface pressure
- units :
- kPa
- source :
- sgpmetE13.b1:atmos_pressure
- standard_atm_pressure :
- 1013.25 mb
[1 values with dtype=float32]
- Io_filter1()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 1
- units :
- count
- ancillary_variables :
- qc_Io_filter1
[1 values with dtype=float32]
- qc_Io_filter1()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter2()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 2
- units :
- count
- ancillary_variables :
- qc_Io_filter2
[1 values with dtype=float32]
- qc_Io_filter2()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter3()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 3
- units :
- count
- ancillary_variables :
- qc_Io_filter3
[1 values with dtype=float32]
- qc_Io_filter3()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter4()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 4
- units :
- count
- ancillary_variables :
- qc_Io_filter4
[1 values with dtype=float32]
- qc_Io_filter4()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter5()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 5
- units :
- count
- ancillary_variables :
- qc_Io_filter5
[1 values with dtype=float32]
- qc_Io_filter5()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Ozone_column_amount()float32...
- long_name :
- Ozone column amount from satellite
- units :
- DU
- valid_min :
- 220.0
- valid_max :
- 420.0
- default_value :
- 295.0
- ancillary_variables :
- qc_Ozone_column_amount
- standard_name :
- atmosphere_mole_content_of_ozone
[1 values with dtype=float32]
- qc_Ozone_column_amount()int32...
- long_name :
- Quality check results on variable: Ozone column amount from satellite
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min, data value set to default value
- bit_1_assessment :
- Indeterminate
- bit_2_description :
- Value is greater than the valid_max, data value set to default value
- bit_2_assessment :
- Indeterminate
- bit_3_description :
- Value unavailable from input, default value used
- bit_3_assessment :
- Indeterminate
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Rayleigh_optical_depth_filter1()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 1
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter2()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 2
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter3()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 3
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter4()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 4
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter5()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 5
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Ozone_optical_depth_filter1()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 1
- units :
- 1
- ozone_absorption_coefficient_filter1_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter1 :
- 0.0003
- equation :
- Ozone_optical_depth_filter1 = (Ozone_column_amount * ozone_absorption_coefficient_filter1) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter2()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 2
- units :
- 1
- ozone_absorption_coefficient_filter2_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter2 :
- 0.0320
- equation :
- Ozone_optical_depth_filter2 = (Ozone_column_amount * ozone_absorption_coefficient_filter2) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter3()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 3
- units :
- 1
- ozone_absorption_coefficient_filter3_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter3 :
- 0.1203
- equation :
- Ozone_optical_depth_filter3 = (Ozone_column_amount * ozone_absorption_coefficient_filter3) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter4()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 4
- units :
- 1
- ozone_absorption_coefficient_filter4_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter4 :
- 0.0429
- equation :
- Ozone_optical_depth_filter4 = (Ozone_column_amount * ozone_absorption_coefficient_filter4) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter5()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 5
- units :
- 1
- ozone_absorption_coefficient_filter5_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter5 :
- 0.0015
- equation :
- Ozone_optical_depth_filter5 = (Ozone_column_amount * ozone_absorption_coefficient_filter5) / 1000.
[1 values with dtype=float32]
- sun_to_earth_distance()float32...
- long_name :
- Sun to earth distance
- units :
- astronomical_unit
[1 values with dtype=float32]
- direct_normal_transmittance_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 1
- units :
- 1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 2
- units :
- 1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 3
- units :
- 1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 4
- units :
- 1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 5
- units :
- 1
Array Chunk Bytes 16.88 kiB 16.88 kiB Shape (4320,) (4320,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - Io_interquartile_values(Io_interquartile_time, Io_wavelength)float32dask.array<chunksize=(121, 5), meta=np.ndarray>
- long_name :
- Interquartile Io values
- units :
- count
Array Chunk Bytes 2.36 kiB 2.36 kiB Shape (121, 5) (121, 5) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - Io_gauss_values(Io_gauss_time, Io_wavelength)float32dask.array<chunksize=(61, 5), meta=np.ndarray>
- long_name :
- Io values after gaussian filter
- units :
- count
Array Chunk Bytes 1.19 kiB 1.19 kiB Shape (61, 5) (61, 5) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - lat()float32...
- long_name :
- North latitude
- units :
- degree_N
- valid_min :
- -90.0
- valid_max :
- 90.0
- standard_name :
- latitude
[1 values with dtype=float32]
- lon()float32...
- long_name :
- East longitude
- units :
- degree_E
- valid_min :
- -180.0
- valid_max :
- 180.0
- standard_name :
- longitude
[1 values with dtype=float32]
- alt()float32...
- long_name :
- Altitude above mean sea level
- units :
- m
- standard_name :
- altitude
[1 values with dtype=float32]
- command_line :
- mfraod -n mfraod_mfrsr -s sgp -f E13 -b 19970826 -e 20210112 -D 2 --max-runtime 0 -R
- Conventions :
- ARM-1.3
- process_version :
- vap-mfraod-2.9-1.el7
- dod_version :
- mfrsraod1mich-c1-2.8
- input_datastreams :
- sgpmetE13.b1 : 4.41 : 20200101.000000 gecomiX1.a1 : 1.1 : 20200101.000000 sgpmfrsrE13.a0 : 1.4 : 20200101.000000 sgpmfrsrE13.b1 : 1.4 : 20200101.000000 sgpmfrsrlangleyE13.c1 : 3.11 : 20191202.155220-20200131.153800
- site_id :
- sgp
- platform_id :
- mfrsraod1mich
- facility_id :
- E13
- data_level :
- c1
- location_description :
- Southern Great Plains (SGP), Lamont, Oklahoma
- datastream :
- sgpmfrsraod1michE13.c1
- serial_number :
- Refer to logger_id and head_id
- sampling_interval :
- 20 seconds
- doi :
- 10.5439/1356805
- broadband_channel :
- Unfiltered Silicon, nominally from 32 to 1200 nm
- broadband_channel_calibration :
- nominal calibration from FEL standard lamp
- filter1_CWL_nominal :
- 415 nm
- filter1_CWL_measured :
- 413.2 nm
- filter1_FWHM_nominal :
- 10 nm
- filter1_FWHM_measured :
- 10.8 nm
- filter1_TOA_direct_normal :
- 1.791483 W/m^2-nm
- filter1_calibration :
- Langley Io pinned to TOA direct normal
- filter2_CWL_nominal :
- 500 nm
- filter2_CWL_measured :
- 501.0 nm
- filter2_FWHM_nominal :
- 10 nm
- filter2_FWHM_measured :
- 10.7 nm
- filter2_TOA_direct_normal :
- 1.958570 W/m^2-nm
- filter2_calibration :
- Langley Io pinned to TOA direct normal
- filter3_CWL_nominal :
- 615 nm
- filter3_CWL_measured :
- 613.1 nm
- filter3_FWHM_nominal :
- 10 nm
- filter3_FWHM_measured :
- 10.8 nm
- filter3_TOA_direct_normal :
- 1.688052 W/m^2-nm
- filter3_calibration :
- Langley Io pinned to TOA direct normal
- filter4_CWL_nominal :
- 673 nm
- filter4_CWL_measured :
- 672.1 nm
- filter4_FWHM_nominal :
- 10 nm
- filter4_FWHM_measured :
- 10.6 nm
- filter4_TOA_direct_normal :
- 1.500830 W/m^2-nm
- filter4_calibration :
- Langley Io pinned to TOA direct normal
- filter5_CWL_nominal :
- 870 nm
- filter5_CWL_measured :
- 868.9 nm
- filter5_FWHM_nominal :
- 10 nm
- filter5_FWHM_measured :
- 10.0 nm
- filter5_TOA_direct_normal :
- 0.959429 W/m^2-nm
- filter5_calibration :
- Langley Io pinned to TOA direct normal
- filter6_CWL_nominal :
- 940 nm
- filter6_CWL_measured :
- 938.7 nm
- filter6_FWHM_nominal :
- 10 nm
- filter6_FWHM_measured :
- 6.2 nm
- filter6_calibration :
- nominal calibration from FEL standard lamp
- total_optical_depth_computation :
- -log(direct_normal * sun_earth_distance^2/Gueymard_TOA)/airmass
- aerosol_optical_depth_computation :
- total_optical_depth - Rayleigh_optical_depth - Ozone column_amount * Ozone_absorption_coefficient
- hemispheric_computation :
- sum of diffuse_hemisp and direct_horizontal
- diffuse_hemispheric_computation :
- (diffuse_hemisp_raw - offset) * diffuse_correction * nominal_calibration_factor * (TOA/Io)
- direct_normal_computation :
- direct_horizontal / cosine(apparent solar zenith angle)
- source_Io :
- Forgan analysis of Langley data
- source_Io_comment :
- Io values in mfrsrlangley datastream are used
- ingest_software :
- vap-mfraod-2.9-1.el7
- comment :
- The time assigned to each data point indicates the end of any period of averaging of the geophysical data.
- Filter_information :
- filters 1 and 5 for aerosol measurement filters 2, 3 and 4 for aerosol and ozone measurement filter 6 for water vapor measurement
- shadowband_timing :
- Due to shadowband motion, there is an inherent lag between the time stamp in the file and the time corresponding to the direct beam measurement which varies throughout the day. On average this lag is about five seconds, therefore five seconds are added to the timestamp when calculating solar position.
- cosine_correction_source :
- CosineCorr.sgpmfrsrE13.20180212.dat
- diffuse_correction_source :
- DiffuseCorr.sgpmfrsrE13.20180212.dat
- filter_trace_source :
- FilterInfo.sgpmfrsrE13.20180212.dat
- nominal_calibration_source :
- NominalCal.sgpmfrsrE13.20180212.dat
- offset_correction_source :
- Offsets are computed using a two hour average of the alltime_hemisp_narrowband data centered around the time of the maximum solar zenith angle. For higher and lower latitudes the averaging window can shrink to only include values where the solar zenith angle is >= 97 degrees. If less than 30 minutes of nighttime data is available, the previously computed values will be used.
- ozone_column_amount_default_source :
- mfraod_ozone_limits.info
- variability_limit_source :
- mfraod_variability_limits.info
- logger_software_version :
- 2.2
- logger_id :
- 24062
- head_id :
- 180133057
- mfr_internal_latitude :
- 36.605000
- mfr_internal_longitude :
- -97.485000
- Langley_data_used :
- michalsky algorithm
- pressure_fraction_for_Rayleigh_calculation :
- 0.959231
- Forgan_StartDate :
- 20191202
- Forgan_EndDate :
- 20200131
- history :
- created by user bfaye on machine prod-proc5.adc.arm.gov at 2023-12-12 13:14:01, using vap-mfraod-2.9-1.el7
- _file_dates :
- ['20200101']
- _file_times :
- ['000000']
- _datastream :
- sgpmfrsraod1michE13.c1
- _arm_standards_flag :
- 1
One singular file does not struggle to read, as we are not trying to concatenate files etc. But by looking at the dataset above, we can see that there are multiple dimensions such as time, io_gauss_time, wavelength and more. Using the default settings of combine=’by_coords’ will fail because xarray will try to solve on its own on how to combine these files due to the many dimensions and even dimensionless variables.
An example of parameters that would fail:
ds = act.io.read_arm_netcdf(
files,
combine='by_coords',
join='outer',
data_vars='all',
coords='minimal',
)
xarray will either time out, or raise a ValueError for base time and the other non time dimension variables.
How do we solve this?#
An option is to help xarray determine how to combine these files. There are two options, we can combine the files by time and ignore variables that do not have a time dimension, or we can combine files by time and expand non time variables by time. Essentially the variables that for example have wavelength as their dimensions, now are (time, wavelength). This is up to the user and whether they are only using the time variables or if they wish to use other variables.
An example of working code, that will merge just the time variables:
ds_all = act.io.read_arm_netcdf(
files,
combine='nested',
concat_dim='time',
join='outer',
data_vars='all',
)
ds_all
<xarray.Dataset> Size: 3GB
Dimensions: (time: 30240, bench_angle: 181,
wavelength: 750,
Io_interquartile_time: 133,
Io_wavelength: 5,
Io_gauss_time: 67)
Coordinates:
* time (time) datetime64[ns] 242kB 2020...
* bench_angle (bench_angle) float32 724B 0.0 ....
* wavelength (wavelength) float32 3kB 325.0 ....
* Io_interquartile_time (Io_interquartile_time) object 1kB ...
* Io_gauss_time (Io_gauss_time) object 536B 2019...
Dimensions without coordinates: Io_wavelength
Data variables: (12/245)
base_time (time) datetime64[ns] 242kB 2020...
time_offset (time) datetime64[ns] 242kB 2020...
hemisp_broadband_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter1_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter2_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter3_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
... ...
direct_normal_transmittance_filter5 (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
Io_interquartile_values (time, Io_interquartile_time, Io_wavelength) float32 80MB dask.array<chunksize=(4320, 121, 5), meta=np.ndarray>
Io_gauss_values (time, Io_gauss_time, Io_wavelength) float32 41MB dask.array<chunksize=(4320, 61, 5), meta=np.ndarray>
lat (time) float32 121kB 36.6 ... 36.6
lon (time) float32 121kB -97.49 ... ...
alt (time) float32 121kB 318.0 ... 3...
Attributes: (12/83)
command_line: mfraod -n mfraod_mfrsr -s sg...
Conventions: ARM-1.3
process_version: vap-mfraod-2.9-1.el7
dod_version: mfrsraod1mich-c1-2.8
input_datastreams: sgpmetE13.b1 : 4.41 : 202001...
site_id: sgp
... ...
Forgan_EndDate: 20200131
history: created by user bfaye on mac...
_file_dates: ['20200101', '20200102', '20...
_file_times: ['000000', '000000', '000000...
_datastream: sgpmfrsraod1michE13.c1
_arm_standards_flag: 1- time: 30240
- bench_angle: 181
- wavelength: 750
- Io_interquartile_time: 133
- Io_wavelength: 5
- Io_gauss_time: 67
- time(time)datetime64[ns]2020-01-01 ... 2020-01-07T23:59:40
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2020-01-01T00:00:00.000000000', '2020-01-01T00:00:20.000000000', '2020-01-01T00:00:40.000000000', ..., '2020-01-07T23:59:00.000000000', '2020-01-07T23:59:20.000000000', '2020-01-07T23:59:40.000000000'], shape=(30240,), dtype='datetime64[ns]') - bench_angle(bench_angle)float320.0 1.0 2.0 ... 178.0 179.0 180.0
- long_name :
- Angle of incidence during cosine bench measurements
- units :
- degree
- head_orientation :
- Head is oriented so shadowband is south
- South_to_North :
- 0 is S, 90 is zenith, 180 is N
- West_to_East :
- 0 is W, 90 is zenith, 180 is E
array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24., 25., 26., 27., 28., 29., 30., 31., 32., 33., 34., 35., 36., 37., 38., 39., 40., 41., 42., 43., 44., 45., 46., 47., 48., 49., 50., 51., 52., 53., 54., 55., 56., 57., 58., 59., 60., 61., 62., 63., 64., 65., 66., 67., 68., 69., 70., 71., 72., 73., 74., 75., 76., 77., 78., 79., 80., 81., 82., 83., 84., 85., 86., 87., 88., 89., 90., 91., 92., 93., 94., 95., 96., 97., 98., 99., 100., 101., 102., 103., 104., 105., 106., 107., 108., 109., 110., 111., 112., 113., 114., 115., 116., 117., 118., 119., 120., 121., 122., 123., 124., 125., 126., 127., 128., 129., 130., 131., 132., 133., 134., 135., 136., 137., 138., 139., 140., 141., 142., 143., 144., 145., 146., 147., 148., 149., 150., 151., 152., 153., 154., 155., 156., 157., 158., 159., 160., 161., 162., 163., 164., 165., 166., 167., 168., 169., 170., 171., 172., 173., 174., 175., 176., 177., 178., 179., 180.], dtype=float32) - wavelength(wavelength)float32325.0 325.5 326.0 ... 998.0 999.0
- long_name :
- Top of atmosphere spectrum wavelengths
- units :
- nm
- reference :
- The Sun's Total and Spectral Irradiance for Solar Energy Applications and Solar Radiation Models, Gueymard, C., submitted to Solar Energy, 2003
array([325. , 325.5, 326. , ..., 997. , 998. , 999. ], shape=(750,), dtype=float32) - Io_interquartile_time(Io_interquartile_time)object2019-12-02 15:51:28 ... 2020-02-...
- long_name :
- Time for interquartile Io sample times
array([cftime.DatetimeGregorian(2019, 12, 2, 15, 51, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 2, 20, 45, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 3, 15, 53, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 3, 20, 45, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 4, 15, 55, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 4, 20, 43, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 5, 15, 57, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 5, 20, 43, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 6, 16, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 6, 20, 41, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 7, 16, 2, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 7, 20, 39, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 8, 16, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 8, 20, 39, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 9, 16, 6, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 9, 20, 37, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 10, 16, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 10, 20, 37, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 11, 16, 10, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 11, 20, 35, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 12, 16, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 12, 20, 35, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 13, 16, 14, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 13, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 14, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 14, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 15, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 15, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 16, 16, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 16, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 17, 16, 21, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 17, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 18, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 18, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 19, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 19, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 20, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 20, 20, 28, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 21, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 21, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 22, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 22, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 23, 16, 27, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 23, 20, 30, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 24, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 24, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 25, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 25, 20, 33, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 26, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 26, 20, 35, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 27, 16, 25, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 27, 20, 37, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 28, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 28, 20, 39, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 29, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 29, 20, 41, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 30, 16, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 30, 20, 41, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 31, 16, 21, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 31, 20, 43, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 1, 16, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 1, 20, 48, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 2, 16, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 2, 20, 50, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 3, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 3, 20, 52, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 4, 16, 17, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 4, 20, 54, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 5, 16, 14, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 5, 20, 56, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 6, 16, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 6, 20, 58, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 7, 16, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 7, 21, 0, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 8, 16, 10, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 8, 21, 2, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 9, 16, 10, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 9, 21, 5, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 10, 16, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 10, 21, 7, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 11, 16, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 11, 21, 9, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 12, 16, 6, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 12, 21, 11, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 13, 16, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 13, 21, 13, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 14, 16, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 14, 21, 15, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 15, 16, 2, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 15, 21, 17, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 16, 16, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 16, 21, 20, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 17, 16, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 17, 21, 22, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 18, 15, 57, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 18, 21, 24, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 19, 15, 55, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 19, 21, 26, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 20, 15, 55, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 20, 21, 28, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 21, 21, 30, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 22, 15, 51, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 22, 21, 32, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 23, 15, 49, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 23, 21, 34, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 24, 15, 49, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 24, 21, 34, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 25, 15, 47, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 25, 21, 37, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 26, 15, 45, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 26, 21, 39, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 27, 15, 45, 4, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 27, 21, 41, 20, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 28, 15, 42, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 28, 21, 43, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 29, 15, 40, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 29, 21, 45, 36, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 30, 15, 38, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 30, 21, 47, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 31, 15, 38, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 31, 21, 49, 52, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 1, 15, 36, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 1, 21, 52, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 2, 15, 34, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 2, 21, 54, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 3, 15, 32, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 3, 21, 56, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 4, 15, 32, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 4, 21, 56, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 5, 15, 30, 8, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 5, 21, 58, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 6, 15, 28, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 6, 22, 0, 32, 0, has_year_zero=False)], dtype=object) - Io_gauss_time(Io_gauss_time)object2019-12-03 00:00:00 ... 2020-02-...
- long_name :
- Time for Ios after gaussian filter
array([cftime.DatetimeGregorian(2019, 12, 3, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 4, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 5, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 6, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 7, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 8, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 9, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 10, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 11, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 12, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 13, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 14, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 15, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 16, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 17, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 18, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 19, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 20, 0, 46, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 21, 0, 42, 40, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 22, 0, 38, 24, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 23, 0, 36, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 24, 0, 32, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 25, 0, 27, 44, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 26, 0, 23, 28, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 27, 0, 19, 12, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 28, 0, 14, 56, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 29, 0, 12, 48, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 30, 0, 8, 32, 0, has_year_zero=False), cftime.DatetimeGregorian(2019, 12, 31, 0, 4, 16, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 1, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 2, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 3, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 4, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 5, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 6, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 7, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 8, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 9, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 10, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 11, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 12, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 13, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 14, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 15, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 16, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 17, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 18, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 19, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 20, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 21, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 22, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 23, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 24, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 25, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 26, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 27, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 28, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 29, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 30, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 1, 31, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 1, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 2, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 3, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 4, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 5, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 6, 0, 0, 0, 0, has_year_zero=False), cftime.DatetimeGregorian(2020, 2, 7, 0, 0, 0, 0, has_year_zero=False)], dtype=object)
- base_time(time)datetime64[ns]2020-01-01 ... 2020-01-07
- string :
- 2020-01-01 00:00:00 0:00
- long_name :
- Base time in Epoch
- ancillary_variables :
- time_offset
array(['2020-01-01T00:00:00.000000000', '2020-01-01T00:00:00.000000000', '2020-01-01T00:00:00.000000000', ..., '2020-01-07T00:00:00.000000000', '2020-01-07T00:00:00.000000000', '2020-01-07T00:00:00.000000000'], shape=(30240,), dtype='datetime64[ns]') - time_offset(time)datetime64[ns]2020-01-01 ... 2020-01-07T23:59:40
- long_name :
- Time offset from base_time
- ancillary_variables :
- base_time
array(['2020-01-01T00:00:00.000000000', '2020-01-01T00:00:20.000000000', '2020-01-01T00:00:40.000000000', ..., '2020-01-07T23:59:00.000000000', '2020-01-07T23:59:20.000000000', '2020-01-07T23:59:40.000000000'], shape=(30240,), dtype='datetime64[ns]') - hemisp_broadband_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Hemispheric broadband irradiance
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter1_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 1
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter2_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 2
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter3_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 3
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter4_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 4
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter5_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 5
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter6_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 6
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_broadband_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse hemispheric broadband irradiance
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter1_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 1
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter2_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 2
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter3_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 3
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter4_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 4
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter5_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 5
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter6_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 6
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Hemispheric broadband irradiance, offset and cosine corrected, broadband scale factor applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- offset subtracted, cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_hemisp_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Hemispheric broadband irradiance, offset and cosine corrected, broadband scale factor applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse hemispheric broadband irradiance, offset subtracted, cosine corrected, broadband scale applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- offset subtracted, cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_diffuse_hemisp_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Diffuse hemispheric broadband irradiance, offset subtracted, cosine corrected, broadband scale applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Direct normal broadband irradiance, cosine corrected, broadband scale applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_direct_normal_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Direct normal broadband irradiance, cosine corrected, broadband scale applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 1, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 1, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 2, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 2, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 3, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 3, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 4, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 4, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 5, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 5, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 6, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 6, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime hemispheric broadband irradiance
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime hemispheric broadband irradiance
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 1
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 2
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 3
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 4
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 5
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 6
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter6
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Direct horizontal broadband irradiance, cosine corrected
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 1250.0
- corrections :
- cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_direct_horizontal_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Direct horizontal broadband irradiance, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 1, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.875
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 1, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 2, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.0
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 2, cosine corrected
- units :
- 1
- standard_name :
- quality_flag
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 3, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.875
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 3, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 4, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.75
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 4, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 5, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.25
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 5, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 6, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 6, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_broadband to diffuse_hemisp_broadband
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 5.0
- ancillary_variables :
- qc_direct_diffuse_ratio_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_broadband to diffuse_hemisp_broadband
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter1 to diffuse_hemisp_narrowband_filter1
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 6.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter1 to diffuse_hemisp_narrowband_filter1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter2 to diffuse_hemisp_narrowband_filter2
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 8.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter2 to diffuse_hemisp_narrowband_filter2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter3 to diffuse_hemisp_narrowband_filter3
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 18.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter3 to diffuse_hemisp_narrowband_filter3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter4 to diffuse_hemisp_narrowband_filter4
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 24.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter4 to diffuse_hemisp_narrowband_filter4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter5 to diffuse_hemisp_narrowband_filter5
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 48.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter5 to diffuse_hemisp_narrowband_filter5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter6 to diffuse_hemisp_narrowband_filter6
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter6
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter6 to diffuse_hemisp_narrowband_filter6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - head_temp(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Detector temperature
- units :
- degC
- valid_min :
- 30.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_head_temp
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_head_temp(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Detector temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Not likely for this measurement, but if bit 1 is set, data value was set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - head_temp2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Second detector temperature
- units :
- degC
- valid_min :
- 30.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_head_temp2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_head_temp2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Second detector temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - logger_temp(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Internal logger temperature
- units :
- degC
- valid_min :
- -55.0
- valid_max :
- 85.0
- ancillary_variables :
- qc_logger_temp
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_logger_temp(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Internal logger temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - logger_volt(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Data logger supply voltage
- units :
- V
- valid_min :
- 10.0
- valid_max :
- 15.0
- ancillary_variables :
- qc_logger_volt
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_logger_volt(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Data logger supply voltage
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - solar_zenith_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Apparent solar zenith angle
- units :
- degree
- corrections :
- solar zenith angle corrected for refraction by atmosphere
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - cosine_solar_zenith_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine of apparent solar zenith angle
- units :
- 1
- corrections :
- solar zenith angle corrected for refraction by atmosphere
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - elevation_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Elevation angle
- units :
- degree
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - airmass(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Airmass
- units :
- 1
- corrections :
- approximately 1/cos(solar_zenith_angle) with corrections for refraction and spherical atmosphere
- ancillary_variables :
- qc_airmass
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_airmass(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Airmass
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - azimuth_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Azimuth angle
- units :
- degree
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - computed_cosine_correction_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_broadband
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_broadband
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter1
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter2
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter3
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter4
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter5
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter6
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter6
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - cosine_correction_sn_broadband(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, broadband channel
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter1(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter1
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter2(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter2
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter3(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter3
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter4(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter4
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter5(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter5
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter6(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter6
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_broadband(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, broadband channel
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter1(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter1
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter2(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter2
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter3(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter3
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter4(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter4
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter5(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter5
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter6(time, bench_angle)float32dask.array<chunksize=(4320, 181), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter6
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 20.88 MiB 2.98 MiB Shape (30240, 181) (4320, 181) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - wavelength_filter1(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 1, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter1
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter1(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 1, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter1(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 1, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter1
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter1(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 1, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - wavelength_filter2(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 2, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter2
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter2(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 2, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter2(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 2, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter2
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter2(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 2, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - wavelength_filter3(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 3, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter3
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter3(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 3, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter3(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 3, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter3
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter3(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 3, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - wavelength_filter4(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 4, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter4
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter4(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 4, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter4(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 4, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter4
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter4(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 4, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - wavelength_filter5(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 5, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter5
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter5(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 5, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter5(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 5, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter5
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter5(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 5, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - wavelength_filter6(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 6, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter6
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter6(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 6, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter6(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 6, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter6
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter6(time, wavelength)int32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 6, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type int32 numpy.ndarray - TOA_irradiance(time, wavelength)float32dask.array<chunksize=(4320, 750), meta=np.ndarray>
- long_name :
- Top of atmosphere direct normal solar irradiance
- units :
- W/(m^2 nm)
- description :
- Gueymard TOA convoluted with a 10 nm FWHM Gaussian envelope
- reference :
- The Sun's Total and Spectral Irradiance for Solar Energy Applications and Solar Radiation Models, Gueymard, C., submitted to Solar Energy, 2003
Array Chunk Bytes 86.52 MiB 12.36 MiB Shape (30240, 750) (4320, 750) Dask graph 7 chunks in 22 graph layers Data type float32 numpy.ndarray - offset_broadband(time)float32-1.661 -1.661 ... -1.748 -1.748
- long_name :
- Offset subtracted from hemispheric and diffuse broadband data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.6606294, -1.6606294, -1.6606294, ..., -1.7482468, -1.7482468, -1.7482468], shape=(30240,), dtype=float32) - offset_filter1(time)float32-1.678 -1.678 ... -1.765 -1.765
- long_name :
- Offset subtracted from hemispheric and diffuse filter1 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.6781144, -1.6781144, -1.6781144, ..., -1.7647767, -1.7647767, -1.7647767], shape=(30240,), dtype=float32) - offset_filter2(time)float32-1.693 -1.693 ... -1.777 -1.777
- long_name :
- Offset subtracted from hemispheric and diffuse filter2 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.6928519, -1.6928519, -1.6928519, ..., -1.7765962, -1.7765962, -1.7765962], shape=(30240,), dtype=float32) - offset_filter3(time)float32-1.655 -1.655 ... -1.742 -1.742
- long_name :
- Offset subtracted from hemispheric and diffuse filter3 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.6547478, -1.6547478, -1.6547478, ..., -1.7417275, -1.7417275, -1.7417275], shape=(30240,), dtype=float32) - offset_filter4(time)float32-1.622 -1.622 ... -1.701 -1.701
- long_name :
- Offset subtracted from hemispheric and diffuse filter4 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.6221365, -1.6221365, -1.6221365, ..., -1.7008576, -1.7008576, -1.7008576], shape=(30240,), dtype=float32) - offset_filter5(time)float32-1.652 -1.652 ... -1.738 -1.738
- long_name :
- Offset subtracted from hemispheric and diffuse filter5 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.6518964, -1.6518964, -1.6518964, ..., -1.7383444, -1.7383444, -1.7383444], shape=(30240,), dtype=float32) - offset_filter6(time)float32-1.547 -1.547 ... -1.627 -1.627
- long_name :
- Offset subtracted from hemispheric and diffuse filter6 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
array([-1.5470358, -1.5470358, -1.5470358, ..., -1.6269087, -1.6269087, -1.6269087], shape=(30240,), dtype=float32) - diffuse_correction_broadband(time)float320.987 0.987 0.987 ... 0.987 0.987
- long_name :
- Cosine correction of broadband diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.987, 0.987, 0.987, ..., 0.987, 0.987, 0.987], shape=(30240,), dtype=float32) - diffuse_correction_filter1(time)float320.961 0.961 0.961 ... 0.961 0.961
- long_name :
- Cosine correction of filter1 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.961, 0.961, 0.961, ..., 0.961, 0.961, 0.961], shape=(30240,), dtype=float32) - diffuse_correction_filter2(time)float320.974 0.974 0.974 ... 0.974 0.974
- long_name :
- Cosine correction of filter2 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.974, 0.974, 0.974, ..., 0.974, 0.974, 0.974], shape=(30240,), dtype=float32) - diffuse_correction_filter3(time)float320.977 0.977 0.977 ... 0.977 0.977
- long_name :
- Cosine correction of filter3 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.977, 0.977, 0.977, ..., 0.977, 0.977, 0.977], shape=(30240,), dtype=float32) - diffuse_correction_filter4(time)float320.979 0.979 0.979 ... 0.979 0.979
- long_name :
- Cosine correction of filter4 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.979, 0.979, 0.979, ..., 0.979, 0.979, 0.979], shape=(30240,), dtype=float32) - diffuse_correction_filter5(time)float320.985 0.985 0.985 ... 0.985 0.985
- long_name :
- Cosine correction of filter5 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.985, 0.985, 0.985, ..., 0.985, 0.985, 0.985], shape=(30240,), dtype=float32) - diffuse_correction_filter6(time)float320.985 0.985 0.985 ... 0.985 0.985
- long_name :
- Cosine correction of filter6 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
array([0.985, 0.985, 0.985, ..., 0.985, 0.985, 0.985], shape=(30240,), dtype=float32) - nominal_calibration_factor_broadband(time)float320.1414 0.1414 ... 0.1414 0.1414
- long_name :
- Nominal calibration factor, applied to broadband data
- units :
- mV/(W/m^2)
array([0.1414, 0.1414, 0.1414, ..., 0.1414, 0.1414, 0.1414], shape=(30240,), dtype=float32) - nominal_calibration_factor_filter1(time)float32115.2 115.2 115.2 ... 115.2 115.2
- long_name :
- Nominal calibration factor, applied to filter1 data
- units :
- mV/(W/(m^2 nm))
array([115.1734, 115.1734, 115.1734, ..., 115.1734, 115.1734, 115.1734], shape=(30240,), dtype=float32) - nominal_calibration_factor_filter2(time)float32100.4 100.4 100.4 ... 100.4 100.4
- long_name :
- Nominal calibration factor, applied to filter2 data
- units :
- mV/(W/(m^2 nm))
array([100.418, 100.418, 100.418, ..., 100.418, 100.418, 100.418], shape=(30240,), dtype=float32) - nominal_calibration_factor_filter3(time)float32111.7 111.7 111.7 ... 111.7 111.7
- long_name :
- Nominal calibration factor, applied to filter3 data
- units :
- mV/(W/(m^2 nm))
array([111.6664, 111.6664, 111.6664, ..., 111.6664, 111.6664, 111.6664], shape=(30240,), dtype=float32) - nominal_calibration_factor_filter4(time)float32127.9 127.9 127.9 ... 127.9 127.9
- long_name :
- Nominal calibration factor, applied to filter4 data
- units :
- mV/(W/(m^2 nm))
array([127.9116, 127.9116, 127.9116, ..., 127.9116, 127.9116, 127.9116], shape=(30240,), dtype=float32) - nominal_calibration_factor_filter5(time)float32185.8 185.8 185.8 ... 185.8 185.8
- long_name :
- Nominal calibration factor, applied to filter5 data
- units :
- mV/(W/(m^2 nm))
array([185.8157, 185.8157, 185.8157, ..., 185.8157, 185.8157, 185.8157], shape=(30240,), dtype=float32) - nominal_calibration_factor_filter6(time)float32378.9 378.9 378.9 ... 378.9 378.9
- long_name :
- Nominal calibration factor, applied to filter6 data
- units :
- mV/(W/(m^2 nm))
array([378.9285, 378.9285, 378.9285, ..., 378.9285, 378.9285, 378.9285], shape=(30240,), dtype=float32) - total_optical_depth_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 1
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter1 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter1 < Rayleigh_optical_depth_filter1
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 2
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter2 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter2 < Rayleigh_optical_depth_filter2
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 3
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter3 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter3 < Rayleigh_optical_depth_filter3
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 4
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter4 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter4 < Rayleigh_optical_depth_filter4
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 5
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter5 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter5 < Rayleigh_optical_depth_filter5
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - angstrom_exponent(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Angstrom exponent
- units :
- 1
- comment1 :
- Used AOD from 500 nm and 870 nm channels for computation of the Angstrom exponent.
- computation :
- angstrom exponent = log(aerosol_optical_depth_filter2 / aerosol_optical_depth_filter5) / log(filter5_CWL_nominal / filter2_CWL_nominal)
- comment2 :
- These filters were chosen so that we compute the most accurate values possible with the data available.
- ancillary_variables :
- qc_angstrom_exponent
- standard_name :
- angstrom_exponent_of_ambient_aerosol_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_angstrom_exponent(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Angstrom exponent
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- Aerosol_optical_depth_filter2 < 0.0 or aerosol_optical_depth_filter5 < 0, angstrom_exponent set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- variability_flag > variability_max_alarm
- bit_2_assessment :
- Bad
- bit_3_description :
- Angstrom_exponent < -1
- bit_3_assessment :
- Bad
- bit_4_description :
- Angstrom_exponent > 4
- bit_4_assessment :
- Bad
- bit_5_description :
- variability_flag > variability_max_warning
- bit_5_assessment :
- Indeterminate
- bit_6_description :
- Angstrom_exponent < 0
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Angstrom_exponent > 3
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Measured CWL missing, nominal value(s) used in computation of angstrom_exp
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- direct_normal_transmittance_filter2 < 0.01
- bit_9_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 1
- units :
- 1
- equation :
- aerosol_optical_depth_filter1 = (total_optical_depth_filter1 - Rayleigh_optical_depth_filter1 - Ozone_optical_depth_filter1)
- ancillary_variables :
- qc_aerosol_optical_depth_filter1
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter1 value < 0.0, aerosol_optical_depth_filter1 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter1 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter1 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Not used
- bit_8_assessment :
- Bad
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter1 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 2
- units :
- 1
- equation :
- aerosol_optical_depth_filter2 = (total_optical_depth_filter2 - Rayleigh_optical_depth_filter2 - Ozone_optical_depth_filter2)
- ancillary_variables :
- qc_aerosol_optical_depth_filter2
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter2 value < 0.0, aerosol_optical_depth_filter2 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter2 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter2 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter2 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 3
- units :
- 1
- equation :
- aerosol_optical_depth_filter3 = (total_optical_depth_filter3 - Rayleigh_optical_depth_filter3 - Ozone_optical_depth_filter3)
- ancillary_variables :
- qc_aerosol_optical_depth_filter3
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter3 value < 0.0, aerosol_optical_depth_filter3 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter3 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter3 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter3 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 4
- units :
- 1
- equation :
- aerosol_optical_depth_filter4 = (total_optical_depth_filter4 - Rayleigh_optical_depth_filter4 - Ozone_optical_depth_filter4)
- ancillary_variables :
- qc_aerosol_optical_depth_filter4
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter4 value < 0.0, aerosol_optical_depth_filter4 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter4 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter4 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter4 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 5
- units :
- 1
- equation :
- aerosol_optical_depth_filter5 = (total_optical_depth_filter5 - Rayleigh_optical_depth_filter5 - Ozone_optical_depth_filter5)
- ancillary_variables :
- qc_aerosol_optical_depth_filter5
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter5 value < 0.0, aerosol_optical_depth_filter5 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter5 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter5 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Not used
- bit_8_assessment :
- Bad
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter5 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - variability_flag(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Flag determined using cloud screen algorithm
- units :
- 1
- comment1 :
- Reference: Automated cloud screening algorithm for MFRSR data, Alexandrov, M., Geophysical Research Letters, Vol 31, L04118
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - surface_pressure(time)float3297.19 97.19 97.19 ... 98.72 98.72
- long_name :
- Surface pressure
- units :
- kPa
- source :
- sgpmetE13.b1:atmos_pressure
- standard_atm_pressure :
- 1013.25 mb
array([97.19403, 97.19403, 97.19403, ..., 98.7187 , 98.7187 , 98.7187 ], shape=(30240,), dtype=float32) - Io_filter1(time)float32197.8 197.8 197.8 ... 197.9 197.9
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 1
- units :
- count
- ancillary_variables :
- qc_Io_filter1
array([197.76321, 197.76321, 197.76321, ..., 197.88457, 197.88457, 197.88457], shape=(30240,), dtype=float32) - qc_Io_filter1(time)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
array([0, 0, 0, ..., 0, 0, 0], shape=(30240,), dtype=int32)
- Io_filter2(time)float32200.0 200.0 200.0 ... 200.2 200.2
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 2
- units :
- count
- ancillary_variables :
- qc_Io_filter2
array([200.04007, 200.04007, 200.04007, ..., 200.2003 , 200.2003 , 200.2003 ], shape=(30240,), dtype=float32) - qc_Io_filter2(time)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
array([0, 0, 0, ..., 0, 0, 0], shape=(30240,), dtype=int32)
- Io_filter3(time)float32186.0 186.0 186.0 ... 186.2 186.2
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 3
- units :
- count
- ancillary_variables :
- qc_Io_filter3
array([186.01053, 186.01053, 186.01053, ..., 186.19269, 186.19269, 186.19269], shape=(30240,), dtype=float32) - qc_Io_filter3(time)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
array([0, 0, 0, ..., 0, 0, 0], shape=(30240,), dtype=int32)
- Io_filter4(time)float32188.4 188.4 188.4 ... 188.5 188.5
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 4
- units :
- count
- ancillary_variables :
- qc_Io_filter4
array([188.38165, 188.38165, 188.38165, ..., 188.52222, 188.52222, 188.52222], shape=(30240,), dtype=float32) - qc_Io_filter4(time)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
array([0, 0, 0, ..., 0, 0, 0], shape=(30240,), dtype=int32)
- Io_filter5(time)float32159.6 159.6 159.6 ... 159.7 159.7
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 5
- units :
- count
- ancillary_variables :
- qc_Io_filter5
array([159.64467, 159.64467, 159.64467, ..., 159.71275, 159.71275, 159.71275], shape=(30240,), dtype=float32) - qc_Io_filter5(time)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
array([0, 0, 0, ..., 0, 0, 0], shape=(30240,), dtype=int32)
- Ozone_column_amount(time)float32350.5 350.5 350.5 ... 295.0 295.0
- long_name :
- Ozone column amount from satellite
- units :
- DU
- valid_min :
- 220.0
- valid_max :
- 420.0
- default_value :
- 295.0
- ancillary_variables :
- qc_Ozone_column_amount
- standard_name :
- atmosphere_mole_content_of_ozone
array([350.46048, 350.46048, 350.46048, ..., 295. , 295. , 295. ], shape=(30240,), dtype=float32) - qc_Ozone_column_amount(time)int320 0 0 0 0 0 0 0 ... 4 4 4 4 4 4 4 4
- long_name :
- Quality check results on variable: Ozone column amount from satellite
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min, data value set to default value
- bit_1_assessment :
- Indeterminate
- bit_2_description :
- Value is greater than the valid_max, data value set to default value
- bit_2_assessment :
- Indeterminate
- bit_3_description :
- Value unavailable from input, default value used
- bit_3_assessment :
- Indeterminate
- standard_name :
- quality_flag
array([0, 0, 0, ..., 4, 4, 4], shape=(30240,), dtype=int32)
- Rayleigh_optical_depth_filter1(time)float320.3019 0.3019 ... 0.3066 0.3066
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 1
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
array([0.3018958 , 0.3018958 , 0.3018958 , ..., 0.30663157, 0.30663157, 0.30663157], shape=(30240,), dtype=float32) - Rayleigh_optical_depth_filter2(time)float320.1366 0.1366 ... 0.1388 0.1388
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 2
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
array([0.1366103 , 0.1366103 , 0.1366103 , ..., 0.13875327, 0.13875327, 0.13875327], shape=(30240,), dtype=float32) - Rayleigh_optical_depth_filter3(time)float320.05998 0.05998 ... 0.06092 0.06092
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 3
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
array([0.05997621, 0.05997621, 0.05997621, ..., 0.06091704, 0.06091704, 0.06091704], shape=(30240,), dtype=float32) - Rayleigh_optical_depth_filter4(time)float320.04132 0.04132 ... 0.04196 0.04196
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 4
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
array([0.04131597, 0.04131597, 0.04131597, ..., 0.04196408, 0.04196408, 0.04196408], shape=(30240,), dtype=float32) - Rayleigh_optical_depth_filter5(time)float320.01464 0.01464 ... 0.01487 0.01487
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 5
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
array([0.01463941, 0.01463941, 0.01463941, ..., 0.01486905, 0.01486905, 0.01486905], shape=(30240,), dtype=float32) - Ozone_optical_depth_filter1(time)float320.0001051 0.0001051 ... 8.85e-05
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 1
- units :
- 1
- ozone_absorption_coefficient_filter1_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter1 :
- 0.0003
- equation :
- Ozone_optical_depth_filter1 = (Ozone_column_amount * ozone_absorption_coefficient_filter1) / 1000.
array([1.0513815e-04, 1.0513815e-04, 1.0513815e-04, ..., 8.8499997e-05, 8.8499997e-05, 8.8499997e-05], shape=(30240,), dtype=float32) - Ozone_optical_depth_filter2(time)float320.01121 0.01121 ... 0.00944 0.00944
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 2
- units :
- 1
- ozone_absorption_coefficient_filter2_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter2 :
- 0.0320
- equation :
- Ozone_optical_depth_filter2 = (Ozone_column_amount * ozone_absorption_coefficient_filter2) / 1000.
array([0.01121474, 0.01121474, 0.01121474, ..., 0.00944 , 0.00944 , 0.00944 ], shape=(30240,), dtype=float32) - Ozone_optical_depth_filter3(time)float320.04216 0.04216 ... 0.03549 0.03549
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 3
- units :
- 1
- ozone_absorption_coefficient_filter3_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter3 :
- 0.1203
- equation :
- Ozone_optical_depth_filter3 = (Ozone_column_amount * ozone_absorption_coefficient_filter3) / 1000.
array([0.0421604, 0.0421604, 0.0421604, ..., 0.0354885, 0.0354885, 0.0354885], shape=(30240,), dtype=float32) - Ozone_optical_depth_filter4(time)float320.01503 0.01503 ... 0.01266 0.01266
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 4
- units :
- 1
- ozone_absorption_coefficient_filter4_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter4 :
- 0.0429
- equation :
- Ozone_optical_depth_filter4 = (Ozone_column_amount * ozone_absorption_coefficient_filter4) / 1000.
array([0.01503475, 0.01503475, 0.01503475, ..., 0.0126555 , 0.0126555 , 0.0126555 ], shape=(30240,), dtype=float32) - Ozone_optical_depth_filter5(time)float320.0005257 0.0005257 ... 0.0004425
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 5
- units :
- 1
- ozone_absorption_coefficient_filter5_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter5 :
- 0.0015
- equation :
- Ozone_optical_depth_filter5 = (Ozone_column_amount * ozone_absorption_coefficient_filter5) / 1000.
array([0.00052569, 0.00052569, 0.00052569, ..., 0.0004425 , 0.0004425 , 0.0004425 ], shape=(30240,), dtype=float32) - sun_to_earth_distance(time)float320.9833 0.9833 ... 0.9833 0.9833
- long_name :
- Sun to earth distance
- units :
- astronomical_unit
array([0.9833162 , 0.9833162 , 0.9833162 , ..., 0.98331004, 0.98331004, 0.98331004], shape=(30240,), dtype=float32) - direct_normal_transmittance_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 1
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 2
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 3
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 4
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 5
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - Io_interquartile_values(time, Io_interquartile_time, Io_wavelength)float32dask.array<chunksize=(4320, 121, 5), meta=np.ndarray>
- long_name :
- Interquartile Io values
- units :
- count
Array Chunk Bytes 76.71 MiB 9.97 MiB Shape (30240, 133, 5) (4320, 121, 5) Dask graph 14 chunks in 66 graph layers Data type float32 numpy.ndarray - Io_gauss_values(time, Io_gauss_time, Io_wavelength)float32dask.array<chunksize=(4320, 61, 5), meta=np.ndarray>
- long_name :
- Io values after gaussian filter
- units :
- count
Array Chunk Bytes 38.64 MiB 5.03 MiB Shape (30240, 67, 5) (4320, 61, 5) Dask graph 14 chunks in 66 graph layers Data type float32 numpy.ndarray - lat(time)float3236.6 36.6 36.6 ... 36.6 36.6 36.6
- long_name :
- North latitude
- units :
- degree_N
- valid_min :
- -90.0
- valid_max :
- 90.0
- standard_name :
- latitude
array([36.605, 36.605, 36.605, ..., 36.605, 36.605, 36.605], shape=(30240,), dtype=float32) - lon(time)float32-97.49 -97.49 ... -97.49 -97.49
- long_name :
- East longitude
- units :
- degree_E
- valid_min :
- -180.0
- valid_max :
- 180.0
- standard_name :
- longitude
array([-97.485, -97.485, -97.485, ..., -97.485, -97.485, -97.485], shape=(30240,), dtype=float32) - alt(time)float32318.0 318.0 318.0 ... 318.0 318.0
- long_name :
- Altitude above mean sea level
- units :
- m
- standard_name :
- altitude
array([318., 318., 318., ..., 318., 318., 318.], shape=(30240,), dtype=float32)
- command_line :
- mfraod -n mfraod_mfrsr -s sgp -f E13 -b 19970826 -e 20210112 -D 2 --max-runtime 0 -R
- Conventions :
- ARM-1.3
- process_version :
- vap-mfraod-2.9-1.el7
- dod_version :
- mfrsraod1mich-c1-2.8
- input_datastreams :
- sgpmetE13.b1 : 4.41 : 20200101.000000 gecomiX1.a1 : 1.1 : 20200101.000000 sgpmfrsrE13.a0 : 1.4 : 20200101.000000 sgpmfrsrE13.b1 : 1.4 : 20200101.000000 sgpmfrsrlangleyE13.c1 : 3.11 : 20191202.155220-20200131.153800
- site_id :
- sgp
- platform_id :
- mfrsraod1mich
- facility_id :
- E13
- data_level :
- c1
- location_description :
- Southern Great Plains (SGP), Lamont, Oklahoma
- datastream :
- sgpmfrsraod1michE13.c1
- serial_number :
- Refer to logger_id and head_id
- sampling_interval :
- 20 seconds
- doi :
- 10.5439/1356805
- broadband_channel :
- Unfiltered Silicon, nominally from 32 to 1200 nm
- broadband_channel_calibration :
- nominal calibration from FEL standard lamp
- filter1_CWL_nominal :
- 415 nm
- filter1_CWL_measured :
- 413.2 nm
- filter1_FWHM_nominal :
- 10 nm
- filter1_FWHM_measured :
- 10.8 nm
- filter1_TOA_direct_normal :
- 1.791483 W/m^2-nm
- filter1_calibration :
- Langley Io pinned to TOA direct normal
- filter2_CWL_nominal :
- 500 nm
- filter2_CWL_measured :
- 501.0 nm
- filter2_FWHM_nominal :
- 10 nm
- filter2_FWHM_measured :
- 10.7 nm
- filter2_TOA_direct_normal :
- 1.958570 W/m^2-nm
- filter2_calibration :
- Langley Io pinned to TOA direct normal
- filter3_CWL_nominal :
- 615 nm
- filter3_CWL_measured :
- 613.1 nm
- filter3_FWHM_nominal :
- 10 nm
- filter3_FWHM_measured :
- 10.8 nm
- filter3_TOA_direct_normal :
- 1.688052 W/m^2-nm
- filter3_calibration :
- Langley Io pinned to TOA direct normal
- filter4_CWL_nominal :
- 673 nm
- filter4_CWL_measured :
- 672.1 nm
- filter4_FWHM_nominal :
- 10 nm
- filter4_FWHM_measured :
- 10.6 nm
- filter4_TOA_direct_normal :
- 1.500830 W/m^2-nm
- filter4_calibration :
- Langley Io pinned to TOA direct normal
- filter5_CWL_nominal :
- 870 nm
- filter5_CWL_measured :
- 868.9 nm
- filter5_FWHM_nominal :
- 10 nm
- filter5_FWHM_measured :
- 10.0 nm
- filter5_TOA_direct_normal :
- 0.959429 W/m^2-nm
- filter5_calibration :
- Langley Io pinned to TOA direct normal
- filter6_CWL_nominal :
- 940 nm
- filter6_CWL_measured :
- 938.7 nm
- filter6_FWHM_nominal :
- 10 nm
- filter6_FWHM_measured :
- 6.2 nm
- filter6_calibration :
- nominal calibration from FEL standard lamp
- total_optical_depth_computation :
- -log(direct_normal * sun_earth_distance^2/Gueymard_TOA)/airmass
- aerosol_optical_depth_computation :
- total_optical_depth - Rayleigh_optical_depth - Ozone column_amount * Ozone_absorption_coefficient
- hemispheric_computation :
- sum of diffuse_hemisp and direct_horizontal
- diffuse_hemispheric_computation :
- (diffuse_hemisp_raw - offset) * diffuse_correction * nominal_calibration_factor * (TOA/Io)
- direct_normal_computation :
- direct_horizontal / cosine(apparent solar zenith angle)
- source_Io :
- Forgan analysis of Langley data
- source_Io_comment :
- Io values in mfrsrlangley datastream are used
- ingest_software :
- vap-mfraod-2.9-1.el7
- comment :
- The time assigned to each data point indicates the end of any period of averaging of the geophysical data.
- Filter_information :
- filters 1 and 5 for aerosol measurement filters 2, 3 and 4 for aerosol and ozone measurement filter 6 for water vapor measurement
- shadowband_timing :
- Due to shadowband motion, there is an inherent lag between the time stamp in the file and the time corresponding to the direct beam measurement which varies throughout the day. On average this lag is about five seconds, therefore five seconds are added to the timestamp when calculating solar position.
- cosine_correction_source :
- CosineCorr.sgpmfrsrE13.20180212.dat
- diffuse_correction_source :
- DiffuseCorr.sgpmfrsrE13.20180212.dat
- filter_trace_source :
- FilterInfo.sgpmfrsrE13.20180212.dat
- nominal_calibration_source :
- NominalCal.sgpmfrsrE13.20180212.dat
- offset_correction_source :
- Offsets are computed using a two hour average of the alltime_hemisp_narrowband data centered around the time of the maximum solar zenith angle. For higher and lower latitudes the averaging window can shrink to only include values where the solar zenith angle is >= 97 degrees. If less than 30 minutes of nighttime data is available, the previously computed values will be used.
- ozone_column_amount_default_source :
- mfraod_ozone_limits.info
- variability_limit_source :
- mfraod_variability_limits.info
- logger_software_version :
- 2.2
- logger_id :
- 24062
- head_id :
- 180133057
- mfr_internal_latitude :
- 36.605000
- mfr_internal_longitude :
- -97.485000
- Langley_data_used :
- michalsky algorithm
- pressure_fraction_for_Rayleigh_calculation :
- 0.959231
- Forgan_StartDate :
- 20191202
- Forgan_EndDate :
- 20200131
- history :
- created by user bfaye on machine prod-proc5.adc.arm.gov at 2023-12-12 13:14:01, using vap-mfraod-2.9-1.el7
- _file_dates :
- ['20200101', '20200102', '20200103', '20200104', '20200105', '20200106', '20200107']
- _file_times :
- ['000000', '000000', '000000', '000000', '000000', '000000', '000000']
- _datastream :
- sgpmfrsraod1michE13.c1
- _arm_standards_flag :
- 1
So… what is this code doing differently and what do these parameters mean?
Well to start, by setting combine=’nested’ and concat_dim=’time’, we are telling xarray that we are merging the files by the order they are in the file list and by the time dimension. We are also telling xarray that we want to expand the time dimension for the non time variables data_vars=’all’ and we are joining by using the union of object indexes join=’outer’. As you can see we have 30240 times, a combination of all the files times, and we can see time was added as a dimension to base_time and more.
Warning: this will only work if your file list is sorted by the order that you which to merge these files. Built in to ACT we use a sorted to sort the files by time in the file name.#
Now, if we do not care about the non time variables, we can set data_vars=’minimal’ which will try to concatenate only the time dimensions variables, since we are specifying time. We also would want to set compat=’override’ as well. What this does, is it tells xarray if there is a conflict, which we know there will be for the variable base_time as there is no dimension, so it will just use the first files variables data for the non time dimension variables.
ds_min = xr.open_mfdataset(
files,
combine='nested',
concat_dim='time',
join='outer',
data_vars='minimal',
coords='minimal',
compat='override',
)
ds_min
<xarray.Dataset> Size: 19MB
Dimensions: (time: 30240, bench_angle: 181,
wavelength: 750,
Io_interquartile_time: 133,
Io_wavelength: 5,
Io_gauss_time: 67)
Coordinates:
* time (time) datetime64[ns] 242kB 2020...
* bench_angle (bench_angle) float32 724B 0.0 ....
* wavelength (wavelength) float32 3kB 325.0 ....
* Io_interquartile_time (Io_interquartile_time) datetime64[ns] 1kB ...
* Io_gauss_time (Io_gauss_time) datetime64[ns] 536B ...
Dimensions without coordinates: Io_wavelength
Data variables: (12/245)
base_time datetime64[ns] 8B ...
time_offset (time) datetime64[ns] 242kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_broadband_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter1_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter2_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
hemisp_narrowband_filter3_raw (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
... ...
direct_normal_transmittance_filter5 (time) float32 121kB dask.array<chunksize=(4320,), meta=np.ndarray>
Io_interquartile_values (Io_interquartile_time, Io_wavelength) float32 3kB dask.array<chunksize=(121, 5), meta=np.ndarray>
Io_gauss_values (Io_gauss_time, Io_wavelength) float32 1kB dask.array<chunksize=(61, 5), meta=np.ndarray>
lat float32 4B ...
lon float32 4B ...
alt float32 4B ...
Attributes: (12/79)
command_line: mfraod -n mfraod_mfrsr -s sg...
Conventions: ARM-1.3
process_version: vap-mfraod-2.9-1.el7
dod_version: mfrsraod1mich-c1-2.8
input_datastreams: sgpmetE13.b1 : 4.41 : 202001...
site_id: sgp
... ...
mfr_internal_longitude: -97.485000
Langley_data_used: michalsky algorithm
pressure_fraction_for_Rayleigh_calculation: 0.959231
Forgan_StartDate: 20191202
Forgan_EndDate: 20200131
history: created by user bfaye on mac...- time: 30240
- bench_angle: 181
- wavelength: 750
- Io_interquartile_time: 133
- Io_wavelength: 5
- Io_gauss_time: 67
- time(time)datetime64[ns]2020-01-01 ... 2020-01-07T23:59:40
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2020-01-01T00:00:00.000000000', '2020-01-01T00:00:20.000000000', '2020-01-01T00:00:40.000000000', ..., '2020-01-07T23:59:00.000000000', '2020-01-07T23:59:20.000000000', '2020-01-07T23:59:40.000000000'], shape=(30240,), dtype='datetime64[ns]') - bench_angle(bench_angle)float320.0 1.0 2.0 ... 178.0 179.0 180.0
- long_name :
- Angle of incidence during cosine bench measurements
- units :
- degree
- head_orientation :
- Head is oriented so shadowband is south
- South_to_North :
- 0 is S, 90 is zenith, 180 is N
- West_to_East :
- 0 is W, 90 is zenith, 180 is E
array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24., 25., 26., 27., 28., 29., 30., 31., 32., 33., 34., 35., 36., 37., 38., 39., 40., 41., 42., 43., 44., 45., 46., 47., 48., 49., 50., 51., 52., 53., 54., 55., 56., 57., 58., 59., 60., 61., 62., 63., 64., 65., 66., 67., 68., 69., 70., 71., 72., 73., 74., 75., 76., 77., 78., 79., 80., 81., 82., 83., 84., 85., 86., 87., 88., 89., 90., 91., 92., 93., 94., 95., 96., 97., 98., 99., 100., 101., 102., 103., 104., 105., 106., 107., 108., 109., 110., 111., 112., 113., 114., 115., 116., 117., 118., 119., 120., 121., 122., 123., 124., 125., 126., 127., 128., 129., 130., 131., 132., 133., 134., 135., 136., 137., 138., 139., 140., 141., 142., 143., 144., 145., 146., 147., 148., 149., 150., 151., 152., 153., 154., 155., 156., 157., 158., 159., 160., 161., 162., 163., 164., 165., 166., 167., 168., 169., 170., 171., 172., 173., 174., 175., 176., 177., 178., 179., 180.], dtype=float32) - wavelength(wavelength)float32325.0 325.5 326.0 ... 998.0 999.0
- long_name :
- Top of atmosphere spectrum wavelengths
- units :
- nm
- reference :
- The Sun's Total and Spectral Irradiance for Solar Energy Applications and Solar Radiation Models, Gueymard, C., submitted to Solar Energy, 2003
array([325. , 325.5, 326. , ..., 997. , 998. , 999. ], shape=(750,), dtype=float32) - Io_interquartile_time(Io_interquartile_time)datetime64[ns]2019-12-02T15:51:28 ... 2020-02-...
- long_name :
- Time for interquartile Io sample times
array(['2019-12-02T15:51:28.000000000', '2019-12-02T20:45:52.000000000', '2019-12-03T15:53:36.000000000', '2019-12-03T20:45:52.000000000', '2019-12-04T15:55:44.000000000', '2019-12-04T20:43:44.000000000', '2019-12-05T15:57:52.000000000', '2019-12-05T20:43:44.000000000', '2019-12-06T16:00:00.000000000', '2019-12-06T20:41:36.000000000', '2019-12-07T16:02:08.000000000', '2019-12-07T20:39:28.000000000', '2019-12-08T16:04:16.000000000', '2019-12-08T20:39:28.000000000', '2019-12-09T16:06:24.000000000', '2019-12-09T20:37:20.000000000', '2019-12-10T16:08:32.000000000', '2019-12-10T20:37:20.000000000', '2019-12-11T16:10:40.000000000', '2019-12-11T20:35:12.000000000', '2019-12-12T16:12:48.000000000', '2019-12-12T20:35:12.000000000', '2019-12-13T16:14:56.000000000', '2019-12-13T20:33:04.000000000', '2019-12-14T16:17:04.000000000', '2019-12-14T20:33:04.000000000', '2019-12-15T16:17:04.000000000', '2019-12-15T20:30:56.000000000', '2019-12-16T16:19:12.000000000', '2019-12-16T20:30:56.000000000', '2019-12-17T16:21:20.000000000', '2019-12-17T20:30:56.000000000', '2019-12-18T16:23:28.000000000', '2019-12-18T20:30:56.000000000', '2019-12-19T16:23:28.000000000', '2019-12-19T20:30:56.000000000', '2019-12-20T16:25:36.000000000', '2019-12-20T20:28:48.000000000', '2019-12-21T16:25:36.000000000', '2019-12-21T20:30:56.000000000', '2019-12-22T16:25:36.000000000', '2019-12-22T20:30:56.000000000', '2019-12-23T16:27:44.000000000', '2019-12-23T20:30:56.000000000', '2019-12-24T16:25:36.000000000', '2019-12-24T20:33:04.000000000', '2019-12-25T16:25:36.000000000', '2019-12-25T20:33:04.000000000', '2019-12-26T16:25:36.000000000', '2019-12-26T20:35:12.000000000', '2019-12-27T16:25:36.000000000', '2019-12-27T20:37:20.000000000', '2019-12-28T16:23:28.000000000', '2019-12-28T20:39:28.000000000', '2019-12-29T16:23:28.000000000', '2019-12-29T20:41:36.000000000', '2019-12-30T16:23:28.000000000', '2019-12-30T20:41:36.000000000', '2019-12-31T16:21:20.000000000', '2019-12-31T20:43:44.000000000', '2020-01-01T16:19:12.000000000', '2020-01-01T20:48:00.000000000', '2020-01-02T16:19:12.000000000', '2020-01-02T20:50:08.000000000', '2020-01-03T16:17:04.000000000', '2020-01-03T20:52:16.000000000', '2020-01-04T16:17:04.000000000', '2020-01-04T20:54:24.000000000', '2020-01-05T16:14:56.000000000', '2020-01-05T20:56:32.000000000', '2020-01-06T16:12:48.000000000', '2020-01-06T20:58:40.000000000', '2020-01-07T16:12:48.000000000', '2020-01-07T21:00:48.000000000', '2020-01-08T16:10:40.000000000', '2020-01-08T21:02:56.000000000', '2020-01-09T16:10:40.000000000', '2020-01-09T21:05:04.000000000', '2020-01-10T16:08:32.000000000', '2020-01-10T21:07:12.000000000', '2020-01-11T16:08:32.000000000', '2020-01-11T21:09:20.000000000', '2020-01-12T16:06:24.000000000', '2020-01-12T21:11:28.000000000', '2020-01-13T16:04:16.000000000', '2020-01-13T21:13:36.000000000', '2020-01-14T16:04:16.000000000', '2020-01-14T21:15:44.000000000', '2020-01-15T16:02:08.000000000', '2020-01-15T21:17:52.000000000', '2020-01-16T16:00:00.000000000', '2020-01-16T21:20:00.000000000', '2020-01-17T16:00:00.000000000', '2020-01-17T21:22:08.000000000', '2020-01-18T15:57:52.000000000', '2020-01-18T21:24:16.000000000', '2020-01-19T15:55:44.000000000', '2020-01-19T21:26:24.000000000', '2020-01-20T15:55:44.000000000', '2020-01-20T21:28:32.000000000', '2020-01-21T21:30:40.000000000', '2020-01-22T15:51:28.000000000', '2020-01-22T21:32:48.000000000', '2020-01-23T15:49:20.000000000', '2020-01-23T21:34:56.000000000', '2020-01-24T15:49:20.000000000', '2020-01-24T21:34:56.000000000', '2020-01-25T15:47:12.000000000', '2020-01-25T21:37:04.000000000', '2020-01-26T15:45:04.000000000', '2020-01-26T21:39:12.000000000', '2020-01-27T15:45:04.000000000', '2020-01-27T21:41:20.000000000', '2020-01-28T15:42:56.000000000', '2020-01-28T21:43:28.000000000', '2020-01-29T15:40:48.000000000', '2020-01-29T21:45:36.000000000', '2020-01-30T15:38:40.000000000', '2020-01-30T21:47:44.000000000', '2020-01-31T15:38:40.000000000', '2020-01-31T21:49:52.000000000', '2020-02-01T15:36:32.000000000', '2020-02-01T21:52:00.000000000', '2020-02-02T15:34:24.000000000', '2020-02-02T21:54:08.000000000', '2020-02-03T15:32:16.000000000', '2020-02-03T21:56:16.000000000', '2020-02-04T15:32:16.000000000', '2020-02-04T21:56:16.000000000', '2020-02-05T15:30:08.000000000', '2020-02-05T21:58:24.000000000', '2020-02-06T15:28:00.000000000', '2020-02-06T22:00:32.000000000'], dtype='datetime64[ns]') - Io_gauss_time(Io_gauss_time)datetime64[ns]2019-12-03 ... 2020-02-07
- long_name :
- Time for Ios after gaussian filter
array(['2019-12-03T00:00:00.000000000', '2019-12-04T00:00:00.000000000', '2019-12-05T00:00:00.000000000', '2019-12-06T00:00:00.000000000', '2019-12-07T00:00:00.000000000', '2019-12-08T00:00:00.000000000', '2019-12-09T00:00:00.000000000', '2019-12-10T00:00:00.000000000', '2019-12-11T00:00:00.000000000', '2019-12-12T00:00:00.000000000', '2019-12-13T00:00:00.000000000', '2019-12-14T00:00:00.000000000', '2019-12-15T00:00:00.000000000', '2019-12-16T00:00:00.000000000', '2019-12-17T00:00:00.000000000', '2019-12-18T00:00:00.000000000', '2019-12-19T00:00:00.000000000', '2019-12-20T00:46:56.000000000', '2019-12-21T00:42:40.000000000', '2019-12-22T00:38:24.000000000', '2019-12-23T00:36:16.000000000', '2019-12-24T00:32:00.000000000', '2019-12-25T00:27:44.000000000', '2019-12-26T00:23:28.000000000', '2019-12-27T00:19:12.000000000', '2019-12-28T00:14:56.000000000', '2019-12-29T00:12:48.000000000', '2019-12-30T00:08:32.000000000', '2019-12-31T00:04:16.000000000', '2020-01-01T00:00:00.000000000', '2020-01-02T00:00:00.000000000', '2020-01-03T00:00:00.000000000', '2020-01-04T00:00:00.000000000', '2020-01-05T00:00:00.000000000', '2020-01-06T00:00:00.000000000', '2020-01-07T00:00:00.000000000', '2020-01-08T00:00:00.000000000', '2020-01-09T00:00:00.000000000', '2020-01-10T00:00:00.000000000', '2020-01-11T00:00:00.000000000', '2020-01-12T00:00:00.000000000', '2020-01-13T00:00:00.000000000', '2020-01-14T00:00:00.000000000', '2020-01-15T00:00:00.000000000', '2020-01-16T00:00:00.000000000', '2020-01-17T00:00:00.000000000', '2020-01-18T00:00:00.000000000', '2020-01-19T00:00:00.000000000', '2020-01-20T00:00:00.000000000', '2020-01-21T00:00:00.000000000', '2020-01-22T00:00:00.000000000', '2020-01-23T00:00:00.000000000', '2020-01-24T00:00:00.000000000', '2020-01-25T00:00:00.000000000', '2020-01-26T00:00:00.000000000', '2020-01-27T00:00:00.000000000', '2020-01-28T00:00:00.000000000', '2020-01-29T00:00:00.000000000', '2020-01-30T00:00:00.000000000', '2020-01-31T00:00:00.000000000', '2020-02-01T00:00:00.000000000', '2020-02-02T00:00:00.000000000', '2020-02-03T00:00:00.000000000', '2020-02-04T00:00:00.000000000', '2020-02-05T00:00:00.000000000', '2020-02-06T00:00:00.000000000', '2020-02-07T00:00:00.000000000'], dtype='datetime64[ns]')
- base_time()datetime64[ns]...
- string :
- 2020-01-01 00:00:00 0:00
- long_name :
- Base time in Epoch
- ancillary_variables :
- time_offset
[1 values with dtype=datetime64[ns]]
- time_offset(time)datetime64[ns]dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Time offset from base_time
- ancillary_variables :
- base_time
Array Chunk Bytes 236.25 kiB 33.75 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type datetime64[ns] numpy.ndarray - hemisp_broadband_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Hemispheric broadband irradiance
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter1_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 1
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter2_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 2
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter3_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 3
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter4_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 4
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter5_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 5
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_narrowband_filter6_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 6
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_broadband_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse hemispheric broadband irradiance
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter1_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 1
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter2_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 2
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter3_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 3
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter4_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 4
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter5_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 5
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - diffuse_hemisp_narrowband_filter6_raw(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse narrowband hemispheric irradiance, filter 6
- units :
- mV
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Hemispheric broadband irradiance, offset and cosine corrected, broadband scale factor applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- offset subtracted, cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_hemisp_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Hemispheric broadband irradiance, offset and cosine corrected, broadband scale factor applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_hemisp_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Diffuse hemispheric broadband irradiance, offset subtracted, cosine corrected, broadband scale applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- offset subtracted, cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_diffuse_hemisp_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Diffuse hemispheric broadband irradiance, offset subtracted, cosine corrected, broadband scale applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 1, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 2, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 3, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 4, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 5, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- Measured CWL missing, nominal value used instead
- bit_5_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - diffuse_hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband diffuse hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- offset subtracted, cosine corrected
- ancillary_variables :
- qc_diffuse_hemisp_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_diffuse_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband diffuse hemispheric irradiance, filter 6, offset and cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Direct normal broadband irradiance, cosine corrected, broadband scale applied
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 5000.0
- corrections :
- cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_direct_normal_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Direct normal broadband irradiance, cosine corrected, broadband scale applied
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 1, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 1, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 2, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 2, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 3, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 3, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 4, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 4, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 5, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 5, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_normal_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct normal irradiance, filter 6, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.1
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_normal_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_normal_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct normal irradiance, filter 6, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime hemispheric broadband irradiance
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime hemispheric broadband irradiance
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 1
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 2
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 3
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 4
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 5
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - alltime_hemisp_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Alltime narrowband hemispheric irradiance, filter 6
- units :
- mV
- valid_min :
- -50.0
- valid_max :
- 4095.0
- corrections :
- none
- ancillary_variables :
- qc_alltime_hemisp_narrowband_filter6
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_alltime_hemisp_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Alltime narrowband hemispheric irradiance, filter 6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file. or alltime channel measurement was not done
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Direct horizontal broadband irradiance, cosine corrected
- units :
- W/m^2
- valid_min :
- 0.0
- valid_max :
- 1250.0
- corrections :
- cosine corrected, broadband scale factor applied
- ancillary_variables :
- qc_direct_horizontal_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Direct horizontal broadband irradiance, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 1, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.875
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter1
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 1, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 2, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 2.0
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter2
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 2, cosine corrected
- units :
- 1
- standard_name :
- quality_flag
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 3, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.875
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter3
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 3, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 4, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.75
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter4
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 4, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 5, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.25
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter5
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 5, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_horizontal_narrowband_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Narrowband direct horizontal irradiance, filter 6, cosine corrected
- units :
- W/(m^2 nm)
- valid_min :
- 0.0
- valid_max :
- 1.5
- corrections :
- cosine corrected
- ancillary_variables :
- qc_direct_horizontal_narrowband_filter6
- standard_name :
- surface_downwelling_radiative_flux_per_unit_wavelength_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_horizontal_narrowband_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Narrowband direct horizontal irradiance, filter 6, cosine corrected
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_broadband to diffuse_hemisp_broadband
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 5.0
- ancillary_variables :
- qc_direct_diffuse_ratio_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_broadband to diffuse_hemisp_broadband
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter1 to diffuse_hemisp_narrowband_filter1
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 6.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter1 to diffuse_hemisp_narrowband_filter1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter2 to diffuse_hemisp_narrowband_filter2
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 8.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter2 to diffuse_hemisp_narrowband_filter2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter3 to diffuse_hemisp_narrowband_filter3
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 18.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter3 to diffuse_hemisp_narrowband_filter3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter4 to diffuse_hemisp_narrowband_filter4
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 24.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter4 to diffuse_hemisp_narrowband_filter4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter5 to diffuse_hemisp_narrowband_filter5
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 48.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter5 to diffuse_hemisp_narrowband_filter5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - direct_diffuse_ratio_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Ratio of direct_normal_narrowband_filter6 to diffuse_hemisp_narrowband_filter6
- units :
- 1
- valid_min :
- 0.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_direct_diffuse_ratio_filter6
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_direct_diffuse_ratio_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Ratio of direct_normal_narrowband_filter6 to diffuse_hemisp_narrowband_filter6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- bit_4_description :
- Not used
- bit_4_assessment :
- Bad
- bit_4_comment :
- Test no longer applied.
- bit_5_description :
- solar_zenith_angle > 90
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Measured CWL missing, nominal value used instead
- bit_7_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - head_temp(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Detector temperature
- units :
- degC
- valid_min :
- 30.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_head_temp
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_head_temp(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Detector temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Not likely for this measurement, but if bit 1 is set, data value was set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - head_temp2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Second detector temperature
- units :
- degC
- valid_min :
- 30.0
- valid_max :
- 50.0
- ancillary_variables :
- qc_head_temp2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_head_temp2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Second detector temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - logger_temp(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Internal logger temperature
- units :
- degC
- valid_min :
- -55.0
- valid_max :
- 85.0
- ancillary_variables :
- qc_logger_temp
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_logger_temp(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Internal logger temperature
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - logger_volt(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Data logger supply voltage
- units :
- V
- valid_min :
- 10.0
- valid_max :
- 15.0
- ancillary_variables :
- qc_logger_volt
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_logger_volt(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Data logger supply voltage
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value not available in input file, or data was collected via Yankee logger, data value set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is less than the valid_min.
- bit_2_assessment :
- Bad
- bit_3_description :
- Value is greater than the valid_max.
- bit_3_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - solar_zenith_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Apparent solar zenith angle
- units :
- degree
- corrections :
- solar zenith angle corrected for refraction by atmosphere
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - cosine_solar_zenith_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine of apparent solar zenith angle
- units :
- 1
- corrections :
- solar zenith angle corrected for refraction by atmosphere
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - elevation_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Elevation angle
- units :
- degree
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - airmass(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Airmass
- units :
- 1
- corrections :
- approximately 1/cos(solar_zenith_angle) with corrections for refraction and spherical atmosphere
- ancillary_variables :
- qc_airmass
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_airmass(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Airmass
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - azimuth_angle(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Azimuth angle
- units :
- degree
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - computed_cosine_correction_broadband(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_broadband
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_broadband
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_broadband(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_broadband
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter1
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter2
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter3
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter4
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter5
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - computed_cosine_correction_filter6(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Cosine correction applied to direct_horizontal_narrowband_filter6
- units :
- 1
- ancillary_variables :
- qc_computed_cosine_correction_filter6
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_computed_cosine_correction_filter6(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Cosine correction applied to direct_horizontal_narrowband_filter6
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Data value is not available in input file, data value set to missing_value in output file.
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - cosine_correction_sn_broadband(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, broadband channel
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter1(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter1
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter2(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter2
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter3(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter3
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter4(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter4
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter5(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter5
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_sn_filter6(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, south to north, filter6
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_broadband(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, broadband channel
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter1(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter1
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter2(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter2
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter3(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter3
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter4(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter4
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter5(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter5
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - cosine_correction_we_filter6(bench_angle)float32dask.array<chunksize=(181,), meta=np.ndarray>
- long_name :
- Cosine correction, west to east, filter6
- units :
- 1
- comment :
- read from cosine_correction_source
Array Chunk Bytes 724 B 724 B Shape (181,) (181,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - wavelength_filter1(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 1, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter1
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter1(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 1, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter1(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 1, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter1
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter1(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 1, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter2(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 2, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter2
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter2(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 2, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter2(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 2, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter2
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter2(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 2, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter3(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 3, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter3
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter3(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 3, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter3(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 3, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter3
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter3(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 3, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter4(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 4, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter4
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter4(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 4, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter4(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 4, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter4
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter4(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 4, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter5(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 5, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter5
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter5(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 5, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter5(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 5, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter5
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter5(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 5, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - wavelength_filter6(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 6, wavelength value obtained during bench calibrations
- units :
- nm
- ancillary_variables :
- qc_wavelength_filter6
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_wavelength_filter6(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 6, wavelength value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - normalized_transmittance_filter6(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Normalized filter function data, filter 6, measured transmittance value obtained during bench calibrations
- units :
- 1
- ancillary_variables :
- qc_normalized_transmittance_filter6
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - qc_normalized_transmittance_filter6(wavelength)int32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Normalized filter function data, filter 6, measured transmittance value obtained during bench calibrations
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Normalized filter function for this point in the profile not available, data value set to missing_value
- bit_1_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - TOA_irradiance(wavelength)float32dask.array<chunksize=(750,), meta=np.ndarray>
- long_name :
- Top of atmosphere direct normal solar irradiance
- units :
- W/(m^2 nm)
- description :
- Gueymard TOA convoluted with a 10 nm FWHM Gaussian envelope
- reference :
- The Sun's Total and Spectral Irradiance for Solar Energy Applications and Solar Radiation Models, Gueymard, C., submitted to Solar Energy, 2003
Array Chunk Bytes 2.93 kiB 2.93 kiB Shape (750,) (750,) Dask graph 1 chunks in 2 graph layers Data type float32 numpy.ndarray - offset_broadband()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse broadband data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter1()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter1 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter2()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter2 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter3()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter3 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter4()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter4 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter5()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter5 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- offset_filter6()float32...
- long_name :
- Offset subtracted from hemispheric and diffuse filter6 data
- units :
- mV
- comment :
- Offset value is a rounded average
- offset_source :
- alltime data used for offset determination
[1 values with dtype=float32]
- diffuse_correction_broadband()float32...
- long_name :
- Cosine correction of broadband diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter1()float32...
- long_name :
- Cosine correction of filter1 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter2()float32...
- long_name :
- Cosine correction of filter2 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter3()float32...
- long_name :
- Cosine correction of filter3 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter4()float32...
- long_name :
- Cosine correction of filter4 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter5()float32...
- long_name :
- Cosine correction of filter5 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- diffuse_correction_filter6()float32...
- long_name :
- Cosine correction of filter6 diffuse, assuming Rayleigh sky at 45 deg zenith angle
- units :
- 1
[1 values with dtype=float32]
- nominal_calibration_factor_broadband()float32...
- long_name :
- Nominal calibration factor, applied to broadband data
- units :
- mV/(W/m^2)
[1 values with dtype=float32]
- nominal_calibration_factor_filter1()float32...
- long_name :
- Nominal calibration factor, applied to filter1 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter2()float32...
- long_name :
- Nominal calibration factor, applied to filter2 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter3()float32...
- long_name :
- Nominal calibration factor, applied to filter3 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter4()float32...
- long_name :
- Nominal calibration factor, applied to filter4 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter5()float32...
- long_name :
- Nominal calibration factor, applied to filter5 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- nominal_calibration_factor_filter6()float32...
- long_name :
- Nominal calibration factor, applied to filter6 data
- units :
- mV/(W/(m^2 nm))
[1 values with dtype=float32]
- total_optical_depth_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 1
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter1 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter1 < Rayleigh_optical_depth_filter1
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 2
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter2
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter2 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter2 < Rayleigh_optical_depth_filter2
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 3
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter3
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter3 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter3 < Rayleigh_optical_depth_filter3
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 4
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter4
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter4 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter4 < Rayleigh_optical_depth_filter4
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - total_optical_depth_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Total optical depth direct narrowband filter 5
- units :
- 1
- ancillary_variables :
- qc_total_optical_depth_filter5
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_total_optical_depth_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Total optical depth direct narrowband filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, total_optical_depth_filter5 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- total_optical_depth_filter5 < Rayleigh_optical_depth_filter5
- bit_3_assessment :
- Bad
- bit_4_description :
- solar_zenith_angle > 84
- bit_4_assessment :
- Indeterminate
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - angstrom_exponent(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Angstrom exponent
- units :
- 1
- comment1 :
- Used AOD from 500 nm and 870 nm channels for computation of the Angstrom exponent.
- computation :
- angstrom exponent = log(aerosol_optical_depth_filter2 / aerosol_optical_depth_filter5) / log(filter5_CWL_nominal / filter2_CWL_nominal)
- comment2 :
- These filters were chosen so that we compute the most accurate values possible with the data available.
- ancillary_variables :
- qc_angstrom_exponent
- standard_name :
- angstrom_exponent_of_ambient_aerosol_in_air
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_angstrom_exponent(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Angstrom exponent
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- Aerosol_optical_depth_filter2 < 0.0 or aerosol_optical_depth_filter5 < 0, angstrom_exponent set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- variability_flag > variability_max_alarm
- bit_2_assessment :
- Bad
- bit_3_description :
- Angstrom_exponent < -1
- bit_3_assessment :
- Bad
- bit_4_description :
- Angstrom_exponent > 4
- bit_4_assessment :
- Bad
- bit_5_description :
- variability_flag > variability_max_warning
- bit_5_assessment :
- Indeterminate
- bit_6_description :
- Angstrom_exponent < 0
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- Angstrom_exponent > 3
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Measured CWL missing, nominal value(s) used in computation of angstrom_exp
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- direct_normal_transmittance_filter2 < 0.01
- bit_9_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 1
- units :
- 1
- equation :
- aerosol_optical_depth_filter1 = (total_optical_depth_filter1 - Rayleigh_optical_depth_filter1 - Ozone_optical_depth_filter1)
- ancillary_variables :
- qc_aerosol_optical_depth_filter1
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter1(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter1 value < 0.0, aerosol_optical_depth_filter1 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter1 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter1 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Not used
- bit_8_assessment :
- Bad
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter1 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 2
- units :
- 1
- equation :
- aerosol_optical_depth_filter2 = (total_optical_depth_filter2 - Rayleigh_optical_depth_filter2 - Ozone_optical_depth_filter2)
- ancillary_variables :
- qc_aerosol_optical_depth_filter2
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter2(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter2 value < 0.0, aerosol_optical_depth_filter2 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter2 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter2 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter2 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 3
- units :
- 1
- equation :
- aerosol_optical_depth_filter3 = (total_optical_depth_filter3 - Rayleigh_optical_depth_filter3 - Ozone_optical_depth_filter3)
- ancillary_variables :
- qc_aerosol_optical_depth_filter3
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter3(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter3 value < 0.0, aerosol_optical_depth_filter3 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter3 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter3 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter3 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 4
- units :
- 1
- equation :
- aerosol_optical_depth_filter4 = (total_optical_depth_filter4 - Rayleigh_optical_depth_filter4 - Ozone_optical_depth_filter4)
- ancillary_variables :
- qc_aerosol_optical_depth_filter4
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter4(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter4 value < 0.0, aerosol_optical_depth_filter4 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter4 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter4 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Ozone_column_amount outside expected range
- bit_8_assessment :
- Indeterminate
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter4 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - aerosol_optical_depth_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Aerosol optical depth filter 5
- units :
- 1
- equation :
- aerosol_optical_depth_filter5 = (total_optical_depth_filter5 - Rayleigh_optical_depth_filter5 - Ozone_optical_depth_filter5)
- ancillary_variables :
- qc_aerosol_optical_depth_filter5
- standard_name :
- atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - qc_aerosol_optical_depth_filter5(time)int32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Quality check results on variable: Aerosol optical depth filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- variability_max_alarm :
- 1e-04
- variability_max_warning :
- 1e-05
- flag_method :
- bit
- bit_1_description :
- computed value for aerosol_optical_depth_filter5 value < 0.0, aerosol_optical_depth_filter5 set to missing_value
- bit_1_assessment :
- Bad
- bit_2_description :
- solar_zenith_angle > 90, aerosol_optical_depth_filter5 set to missing_value
- bit_2_assessment :
- Bad
- bit_3_description :
- variability_flag > variability_max_alarm
- bit_3_assessment :
- Bad
- bit_4_description :
- total_optical_depth_filter5 < 0
- bit_4_assessment :
- Bad
- bit_5_description :
- direct_normal_narrowband_filter3 value < 0.001
- bit_5_assessment :
- Bad
- bit_6_description :
- solar_zenith_angle > 84
- bit_6_assessment :
- Indeterminate
- bit_7_description :
- variability_flag > variability_max_warning
- bit_7_assessment :
- Indeterminate
- bit_8_description :
- Not used
- bit_8_assessment :
- Bad
- bit_9_description :
- Surface pressure adjustment to Rayleigh was estimated from altitude
- bit_9_assessment :
- Indeterminate
- bit_10_description :
- aerosol_optical_depth_filter1 > 2.0
- bit_10_assessment :
- Indeterminate
- bit_11_description :
- Measured CWL missing, nominal value used instead
- bit_11_assessment :
- Indeterminate
- bit_12_description :
- direct_normal_transmittance_filter5 < 0.01
- bit_12_assessment :
- Bad
- standard_name :
- quality_flag
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type int32 numpy.ndarray - variability_flag(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Flag determined using cloud screen algorithm
- units :
- 1
- comment1 :
- Reference: Automated cloud screening algorithm for MFRSR data, Alexandrov, M., Geophysical Research Letters, Vol 31, L04118
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - surface_pressure()float32...
- long_name :
- Surface pressure
- units :
- kPa
- source :
- sgpmetE13.b1:atmos_pressure
- standard_atm_pressure :
- 1013.25 mb
[1 values with dtype=float32]
- Io_filter1()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 1
- units :
- count
- ancillary_variables :
- qc_Io_filter1
[1 values with dtype=float32]
- qc_Io_filter1()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 1
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter2()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 2
- units :
- count
- ancillary_variables :
- qc_Io_filter2
[1 values with dtype=float32]
- qc_Io_filter2()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 2
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter3()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 3
- units :
- count
- ancillary_variables :
- qc_Io_filter3
[1 values with dtype=float32]
- qc_Io_filter3()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 3
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter4()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 4
- units :
- count
- ancillary_variables :
- qc_Io_filter4
[1 values with dtype=float32]
- qc_Io_filter4()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 4
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Io_filter5()float32...
- long_name :
- TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 5
- units :
- count
- ancillary_variables :
- qc_Io_filter5
[1 values with dtype=float32]
- qc_Io_filter5()int32...
- long_name :
- Quality check results on variable: TOA direct normal irradiance corrected for earth-sun distance from robustly filtered Langley regressions for filter 5
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value of corresponding langley is < 0.0, data value set to missing_value
- bit_1_assessment :
- Bad
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Ozone_column_amount()float32...
- long_name :
- Ozone column amount from satellite
- units :
- DU
- valid_min :
- 220.0
- valid_max :
- 420.0
- default_value :
- 295.0
- ancillary_variables :
- qc_Ozone_column_amount
- standard_name :
- atmosphere_mole_content_of_ozone
[1 values with dtype=float32]
- qc_Ozone_column_amount()int32...
- long_name :
- Quality check results on variable: Ozone column amount from satellite
- units :
- 1
- description :
- This variable contains bit-packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min, data value set to default value
- bit_1_assessment :
- Indeterminate
- bit_2_description :
- Value is greater than the valid_max, data value set to default value
- bit_2_assessment :
- Indeterminate
- bit_3_description :
- Value unavailable from input, default value used
- bit_3_assessment :
- Indeterminate
- standard_name :
- quality_flag
[1 values with dtype=int32]
- Rayleigh_optical_depth_filter1()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 1
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter2()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 2
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter3()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 3
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter4()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 4
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Rayleigh_optical_depth_filter5()float32...
- long_name :
- Rayleigh optical depth adjusted for surface pressure for filter 5
- units :
- 1
- reference :
- Rayleigh optical depth computed from eqn 7 Gorden et al (1998) Applied Optics, 27, 862-871
[1 values with dtype=float32]
- Ozone_optical_depth_filter1()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 1
- units :
- 1
- ozone_absorption_coefficient_filter1_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter1 :
- 0.0003
- equation :
- Ozone_optical_depth_filter1 = (Ozone_column_amount * ozone_absorption_coefficient_filter1) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter2()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 2
- units :
- 1
- ozone_absorption_coefficient_filter2_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter2 :
- 0.0320
- equation :
- Ozone_optical_depth_filter2 = (Ozone_column_amount * ozone_absorption_coefficient_filter2) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter3()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 3
- units :
- 1
- ozone_absorption_coefficient_filter3_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter3 :
- 0.1203
- equation :
- Ozone_optical_depth_filter3 = (Ozone_column_amount * ozone_absorption_coefficient_filter3) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter4()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 4
- units :
- 1
- ozone_absorption_coefficient_filter4_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter4 :
- 0.0429
- equation :
- Ozone_optical_depth_filter4 = (Ozone_column_amount * ozone_absorption_coefficient_filter4) / 1000.
[1 values with dtype=float32]
- Ozone_optical_depth_filter5()float32...
- long_name :
- Ozone optical depth, computed from ozone absorption coefficient, filter 5
- units :
- 1
- ozone_absorption_coefficient_filter5_source :
- Ozone attenuation coefficient derived from Table 13 in Nicolet (1981) Space Sci., 29, 951-974
- ozone_absorption_coefficient_filter5 :
- 0.0015
- equation :
- Ozone_optical_depth_filter5 = (Ozone_column_amount * ozone_absorption_coefficient_filter5) / 1000.
[1 values with dtype=float32]
- sun_to_earth_distance()float32...
- long_name :
- Sun to earth distance
- units :
- astronomical_unit
[1 values with dtype=float32]
- direct_normal_transmittance_filter1(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 1
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter2(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 2
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter3(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 3
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter4(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 4
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - direct_normal_transmittance_filter5(time)float32dask.array<chunksize=(4320,), meta=np.ndarray>
- long_name :
- Line-of-sight atmospheric transmittance, filter 5
- units :
- 1
Array Chunk Bytes 118.12 kiB 16.88 kiB Shape (30240,) (4320,) Dask graph 7 chunks in 15 graph layers Data type float32 numpy.ndarray - Io_interquartile_values(Io_interquartile_time, Io_wavelength)float32dask.array<chunksize=(121, 5), meta=np.ndarray>
- long_name :
- Interquartile Io values
- units :
- count
Array Chunk Bytes 2.60 kiB 2.36 kiB Shape (133, 5) (121, 5) Dask graph 2 chunks in 10 graph layers Data type float32 numpy.ndarray - Io_gauss_values(Io_gauss_time, Io_wavelength)float32dask.array<chunksize=(61, 5), meta=np.ndarray>
- long_name :
- Io values after gaussian filter
- units :
- count
Array Chunk Bytes 1.31 kiB 1.19 kiB Shape (67, 5) (61, 5) Dask graph 2 chunks in 10 graph layers Data type float32 numpy.ndarray - lat()float32...
- long_name :
- North latitude
- units :
- degree_N
- valid_min :
- -90.0
- valid_max :
- 90.0
- standard_name :
- latitude
[1 values with dtype=float32]
- lon()float32...
- long_name :
- East longitude
- units :
- degree_E
- valid_min :
- -180.0
- valid_max :
- 180.0
- standard_name :
- longitude
[1 values with dtype=float32]
- alt()float32...
- long_name :
- Altitude above mean sea level
- units :
- m
- standard_name :
- altitude
[1 values with dtype=float32]
- command_line :
- mfraod -n mfraod_mfrsr -s sgp -f E13 -b 19970826 -e 20210112 -D 2 --max-runtime 0 -R
- Conventions :
- ARM-1.3
- process_version :
- vap-mfraod-2.9-1.el7
- dod_version :
- mfrsraod1mich-c1-2.8
- input_datastreams :
- sgpmetE13.b1 : 4.41 : 20200101.000000 gecomiX1.a1 : 1.1 : 20200101.000000 sgpmfrsrE13.a0 : 1.4 : 20200101.000000 sgpmfrsrE13.b1 : 1.4 : 20200101.000000 sgpmfrsrlangleyE13.c1 : 3.11 : 20191202.155220-20200131.153800
- site_id :
- sgp
- platform_id :
- mfrsraod1mich
- facility_id :
- E13
- data_level :
- c1
- location_description :
- Southern Great Plains (SGP), Lamont, Oklahoma
- datastream :
- sgpmfrsraod1michE13.c1
- serial_number :
- Refer to logger_id and head_id
- sampling_interval :
- 20 seconds
- doi :
- 10.5439/1356805
- broadband_channel :
- Unfiltered Silicon, nominally from 32 to 1200 nm
- broadband_channel_calibration :
- nominal calibration from FEL standard lamp
- filter1_CWL_nominal :
- 415 nm
- filter1_CWL_measured :
- 413.2 nm
- filter1_FWHM_nominal :
- 10 nm
- filter1_FWHM_measured :
- 10.8 nm
- filter1_TOA_direct_normal :
- 1.791483 W/m^2-nm
- filter1_calibration :
- Langley Io pinned to TOA direct normal
- filter2_CWL_nominal :
- 500 nm
- filter2_CWL_measured :
- 501.0 nm
- filter2_FWHM_nominal :
- 10 nm
- filter2_FWHM_measured :
- 10.7 nm
- filter2_TOA_direct_normal :
- 1.958570 W/m^2-nm
- filter2_calibration :
- Langley Io pinned to TOA direct normal
- filter3_CWL_nominal :
- 615 nm
- filter3_CWL_measured :
- 613.1 nm
- filter3_FWHM_nominal :
- 10 nm
- filter3_FWHM_measured :
- 10.8 nm
- filter3_TOA_direct_normal :
- 1.688052 W/m^2-nm
- filter3_calibration :
- Langley Io pinned to TOA direct normal
- filter4_CWL_nominal :
- 673 nm
- filter4_CWL_measured :
- 672.1 nm
- filter4_FWHM_nominal :
- 10 nm
- filter4_FWHM_measured :
- 10.6 nm
- filter4_TOA_direct_normal :
- 1.500830 W/m^2-nm
- filter4_calibration :
- Langley Io pinned to TOA direct normal
- filter5_CWL_nominal :
- 870 nm
- filter5_CWL_measured :
- 868.9 nm
- filter5_FWHM_nominal :
- 10 nm
- filter5_FWHM_measured :
- 10.0 nm
- filter5_TOA_direct_normal :
- 0.959429 W/m^2-nm
- filter5_calibration :
- Langley Io pinned to TOA direct normal
- filter6_CWL_nominal :
- 940 nm
- filter6_CWL_measured :
- 938.7 nm
- filter6_FWHM_nominal :
- 10 nm
- filter6_FWHM_measured :
- 6.2 nm
- filter6_calibration :
- nominal calibration from FEL standard lamp
- total_optical_depth_computation :
- -log(direct_normal * sun_earth_distance^2/Gueymard_TOA)/airmass
- aerosol_optical_depth_computation :
- total_optical_depth - Rayleigh_optical_depth - Ozone column_amount * Ozone_absorption_coefficient
- hemispheric_computation :
- sum of diffuse_hemisp and direct_horizontal
- diffuse_hemispheric_computation :
- (diffuse_hemisp_raw - offset) * diffuse_correction * nominal_calibration_factor * (TOA/Io)
- direct_normal_computation :
- direct_horizontal / cosine(apparent solar zenith angle)
- source_Io :
- Forgan analysis of Langley data
- source_Io_comment :
- Io values in mfrsrlangley datastream are used
- ingest_software :
- vap-mfraod-2.9-1.el7
- comment :
- The time assigned to each data point indicates the end of any period of averaging of the geophysical data.
- Filter_information :
- filters 1 and 5 for aerosol measurement filters 2, 3 and 4 for aerosol and ozone measurement filter 6 for water vapor measurement
- shadowband_timing :
- Due to shadowband motion, there is an inherent lag between the time stamp in the file and the time corresponding to the direct beam measurement which varies throughout the day. On average this lag is about five seconds, therefore five seconds are added to the timestamp when calculating solar position.
- cosine_correction_source :
- CosineCorr.sgpmfrsrE13.20180212.dat
- diffuse_correction_source :
- DiffuseCorr.sgpmfrsrE13.20180212.dat
- filter_trace_source :
- FilterInfo.sgpmfrsrE13.20180212.dat
- nominal_calibration_source :
- NominalCal.sgpmfrsrE13.20180212.dat
- offset_correction_source :
- Offsets are computed using a two hour average of the alltime_hemisp_narrowband data centered around the time of the maximum solar zenith angle. For higher and lower latitudes the averaging window can shrink to only include values where the solar zenith angle is >= 97 degrees. If less than 30 minutes of nighttime data is available, the previously computed values will be used.
- ozone_column_amount_default_source :
- mfraod_ozone_limits.info
- variability_limit_source :
- mfraod_variability_limits.info
- logger_software_version :
- 2.2
- logger_id :
- 24062
- head_id :
- 180133057
- mfr_internal_latitude :
- 36.605000
- mfr_internal_longitude :
- -97.485000
- Langley_data_used :
- michalsky algorithm
- pressure_fraction_for_Rayleigh_calculation :
- 0.959231
- Forgan_StartDate :
- 20191202
- Forgan_EndDate :
- 20200131
- history :
- created by user bfaye on machine prod-proc5.adc.arm.gov at 2023-12-12 13:14:01, using vap-mfraod-2.9-1.el7
ds_min.base_time.values
np.datetime64('2020-01-01T00:00:00.000000000')
As we can see, the data was still concatenated by time, but the other variables such as base_time, lat etc are unchanged and using the first files data.
Summary#
When using act.io.read_arm_netcdf, which uses xarray open_mfdataset, we want to change the parameters to work with multiple files if they contain multiple dimensions. By doing so the user can choose to merge just the time dimension variables or merge the files and expand non time dimension variables with time so that those variables are also concatenated between files.
For more on the xarray open_mfdataset, see: https://docs.xarray.dev/en/stable/generated/xarray.open_mfdataset.html