-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPDS4_MRO_IngestLDD.xml
More file actions
8326 lines (8223 loc) · 389 KB
/
Copy pathPDS4_MRO_IngestLDD.xml
File metadata and controls
8326 lines (8223 loc) · 389 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model
href="https://pds.nasa.gov/pds4/pds/v1/PDS4_PDS_1O00.sch"
schematypens="http://purl.oclc.org/dsdl/schematron"?>
<Ingest_LDD
xmlns="http://pds.nasa.gov/pds4/pds/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:pds="http://pds.nasa.gov/pds4/pds/v1"
xsi:schemaLocation="http://pds.nasa.gov/pds4/pds/v1
http://pds.nasa.gov/pds4/pds/v1/PDS4_PDS_1O00.xsd">
<name>MRO</name>
<ldd_version_id>1.4.1.0</ldd_version_id>
<dictionary_type>Mission</dictionary_type>
<full_name>Jennifer Ward</full_name>
<steward_id>geo</steward_id>
<namespace_id>mro</namespace_id>
<comment>
The MRO dictionary contains classes that describe aspects of the
Mars Reconnaissance Orbiter mission and related instruments.
MRO version 1.4.1.0
PDS Build 1.19.0.0, 1.20.0.0, 1.21.0.0, 1.22.0.0, 1.23.0.0, 1.24.0.0
LDDTool version 15.2.4
Built with lddtool -plJ PDS4_MRO_IngestLDD.xml
2022-09-27 JGW. Revised SCLK pattern to allow between 3 and 6 fractional digits.
Added release_id.
2022-09-29 JGW. Added SHARAD_Parameters class.
Reorganized attribute definitions.
2022-12-02 DVP. Added CRISM_ATO_Parameters class.
2022-12-06 DVP. Bumped to version 1.1.0.0 because of addition of class.
2022-12-22 PG (pgeissler@usgs.gov) added HiRISE parameters, bumped to 1.2.0.0
2023-03-23 PG (pgeissler@usgs.gov) added HiRISE RDR class
2023-08-16 DVP. Modifications to some parameters of CRISM_ATO_Parameters class
following urn:nasa:pds:crism_ato_s_iof_lml peer review; bumped to 1.2.1.0
2023-08-31 PG (pgeissler@usgs.gov) added observation_rationale attribute for HiRISE,
bump to 1.2.2.0
2024-01-09 JGW. Added SHARAD_Observation_Parameters class, bump to 1.3.0.0
2024-02-27 PG fixes to HiRISE, 1.3.1.0
2024-09-16 JGW. Revised SCLK pattern to allow between 1 and 6 fractional digits, 1.3.2.0
2025-12-16 TMH. Added BADCAL enumeration to special_processing_flag_* for HiRISE, 1.3.3.0
2025-06-27 JGW. Added CRISM TRDR parameters. Added CRISM VRDR product types, 1.4.0.0
2025-07-18 JGW. Added additional allowed values to mro:observation_type, 1.4.1.0
</comment>
<last_modification_date_time>2025-06-27</last_modification_date_time>
<!--Hierarchy of classes and attributes
mro:MRO_Parameters
mro.HiRISE_Time_Parameters
[Defined below]
mro.HiRISE_Instrument_Setting_Parameters
[Defined below]
mro.HiRISE_Temperature_Parameters
[Defined below]
mro.HiRISE_Power_Parameters
[Defined below]
mro.HiRISE_RDR_Parameters
[Defined below]
mro:CRISM_Parameters
[Defined below]
mro:SHARAD_Parameters
[Defined below]
mro:CRISM_ATO_Parameters
[Defined below]
-->
<!-- Begin definitions of MRO Mission Dictionary attributes -->
<!-- Attributes for the MRO_Parameters class, in alphabetical order:
line_prefix_bytes
line_suffix_bytes
mission_phase_name
observation_rationale
orbit_number
producer_institution_name
product_type
product_version_id
release_id
spacecraft_clock_count_partition
spacecraft_clock_start_count
spacecraft_clock_stop_count
-->
<DD_Attribute> <name>mission_phase_name</name>
<version_id>1.0</version_id>
<local_identifier>mro.mission_phase_name</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The mission_phase_name attribute provides the mission-defined name of
a time period within the mission.
</definition>
<DD_Value_Domain>
<enumeration_flag>true</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<DD_Permissible_Value>
<value>Launch</value>
<value_meaning>2005-08-12 to 2005-08-12</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Cruise</value>
<value_meaning>2005-08-12 to 2006-01-10</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Approach and Orbit Insertion</value>
<value_meaning>2006-01-10 to 2006-03-10</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Aerobraking</value>
<value_meaning>2006-03-17 to 2006-11-07</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Primary Science</value>
<value_meaning>2006-11-08 to 2008-11-08</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Science</value>
<value_meaning>2008-11-09 to 2010-09-30</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Mission 1</value>
<value_meaning>2010-10-01 to 2012-09-30</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Mission 2</value>
<value_meaning>2012-10-01 to 2014-09-30</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Mission 3</value>
<value_meaning>2014-10-01 to 2016-09-30</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Mission 4</value>
<value_meaning>2016-10-01 to 2019-09-30</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Mission 5</value>
<value_meaning>2019-10-01 to 2022-09-30</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Extended Mission 6</value>
<value_meaning>2022-10-01 to 2025-09-30</value_meaning>
</DD_Permissible_Value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute>
<name>observation_rationale</name>
<version_id>1.0</version_id>
<local_identifier>mro.observation_rationale</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>IMG</submitter_name>
<definition>
The observation_rationale attribute identifies the name of the specific
feature on Mars that was targeted by the observation.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>orbit_number</name>
<version_id>1.0</version_id>
<local_identifier>mro.orbit_number</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The orbit_number attribute identifies the orbit number when the observation was taken.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_NonNegative_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>producer_institution_name</name>
<version_id>1.0</version_id>
<local_identifier>mro.producer_institution_name</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The producer_institution_name attribute identifies the name of the institution that created the data product.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>product_type</name>
<version_id>1.0</version_id>
<local_identifier>mro.product_type</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The product_type attribute identifies the type of data product.
</definition>
<DD_Value_Domain>
<enumeration_flag>true</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<DD_Permissible_Value>
<value>EDR</value>
<value_meaning>Experiment Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>RDR</value>
<value_meaning>Reduced Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>CDR</value>
<value_meaning>Calibrated Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>DDR</value>
<value_meaning>Derived Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MTRDR</value>
<value_meaning>Map-Projected Targeted Reduced Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TER</value>
<value_meaning>Targeted Empirical Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TRDR</value>
<value_meaning>Targeted Reduced Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>LDR</value>
<value_meaning>Limb Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MRDR</value>
<value_meaning>Multispectral Reduced Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MTRDR_Browse</value>
<value_meaning>Map-Projected Targeted Reduced Data Record - Browse</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MTRDR_Extras</value>
<value_meaning>Map-Projected Targeted Reduced Data Record - Extras</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TER_Browse</value>
<value_meaning>Targeted Empirical Record - Browse</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TER_Extras</value>
<value_meaning>Targeted Empirical Record - Extras</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TRDR_Extras</value>
<value_meaning>Targeted Reduced Data Record - Extras</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TRDR_Browse</value>
<value_meaning>Targeted Reduced Data Record - Browse</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>VRDR</value>
<value_meaning>VNIR Hyperspectral Reduced Data Record</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>VRDR_Browse</value>
<value_meaning>VNIR Hyperspectral Reduced Data Record - Browse</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>DTM</value>
<value_meaning>Digital Terrain Model</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>ORTHOIMAGE</value>
<value_meaning>Image orthorectified to a digital terrain model</value_meaning>
</DD_Permissible_Value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>product_version_id</name>
<version_id>1.0</version_id>
<local_identifier>mro.product_version_id</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The product_version_id element identifies the version of an individual data product.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>release_id</name>
<version_id>1.0</version_id>
<local_identifier>mro.release_id</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Susan Slavney</submitter_name>
<definition>release_id is the identifier of a scheduled release of MRO data from PDS. The
first MRO data release has release_number "0001". The release_number for a given product is always the
first release in which it appears, and does not change if the product is revised
later.</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<minimum_characters>1</minimum_characters>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>spacecraft_clock_count_partition</name>
<version_id>1.0</version_id>
<local_identifier>mro.spacecraft_clock_count_partition</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The spacecraft_clock_count_partition attribute indicates the clock
partition active for the spacecraft_clock_start_count and
spacecraft_clock_stop_count attributes.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_NonNegative_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>spacecraft_clock_start_count</name>
<version_id>1.0</version_id>
<local_identifier>mro.spacecraft_clock_start_count</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>The spacecraft_clock_start_count attribute provides the value
of the spacecraft clock at the beginning of a time period of
interest.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<pattern>([0-9]{1,2}/)?[0-9]{1,10}(:[0-9]{1,6})?</pattern>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>spacecraft_clock_stop_count</name>
<version_id>1.0</version_id>
<local_identifier>mro.spacecraft_clock_stop_count</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>The spacecraft_clock_stop_count attribute provides the value of the spacecraft
clock at the end of a time period of interest.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<pattern>([0-9]{1,2}/)?[0-9]{1,10}(:[0-9]{1,6})?</pattern>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute>
<name>line_prefix_bytes</name>
<version_id>1.0</version_id>
<local_identifier>mro.line_prefix_bytes</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>IMG</submitter_name>
<definition>
The line prefix bytes attribute reports the number of bytes that precede the
observational data for each line of a HiRISE or CTX image. For HiRISE, the prefix
includes 6 bytes of line identification information and the values of 12 buffer pixels,
which contain the value of empty pixels after going through the instrument electronics.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_NonNegative_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute>
<name>line_suffix_bytes</name>
<version_id>1.0</version_id>
<local_identifier>mro.line_suffix_bytes</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>IMG</submitter_name>
<definition>
The line suffix bytes attribute reports the number of bytes that follow the
observational data for each line of a HiRISE or CTX image. For HiRISE, the suffix
contains 16 dark reference pixel values produced by masked detectors.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_NonNegative_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<!-- End attribute definitions for the MRO_Parameters class. -->
<!-- Attribute definitions for the CRISM_Parameters class, in alphabetical order:
activity_id
band_name
band_sequence_number
detector_temperature
exposure_parameter
fpe_temperature
fram_stat_iqr_conf_lvl
fram_stat_median_box_width
fram_stat_median_conf_lvl
fram_stat_min_deviation
frame_rate
hdf_software_name
hdf_software_version_id
if_max_value
if_min_value
ikf_confidence_level_r1
ikf_confidence_level_r2
ikf_kernel_size_x_r1
ikf_kernel_size_x_r2
ikf_kernel_size_y_r1
ikf_kernel_size_y_r2
ikf_kernel_size_z_r1
ikf_kernel_size_z_r2
ikf_model_order_x_r1
ikf_model_order_x_r2
ikf_model_order_y_r1
ikf_model_order_y_r2
ikf_model_order_z_r1
ikf_model_order_z_r2
ikf_num_regions
ikf_start_channel_r1
ikf_start_channel_r2
ikf_stop_channel_r1
ikf_stop_channel_r2
ikf_weighting_stddev_r1
ikf_weighting_stddev_r2
instrument_pointing_mode
inv_lookup_table_file_name
log_xform_neg_clip_value
observation_id
observation_number
observation_type
optical_bench_temperature
pixel_proc_file_name
refz_median_box_width
refz_smooth_box_width
rsc_ref_xy_median_width
rsc_ref_xy_smooth_width
rsc_ref_yz_median_width
rsc_ref_yz_smooth_width
rsc_ratio_xy_median_width
rsc_ratio_xy_smooth_width
rsc_res_xy_ply_order
rsc_res_xy_ply_extnd_width
sampling_mode_id
scaling_factor
scan_mode_id
sensor_id
spectrometer_housing_temperature
sphere_temperature
trace_max_value
trace_min_value
value_offset
wavelength_file_name
wavelength_filter
-->
<DD_Attribute> <name>activity_id</name>
<version_id>1.0</version_id>
<local_identifier>mro.activity_id</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The activity_id attribute describes the type of measurement contained in
a CRISM EDR or other data product, and provides indication of how the
observation is commanded. The format of the value is AC### where AC is a
2-letter designation of the type of measurement made, and ### is a
3-numeral designation of the instrument command macro that was executed
to acquire the data. Macro numbers are in the range 0-255.
For EDRs, BI is measurement of detector bias, DF is a measurement of
background including dark current and thermal background, LP is
measurement of a focal plane lamp, SP is measurement of the internal
integrating sphere, and SC is measurement of an external scene. TP
indicates that the EDR contains any test pattern produced by instrument
electronics. T1 through T7 specify the test pattern, test pattern 1
through test pattern 7. UN indicates that the EDR contains data in
which housekeeping does not match the commanded instrument
configuration.
For an RDR, RA indicates that the file contains values in units of
radiance (W m^-2 nm^-1 sr^-1). IF indicates that the file contains
values in units of I/F, or radiance divided by solar flux scaled for
heliocentric distance. AL indicates that the file contains values as
estimated Labert albedo, which is I/F corrected for cosine of incidence
angle and for atmospheric and thermal effects. SU indicates that the
files contains summary parameters, unitless values derived from Lambert
albedo.
For an RDR or a DDR, DE indicates that the files contains derived values
related to observation geometry or independently characterized
properties of the scene.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>band_name</name>
<version_id>1.0</version_id>
<local_identifier>mro.band_name</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Susan Slavney</submitter_name>
<definition>Identifies the name of the CRISM band associated with the specific scaling and
offset parameters used in a CRISM browse product.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>band_sequence_number</name>
<version_id>1.0</version_id>
<local_identifier>mro.band_sequence_number</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Susan Slavney</submitter_name>
<definition>Defines the order of the CRISM bands along the Axis_Array when axis_name is band.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
<minimum_value>1</minimum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>detector_temperature</name>
<version_id>1.0</version_id>
<local_identifier>mro.detector_temperature</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The detector_temperature attribute provides the temperature of the
CRISM IR detector (if sensor_id = 'L'), or the VNIR detector (if
sensor_id = 'S'). On each detector there are two temperature
sensors. The primary source of IR detector temperature is IR temperature
sensor 1 (column 50 in the EDR list file). The backup source of IR
detector temperature is IR temperature sensor 2 (column 51 in the EDR
list file). The primary source of VNIR detector temperature is VNIR
temperature sensor 2 (column 65 in the EDR list file). The backup source
of VNIR detector temperature is VNIR temperature sensor 1 (column 64 in
the EDR list file).
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<unit_of_measure_type>Units_of_Temperature</unit_of_measure_type>
<specified_unit_id>K</specified_unit_id>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>exposure_parameter</name>
<version_id>1.0</version_id>
<local_identifier>mro.exposure_parameter</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The exposure_parameter attribute identifies the value supplied to the CRISM
instrument to command the exposure time. At a given frame rate identified in
frame_rate, there are 480 possible exposure times ranging from 1 to 480. An
exposure parameter of 480 yields an exposure time equal to the inverse of the
frame rate. An exposure time parameter of 1 yields an exposure time 1/480 as
large. For example, at a frame rate of 3.75 Hz, an exposure time parameter of
480 yields an exposure time of 0.26667 sec, whereas an exposure time parameter
of 1 yields and exposure time of 0.00056 sec. This parameter is included
independently of the exposure time itself because some of the Calibration Data
Records (CDRs) are applicable to data taken at a particular exposure parameter.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
<minimum_value>1</minimum_value>
<maximum_value>480</maximum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>fpe_temperature</name>
<version_id>1.0</version_id>
<local_identifier>mro.fpe_temperature</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The fpe_temperature attribute provides the temperature of the
HiRISE or CRISM instrument's Focal Plane Electronics in degrees
Celsius. For HiRISE, see Figure 2.3, MRO HiRISE EDR SIS, REFKEYID
JPLD-32004. For CRISM, the value refers to the focal plane
electronics board mounted in the base of the gimbal. The values
represents IR focal plane electronics if sensor_id = 'L', and
to the VNIR focal plane electronics if sensor_id = 'S'. The
source of CRISM IR focal plane electronics temperature is column
60 in the EDR list file. The source of VNIR focal plane
electronics temperature is column 71 in the EDR list file.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<unit_of_measure_type>Units_of_Temperature</unit_of_measure_type>
<specified_unit_id>K</specified_unit_id>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>fram_stat_iqr_conf_lvl</name>
<version_id>1.0</version_id>
<local_identifier>mro.fram_stat_iqr_conf_lvl</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The fram_stat_iqr_conf_lvl attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the confidence level parameter
associated with the Grubb's Test used for outlier detection of attributes of the normalized median profile
of the frame interquartile range in the detection of bad frames during the preprocessing steps. Typical
values are near 0.95.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<minimum_value>0</minimum_value>
<maximum_value>1</maximum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>fram_stat_median_box_width</name>
<version_id>1.0</version_id>
<local_identifier>mro.fram_stat_median_box_width</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The fram_stat_median_box_width attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the kernel size of a median
filter used on the frame median profile in the computation of bad frames during preprocessing steps.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>fram_stat_median_conf_lvl</name>
<version_id>1.0</version_id>
<local_identifier>mro.fram_stat_median_conf_lvl</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The fram_stat_median_conf_lvl attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the confidence level parameter
associated with the Grubb's Test used for outlier detection of attributes of the normalized median frame
profile in the detection of bad frames during the preprocessing steps. Typical values are near 0.95.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<minimum_value>0</minimum_value>
<maximum_value>1</maximum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>fram_stat_min_deviation</name>
<version_id>1.0</version_id>
<local_identifier>mro.fram_stat_min_deviation</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The fram_stat_min_deviation attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the minimum deviation from
the mean of an attribute of the normalized frame median profile necessary to be classified as a bad frame
during the preprocessing steps.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<minimum_value>0</minimum_value>
<maximum_value>1</maximum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>frame_rate</name>
<version_id>1.0</version_id>
<local_identifier>mro.frame_rate</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The frame_rate attribute identifies the rate at which frames of data in a CRISM EDR were returned.
</definition>
<DD_Value_Domain>
<enumeration_flag>true</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<unit_of_measure_type>Units_of_Frame_Rate</unit_of_measure_type>
<specified_unit_id>Hz</specified_unit_id>
<DD_Permissible_Value>
<value>1.0</value>
<value_meaning>The frame rate is 1.0 Hz.</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>3.75</value>
<value_meaning>The frame rate is 3.75 Hz.</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>5.0</value>
<value_meaning>The frame rate is 5.0 Hz.</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>15.0</value>
<value_meaning>The frame rate is 15.0 Hz.</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>30.0</value>
<value_meaning>The frame rate is 30.0 Hz.</value_meaning>
</DD_Permissible_Value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>hdf_software_version_id</name>
<version_id>1.0</version_id>
<local_identifier>mro.hdf_software_version_id</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The hdf_software_version_id attribute indicates the version of the software used by the CRISM hyperspectral data
filter application.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>hdf_software_name</name>
<version_id>1.0</version_id>
<local_identifier>mro.hdf_software_name</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The hdf_software_name attribute provides the name of the CRISM hyperspectral data filter software used to
process radiance TRDR data into I/F.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>if_max_value</name>
<version_id>1.0</version_id>
<local_identifier>mro.if_max_value</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The if_max_value attribute is one of the control parameters for the CRISM hyperspectral data filtering
application used to convert TRR3 radiance data to I/F and indicates the maximum valid value in units of I/F.
Values outside of the valid range of I/F values are ignored during preprocessing steps.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>if_min_value</name>
<version_id>1.0</version_id>
<local_identifier>mro.if_min_value</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The if_min_value attribute is one of the control parameters for the CRISM hyperspectral data filtering
application used to convert TRR3 radiance data to I/F and indicates the minimum valid value in units of I/F.
Values outside of the valid range of I/F values are ignored during preprocessing steps.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_confidence_level_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_confidence_level_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_confidence_level_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the confidence level parameter
associated with the Grubb's Test used for outlier detection of attributes of the model residuals in the
Iterative Kernel Filter procedure. Spectral region 1. Typical values are near 0.95.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<minimum_value>0</minimum_value>
<maximum_value>1</maximum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_confidence_level_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_confidence_level_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_confidence_level_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the confidence level parameter
associated with the Grubb's Test used for outlier detection of attributes of the model residuals in the
Iterative Kernel Filter procedure. Spectral region 2. Typical values are near 0.95.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
<minimum_value>0</minimum_value>
<maximum_value>1</maximum_value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_kernel_size_x_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_kernel_size_x_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_kernel_size_x_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the size of the kernel in the
X direction used in the Iterative Kernel Filter procedure. Spectral region 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_kernel_size_x_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_kernel_size_x_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_kernel_size_x_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the size of the kernel in the
X direction used in the Iterative Kernel Filter procedure. Spectral region 2.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_kernel_size_y_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_kernel_size_y_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_kernel_size_y_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the size of the kernel in the
Y direction used in the Iterative Kernel Filter procedure. Spectral region 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_kernel_size_y_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_kernel_size_y_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_kernel_size_y_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the size of the kernel in the
Y direction used in the Iterative Kernel Filter procedure. Spectral region 2.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_kernel_size_z_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_kernel_size_z_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_kernel_size_z_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the size of the kernel in the
Z direction used in the Iterative Kernel Filter procedure. Spectral region 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_kernel_size_z_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_kernel_size_z_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_kernel_size_z_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the size of the kernel in the
Z direction used in the Iterative Kernel Filter procedure. Spectral region 2.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_model_order_x_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_model_order_x_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_model_order_x_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the dimensionality of the
model in the X direction used in the Iterative Kernel Filter procedure. Spectral region 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_model_order_x_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_model_order_x_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_model_order_x_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the dimensionality of the
model in the X direction used in the Iterative Kernel Filter procedure. Spectral region 2.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_model_order_y_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_model_order_y_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_model_order_y_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the dimensionality of the
model in the Y direction used in the Iterative Kernel Filter procedure. Spectral region 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_model_order_y_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_model_order_y_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_model_order_y_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the dimensionality of the
model in the Y direction used in the Iterative Kernel Filter procedure. Spectral region 2.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_model_order_z_r1</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_model_order_z_r1</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_model_order_z_r1 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the dimensionality of the
model in the Z direction used in the Iterative Kernel Filter procedure. Spectral region 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_model_order_z_r2</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_model_order_z_r2</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_model_order_z_r2 attribute is one of the control parameters for the CRISM hyperspectral data
filtering application used to convert TRR3 radiance data to I/F and indicates the dimensionality of the
model in the Z direction used in the Iterative Kernel Filter procedure. Spectral region 2.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>ikf_num_regions</name>
<version_id>1.0</version_id>
<local_identifier>mro.ikf_num_regions</local_identifier>
<nillable_flag>true</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The ikf_num_regions attribute is one of the control parameters for the CRISM hyperspectral data filtering
application used to convert TRR3 radiance data to I/F and indicates the number of spectral regions
identified for the application of the Iterative Kernel Filter procedure.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>