docs/file_formats/low_resolution.rst

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

mercurial