forked from pds-data-dictionaries/ldd-mro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPDS4_MRO_IngestLDD.xml
6695 lines (6597 loc) · 303 KB
/
PDS4_MRO_IngestLDD.xml
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_1I00.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_1I00.xsd">
<name>MRO</name>
<ldd_version_id>1.2.2.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.2.1.0
PDS Build 1.18.0.0 (1I00)
LDDTool version 14.0.13
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 ([email protected]) added HiRISE parameters, bumped to 1.2.0.0
2023-03-23 PG ([email protected]) 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 ([email protected]) added observation_rationale attribute for HiRISE,
bump to 1.2.2.0
</comment>
<last_modification_date_time>2023-08-31T15:52</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:
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_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]{3,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]{3,6})?</pattern>
</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
fpe_temperature
observation_id
observation_number
observation_type
optical_bench_temperature
scaling_factor
sensor_id
spectrometer_housing_temperature
sphere_temperature
value_offset
-->
<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>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>observation_id</name>
<version_id>1.0</version_id>
<local_identifier>mro.observation_id</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The observation_id attribute is a 8-byte hexadecimal integer uniquely
identifying 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>observation_number</name>
<version_id>1.0</version_id>
<local_identifier>mro.observation_number</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The observation_number attribute gives the monotonically increasing
ordinal counter of the EDRs generated for a particular CRISM
observation_id. CRISM generates several EDRs for a given observation_id.
</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>observation_type</name>
<version_id>1.0</version_id>
<local_identifier>mro.observation_type</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The observation_type attribute identifies the general type of observation.
</definition>
<DD_Value_Domain>
<enumeration_flag>true</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<DD_Permissible_Value>
<value>FRT</value>
<value_meaning>Full Resolution Targeted Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>HRL</value>
<value_meaning>Half Resolution Long Targeted Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>HRS</value>
<value_meaning>Half Resolution Short Targeted Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>FRS</value>
<value_meaning>Full Resolution Short Targeted Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>ATO</value>
<value_meaning>Along-track Oversampled Targeted Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>ATU</value>
<value_meaning>Along-track Undersampled Targeted Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>EPF</value>
<value_meaning>Atmospheric Survey Emission Phase Function</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>TOD</value>
<value_meaning>Tracking Optical Depth Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>LMB</value>
<value_meaning>Limb Scan Observation</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MSP</value>
<value_meaning>Multispectral Survey, losslessly compressed</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>HSP</value>
<value_meaning>Hyperspectral Survey, losslessly compressed</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>HSV</value>
<value_meaning>Hyperspectral Survey, VNIR only, pixels 10x-binned</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MSV</value>
<value_meaning>Hyperspectral Survey, VNIR only, pixels 5x-binned</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>MSW</value>
<value_meaning>Multispectral Window</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>FFC</value>
<value_meaning>Flat Field Calibration</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>CAL</value>
<value_meaning>Radiometric Calibration</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>ICL</value>
<value_meaning>Calibration source intercalibration</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>FUN</value>
<value_meaning>Functional test</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>UNK</value>
<value_meaning>No valid EDRs within observation that indicate class type</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>STO</value>
<value_meaning>Star Observation</value_meaning>
</DD_Permissible_Value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>optical_bench_temperature</name>
<version_id>1.0</version_id>
<local_identifier>mro.optical_bench_temperature</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The optical_bench_temperature attribute provides the temperature of
the CRISM optical bench. It is a backup to sphere_temperature for
modeling the output radiance of the onboard integrating sphere as a
function of sphere temperature.
</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>scaling_factor</name>
<version_id>1.0</version_id>
<local_identifier>mro.scaling_factor</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Susan Slavney</submitter_name>
<definition>The scaling_factor attribute is the scaling factor to be applied to each stored value
in order to recover an original value. The observed value (Ov) is calculated from the
stored value (Sv) thus: Ov = (Sv * scaling_factor) + value_offset.
</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>sensor_id</name>
<version_id>1.0</version_id>
<local_identifier>mro.sensor_id</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The sensor_id attribute identifies the CRISM focal plane from
which data in an EDR or RDR were returned; S = short-wavelength
or VNIR, L = long-wavelength or IR, J = joint where a data
product is applicable to either.
</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>spectrometer_housing_temperature</name>
<version_id>1.0</version_id>
<local_identifier>mro.spectrometer_housing_temperature</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The spectrometer_housing_temperature attribute gives the temperature of the
CRISM spectrometer housing. This is a backup to direct determination,
using measurements with the shutter closed, of the thermal background
measured by the IR detector. The primary source of this temperature is a
measurement digitized by the VNIR focal plane electronics, column 58 in
the EDR list file. The backup source of this temperature is a
measurement digitized by the IR focal plane electronics, column 69 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>sphere_temperature</name>
<version_id>1.0</version_id>
<local_identifier>mro.sphere_temperature</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>GEO</submitter_name>
<definition>
The sphere_temperature attribute gives the temperature of the CRISM
onboard integrating sphere. It is used for modeling the output radiance
of the sphere as a function of sphere temperature.
</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>value_offset</name>
<version_id>1.0</version_id>
<local_identifier>mro.value_offset</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Susan Slavney</submitter_name>
<definition>The value_offset attribute is the offset to be applied to each stored value in order to
recover an original value. The observed value (Ov) is calculated from the
stored value (Sv) thus: Ov = (Sv * scaling_factor) + value_offset.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Real</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<!-- End attribute definitions for the CRISM_Parameters class. -->
<!-- Attribute definitions for the SHARAD_Parameters class, in alphabetical order:
array_first_value
array_interval
array_last_value
array_scale
array_unit
name
-->
<DD_Attribute> <name>array_first_value</name>
<version_id>1.0</version_id>
<local_identifier>mro.array_first_value</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Jennifer Ward</submitter_name>
<definition>The array_first_value element provides the first value in an ascending
series and is therefore the minimum value at which a given data item was sampled.
</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>array_interval</name>
<version_id>1.0</version_id>
<local_identifier>mro.array_interval</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Jennifer Ward</submitter_name>
<definition>The array_interval attribute provides the spacing of points at which data
are sampled and at which values for an instrument or other parameter are available.
If x1 and xn are the first and last sampling parameter values, respectively, xn
is larger than x1, n is the number of sampling parameters, the caret symbol (^)
denotes exponentiation, and b, a positive real number, is the base for
exponentiation, then the value of sampling_parameter_interval is: (xn-x1)/(n-1)
(for sampling_parameter_scale = Linear), (xn/x1)^(1/(n-1)) (for
sampling_parameter_scale = Logarithmic), (b^xn-b^x1)/(n-1) (for
sampling_parameter_scale = Exponential).
</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>array_last_value</name>
<version_id>1.0</version_id>
<local_identifier>mro.array_last_value</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Jennifer Ward</submitter_name>
<definition>The array_last_value element provides the last value in an ascending
series and is therefore the maximum value at which a given data item was sampled.
</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>array_scale</name>
<version_id>1.0</version_id>
<local_identifier>mro.array_scale</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Jennifer Ward</submitter_name>
<definition>The array_scale attribute specifies whether the sampling interval is linear or
something other such as logarithmic.
</definition>
<DD_Value_Domain>
<enumeration_flag>true</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
<DD_Permissible_Value>
<value>Linear</value>
<value_meaning>Values of Uniformly Sampled are given at uniform (linear) spacings
of an independent variable - for example, 1, 2, 3, 4, ...
</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Exponential</value>
<value_meaning>The values of the independent variable in exponential uniformly
sampled data are given at uniform spacing of the exponential of some base b,
a positive real number. That is, for independent variable x in the range [x1,
xn], the sampling points xj satisfy: b^xj = b^x1 + (j-1)(b^xn - b^x1)/(n-1)
for j = 1 ... n where the caret symbol (^) denotes exponentiation. For
example, if the independent variable has values 0., 0.30103, 0.47712,
0.60206, ... and the base is 10, then the Exponential Uniformly Spaced data
are given at 10^0., 10^0.30103, 10^0.47712, 10^0.60206, ... or 1, 2, 3, 4, ...
</value_meaning>
</DD_Permissible_Value>
<DD_Permissible_Value>
<value>Logarithmic</value>
<value_meaning>The values of the independent variable, x, in logarithmic uniformly
sampled data are given at uniform spacing of the logarithm of x in some base,
b, a positive real number. That is, for independent variable x in the range
[x1, xn], the sampling points xj satisfy: log_b(xj) = log_b(x1) +
(j-1)(log_b(xn) - log_b(x1))/(n-1) for j = 1 ... n where log_b(x) is the log
of x in base b. For example, if the independent variable has values 1, 10,
100, 1000, ... and the base is 10, then the Logarithmic Uniformly Spaced data
are given at 0, 1, 2, 3 ...
</value_meaning>
</DD_Permissible_Value>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute> <name>array_unit</name>
<version_id>1.0</version_id>
<local_identifier>mro.array_unit</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Jennifer Ward</submitter_name>
<definition>The array_unit element specifies the unit of measure of associated data
sampling parameters.
</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>name</name>
<version_id>1.0</version_id>
<local_identifier>mro.name</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Jennifer Ward</submitter_name>
<definition>The name element provides the name of the parameter which determines the
sampling interval of a particular instrument or dataset parameter. For example,
magnetic field intensity is sampled in time increments, and a spectrum is sampled
in wavelength or frequency.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Short_String_Collapsed</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<!-- End attribute definitions for the SHARAD_Parameters class. -->
<!-- Attribute definitions for the CRISM_ATO_Parameters class, in alphabetical order:
max_sample
max_line
min_sample
min_line
-->
<DD_Attribute> <name>max_sample</name>
<version_id>1.0</version_id>
<local_identifier>mro.ato.max_sample</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Daniel Politte</submitter_name>
<definition>The index of the highest-numbered sample/column of this product relative to the original CRISM scene. The first sample of the original CRISM scene corresponds to a value of 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>max_line</name>
<version_id>1.0</version_id>
<local_identifier>mro.ato.max_line</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Daniel Politte</submitter_name>
<definition>The index of the highest-numbered line/row of this product relative to the original CRISM scene. The first line of the original CRISM scene corresponds to a value of 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>min_sample</name>
<version_id>1.0</version_id>
<local_identifier>mro.ato.min_sample</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Daniel Politte</submitter_name>
<definition>The index of the lowest-numbered sample/column of this product relative to the original CRISM scene. The first sample of the original CRISM scene corresponds to a value of 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>min_line</name>
<version_id>1.0</version_id>
<local_identifier>mro.ato.min_line</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>Daniel Politte</submitter_name>
<definition>The index of the lowest-numbered line/row of this product relative to the original CRISM scene. The first line of the original CRISM scene corresponds to a value of 1.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Integer</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<!-- End attribute definitions for the CRISM_ATO_Parameters class. -->
<!-- Attribute definitions for the HiRISE_Time_Parameters class, in alphabetical order:
observation_start_time
readout_start_count
readout_start_time
-->
<DD_Attribute> <name>observation_start_time</name>
<version_id>1.0</version_id>
<local_identifier>mro.observation_start_time</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>IMG</submitter_name>
<definition>
The observation_start_time attribute provides the UTC start time
of a HiRISE image acquisition sequence.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Date_Time_YMD_UTC</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<DD_Attribute><name>readout_start_count</name>
<version_id>1.0</version_id>
<local_identifier>mro.readout_start_count</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>IMG</submitter_name>
<definition>
The readout_start_count attribute provides the spacecraft clock count
when the HiRISE CCD Process/Memory Module begins transferring image data
out of its buffer memory.
</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>readout_start_time</name>
<version_id>1.0</version_id>
<local_identifier>mro.readout_start_time</local_identifier>
<nillable_flag>false</nillable_flag>
<submitter_name>IMG</submitter_name>
<definition>
The readout_start_time attribute provides the UTC time when the HiRISE
CCD Process/Memory Module begins transferring image data out of buffer
memory.
</definition>
<DD_Value_Domain>
<enumeration_flag>false</enumeration_flag>
<value_data_type>ASCII_Date_Time_YMD_UTC</value_data_type>
</DD_Value_Domain>
</DD_Attribute>
<!-- End attribute definitions for the HiRISE_Time_Parameters class. -->
<!-- Attribute definitions for the HiRISE_Instrument_Setting_Parameters class, in alphabetical order:
adc_timing_settings_image
adc_timing_settings_reset
binning
channel_number
cpmm_number
delta_line_timer_count
dll_frequency_correct_count
dll_locked_flag_01
dll_locked_flag_02
dll_locked_once_flag_01
dll_locked_once_flag_02
dll_reset_count
felics_compression_flag
focus_position_count
heater_control_flag_01
heater_control_flag_02
heater_control_flag_03
heater_control_flag_04
heater_control_flag_05
heater_control_flag_06
heater_control_flag_07
heater_control_flag_08
heater_control_flag_09
heater_control_flag_10
heater_control_flag_11
heater_control_flag_12
heater_control_flag_13
heater_control_flag_14
heater_control_mode
image_exposure_duration
line_exposure_duration
lookup_table_k_value
lookup_table_maximum
lookup_table_median
lookup_table_minimum
lookup_table_number
lookup_table_type
powered_cpmm_flag_01
powered_cpmm_flag_02
powered_cpmm_flag_03
powered_cpmm_flag_04
powered_cpmm_flag_05
powered_cpmm_flag_06
powered_cpmm_flag_07
powered_cpmm_flag_08
powered_cpmm_flag_09
powered_cpmm_flag_10
powered_cpmm_flag_11
powered_cpmm_flag_12
powered_cpmm_flag_13
powered_cpmm_flag_14
scan_exposure_duration
stimulation_lamp_flag_01
stimulation_lamp_flag_02
stimulation_lamp_flag_03
tdi
trim_lines