docs/file_formats/low_resolution.rst

Mon, 06 Feb 2017 14:37:16 +0200

author
Iannis <ulalume3@yahoo.com>
date
Mon, 06 Feb 2017 14:37:16 +0200
changeset 101
66556ffd9f61
parent 99
c6855e46c311
child 102
809a8f7f7717
permissions
-rw-r--r--

Reformating low_resoltuion

ulalume3@99 1 Low Resolution SCC L1 Products
ulalume3@99 2 ==============================
ulalume3@99 3
ulalume3@99 4 .. warning::
ulalume3@99 5 This section is still under development.
ulalume3@99 6
ulalume3@99 7
ulalume3@99 8 Introduction
ulalume3@99 9 ------------
ulalume3@99 10
ulalume3@99 11 The Single Calculus Chain (SCC) is the standard EARLINET tool to perform
ulalume3@99 12 automatic and quality nchecked analysis of raw lidar data. It is
ulalume3@99 13 composed by three different modules:
ulalume3@99 14
ulalume3@99 15 - ELPP (EARLINET Lidar Pre-Processor)
ulalume3@99 16 - ELDA (EARLINET Lidar Data Analizer)
ulalume3@99 17 - ELDEC (EARLINET Lidar DEpolarization Calibrator)
ulalume3@99 18
ulalume3@99 19 Whenever an input file containing raw lidar data has been submitted to
ulalume3@99 20 the SCC ELPP is automatically ran on it. The ELPP module pre-processes
ulalume3@99 21 the raw data performing all the corrections and data handling needed
ulalume3@99 22 before the optical retrieval algorithms can be applied by ELDA module.
ulalume3@99 23 The ELPP output files contain pre-processed range corrected signals
ulalume3@99 24 corrected for instrumental effects as well as atmospheric molecular
ulalume3@99 25 parameters calculated from standard model or radiosounding. Typically,
ulalume3@99 26 the vertical and temporal resolutions of the pre-processed signals
ulalume3@99 27 included in these files is lower than the raw vertical and temporal
ulalume3@99 28 resolution as in general time/vertical integration is performed by ELPP
ulalume3@99 29 to increase the SNR and allow the calculation of optical products with a
ulalume3@99 30 reduced uncertainties. As a consequence the ELPP output files are called
ulalume3@99 31 Low Resolution SCC L1 Products. Another SCC module (HiRELPP – High
ulalume3@99 32 Resolution EARLINET Lidar Pre-Processor) currently under development
ulalume3@99 33 will produce High Resolution SCC L1 Products in which both time and
ulalume3@99 34 vertical resolution are kept as higher as possible.
ulalume3@99 35
ulalume3@99 36 This document provides a detailed description about the structure and
ulalume3@99 37 the format of Low Resolution SCC L1 Product as produced by the SCC v4.0.
ulalume3@99 38
ulalume3@99 39 Low Resolution SCC L1 Product: File format
ulalume3@99 40 ------------------------------------------
ulalume3@99 41
ulalume3@99 42 The Low Resolution SCC L1 Products are files in Network Common Data Form
ulalume3@99 43 (NetCDF) which is a well known self-describing, machine-independent data
ulalume3@99 44 format that support the creation, access, and sharing of array-oriented
ulalume3@99 45 scientific data. For more information about NetCDF format:
ulalume3@99 46 http://www.unidata.ucar.edu/software/netcdf/.
ulalume3@99 47
ulalume3@99 48 The NetCDF is a binary format that allows the definition of
ulalume3@99 49 multi-dimensional variables of several types (integers, double,
ulalume3@99 50 character, etc). For each variable it is possible to define one or more
ulalume3@99 51 attributes where to specify variable properties like units, long name,
ulalume3@99 52 description, etc.
ulalume3@99 53
ulalume3@99 54 It is possible to define global attributes which are not related to a
ulalume3@99 55 specific variable but to the whole file.
ulalume3@99 56
ulalume3@99 57 A NetCDF file is composed by four different section:
ulalume3@99 58
ulalume3@101 59 dimensions
ulalume3@99 60 this section contains all the dimensions used in the definition of
ulalume3@99 61 all the variables included in the NetCDF file
ulalume3@99 62
ulalume3@101 63 variables
ulalume3@99 64 this section contains all the variables stored in the NetCDF file.
ulalume3@99 65 Each variable is defined as a multi-dimensional array of a specific
ulalume3@99 66 type and with all the dimensions defined in the dimensions section
ulalume3@99 67
ulalume3@101 68 global attributes
ulalume3@99 69 this section lists all the attributes referring to the whole file. As
ulalume3@99 70 the variable the attributes (global or the one attached to a specific
ulalume3@99 71 variable) can be of different type
ulalume3@99 72
ulalume3@101 73 data
ulalume3@99 74 in this section the data contained in each variable defined in
ulalume3@99 75 variable section is stored. Attribute values (both global or related
ulalume3@99 76 to a specific variable) are not reported in data section but directly
ulalume3@99 77 in variable or global attribute sections.
ulalume3@99 78
ulalume3@99 79 Each Low Resolution SCC L1 Product correspond to a single emission
ulalume3@99 80 wavelength. For example it is possible to find in the same file the
ulalume3@99 81 elastic and the Raman channel pre-processed time-series corresponding to
ulalume3@99 82 the same emission wavelength (but to a different detection wavelengths)
ulalume3@99 83 but not two elastic time-series referring to different emission
ulalume3@99 84 wavelengths.
ulalume3@99 85
ulalume3@99 86 Low Resolution SCC L1 Product Format: dimensions
ulalume3@99 87 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ulalume3@99 88
ulalume3@99 89 The following dimensions are defined in the Low Resolution SCC L1
ulalume3@99 90 Product:
ulalume3@99 91
ulalume3@99 92 - time
ulalume3@99 93 - points
ulalume3@99 94 - channels
ulalume3@99 95 - scan\_angles
ulalume3@99 96
ulalume3@99 97 The dimension *time* specifies the number of RCS (for each channel)
ulalume3@99 98 composing all the pre-processed time-series reported in the file.
ulalume3@99 99
ulalume3@99 100 The dimension *points* represents the number of rangebins characterizing
ulalume3@99 101 the pre-processed RCS. In case RCSs corresponding to different channels
ulalume3@99 102 are characterized by different rangebins the dimension time is to the
ulalume3@99 103 the maximum value of rangebins.
ulalume3@99 104
ulalume3@99 105 The dimension *channels* indicates the number channels at which the RCS
ulalume3@99 106 time-series included in the file refer to.
ulalume3@99 107
ulalume3@99 108 The dimension *scan\_angles* takes into account how many zenith scan
ulalume3@99 109 angles have been used to measure the RCS time-series reported into the
ulalume3@99 110 file
ulalume3@99 111
ulalume3@99 112
ulalume3@99 113 Low Resolution SCC L1 Product Format: variables
ulalume3@99 114 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ulalume3@99 115
ulalume3@99 116 In this section all the possible Low Resolution SCC L1 Product variables
ulalume3@99 117 are reported. There are some variables that are mandatory and have to be
ulalume3@99 118 present in all the Low Resolution SCC L1 Product files while there are
ulalume3@99 119 others that have to be present only in specific cases.
ulalume3@99 120
ulalume3@99 121 Technical Variables
ulalume3@99 122 ###################
ulalume3@99 123
ulalume3@99 124 altitude\_resolution
ulalume3@99 125 :Type: *double*
ulalume3@99 126 :Dimensions: *scan\_angles*
ulalume3@99 127 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@101 128 :Definition: ``double altitude_resolution(scan_angles)``
ulalume3@101 129 This variable describes the altitude resolution
ulalume3@101 130 corresponding to the RCS time-series reported in the file. It is needed
ulalume3@101 131 to compute the vertical scale of the RCS corresponding to each scan
ulalume3@101 132 angle which should be calculated as it follow:
ulalume3@101 133
ulalume3@101 134 .. math::
ulalume3@101 135
ulalume3@101 136 H(\alpha, z)= \Delta h(\alpha)\left(z + \frac{1}{2}\right)
ulalume3@101 137
ulalume3@101 138 where *z* is the altitude, :math:`\alpha` is the scan angle value and :math:`\Delta h` is the
ulalume3@101 139 value reported by *altitude\_resolution* variable.
ulalume3@99 140
ulalume3@101 141 range\_resolution
ulalume3@101 142 :Type: *double*
ulalume3@101 143 :Dimensions: *scan\_angles*
ulalume3@101 144 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@101 145 :Definition: ``double range_resolution(scan_angles)``
ulalume3@101 146 This variable describes the range resolution corresponding
ulalume3@101 147 to the RCS time-series reported in the file. It is needed to compute the
ulalume3@101 148 range scale of the RCS corresponding to each scan angle which should be
ulalume3@101 149 calculated as it follow:
ulalume3@99 150
ulalume3@101 151 .. math::
ulalume3@101 152
ulalume3@101 153 R(\alpha, z)= \Delta r(\alpha)\left(r + \frac{1}{2}\right)
ulalume3@101 154
ulalume3@101 155 where *r* is the range, :math:`\alpha` is the scan angle value and :math:`\Delta r` is the
ulalume3@101 156 value reported by *range\_resolution* variable. Altitude and range
ulalume3@101 157 resolution are the same if the scan angle is zero (zenith acquisition).
ulalume3@99 158
ulalume3@99 159 - Variable name: *laser\_pointing\_angle*
ulalume3@99 160
ulalume3@99 161 :Type: *double*
ulalume3@99 162 :Number of dimensions: 1
ulalume3@99 163 :Dimensions: *scan\_angles*
ulalume3@99 164 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 165 :NetCDF definition: *double laser\_pointing\_angle(scan\_angles)*
ulalume3@99 166 :Description: this variable provides the value of the zenith scan angles
ulalume3@99 167 used during the measurement. The value of angle are in degrees with
ulalume3@99 168 respect to the zenith direction.
ulalume3@99 169
ulalume3@99 170 - Variable name: *emission\_wavelength*
ulalume3@99 171
ulalume3@99 172 :Type: *double*
ulalume3@99 173 :Number of dimensions: 1
ulalume3@99 174 :Dimensions: *channels*
ulalume3@99 175 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 176 :NetCDF definition: *double emission\_wavelength(channels)*
ulalume3@99 177 :Description: this variable provides the value of the emission wavelength
ulalume3@99 178 (in nm) corresponding to each RCS time-series.
ulalume3@99 179
ulalume3@99 180 - Variable name: *detection\_wavelength*
ulalume3@99 181
ulalume3@99 182 :Type: *double*
ulalume3@99 183 :Number of dimensions: 1
ulalume3@99 184 :Dimensions: *channels*
ulalume3@99 185 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 186 :NetCDF definition: *double detection\_wavelength(channels)*
ulalume3@99 187 :Description: this variable provides the value of the detection
ulalume3@99 188 wavelength (in nm) corresponding to each RCS time-series. For elastic
ulalume3@99 189 channels the detection and emission wavelength are the same or slightly
ulalume3@99 190 different.
ulalume3@99 191
ulalume3@99 192 - Variable name: *laser\_pointing\_angle\_of\_profiles*
ulalume3@99 193
ulalume3@99 194 :Type: *integer*
ulalume3@99 195 :Number of dimensions: 1
ulalume3@99 196 :Dimensions: *time*
ulalume3@99 197 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 198 :NetCDF definition: *int laser\_pointing\_angle\_of\_profiles(time)*
ulalume3@99 199 :Description: this variable allows to identify the zenith angle at which
ulalume3@99 200 each single RCS contained in the time-series refer to. In particular,
ulalume3@99 201 for a given time the variable
ulalume3@99 202 *laser\_pointing\_angle\_of\_profiles(time)* provides the scan angle
ulalume3@99 203 index at which all the RCS included in the file refer to at the same
ulalume3@99 204 time. To get the value of the scan angle the variable
ulalume3@99 205 *laser\_pointing\_angle* should be evaluated in correspondence of the
ulalume3@99 206 index returned by the variable
ulalume3@99 207 *laser\_pointing\_angle\_of\_profiles(time)*.
ulalume3@99 208
ulalume3@99 209 - Variable name: *shots*
ulalume3@99 210
ulalume3@99 211 :Type: *integer*
ulalume3@99 212 :Number of dimensions: 1
ulalume3@99 213 :Dimensions: *time*
ulalume3@99 214 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 215 :NetCDF definition: *int shots(time)*
ulalume3@99 216 :Description: this variable report the number of laser shots that have
ulalume3@99 217 been integrated the all the RCS time-series at a given time.
ulalume3@99 218
ulalume3@99 219 - Variable name: *start\_time*
ulalume3@99 220
ulalume3@99 221 :Type: *integer*
ulalume3@99 222 :Number of dimensions: 1
ulalume3@99 223 :Dimensions: *time*
ulalume3@99 224 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 225 :NetCDF definition: *int start\_time(time)*
ulalume3@99 226 :Description: Variable reporting the value of the start time of each RCS
ulalume3@99 227 within all the time-series in seconds since the start of measurement.
ulalume3@99 228
ulalume3@99 229 - Variable name: *stop\_time*
ulalume3@99 230
ulalume3@99 231 :Type: *integer*
ulalume3@99 232 :Number of dimensions: 1
ulalume3@99 233 :Dimensions: *time*
ulalume3@99 234 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 235 :NetCDF definition: *int stop\_time(time)*
ulalume3@99 236 :Description:Variables reporting the value of the stop time of each RCS
ulalume3@99 237 within all the time-series in seconds since the start of the
ulalume3@99 238 measurement.
ulalume3@99 239
ulalume3@99 240 - Variable name: *LR\_Input*
ulalume3@99 241
ulalume3@99 242 :Type: *integer*
ulalume3@99 243 :Number of dimensions: 0
ulalume3@99 244 :Dimensions: N/A
ulalume3@99 245 :Location: Present only if the Low Resolution SCC L1 Product corresponds
ulalume3@99 246 to an elastic only product
ulalume3@99 247 :NetCDF definition: *int LR\_Input*
ulalume3@99 248 :Description: this variable is only used by ELDA module in the elastic
ulalume3@99 249 only retrieval to know which value of particle lidar ratio assume in the
ulalume3@99 250 retrieval. A value of 1 means to use a fixed value stored in the SCC
ulalume3@99 251 database for each product. A value of 0 means to use a profile of lidar
ulalume3@99 252 ratio provided by the user as external file.
ulalume3@99 253
ulalume3@99 254 - Variable name: *overlap\_correction*
ulalume3@99 255
ulalume3@99 256 :Type: *integer*
ulalume3@99 257 :Number of dimensions: 0
ulalume3@99 258 :Dimensions: N/A
ulalume3@99 259 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 260 :NetCDF definition: *int overlap\_correction*
ulalume3@99 261 :Description: this variable provides information on the overlap
ulalume3@99 262 correction of all the RCS time-series included in the file. If it is set
ulalume3@99 263 to 1 the overlap correction has been applied if it is set to null value
ulalume3@99 264 the overlap correction has not been applied.
ulalume3@99 265
ulalume3@99 266 - Variable name: *cloud\_flag*
ulalume3@99 267
ulalume3@99 268 :Type: *integer*
ulalume3@99 269 :Number of dimensions: 2
ulalume3@99 270 :Dimensions: *time, points*
ulalume3@99 271 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 272 :NetCDF definition: *int cloud\_flag(time, points)*
ulalume3@99 273 :Description: variable reporting the cloud mask on the RCS time-series
ulalume3@99 274 included in the file. A value of 1 means no cloud any other values
ulalume3@99 275 different from 1 correspond to the presence of cloud.
ulalume3@99 276
ulalume3@99 277 Atmospheric Molecular Variables
ulalume3@99 278 ###############################
ulalume3@99 279
ulalume3@99 280 - Variable name: *Elastic\_Mol\_Extinction*
ulalume3@99 281
ulalume3@99 282 :Type: *double*
ulalume3@99 283 :Number of dimensions: 2
ulalume3@99 284 :Dimensions: *scan\_angles, points*
ulalume3@99 285 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 286 :NetCDF definition: *double Elastic\_Mol\_Extinction(scan\_angles,
ulalume3@99 287 points)*
ulalume3@99 288 :Description: this variable provides the value of molecular extinction
ulalume3@99 289 coefficient at elastic wavelength in m\ :sup:`-1` at a given scan angle
ulalume3@99 290 and altitude (points). The values are calculated from standard models or
ulalume3@99 291 from radiosounding (submitted to the SCC as external input files)
ulalume3@99 292
ulalume3@99 293 - Variable name: *LR\_Mol*
ulalume3@99 294
ulalume3@99 295 :Type: *double*
ulalume3@99 296 :Number of dimensions: 0
ulalume3@99 297 :Dimensions: N/A
ulalume3@99 298 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 299 :NetCDF definition: *double LR\_Mol*
ulalume3@99 300 :Description: The value of calculated molecular lidar ratio in sr.
ulalume3@99 301
ulalume3@99 302 - Variable name: *Emission\_Wave\_Mol\_Trasmissivity*
ulalume3@99 303
ulalume3@99 304 :Type: *double*
ulalume3@99 305 :Number of dimensions: 2
ulalume3@99 306 :Dimensions: *scan\_angles, points*
ulalume3@99 307 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 308 :NetCDF definition: *double
ulalume3@99 309 Emission\_Wave\_Mol\_Trasmissivity(scan\_angles, points)*
ulalume3@99 310 :Description: this variable provides the value of molecular trasmissitivy
ulalume3@99 311 at emission wavelength at a given scan angle and altitude (*points*).
ulalume3@99 312
ulalume3@99 313 - Variable name: *Detection\_Wave\_Mol\_Trasmissivity*
ulalume3@99 314
ulalume3@99 315 :Type: *double*
ulalume3@99 316 :Number of dimensions: 2
ulalume3@99 317 :Dimensions: *scan\_angles, points*
ulalume3@99 318 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 319 :NetCDF definition: *double
ulalume3@99 320 Detection\_Wave\_Mol\_Trasmissivity(scan\_angles, points)*
ulalume3@99 321 :Description: this variable provides the value of molecular trasmissitivy
ulalume3@99 322 at detection wavelength at a given scan angle and altitude (*points*).
ulalume3@99 323
ulalume3@99 324 Aerosol Related Variables
ulalume3@99 325 #########################
ulalume3@99 326
ulalume3@99 327 - Variable name: *elT*
ulalume3@99 328
ulalume3@99 329 :Type: *double*
ulalume3@99 330 :Number of dimensions: 2
ulalume3@99 331 :Dimensions: *time, points*
ulalume3@99 332 :Location: Present if the Low Resolution SCC L1 Product involves one
ulalume3@99 333 single elastic channel not split in near and far range
ulalume3@99 334 :NetCDF definition: *double elT(time, points)*
ulalume3@99 335 :Description: this variable contains the time-series of the RCS
ulalume3@99 336 corresponding to an elastic channel. The RCS may correspond to a single
ulalume3@99 337 physical lidar channel or to two physical channels (one optimized for
ulalume3@99 338 the near range and the other for the far range) that have been glued by
ulalume3@99 339 ELPP module.
ulalume3@99 340
ulalume3@99 341 - Variable name: *elT\_err*
ulalume3@99 342
ulalume3@99 343 :Type: *double*
ulalume3@99 344 :Number of dimensions: 2
ulalume3@99 345 :Dimensions: *time, points*
ulalume3@99 346 :Location: Present if the Low Resolution SCC L1 Product involves one
ulalume3@99 347 single elastic channel not split in near and far range
ulalume3@99 348 :NetCDF definition: *double elT\_err(time, points)*
ulalume3@99 349 :Description: this variable describes the statistical uncertainties
ulalume3@99 350 corresponding to the variable *elT*.
ulalume3@99 351
ulalume3@99 352 - elTnr
ulalume3@99 353 :Variable name: *elTnr*
ulalume3@99 354 :Type: *double*
ulalume3@99 355 :Number of dimensions: 2
ulalume3@99 356 :Dimensions: *time, points*
ulalume3@99 357 :Location: Present if the Low Resolution SCC L1 Product involves a near
ulalume3@99 358 range elastic channel
ulalume3@99 359 :NetCDF definition: *double elTnr(time, points)*
ulalume3@99 360 :Description: this variable contains the time-series of the RCS
ulalume3@99 361 corresponding to a near range elastic channel. If this variable is
ulalume3@99 362 present also the corresponding *elTfr* variable should be present in
ulalume3@99 363 the file.
ulalume3@99 364
ulalume3@99 365 - Variable name: *elTnr\_err*
ulalume3@99 366
ulalume3@99 367 :Type: *double*
ulalume3@99 368 :Number of dimensions: 2
ulalume3@99 369 :Dimensions: * time, points*
ulalume3@99 370 :Location: Present if the Low Resolution SCC L1 Product involves a near
ulalume3@99 371 range elastic channel
ulalume3@99 372 :NetCDF definition: *double elTnr\_err(time, points)*
ulalume3@99 373 :Description: this variable describes the statistical uncertainties
ulalume3@99 374 corresponding to the variable *elTnr*.
ulalume3@99 375
ulalume3@99 376 - Variable name: *elTfr*
ulalume3@99 377
ulalume3@99 378 :Type: *double*
ulalume3@99 379 :Number of dimensions: 2
ulalume3@99 380 :Dimensions: *time, points*
ulalume3@99 381 :Location: Present if the Low Resolution SCC L1 Product involves a far
ulalume3@99 382 range elastic channel
ulalume3@99 383 :NetCDF definition: *double elTfr(time, points)*
ulalume3@99 384 :Description: this variable contains the time-series of the RCS
ulalume3@99 385 corresponding to a far range elastic channel. If this variable is
ulalume3@99 386 present also the corresponding *elTnr *\ variable should be present in
ulalume3@99 387 the file.
ulalume3@99 388
ulalume3@99 389 - Variable name: *elTfr\_err*
ulalume3@99 390
ulalume3@99 391 :Type: *double*
ulalume3@99 392 :Number of dimensions: 2
ulalume3@99 393 :Dimensions: *time, points*
ulalume3@99 394 :Location: Present if the Low Resolution SCC L1 Product involves a far
ulalume3@99 395 range elastic channel
ulalume3@99 396 :NetCDF definition: *double elTfr\_err(time, points)*
ulalume3@99 397 :Description: this variable describes the statistical uncertainties
ulalume3@99 398 corresponding to the variable *elTfr*.
ulalume3@99 399
ulalume3@99 400 - Variable name: *vrRN2*
ulalume3@99 401
ulalume3@99 402 :Type:\ * double*
ulalume3@99 403 :Number of dimensions: 2
ulalume3@99 404 :Dimensions: *time, points*
ulalume3@99 405 :Location: Present if the Low Resolution SCC L1 Product involves one
ulalume3@99 406 vibro-rotational N2 Raman channel not split in near and far range
ulalume3@99 407 :NetCDF definition: d\ *ouble vrRN2(time, points)*
ulalume3@99 408 :Description: this variable contains the time-series of the RCS
ulalume3@99 409 corresponding to a vibro-rotational N2 Raman channel. The RCS may
ulalume3@99 410 correspond to a single physical lidar channel or to two physical
ulalume3@99 411 channels (one optimized for the near range and the other for the far
ulalume3@99 412 range) that have been glued by ELPP module.
ulalume3@99 413
ulalume3@99 414 - Variable name: *vrRN2\_err*
ulalume3@99 415
ulalume3@99 416 :Type: *double*
ulalume3@99 417 :Number of dimensions: 2
ulalume3@99 418 :Dimensions: *time, points*
ulalume3@99 419 :Location: Present if the Low Resolution SCC L1 Product involves one
ulalume3@99 420 vibro-rotational N2 Raman channel not split in near and far range
ulalume3@99 421 :NetCDF definition: *double vrRN2\_err(time, points)*
ulalume3@99 422 :Description: this variable describes the statistical uncertainties
ulalume3@99 423 corresponding to the variable *vrRN2*.
ulalume3@99 424
ulalume3@99 425 - Variable name: *vrRN2nr*
ulalume3@99 426
ulalume3@99 427 :Type: *double*
ulalume3@99 428 :Number of dimensions: 2
ulalume3@99 429 :Dimensions: *time, points*
ulalume3@99 430 :Location: Present if the Low Resolution SCC L1 Product involves a near
ulalume3@99 431 range vibro-rotational N2 Raman channel
ulalume3@99 432 :NetCDF definition: *double vrRN2nr(time, points)*
ulalume3@99 433 :Description: this variable contains the time-series of the RCS
ulalume3@99 434 corresponding to a near range vibro-rotationl N2 Raman. If this variable
ulalume3@99 435 is present also the corresponding *vrRN2fr *\ variable should be present
ulalume3@99 436 in the file.
ulalume3@99 437
ulalume3@99 438 - Variable name: *vrRN2nr\_err*
ulalume3@99 439
ulalume3@99 440 :Type: *double*
ulalume3@99 441 :Number of dimensions: 2
ulalume3@99 442 :Dimensions: *time, points*
ulalume3@99 443 :Location: Present if the Low Resolution SCC L1 Product involves a near
ulalume3@99 444 range vibro-rotational N2 Raman channel
ulalume3@99 445 :NetCDF definition: *double vrRN2nr\_err(time, points)*
ulalume3@99 446 :Description: this variable describes the statistical uncertainties
ulalume3@99 447 corresponding to the variable *vrRN2nr*.
ulalume3@99 448
ulalume3@99 449 - Variable name: *vrRN2fr*
ulalume3@99 450
ulalume3@99 451 :Type: *double*
ulalume3@99 452 :Number of dimensions: 2
ulalume3@99 453 :Dimensions: *time, points*
ulalume3@99 454 :Location: Present if the Low Resolution SCC L1 Product involves a far
ulalume3@99 455 range vibro-rotational N2 Raman channel
ulalume3@99 456 :NetCDF definition: *double vrRN2fr(time, points)*
ulalume3@99 457 :Description: this variable contains the time-series of the RCS
ulalume3@99 458 corresponding to a far range vibro-rotationl N2 Raman. If this variable
ulalume3@99 459 is present also the corresponding *vrRN2nr *\ variable should be present
ulalume3@99 460 in the file.
ulalume3@99 461
ulalume3@99 462 - Variable name: *vrRN2fr\_err*
ulalume3@99 463
ulalume3@99 464 :Type: *double*
ulalume3@99 465 :Number of dimensions: 2
ulalume3@99 466 :Dimensions: * time, points*
ulalume3@99 467 :Location: Present if the Low Resolution SCC L1 Product involves a far
ulalume3@99 468 range vibro-rotational N2 Raman channel
ulalume3@99 469 :NetCDF definition: *double vrRN2fr\_err(time, points)*
ulalume3@99 470 :Description: this variable describes the statistical uncertainties
ulalume3@99 471 corresponding to the variable *vrRN2fr*.
ulalume3@99 472
ulalume3@99 473 Polarization related variables
ulalume3@99 474 ##############################
ulalume3@99 475
ulalume3@99 476 - Variable name: *elPT*
ulalume3@99 477
ulalume3@99 478 :Type: *double*
ulalume3@99 479 :Number of dimensions: 2
ulalume3@99 480 :Dimensions: *time, points*
ulalume3@99 481 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 482 polarization sensitive elastic channels not split in near and far range
ulalume3@99 483 :NetCDF definition: *double elPT(time, points)*
ulalume3@99 484 :Description: this variable contains the time-series of the RCS
ulalume3@99 485 corresponding to the elastic polarization component which is transmitted
ulalume3@99 486 by the polarization sensitive optical subsystem. This component may
ulalume3@99 487 correspond to a total, cross or parallel polarization component
ulalume3@99 488 depending on the particular system configuration. Moreover the RCS may
ulalume3@99 489 correspond to a single physical lidar channel or to two physical
ulalume3@99 490 channels (one optimized for the near range and the other for the far
ulalume3@99 491 range) that have been glued by ELPP module.
ulalume3@99 492
ulalume3@99 493 - Variable name: *elPT\_err*
ulalume3@99 494
ulalume3@99 495 :Type: *double*
ulalume3@99 496 :Number of dimensions: 2
ulalume3@99 497 :Dimensions: *time, points*
ulalume3@99 498 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 499 spolarization sensitive elastic channels not split in near and far range
ulalume3@99 500 :NetCDF definition: *double elPT\_err(time, points)*
ulalume3@99 501 :Description: this variable describes the statistical uncertainties
ulalume3@99 502 corresponding to the variable *elPT*.
ulalume3@99 503
ulalume3@99 504 - Variable name: *elPTnr*
ulalume3@99 505
ulalume3@99 506 :Type: *double*
ulalume3@99 507 :Number of dimensions: 2
ulalume3@99 508 :Dimensions: * time, points*
ulalume3@99 509 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 510 range polarization sensitive elastic channels
ulalume3@99 511 :NetCDF definition: *double elPTnr(time, points)*
ulalume3@99 512 :Description: this variable contains the time-series of the RCS
ulalume3@99 513 corresponding to the near range elastic polarization component which is
ulalume3@99 514 transmitted by the polarization sensitive optical subsystem. This
ulalume3@99 515 component may correspond to a total, cross or parallel polarization
ulalume3@99 516 component depending on the particular system configuration. If this
ulalume3@99 517 variable is present also the corresponding *elPTfr* variable should be
ulalume3@99 518 present in the file.
ulalume3@99 519
ulalume3@99 520 - Variable name: *elPTnr\_err*
ulalume3@99 521
ulalume3@99 522 :Type: *double*
ulalume3@99 523 :Number of dimensions: 2
ulalume3@99 524 :Dimensions: * time, points*
ulalume3@99 525 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 526 range polarization sensitive elastic channels
ulalume3@99 527 :NetCDF definition: *double elPTnr\_err(time, points)*
ulalume3@99 528 :Description: this variable describes the statistical uncertainties
ulalume3@99 529 corresponding to the variable *elPTnr*.
ulalume3@99 530
ulalume3@99 531 - Variable name: *elPTfr*
ulalume3@99 532
ulalume3@99 533 :Type: *double*
ulalume3@99 534 :Number of dimensions: 2
ulalume3@99 535 :Dimensions: *time, points*
ulalume3@99 536 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 537 range polarization sensitive elastic channels
ulalume3@99 538 :NetCDF definition: *double elTfr(time, points)*
ulalume3@99 539 :Description: this variable contains the time-series of the RCS
ulalume3@99 540 corresponding to the far range elastic polarization component which is
ulalume3@99 541 transmitted by the polarization sensitive optical subsystem. This
ulalume3@99 542 component may correspond to a total, cross or parallel polarization
ulalume3@99 543 component depending on the particular system configuration. If this
ulalume3@99 544 variable is present also the corresponding elPTnr variable should be
ulalume3@99 545 present in the file.
ulalume3@99 546
ulalume3@99 547 - Variable name: *elPTfr\_err*
ulalume3@99 548
ulalume3@99 549 :Type: *double*
ulalume3@99 550 :Number of dimensions: 2
ulalume3@99 551 :Dimensions: * time, points*
ulalume3@99 552 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 553 range polarization sensitive elastic channels
ulalume3@99 554 :NetCDF definition: *double elPTfr\_err(time, points)*
ulalume3@99 555 :Description: this variable describes the statistical uncertainties
ulalume3@99 556 corresponding to the variable *elPTfr*.
ulalume3@99 557
ulalume3@99 558 - Variable name: *elPR*
ulalume3@99 559
ulalume3@99 560 :Type: *double*
ulalume3@99 561 :Number of dimensions: 2
ulalume3@99 562 :Dimensions: *time, points*
ulalume3@99 563 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 564 polarization sensitive elastic channels not split in near and far range
ulalume3@99 565 :NetCDF definition: *double elPR(time, points)*
ulalume3@99 566 :Description: this variable contains the time-series of the RCS
ulalume3@99 567 corresponding to the elastic polarization component which is reflected
ulalume3@99 568 by the polarization sensitive optical subsystem. This component may
ulalume3@99 569 correspond to a total, cross or parallel polarization component
ulalume3@99 570 depending on the particular system configuration. Moreover the RCS may
ulalume3@99 571 correspond to a single physical lidar channel or to two physical
ulalume3@99 572 channels (one optimized for the near range and the other for the far
ulalume3@99 573 range) that have been glued by ELPP module.
ulalume3@99 574
ulalume3@99 575 - Variable name: *elPR\_err*
ulalume3@99 576
ulalume3@99 577 :Type: *double*
ulalume3@99 578 :Number of dimensions: 2
ulalume3@99 579 :Dimensions: * time, points*
ulalume3@99 580 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 581 polarization sensitive elastic channels not split in near and far range
ulalume3@99 582 :NetCDF definition: *double elPR\_err(time, points)*
ulalume3@99 583 :Description: this variable describes the statistical uncertainties
ulalume3@99 584 corresponding to the variable *elPR*.
ulalume3@99 585
ulalume3@99 586 - Variable name: *elPRnr*
ulalume3@99 587
ulalume3@99 588 :Type: *double*
ulalume3@99 589 :Number of dimensions: 2
ulalume3@99 590 :Dimensions: * time, points*
ulalume3@99 591 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 592 range polarization sensitive elastic channels
ulalume3@99 593 :NetCDF definition: *double elPTnr(time, points)*
ulalume3@99 594 :Description: this variable contains the time-series of the RCS
ulalume3@99 595 corresponding to the near range elastic polarization component which is
ulalume3@99 596 reflected by the polarization sensitive optical subsystem. This
ulalume3@99 597 component may correspond to a total, cross or parallel polarization
ulalume3@99 598 component depending on the particular system configuration. If this
ulalume3@99 599 variable is present also the corresponding *elPRfr* variable should be
ulalume3@99 600 present in the file.
ulalume3@99 601
ulalume3@99 602 - Variable name: *elPRnr\_err*
ulalume3@99 603
ulalume3@99 604 :Type: *double*
ulalume3@99 605 :Number of dimensions: 2
ulalume3@99 606 :Dimensions: *time, points*
ulalume3@99 607 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 608 range polarization sensitive elastic channels
ulalume3@99 609 :NetCDF definition: * double elPRnr\_err(time, points)*
ulalume3@99 610 :Description: this variable describes the statistical uncertainties
ulalume3@99 611 corresponding to the variable *elPRnr*.
ulalume3@99 612
ulalume3@99 613 - Variable name: *elPRfr*
ulalume3@99 614
ulalume3@99 615 :Type: *double*
ulalume3@99 616 :Number of dimensions: 2
ulalume3@99 617 :Dimensions: *time, points*
ulalume3@99 618 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 619 range polarization sensitive elastic channels
ulalume3@99 620 :NetCDF definition: *double elPRfr(time, points)*
ulalume3@99 621 :Description: this variable contains the time-series of the RCS
ulalume3@99 622 corresponding to the far range elastic polarization component which is
ulalume3@99 623 reflected by the polarization sensitive optical subsystem. This
ulalume3@99 624 component may correspond to a total, cross or parallel polarization
ulalume3@99 625 component depending on the particular system configuration. If this
ulalume3@99 626 variable is present also the corresponding *elPRnr* variable should be
ulalume3@99 627 present in the file.
ulalume3@99 628
ulalume3@99 629 - Variable name: *elPRfr\_err*
ulalume3@99 630
ulalume3@99 631 :Type: *double*
ulalume3@99 632 :Number of dimensions: 2
ulalume3@99 633 :Dimensions: *time, points*
ulalume3@99 634 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 635 range polarization sensitive elastic channels
ulalume3@99 636 :NetCDF definition: *double elPRfr\_err(time, points)*
ulalume3@99 637 :Description: this variable describes the statistical uncertainties
ulalume3@99 638 corresponding to the variable *elPRfr*.
ulalume3@99 639
ulalume3@99 640 - Variable name: *G\_T*
ulalume3@99 641
ulalume3@99 642 :Type: *double*
ulalume3@99 643 :Number of dimensions: 0
ulalume3@99 644 :Dimensions: N/A
ulalume3@99 645 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 646 polarization sensitive elastic channels
ulalume3@99 647 :NetCDF definition: *double G\_T*
ulalume3@99 648 :Description: G polarization cross-talk factor value corresponding to the
ulalume3@99 649 polarization transmitted channel.
ulalume3@99 650
ulalume3@99 651 - Variable name: *G\_T\_Statistical\_Err*
ulalume3@99 652
ulalume3@99 653 :Type: *double*
ulalume3@99 654 :Number of dimensions: 0
ulalume3@99 655 :Dimensions: N/A
ulalume3@99 656 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 657 polarization sensitive elastic channels
ulalume3@99 658 :NetCDF definition: *double G\_T\_Statistical\_Err*
ulalume3@99 659 :Description: this variable describes the statistical uncertainties
ulalume3@99 660 corresponding to the variable *G\_T*.
ulalume3@99 661
ulalume3@99 662 - Variable name: *G\_T\_Systematic\_Err*
ulalume3@99 663
ulalume3@99 664 :Type: *double*
ulalume3@99 665 :Number of dimensions: 0
ulalume3@99 666 :Dimensions: N/A
ulalume3@99 667 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 668 polarization sensitive elastic channels
ulalume3@99 669 :NetCDF definition: *double G\_T\_Systematic\_Err*
ulalume3@99 670 :Description: this variable describes the systematic uncertainties
ulalume3@99 671 corresponding to the variable *G\_T*.
ulalume3@99 672
ulalume3@99 673 - Variable name: *H\_T*
ulalume3@99 674
ulalume3@99 675 :Type: *double*
ulalume3@99 676 :Number of dimensions: 0
ulalume3@99 677 :Dimensions: N/A
ulalume3@99 678 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 679 polarization sensitive elastic channels
ulalume3@99 680 :NetCDF definition: *double H\_T*
ulalume3@99 681 :Description: H polarization cross-talk factor value corresponding to the
ulalume3@99 682 polarization transmitted channel.
ulalume3@99 683
ulalume3@99 684 - Variable name: *H\_T\_Statistical\_Err*
ulalume3@99 685
ulalume3@99 686 :Type: *double*
ulalume3@99 687 :Number of dimensions: 0
ulalume3@99 688 :Dimensions: N/A
ulalume3@99 689 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 690 polarization sensitive elastic channels
ulalume3@99 691 :NetCDF definition: *double H\_T\_Statistical\_Err*
ulalume3@99 692 :Description: this variable describes the statistical uncertainties
ulalume3@99 693 corresponding to the variable *H\_T*.
ulalume3@99 694
ulalume3@99 695 - Variable name: *H\_T\_Systematic\_Err*
ulalume3@99 696
ulalume3@99 697 :Type: *double*
ulalume3@99 698 :Number of dimensions: 0
ulalume3@99 699 :Dimensions: N/A
ulalume3@99 700 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 701 polarization sensitive elastic channels
ulalume3@99 702 :NetCDF definition: *double H\_T\_Systematic\_Err*
ulalume3@99 703 :Description: this variable describes the systematic uncertainties
ulalume3@99 704 corresponding to the variable *H\_T*.
ulalume3@99 705
ulalume3@99 706 - Variable name: *G\_R*
ulalume3@99 707
ulalume3@99 708 :Type: *double*
ulalume3@99 709 :Number of dimensions: 0
ulalume3@99 710 :Dimensions: N/A
ulalume3@99 711 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 712 polarization sensitive elastic channels
ulalume3@99 713 :NetCDF definition: *double G\_R*
ulalume3@99 714 :Description: G polarization cross-talk factor value corresponding to the
ulalume3@99 715 polarization reflected channel.
ulalume3@99 716
ulalume3@99 717 - Variable name: *G\_R\_Statistical\_Err*
ulalume3@99 718
ulalume3@99 719 :Type: *double*
ulalume3@99 720 :Number of dimensions: 0
ulalume3@99 721 :Dimensions: N/A
ulalume3@99 722 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 723 polarization sensitive elastic channels
ulalume3@99 724 :NetCDF definition: *double G\_R\_Statistical\_Err*
ulalume3@99 725 :Description: this variable describes the statistical uncertainties
ulalume3@99 726 corresponding to the variable *G\_R*.
ulalume3@99 727
ulalume3@99 728 - Variable name: *G\_R\_Systematic\_Err*
ulalume3@99 729
ulalume3@99 730 :Type: *double*
ulalume3@99 731 :Number of dimensions: 0
ulalume3@99 732 :Dimensions: N/A
ulalume3@99 733 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 734 polarization sensitive elastic channels
ulalume3@99 735 :NetCDF definition: * double G\_R\_Systematic\_Err*
ulalume3@99 736 :Description: this variable describes the systematic uncertainties
ulalume3@99 737 corresponding to the variable *G\_R*.
ulalume3@99 738
ulalume3@99 739 - Variable name: *H\_R*
ulalume3@99 740
ulalume3@99 741 :Type: *double*
ulalume3@99 742 :Number of dimensions: 0
ulalume3@99 743 :Dimensions: N/A
ulalume3@99 744 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 745 polarization sensitive elastic channels
ulalume3@99 746 :NetCDF definition: *double H\_R*
ulalume3@99 747 :Description: H polarization cross-talk factor value corresponding to the
ulalume3@99 748 polarization reflected channel.
ulalume3@99 749
ulalume3@99 750 - Variable name: *H\_R\_Statistical\_Err*
ulalume3@99 751
ulalume3@99 752 :Type: *double*
ulalume3@99 753 :Number of dimensions: 0
ulalume3@99 754 :Dimensions: N/A
ulalume3@99 755 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 756 polarization sensitive elastic channels
ulalume3@99 757 :NetCDF definition: *double H\_R\_Statistical\_Err*
ulalume3@99 758 :Description: this variable describes the statistical uncertainties
ulalume3@99 759 corresponding to the variable *H\_R*.
ulalume3@99 760
ulalume3@99 761 - Variable name: *H\_R\_Systematic\_Err*
ulalume3@99 762
ulalume3@99 763 :Type: *double*
ulalume3@99 764 :Number of dimensions: 0
ulalume3@99 765 :Dimensions: N/A
ulalume3@99 766 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 767 polarization sensitive elastic channels
ulalume3@99 768 :NetCDF definition: *double H\_R\_Systematic\_Err*
ulalume3@99 769 :Description: this variable describes the systematic uncertainties
ulalume3@99 770 corresponding to the variable *H\_R*.
ulalume3@99 771
ulalume3@99 772 - Variable name: *Polarization\_Channel\_Gain\_Factor*
ulalume3@99 773
ulalume3@99 774 :Type: *double*
ulalume3@99 775 :Number of dimensions: 0
ulalume3@99 776 :Dimensions: N/A
ulalume3@99 777 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 778 polarization sensitive elastic channels
ulalume3@99 779 :NetCDF definition: *double Polarization\_Channel\_Gain\_Factor*
ulalume3@99 780 :Description: this variable reports the value of the gain ratio of the
ulalume3@99 781 reflected and transmitted polarization channels.
ulalume3@99 782
ulalume3@99 783 - Variable name: *Polarization\_Channel\_Gain\_Factor\_Statistical\_Err
ulalume3@99 784 *
ulalume3@99 785
ulalume3@99 786 :Type: *double*
ulalume3@99 787 :Number of dimensions: 0
ulalume3@99 788 :Dimensions: N/A
ulalume3@99 789 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 790 polarization sensitive elastic channels
ulalume3@99 791 :NetCDF definition: *double
ulalume3@99 792 Polarization\_Channel\_Gain\_Factor\_Statistical\_Err*
ulalume3@99 793 :Description: this variable describes the statistical uncertainties
ulalume3@99 794 corresponding to the variable *Polarization\_Channel\_Gain\_Factor*.
ulalume3@99 795
ulalume3@99 796 - Variable name: *Polarization\_Channel\_Gain\_Factor\_Systematic\_Err
ulalume3@99 797 *
ulalume3@99 798
ulalume3@99 799 :Type: *double*
ulalume3@99 800 :Number of dimensions: 0
ulalume3@99 801 :Dimensions: N/A
ulalume3@99 802 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 803 polarization sensitive elastic channels
ulalume3@99 804 :NetCDF definition: *double
ulalume3@99 805 Polarization\_Channel\_Gain\_Factor\_Systematic\_Err*
ulalume3@99 806 :Description: this variable describes the systematic uncertainties
ulalume3@99 807 corresponding to the variable *Polarization\_Channel\_Gain\_Factor*.
ulalume3@99 808
ulalume3@99 809 - Variable name: *Polarization\_Channel\_Gain\_Factor\_Correction*
ulalume3@99 810
ulalume3@99 811 :Type: *double*
ulalume3@99 812 :Number of dimensions: 0
ulalume3@99 813 :Dimensions: N/A
ulalume3@99 814 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 815 polarization sensitive elastic channels
ulalume3@99 816 :NetCDF definition: *double
ulalume3@99 817 Polarization\_Channel\_Gain\_Factor\_Correction*
ulalume3@99 818 :Description: this variable reports the value of the correction to the
ulalume3@99 819 gain ratio of the reflected and transmitted polarization channels.
ulalume3@99 820
ulalume3@99 821 - Variable name:
ulalume3@99 822 *Polarization\_Channel\_Gain\_Factor\_Correction\_Statistical\_Err*
ulalume3@99 823
ulalume3@99 824 :Type: *double*
ulalume3@99 825 :Number of dimensions: 0
ulalume3@99 826 :Dimensions: N/A
ulalume3@99 827 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 828 polarization sensitive elastic channels
ulalume3@99 829 :NetCDF definition: * double
ulalume3@99 830 Polarization\_Channel\_Gain\_Factor\_Correction\_Statistical\_Err*
ulalume3@99 831 :Description: this variable describes the statistical uncertainties
ulalume3@99 832 corresponding to the variable
ulalume3@99 833 *Polarization\_Channel\_Gain\_Factor\_Correction*.
ulalume3@99 834
ulalume3@99 835 - Variable name:
ulalume3@99 836 *Polarization\_Channel\_Gain\_Factor\_Correction\_Systematic\_Err*
ulalume3@99 837
ulalume3@99 838 :Type: *double*
ulalume3@99 839 :Number of dimensions: 0
ulalume3@99 840 :Dimensions: N/A
ulalume3@99 841 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 842 polarization sensitive elastic channels
ulalume3@99 843 :NetCDF definition: *double
ulalume3@99 844 Polarization\_Channel\_Gain\_Factor\_Correction\_Systematic\_Err*
ulalume3@99 845 :Description: this variable describes the systematic uncertainties
ulalume3@99 846 corresponding to the variable
ulalume3@99 847 *Polarization\_Channel\_Gain\_Factor\_Correction*.
ulalume3@99 848
ulalume3@99 849 - Variable name: *G\_T\_Near\_Range*
ulalume3@99 850
ulalume3@99 851 :Type: *double*
ulalume3@99 852 :Number of dimensions: 0
ulalume3@99 853 :Dimensions: N/A
ulalume3@99 854 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 855 range polarization sensitive elastic channels
ulalume3@99 856 :NetCDF definition: *double G\_T\_Near\_Range*
ulalume3@99 857 :Description: G polarization cross-talk factor value corresponding to the
ulalume3@99 858 near range polarization transmitted channel.
ulalume3@99 859
ulalume3@99 860 - Variable name: *G\_T\_Near\_Range\_Statistical\_Err*
ulalume3@99 861
ulalume3@99 862 :Type: *double*
ulalume3@99 863 :Number of dimensions: 0
ulalume3@99 864 :Dimensions: N/A
ulalume3@99 865 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 866 range polarization sensitive elastic channels
ulalume3@99 867 :NetCDF definition: *double G\_T\_Near\_Range\_Statistical\_Err*
ulalume3@99 868 :Description: this variable describes the statistical uncertainties
ulalume3@99 869 corresponding to the variable *G\_T\_Near\_Range*.
ulalume3@99 870
ulalume3@99 871 - Variable name: *G\_T\_Near\_Range\_Systematic\_Err*
ulalume3@99 872
ulalume3@99 873 :Type: *double*
ulalume3@99 874 :Number of dimensions: 0
ulalume3@99 875 :Dimensions: N/A
ulalume3@99 876 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 877 range polarization sensitive elastic channels
ulalume3@99 878 :NetCDF definition: *double G\_T\_Near\_Range\_Systematic\_Err*
ulalume3@99 879 :Description: this variable describes the systematic uncertainties
ulalume3@99 880 corresponding to the variable *G\_T\_Near\_Range*.
ulalume3@99 881
ulalume3@99 882 - Variable name: *H\_T\_Near\_Range*
ulalume3@99 883
ulalume3@99 884 :Type: *double*
ulalume3@99 885 :Number of dimensions: 0
ulalume3@99 886 :Dimensions: N/A
ulalume3@99 887 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 888 range polarization sensitive elastic channels
ulalume3@99 889 :NetCDF definition: *double H\_T\_Near\_Range*
ulalume3@99 890 :Description: H polarization cross-talk factor value corresponding to the
ulalume3@99 891 near range polarization transmitted channel.
ulalume3@99 892
ulalume3@99 893 - Variable name: *H\_T\_Near\_Range\_Statistical\_Err*
ulalume3@99 894
ulalume3@99 895 :Type: *double*
ulalume3@99 896 :Number of dimensions: 0
ulalume3@99 897 :Dimensions: N/A
ulalume3@99 898 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 899 range polarization sensitive elastic channels
ulalume3@99 900 :NetCDF definition: *double H\_T\_Near\_Range\_Statistical\_Err*
ulalume3@99 901 :Description: this variable describes the statistical uncertainties
ulalume3@99 902 corresponding to the variable *H\_T\_Near\_Range*.
ulalume3@99 903
ulalume3@99 904 - Variable name: *H\_T\_Near\_Range\_Systematic\_Err*
ulalume3@99 905
ulalume3@99 906 :Type: *double*
ulalume3@99 907 :Number of dimensions: 0
ulalume3@99 908 :Dimensions: N/A
ulalume3@99 909 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 910 range polarization sensitive elastic channels
ulalume3@99 911 :NetCDF definition: *double H\_T\_Near\_Range\_Systematic\_Err*
ulalume3@99 912 :Description: this variable describes the systematic uncertainties
ulalume3@99 913 corresponding to the variable *H\_T\_Near\_Range*.
ulalume3@99 914
ulalume3@99 915 - Variable name: *G\_R\_Near\_Range*
ulalume3@99 916
ulalume3@99 917 :Type: *double*
ulalume3@99 918 :Number of dimensions: 0
ulalume3@99 919 :Dimensions: N/A
ulalume3@99 920 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 921 range polarization sensitive elastic channels
ulalume3@99 922 :NetCDF definition: *double G\_R\_Near\_Range*
ulalume3@99 923 :Description: G polarization cross-talk factor value corresponding to the
ulalume3@99 924 near range polarization reflected channel.
ulalume3@99 925
ulalume3@99 926 - Variable name: *G\_R\_Near\_Range\_Statistical\_Err*
ulalume3@99 927
ulalume3@99 928 :Type: *double*
ulalume3@99 929 :Number of dimensions: 0
ulalume3@99 930 :Dimensions: N/A
ulalume3@99 931 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 932 range polarization sensitive elastic channels
ulalume3@99 933 :NetCDF definition: *double G\_R\_Near\_Range\_Statistical\_Err*
ulalume3@99 934 :Description: this variable describes the statistical uncertainties
ulalume3@99 935 corresponding to the variable *G\_R\_Near\_Range*.
ulalume3@99 936
ulalume3@99 937 - Variable name: *G\_R\_Near\_Range\_Systematic\_Err*
ulalume3@99 938
ulalume3@99 939 :Type: *double*
ulalume3@99 940 :Number of dimensions: 0
ulalume3@99 941 :Dimensions: N/A
ulalume3@99 942 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 943 range polarization sensitive elastic channels
ulalume3@99 944 :NetCDF definition: *double G\_R\_Near\_Range\_Systematic\_Err*
ulalume3@99 945 :Description: this variable describes the systematic uncertainties
ulalume3@99 946 corresponding to the variable *G\_R\_Near\_Range*.
ulalume3@99 947
ulalume3@99 948 - Variable name: *H\_R\_Near\_Range*
ulalume3@99 949
ulalume3@99 950 :Type: *double*
ulalume3@99 951 :Number of dimensions: 0
ulalume3@99 952 :Dimensions: N/A
ulalume3@99 953 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 954 range polarization sensitive elastic channels
ulalume3@99 955 :NetCDF definition: *double H\_R\_Near\_Range*
ulalume3@99 956 :Description: H polarization cross-talk factor value corresponding to the
ulalume3@99 957 near range polarization reflected channel.
ulalume3@99 958
ulalume3@99 959 - Variable name: *H\_R\_Near\_Range\_Statistical\_Err*
ulalume3@99 960
ulalume3@99 961 :Type: *double*
ulalume3@99 962 :Number of dimensions: 0
ulalume3@99 963 :Dimensions: N/A
ulalume3@99 964 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 965 range polarization sensitive elastic channels
ulalume3@99 966 :NetCDF definition: * double H\_R\_Near\_Range\_Statistical\_Err*
ulalume3@99 967 :Description: this variable describes the statistical uncertainties
ulalume3@99 968 corresponding to the variable *H\_R\_Near\_Range*.
ulalume3@99 969
ulalume3@99 970 - Variable name: *H\_R\_Near\_Range\_Systematic\_Err*
ulalume3@99 971
ulalume3@99 972 :Type: *double*
ulalume3@99 973 :Number of dimensions: 0
ulalume3@99 974 :Dimensions: N/A
ulalume3@99 975 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 976 range polarization sensitive elastic channels
ulalume3@99 977 :NetCDF definition: *double H\_R\_Near\_Range\_Systematic\_Err*
ulalume3@99 978 :Description: this variable describes the systematic uncertainties
ulalume3@99 979 corresponding to the variable *H\_R\_Near\_Range*.
ulalume3@99 980
ulalume3@99 981 - Variable name: *Polarization\_Channel\_Gain\_Factor\_Near\_Range*
ulalume3@99 982
ulalume3@99 983 :Type: *double*
ulalume3@99 984 :Number of dimensions: 0
ulalume3@99 985 :Dimensions: N/A
ulalume3@99 986 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 987 range polarization sensitive elastic channels
ulalume3@99 988 :NetCDF definition: *double
ulalume3@99 989 Polarization\_Channel\_Gain\_Factor\_Near\_Range*
ulalume3@99 990 :Description: this variable reports the value of the gain ratio of the
ulalume3@99 991 near range reflected and transmitted polarization channels.
ulalume3@99 992
ulalume3@99 993 - Variable name:
ulalume3@99 994 *Polarization\_Channel\_Gain\_Factor\_Near\_Range\_Statistical\_Err*
ulalume3@99 995
ulalume3@99 996 :Type: *double*
ulalume3@99 997 :Number of dimensions: 0
ulalume3@99 998 :Dimensions: N/A
ulalume3@99 999 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 1000 range polarization sensitive elastic channels
ulalume3@99 1001 :NetCDF definition: *double
ulalume3@99 1002 Polarization\_Channel\_Gain\_Factor\_Near\_Range\_Statistical\_Err*
ulalume3@99 1003 :Description: this variable describes the statistical uncertainties
ulalume3@99 1004 corresponding to the variable
ulalume3@99 1005 *Polarization\_Channel\_Gain\_Near\_Range\_Factor*.
ulalume3@99 1006
ulalume3@99 1007 - Variable name:
ulalume3@99 1008 *Polarization\_Channel\_Gain\_Factor\_Near\_Range\_Systematic\_Err*
ulalume3@99 1009
ulalume3@99 1010 :Type: *double*
ulalume3@99 1011 :Number of dimensions: 0
ulalume3@99 1012 :Dimensions: N/A
ulalume3@99 1013 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 1014 range polarization sensitive elastic channels
ulalume3@99 1015 :NetCDF definition: *double
ulalume3@99 1016 Polarization\_Channel\_Gain\_Factor\_Near\_Range\_Systematic\_Err*
ulalume3@99 1017 :Description: this variable describes the systematic uncertainties
ulalume3@99 1018 corresponding to the variable
ulalume3@99 1019 *Polarization\_Channel\_Gain\_Factor\_Near\_Range*.
ulalume3@99 1020
ulalume3@99 1021 - Variable name:
ulalume3@99 1022 *Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range*
ulalume3@99 1023
ulalume3@99 1024 :Type: *double*
ulalume3@99 1025 :Number of dimensions: 0
ulalume3@99 1026 :Dimensions: N/A
ulalume3@99 1027 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 1028 range polarization sensitive elastic channels
ulalume3@99 1029 :NetCDF definition: *double
ulalume3@99 1030 Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range*
ulalume3@99 1031 :Description: this variable reports the value of the correction to the
ulalume3@99 1032 near range gain ratio of the reflected and transmitted polarization
ulalume3@99 1033 channels.
ulalume3@99 1034
ulalume3@99 1035 - Variable name:
ulalume3@99 1036 *Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range\_Statistical\_Err*
ulalume3@99 1037
ulalume3@99 1038 :Type: *double*
ulalume3@99 1039 :Number of dimensions: 0
ulalume3@99 1040 :Dimensions: N/A
ulalume3@99 1041 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 1042 range polarization sensitive elastic channels
ulalume3@99 1043 :NetCDF definition:\ **
ulalume3@99 1044
ulalume3@99 1045 *double
ulalume3@99 1046 Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range\_Statistical\_Err
ulalume3@99 1047 *
ulalume3@99 1048 :Description: this variable describes the statistical uncertainties
ulalume3@99 1049 corresponding to the variable
ulalume3@99 1050 *Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range*.
ulalume3@99 1051
ulalume3@99 1052 - Variable name:
ulalume3@99 1053 *Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range\_Systematic\_Err
ulalume3@99 1054 *
ulalume3@99 1055
ulalume3@99 1056 :Type: *double*
ulalume3@99 1057 :Number of dimensions: 0
ulalume3@99 1058 :Dimensions: N/A
ulalume3@99 1059 :Location: Present if the Low Resolution SCC L1 Product involves near
ulalume3@99 1060 range polarization sensitive elastic channels
ulalume3@99 1061 :NetCDF definition:
ulalume3@99 1062
ulalume3@99 1063 *double
ulalume3@99 1064 Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range\_Systematic\_Err
ulalume3@99 1065 *
ulalume3@99 1066 :Description: this variable describes the systematic uncertainties
ulalume3@99 1067 corresponding to the variable
ulalume3@99 1068 *Polarization\_Channel\_Gain\_Factor\_Correction\_Near\_Range*.
ulalume3@99 1069
ulalume3@99 1070 - Variable name: *G\_T\_Far\_Range*
ulalume3@99 1071
ulalume3@99 1072 :Type: *double*
ulalume3@99 1073 :Number of dimensions: 0
ulalume3@99 1074 :Dimensions: N/A
ulalume3@99 1075 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1076 range polarization sensitive elastic channels
ulalume3@99 1077 :NetCDF definition: *double G\_T\_Far\_Range*
ulalume3@99 1078 :Description: G polarization cross-talk factor value corresponding to the
ulalume3@99 1079 far range polarization transmitted channel.
ulalume3@99 1080
ulalume3@99 1081 - Variable name: *G\_T\_Far\_Range\_Statistical\_Err*
ulalume3@99 1082
ulalume3@99 1083 :Type: *double*
ulalume3@99 1084 :Number of dimensions: 0
ulalume3@99 1085 :Dimensions: N/A
ulalume3@99 1086 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1087 range polarization sensitive elastic channels
ulalume3@99 1088 :NetCDF definition: *double G\_T\_Far\_Range\_Statistical\_Err*
ulalume3@99 1089 :Description: this variable describes the statistical uncertainties
ulalume3@99 1090 corresponding to the variable *G\_T\_Far\_Range*.
ulalume3@99 1091
ulalume3@99 1092 - Variable name: *G\_T\_Far\_Range\_Systematic\_Err*
ulalume3@99 1093
ulalume3@99 1094 :Type: *double*
ulalume3@99 1095 :Number of dimensions: 0
ulalume3@99 1096 :Dimensions: N/A
ulalume3@99 1097 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1098 range polarization sensitive elastic channels
ulalume3@99 1099 :NetCDF definition: *double G\_T\_Far\_Range\_Systematic\_Err*
ulalume3@99 1100 :Description: this variable describes the systematic uncertainties
ulalume3@99 1101 corresponding to the variable *G\_T\_Far\_Range*.
ulalume3@99 1102
ulalume3@99 1103 - Variable name: *H\_T\_Far\_Range*
ulalume3@99 1104
ulalume3@99 1105 :Type: *double*
ulalume3@99 1106 :Number of dimensions: 0
ulalume3@99 1107 :Dimensions: N/A
ulalume3@99 1108 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1109 range polarization sensitive elastic channels
ulalume3@99 1110 :NetCDF definition: *double H\_T\_Far\_Range*
ulalume3@99 1111 :Description: H polarization cross-talk factor value corresponding to the
ulalume3@99 1112 far range polarization transmitted channel.
ulalume3@99 1113
ulalume3@99 1114 - Variable name: *H\_T\_Far\_Range\_Statistical\_Err*
ulalume3@99 1115
ulalume3@99 1116 :Type: *double*
ulalume3@99 1117 :Number of dimensions: 0
ulalume3@99 1118 :Dimensions: N/A
ulalume3@99 1119 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1120 range polarization sensitive elastic channels
ulalume3@99 1121 :NetCDF definition: *double H\_T\_Far\_Range\_Statistical\_Err*
ulalume3@99 1122 :Description: this variable describes the statistical uncertainties
ulalume3@99 1123 corresponding to the variable *H\_T\_Far\_Range*.
ulalume3@99 1124
ulalume3@99 1125 - Variable name: *H\_T\_Far\_Range\_Systematic\_Err*
ulalume3@99 1126
ulalume3@99 1127 :Type: *double*
ulalume3@99 1128 :Number of dimensions: 0
ulalume3@99 1129 :Dimensions: N/A
ulalume3@99 1130 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1131 range polarization sensitive elastic channels
ulalume3@99 1132 :NetCDF definition: d\ *ouble H\_T\_Far\_Range\_Systematic\_Err*
ulalume3@99 1133 :Description: this variable describes the systematic uncertainties
ulalume3@99 1134 corresponding to the variable *H\_T\_Far\_Range*.
ulalume3@99 1135
ulalume3@99 1136 - Variable name: *G\_R\_Far\_Range*
ulalume3@99 1137
ulalume3@99 1138 :Type: *double*
ulalume3@99 1139 :Number of dimensions: 0
ulalume3@99 1140 :Dimensions: N/A
ulalume3@99 1141 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1142 range polarization sensitive elastic channels
ulalume3@99 1143 :NetCDF definition: *double G\_R\_Far\_Range*
ulalume3@99 1144 :Description: G polarization cross-talk factor value corresponding to the
ulalume3@99 1145 far range polarization reflected channel.
ulalume3@99 1146
ulalume3@99 1147 - Variable name: *G\_R\_Far\_Range\_Statistical\_Err*
ulalume3@99 1148
ulalume3@99 1149 :Type: *double*
ulalume3@99 1150 :Number of dimensions: 0
ulalume3@99 1151 :Dimensions: N/A
ulalume3@99 1152 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1153 range polarization sensitive elastic channels
ulalume3@99 1154 :NetCDF definition: *double G\_R\_Far\_Range\_Statistical\_Err*
ulalume3@99 1155 :Description: this variable describes the statistical uncertainties
ulalume3@99 1156 corresponding to the variable *G\_R\_Far\_Range*.
ulalume3@99 1157
ulalume3@99 1158 - Variable name: *G\_R\_Far\_Range\_Systematic\_Err*
ulalume3@99 1159
ulalume3@99 1160 :Type: *double*
ulalume3@99 1161 :Number of dimensions: 0
ulalume3@99 1162 :Dimensions: N/A
ulalume3@99 1163 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1164 range polarization sensitive elastic channels
ulalume3@99 1165 :NetCDF definition: *double G\_R\_Far\_Range\_Systematic\_Err*
ulalume3@99 1166 :Description: this variable describes the systematic uncertainties
ulalume3@99 1167 corresponding to the variable *G\_R\_Far\_Range*.
ulalume3@99 1168
ulalume3@99 1169 - Variable name: *H\_R\_Far\_Range*
ulalume3@99 1170
ulalume3@99 1171 :Type: *double*
ulalume3@99 1172 :Number of dimensions: 0
ulalume3@99 1173 :Dimensions: N/A
ulalume3@99 1174 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1175 range polarization sensitive elastic channels
ulalume3@99 1176 :NetCDF definition: *double H\_R\_Far\_Range*
ulalume3@99 1177 :Description: H polarization cross-talk factor value corresponding to the
ulalume3@99 1178 far range polarization reflected channel.
ulalume3@99 1179
ulalume3@99 1180 - Variable name: *H\_R\_Far\_Range\_Statistical\_Err*
ulalume3@99 1181
ulalume3@99 1182 :Type: *double*
ulalume3@99 1183 :Number of dimensions: 0
ulalume3@99 1184 :Dimensions: N/A
ulalume3@99 1185 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1186 range polarization sensitive elastic channels
ulalume3@99 1187 :NetCDF definition: *double H\_R\_Far\_Range\_Statistical\_Err*
ulalume3@99 1188 :Description: this variable describes the statistical uncertainties
ulalume3@99 1189 corresponding to the variable *H\_R\_Far\_Range*.
ulalume3@99 1190
ulalume3@99 1191 - Variable name: *H\_R\_Far\_Range\_Systematic\_Err*
ulalume3@99 1192
ulalume3@99 1193 :Type: *double*
ulalume3@99 1194 :Number of dimensions: 0
ulalume3@99 1195 :Dimensions: N/A
ulalume3@99 1196 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1197 range polarization sensitive elastic channels
ulalume3@99 1198 :NetCDF definition: *double H\_R\_Far\_Range\_Systematic\_Err*
ulalume3@99 1199 :Description: this variable describes the systematic uncertainties
ulalume3@99 1200 corresponding to the variable *H\_R\_Far\_Range*.
ulalume3@99 1201
ulalume3@99 1202 - Variable name: *Polarization\_Channel\_Gain\_Factor\_Far\_Range*
ulalume3@99 1203
ulalume3@99 1204 :Type: *double*
ulalume3@99 1205 :Number of dimensions: 0
ulalume3@99 1206 :Dimensions: N/A
ulalume3@99 1207 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1208 range polarization sensitive elastic channels
ulalume3@99 1209 :NetCDF definition: *double
ulalume3@99 1210 Polarization\_Channel\_Gain\_Factor\_Far\_Range*
ulalume3@99 1211 :Description: this variable reports the value of the gain ratio of the
ulalume3@99 1212 far range reflected and transmitted polarization channels.
ulalume3@99 1213
ulalume3@99 1214 - Variable name:
ulalume3@99 1215 *Polarization\_Channel\_Gain\_Factor\_Far\_Range\_Statistical\_Err*
ulalume3@99 1216
ulalume3@99 1217 :Type: *double*
ulalume3@99 1218 :Number of dimensions: 0
ulalume3@99 1219 :Dimensions: N/A
ulalume3@99 1220 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1221 range polarization sensitive elastic channels
ulalume3@99 1222 :NetCDF definition: *double
ulalume3@99 1223 Polarization\_Channel\_Gain\_Factor\_Far\_Range\_Statistical\_Err*
ulalume3@99 1224 :Description: this variable describes the statistical uncertainties
ulalume3@99 1225 corresponding to the variable
ulalume3@99 1226 *Polarization\_Channel\_Gain\_Far\_Range\_Factor*.
ulalume3@99 1227
ulalume3@99 1228 - Variable name:
ulalume3@99 1229 P\ *olarization\_Channel\_Gain\_Factor\_Far\_Range\_Systematic\_Err*
ulalume3@99 1230
ulalume3@99 1231 :Type: *double*
ulalume3@99 1232 :Number of dimensions: 0
ulalume3@99 1233 :Dimensions: N/A
ulalume3@99 1234 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1235 range polarization sensitive elastic channels
ulalume3@99 1236 :NetCDF definition: *double
ulalume3@99 1237 Polarization\_Channel\_Gain\_Factor\_Far\_Range\_Systematic\_Err*
ulalume3@99 1238 :Description: this variable describes the systematic uncertainties
ulalume3@99 1239 corresponding to the variable
ulalume3@99 1240 *Polarization\_Channel\_Gain\_Factor\_Far\_Range*.
ulalume3@99 1241
ulalume3@99 1242 - Variable name:
ulalume3@99 1243 *Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range*
ulalume3@99 1244
ulalume3@99 1245 :Type: *double*
ulalume3@99 1246 :Number of dimensions: 0
ulalume3@99 1247 :Dimensions: N/A
ulalume3@99 1248 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1249 range polarization sensitive elastic channels
ulalume3@99 1250 :NetCDF definition: d\ *ouble
ulalume3@99 1251 Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range*
ulalume3@99 1252 :Description: this variable reports the value of the correction to the
ulalume3@99 1253 far range gain ratio of the reflected and transmitted polarization
ulalume3@99 1254 channels.
ulalume3@99 1255
ulalume3@99 1256 - Variable name:
ulalume3@99 1257 *Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range\_Statistical\_Err
ulalume3@99 1258 *
ulalume3@99 1259
ulalume3@99 1260 :Type: *double*
ulalume3@99 1261 :Number of dimensions: 0
ulalume3@99 1262 :Dimensions: N/A
ulalume3@99 1263 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1264 range polarization sensitive elastic channels
ulalume3@99 1265 :NetCDF definition:
ulalume3@99 1266
ulalume3@99 1267 d\ *ouble
ulalume3@99 1268 Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range\_Statistical\_Err
ulalume3@99 1269 *
ulalume3@99 1270 :Description: this variable describes the statistical uncertainties
ulalume3@99 1271 corresponding to the variable
ulalume3@99 1272 *Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range*.
ulalume3@99 1273
ulalume3@99 1274 - Variable name:
ulalume3@99 1275 *Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range\_Systematic\_Err
ulalume3@99 1276 *
ulalume3@99 1277
ulalume3@99 1278 :Type: *double*
ulalume3@99 1279 :Number of dimensions: 0
ulalume3@99 1280 :Dimensions: N/A
ulalume3@99 1281 :Location: Present if the Low Resolution SCC L1 Product involves far
ulalume3@99 1282 range polarization sensitive elastic channels
ulalume3@99 1283 :NetCDF definition:
ulalume3@99 1284
ulalume3@99 1285 *double
ulalume3@99 1286 Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range\_Systematic\_Err
ulalume3@99 1287 *
ulalume3@99 1288 :Description: this variable describes the systematic uncertainties
ulalume3@99 1289 corresponding to the variable
ulalume3@99 1290 *Polarization\_Channel\_Gain\_Factor\_Correction\_Far\_Range*.
ulalume3@99 1291
ulalume3@99 1292 - Variable name: *Depolarization\_Calibration\_Type*
ulalume3@99 1293
ulalume3@99 1294 :Type: *integer*
ulalume3@99 1295 :Number of dimensions: 0
ulalume3@99 1296 :Dimensions: N/A
ulalume3@99 1297 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 1298 polarization sensitive elastic channels
ulalume3@99 1299 :NetCDF definition: * int Depolarization\_Calibration\_Type*
ulalume3@99 1300 :Description: this variable describes the type of depolarization
ulalume3@99 1301 calibration that has been performed. A value of 1 means automatic
ulalume3@99 1302 calibration made the the SCC, a value of 2 means manual calibration
ulalume3@99 1303 inserted into the SCC database.
ulalume3@99 1304
ulalume3@99 1305 - Variable name: *Molecular\_Linear\_Depolarization\_Ratio*
ulalume3@99 1306
ulalume3@99 1307 :Type: *double*
ulalume3@99 1308 :Number of dimensions: 2
ulalume3@99 1309 :Dimensions: *scan\_angles,points*
ulalume3@99 1310 :Location: Present if the Low Resolution SCC L1 Product involves
ulalume3@99 1311 polarization sensitive elastic channels
ulalume3@99 1312 :NetCDF definition: *double
ulalume3@99 1313 Molecular\_Linear\_Depolarization\_Ratio(scan\_angles, points)*
ulalume3@99 1314 :Description: this variable report the value of molecular linear
ulalume3@99 1315 depolarization ration for at given scan angles and at given altitude
ulalume3@99 1316 (*points*). This profile is calculated on the base of the atmospheric
ulalume3@99 1317 data from standard models or radiosonding submitted by the user as
ulalume3@99 1318 separate file.
ulalume3@99 1319
ulalume3@99 1320 The altitude scale at which each RCS within the time-series reported by
ulalume3@99 1321 the variables *elT, elTnr, elTfr, vrRN2, vrRN2nr, vrRN2fr, elPT, elPTnr,
ulalume3@99 1322 elPTfr, elPR, elPRnr, elPRfr*, refer to can be obtained as:
ulalume3@99 1323
ulalume3@99 1324 H(laser\_pointing\_angle\_of\_profiles(time),points)
ulalume3@99 1325
ulalume3@99 1326 The total signal (*I*\ :sub:`*total*`) and the volume depolarization
ulalume3@99 1327 ratio (**) can be calculated out of reflected (*I*\ :sub:`*R*`) and
ulalume3@99 1328 transmitted (*I*\ :sub:`*T*`) polarization component intensities using
ulalume3@99 1329 the following equations:
ulalume3@99 1330
ulalume3@99 1331 where *\** is the gain ratio of the reflected and transmitted
ulalume3@99 1332 polarization channels (variable *Polarization\_Channel\_Gain\_Factor*);
ulalume3@99 1333 *K* is the correction to the gain ratio of the reflected and transmitted
ulalume3@99 1334 polarization channels (variable
ulalume3@99 1335 *Polarization\_Channel\_Gain\_Factor\_Correction*); *I*\ :sub:`*R*` is
ulalume3@99 1336 the intensity of the reflected polarization component (variable *elPR*);
ulalume3@99 1337 *I*\ :sub:`*T*` is the intensity of the transmitted polarization
ulalume3@99 1338 component (variable *elPT*); and *G*\ :sub:`*T*`, *H*\ :sub:`*T*`,
ulalume3@99 1339 *G*\ :sub:`*R*` and *H*\ :sub:`*R*` are the polarization cross-talk
ulalume3@99 1340 parameters (variables *G\_T, H\_T, G\_R* and *H\_R*).
ulalume3@99 1341
ulalume3@99 1342 Low Resolution SCC L1 Product Format: global attributes
ulalume3@99 1343 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ulalume3@99 1344
ulalume3@99 1345 In this section all the possible Low Resolution SCC L1 Product global
ulalume3@99 1346 attributes are reported. There are some global attributes that are
ulalume3@99 1347 mandatory and have to be present in all the Low Resolution SCC L1
ulalume3@99 1348 Product files while there are others that have to be present only in
ulalume3@99 1349 specific cases.
ulalume3@99 1350
ulalume3@99 1351 1. Attribute name: *Location*
ulalume3@99 1352
ulalume3@99 1353 :Type: *string*
ulalume3@99 1354 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1355 :Description: the name of site where the measurements have been performed
ulalume3@99 1356
ulalume3@99 1357 1. Attribute name: *System*
ulalume3@99 1358
ulalume3@99 1359 :Type: *string*
ulalume3@99 1360 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1361 :Description: the name of the lidar system used to perform the
ulalume3@99 1362 measurements
ulalume3@99 1363
ulalume3@99 1364 1. Attribute name: *Latitude\_degrees\_north*
ulalume3@99 1365
ulalume3@99 1366 :Type: *double*
ulalume3@99 1367 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1368 :Description: the latitude (in degrees North) of the measurement site
ulalume3@99 1369
ulalume3@99 1370 1. Attribute name: *Longitude\_degrees\_east*
ulalume3@99 1371
ulalume3@99 1372 :Type: *double*
ulalume3@99 1373 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1374 :Description: the longitude (in degrees East) of the measurement site
ulalume3@99 1375
ulalume3@99 1376 1. Attribute name: *Altitude\_meter\_asl*
ulalume3@99 1377
ulalume3@99 1378 :Type: *double*
ulalume3@99 1379 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1380 :Description: the altitude (in m above see level) of the measurement site
ulalume3@99 1381
ulalume3@99 1382 1. Attribute name: *Measurement\_ID*
ulalume3@99 1383
ulalume3@99 1384 :Type: *string*
ulalume3@99 1385 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1386 :Description: within the SCC all the measurement sessions is identified
ulalume3@99 1387 by a string called *Measurement\_ID* uniquely. This gobal attributes
ulalume3@99 1388 provides this string.
ulalume3@99 1389
ulalume3@99 1390 1. Attribute name: *Measurement\_Start\_Date*
ulalume3@99 1391
ulalume3@99 1392 :Type: *string*
ulalume3@99 1393 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1394 :Description: the start date of the measurements. The format in which
ulalume3@99 1395 this date is written is specified in the gobal attribute
ulalume3@99 1396 *Measurement\_Date\_Format*.
ulalume3@99 1397
ulalume3@99 1398 1. Attribute name: *Measurement\_Date\_Format*
ulalume3@99 1399
ulalume3@99 1400 :Type: *string*
ulalume3@99 1401 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1402 :Description: the format in which the global attribute
ulalume3@99 1403 *Measurement\_Start\_Date* is given.
ulalume3@99 1404
ulalume3@99 1405 1. Attribute name: *Measurement\_Start\_Time\_UT*
ulalume3@99 1406
ulalume3@99 1407 :Type: *string*
ulalume3@99 1408 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1409 :Description: the start time (UT) of the measurements. The format in
ulalume3@99 1410 which this time is written is specified in the global attribute
ulalume3@99 1411 *Measurement\_Time\_Format*.
ulalume3@99 1412
ulalume3@99 1413 1. Attribute name: *Measurement\_Time\_Format*
ulalume3@99 1414
ulalume3@99 1415 :Type: *string*
ulalume3@99 1416 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1417 :Description: the format in which the global attribute
ulalume3@99 1418 *Measurement\_Start\_Time\_U*\ T is given.
ulalume3@99 1419
ulalume3@99 1420 1. Attribute name: *Comments*
ulalume3@99 1421
ulalume3@99 1422 :Type: *string*
ulalume3@99 1423 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1424 :Description: this string can contain comments of the measurement session
ulalume3@99 1425
ulalume3@99 1426 1. Attribute name: *Overlap\_File\_Name*
ulalume3@99 1427
ulalume3@99 1428 :Type: *string*
ulalume3@99 1429 :Location: Included in all the Low Resolution SCC L1 Product files for
ulalume3@99 1430 which an overlap file has been submitted by the data originator.
ulalume3@99 1431 :Description: The name of the overlap file to use for overlap correction.
ulalume3@99 1432
ulalume3@99 1433 1. Attribute name: *LR\_File\_Name*
ulalume3@99 1434
ulalume3@99 1435 :Type: *string*
ulalume3@99 1436 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1437 corresponding to elastic only retrieval and for which an lidar ratio
ulalume3@99 1438 profile file has been submitted by the data originator.
ulalume3@99 1439 :Description: The name of the lidar ratio file containing the profile of
ulalume3@99 1440 particle lidar ratio values to use as input in the elastic only
ulalume3@99 1441 retrieval.
ulalume3@99 1442
ulalume3@99 1443 1. Attribute name: *SCCPreprocessingVersion*
ulalume3@99 1444
ulalume3@99 1445 :Type: *string*
ulalume3@99 1446 :Location: Included in all the Low Resolution SCC L1 Product files
ulalume3@99 1447 :Description: the version of SCC used to produce the current Low
ulalume3@99 1448 Resolution SCC L1 Product
ulalume3@99 1449
ulalume3@99 1450 Low Resolution SCC L1 Product Filename
ulalume3@99 1451 --------------------------------------
ulalume3@99 1452
ulalume3@99 1453 The filename of the Low Resolution SCC L1 Products has the following
ulalume3@99 1454 format:
ulalume3@99 1455
ulalume3@99 1456 measurementid\_prodid.nc
ulalume3@99 1457
ulalume3@99 1458 The *measurementid* is a 12 characters alphanumeric string identifying
ulalume3@99 1459 the measurement session at which the product refers to. The
ulalume3@99 1460 *measurementid* (which is unique for a given measurement session) allows
ulalume3@99 1461 to fully trance the SCC analysis performed on the current product. This
ulalume3@99 1462 can be done because each measurement session is recorded in a SCC
ulalume3@99 1463 database using the same string. In the same database the measurement
ulalume3@99 1464 session is linked to the lidar configuration used to analyze the data
ulalume3@99 1465 (which is recorded and fully characterized in the SCC database providing
ulalume3@99 1466 all the channel details) and to a set of optical products to calculate.
ulalume3@99 1467
ulalume3@99 1468 The *prodid* is a numeric string identifying the optical product that
ulalume3@99 1469 has to be calculated by SCC (in particular ELDA module) by applying the
ulalume3@99 1470 optical retrieval algorithm on the current pre-processed L1 product.
ulalume3@99 1471
ulalume3@99 1472 Different product types are defined within the SCC. The contents of a
ulalume3@99 1473 Low Resolution SCC L1 product depends on the type of the product
ulalume3@99 1474 specified in the its filename by prodid string. In particular only the
ulalume3@99 1475 **Aerosol Related Variables **\ and\ ** Polarization related variables**
ulalume3@99 1476 specified in the section 2.2 can change depending on product type. In
ulalume3@99 1477 Tab. 3.1 are reported the product-type related variables for each
ulalume3@99 1478 optical product type.
ulalume3@99 1479
ulalume3@99 1480 To link the *prodid* string with the corresponding product type the SCC
ulalume3@99 1481 database a proper query to the SCC database should be addressed.
ulalume3@99 1482
ulalume3@99 1483 **Table 3.1:** Possible variables that can be found in the SCC L1
ulalume3@99 1484 Products for each optical product type
ulalume3@99 1485
ulalume3@99 1486 +--------------------------------------------------------------+---------------------------------------------------+
ulalume3@99 1487 | Product type | Possible variables in Low Resolution L1 Product |
ulalume3@99 1488 +--------------------------------------------------------------+---------------------------------------------------+
ulalume3@99 1489 | Extinction only | vrRN2, vrRN2nr, vrRN2fr |
ulalume3@99 1490 | | |
ulalume3@99 1491 | | vrRN2\_err, vrRN2nr\_err, vrRN2fr\_err |
ulalume3@99 1492 +--------------------------------------------------------------+---------------------------------------------------+
ulalume3@99 1493 | Elastic Backscatter | elT, elTnr, elTfr |
ulalume3@99 1494 | | |
ulalume3@99 1495 | Elastic Backscatter + Particle Linear Depolarization Ratio | elT\_err, elTnr\_err, elTfr\_err |
ulalume3@99 1496 | | |
ulalume3@99 1497 | | elPR, elPRnr, elPRfr |
ulalume3@99 1498 | | |
ulalume3@99 1499 | | elPR\_err, elPRnr\_err, elPRfr\_err |
ulalume3@99 1500 | | |
ulalume3@99 1501 | | elPT, elPTnr, elPTfr |
ulalume3@99 1502 | | |
ulalume3@99 1503 | | elPT\_err, elPTnr\_err, elPTfr\_err |
ulalume3@99 1504 +--------------------------------------------------------------+---------------------------------------------------+
ulalume3@99 1505 | Raman Backscatter | elT, elTnr, elTfr |
ulalume3@99 1506 | | |
ulalume3@99 1507 | Raman Backscatter + Particle Linear Depolarization Ratio | elT\_err, elTnr\_err, elTfr\_err |
ulalume3@99 1508 | | |
ulalume3@99 1509 | Lidar Ratio | elPR, elPRnr, elPRfr |
ulalume3@99 1510 | | |
ulalume3@99 1511 | | elPR\_err, elPRnr\_err, elPRfr\_err |
ulalume3@99 1512 | | |
ulalume3@99 1513 | | elPT, elPTnr, elPTfr |
ulalume3@99 1514 | | |
ulalume3@99 1515 | | elPT\_err, elPTnr\_err, elPTfr\_err |
ulalume3@99 1516 | | |
ulalume3@99 1517 | | vrRN2, vrRN2nr, vrRN2fr |
ulalume3@99 1518 | | |
ulalume3@99 1519 | | vrRN2\_err, vrRN2nr\_err, vrRN2fr\_err |
ulalume3@99 1520 +--------------------------------------------------------------+---------------------------------------------------+

mercurial