-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterms.json
More file actions
7471 lines (7471 loc) · 457 KB
/
terms.json
File metadata and controls
7471 lines (7471 loc) · 457 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
[
{
"term": "Entity",
"tags": "- base\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Something that has separate and distinct existence and objective or conceptual reality.",
"notes": "",
"examples": "",
"sources": "- ISO 19119:2016, 4.1.6"
},
{
"definition_no": 2,
"definition": "Government or business organization that is formed to conduct business or represent the government of the day.",
"notes": "",
"examples": "CEOS Entities include Working Groups, Virtual Constellations, etc.",
"sources": "- WGISS Shared Collection Lifecycle Management Principles for Earth Observation Data"
}
]
},
{
"term": "Accuracy",
"tags": "- core\n- to be approved\n- calval ingest\n- WGCV\n- WGISS",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Closeness of agreement between a measured quantity value and a true quantity value of a measurand.",
"notes": "- In essence, Accuracy reflects how close measurements are to the accepted Value, while precision gauges the reliability and consistency of those measurements.",
"examples": "",
"sources": "- BS ISO 5725-1"
},
{
"definition_no": 2,
"definition": "Closeness of agreement between a measured quantity value and a true quantity value of a measurand.",
"notes": "",
"examples": "",
"sources": "- VIM [ [RD18](https://www.bipm.org/en/publications/guides/vim.html) ], GUM [ [RD4](https://www.bipm.org/utils/common/documents/jcgm/JCGM_100_2008_E.pdf) ]\n- Definitions used in other communities\n- ACIX community\n- [Community, not standard, definition]\n- Used in the atmospheric correction community to represent the average difference between the modelled and measured quantities"
}
]
},
{
"term": "Climate Indices",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Diagnostic time series representing the state of a climate system, derived from specific atmospheric or oceanic variables.",
"notes": "",
"examples": "",
"sources": "- [Columbia University](http://iridl.ldeo.columbia.edu/dochelp/StatTutorial/Homogeneity/index.html)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Area of Representativeness",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "Volume of Representativeness",
"definitions": [
{
"definition_no": 1,
"definition": "Area (or volume) where concentration does not deviate from the station value by more than a specified range.",
"notes": "",
"examples": "",
"sources": "- Larssen [ [RD12](https://www.eea.europa.eu/publications/TEC12) ]"
}
]
},
{
"term": "Product",
"tags": "- core\n- to be approved\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Electronic data package distributable to users; content is derived from instrument data via processing involving ancillary and auxiliary data.",
"notes": "- Products may be accompanied by metadata and browse images.\n- A Product may be part of a collection — a distinction useful for archiving and cataloguing purposes.\n- The term Product may be used to denote a product type, such as e.g. ENVISAT_ASAR_L1B_PRI data products.\n- End users may distinguish between (input, \"raw\") data and products, i.e., the derived geophysical parameters.\n- See also granule.",
"examples": "",
"sources": "- [EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)"
},
{
"definition_no": 2,
"definition": "Output of an organization distributable to users without transaction, derived from instrument data via processing with ancillary data, and may include metadata and browse images.",
"notes": "",
"examples": "",
"sources": "- ISO:9000 [ [RD7](https://www.iso.org/standard/45481.html) ]\n- RD7: ISO 9000:2015(en), Quality management systems - Fundamentals and vocabulary\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Artifact",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "- A physical object that is made or modified by human culture\n- a three-dimensional object held in an archives\n- a library or archival resource that has value as a physical object in addition to its informational value\n- an anomaly in data that results from the methodology used to capture or analyze the data, or that was introduced or produced during a procedure",
"notes": "from NIST: A piece of evidence, such as text or a reference to a resource, that is submitted to support a response to a question.",
"examples": "",
"sources": "- [https://dictionary.archivists.org/](https://dictionary.archivists.org/)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Stability",
"tags": "- core\n- to be approved\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Maximum acceptable change in Uncertainty per decade.",
"notes": "- GCOS uses bias or systematic errors instead of Uncertainty.",
"examples": "",
"sources": "- Modified from GCOS 2022"
},
{
"definition_no": 2,
"definition": "Property of a measuring instrument, whereby its metrological properties remain constant in time",
"notes": "",
"examples": "",
"sources": "- VIM/ISO:99 [ [RD18](https://www.bipm.org/en/publications/guides/vim.html) ]"
}
]
},
{
"term": "Classification System",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Nomenclature used to classify Information into categorical thematic classes (e.g., EUNIS, MAES ecosystems, Corine Land Cover, LCCS).",
"notes": "",
"examples": "",
"sources": "- KCEO"
}
]
},
{
"term": "Authorization of Use",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Official management decision to authorize use of an information system based on an authorization package and accepted risk to operations, assets, and reputation.",
"notes": "",
"examples": "",
"sources": "- [NIST SP 800-37 Rev. 2](https://doi.org/10.6028/NIST.SP.800-37r2)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Temporal Reporting Period",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Time Period used for reporting and for which the information should be aggregated from the native Temporal Resolution.",
"notes": "",
"examples": "| Entry format example | Valid unit |\n|----------------------|-------------------------------|\n| 1 s, 2 h, 1 d | second, hour, day, month, year |",
"sources": "- Modified WIGOS Metadata Standard 2019"
}
]
},
{
"term": "Archivist",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Professional trained in preserving original materials and facilitating access, with expertise across the records life cycle and strong research skills.",
"notes": "",
"examples": "",
"sources": "- [National Archives and Records Administration](https://www.archives.gov/about/info/whats-an-archivist.html)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Open Source",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Software with source code available under an open license, permitting free use, inspection, modification, and redistribution by users with technical capability.",
"notes": "",
"examples": "",
"sources": "- [opendatahandbook.org](https://opendatahandbook.org/)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Compliance",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "A state of being in accordance with established guidelines or specifications.",
"notes": "Compliance of an information system concerns the relationship between the behavior of that running system and some relevant legal norms: the norms specify some constraints that must be satisfied and others that must not be violated, so that we can only say that the system complies if and only if no behavior of the system fails with regards to any of these two sets of constraints.",
"examples": "",
"sources": "- [Theory of Regulatory Compliance for Requirements Engineering](https://www.researchgate.net/publication/45902050_Theory_of_Regulatory_Compliance_for_Requirements_Engineering)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "User Interface",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Set of all the components of an interactive system that provide information and controls for the User to accomplish specific tasks with the interactive system.",
"notes": "",
"examples": "",
"sources": "- ISO 9241-110:2020, 3.10"
}
]
},
{
"term": "Measurand",
"tags": "- core\n- to be approved\n- calval ingest\n- WGCV\n- WGISS",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Particular Quantity subject to Measurement.",
"notes": "",
"examples": "| Step | Process description |\n| :----- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n--- |\n| (Raw) | The complete and unaltered/unprocessed set of Data acquired by one or several sensors on a platform |\n| M/0 uncalibrated | Unaltered/unprocessed Level 0 (main) Sensor Data annotated with processed Ancillary Data and supplemented by Auxiliary Data (including radiometric and geometric Calibration coefficients and geo-referencing parameters) allowing further processing to higher Levels. |\n| M/1 Sensor-calibrated | Level M/0 Sensor Data which have been calibrated (ideally traceable to SI) and spatially aligned (co-located, eventually co-gridded) to represent at-Sensor measurements (Value and Uncertainty) in Sensor nominal spatiotemporal sampling, supplemented by appropriate ancillary data. |\n| M/2 target-calibrated | Level M/1 Data processed to represent geophysical Property values (and uncertainties) for a specified target (Object, Feature of interest, e.g. surface reflectance, apparent temperature) derived from M/1 Sensor Data, as much as possible maintaining the sensors nominal spatial and temporal sampling (Observation preserving). |\n| M/3 homogenised | Level M/1 or M/2 Data which have been generalised and integrated across one or several platforms and acquisitions to achieve an increased, more regular or in any other form enhanced spatial or temporal coverage in which states geophysical values agnostic of the originally acquiring Sensor and Observation condition and thus directly comparable. This homogenisation and fusion may include measurand re-Calibration to external standards and references including use of modelling, aggregation and interpolation. |\n| M/4 derived/inferred | Model output or results from analyses of Level M/3 (or lower level) Data i.e., attributes that might not be directly observable by the Sensor(s) but are derived from observations in combination with other external incl. non-observational Data using techniques like modelling or machine learning (AI). |\n\nFrom http://doi.org/10.2760/46796",
"sources": "- VIM: 1993, 2.6\n\n- VIM/ISO:99 [ [RD18](https://www.bipm.org/en/publications/guides/vim.html) ]"
}
]
},
{
"term": "Influence quantity",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGISS",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Quantity that affects the relation between the indication and the measurement result without affecting the measured quantity.",
"notes": "",
"examples": "",
"sources": "- VIM/ISO:99 [ [RD18](https://www.bipm.org/en/publications/guides/vim.html) ]"
}
]
},
{
"term": "Attitude Data",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Data representing spacecraft orientation, pointing, calibration, alignment, Euler angles, quaternions, rates, biases, and associated accuracy parameters.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS-WGISS Document: Auxiliary Data in the CEOS Community: Reference Guidelines Document Part 1: Current Usage (1996) accessible at wgiss.ceos.org/archive/archive.doc/ads200part1.doc](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DAttitude%2BData&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=CEOS-WGISS+Document%3A+Auxiliary+Data+in+the+CEOS+Community%3A+Reference+Guidelines+Document+Part+1%3A+Current+Usage+%281996%29+accessible+at+wgiss.ceos.org%2Farchive%2Farchive.doc%2Fads200part1.doc)"
}
]
},
{
"term": "Reformatting",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Transformation process converting data from one format to another, including reorganization, relocation, or dropping of fields, using well-defined rules to preserve information integrity.",
"notes": "Transformation: a Digital Migration in which there is an alteration to the Content Information or PDI of an Archival Information Package. For example, changing ASCII codes to UNICODE in a text document being preserved is a Transformation.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Acquisition",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Process from on-board recording and downlink to ground reconstruction of instrument source packets.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_for Review.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DAcquisition&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)"
}
]
},
{
"term": "Quarantine",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Withholding of an Earth observation product from distribution due to severe technical or quality issues.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)"
}
]
},
{
"term": "Instrumental drift",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Continuous or incremental change over time in indication, due to changes in metrological properties of a measuring instrument. Note that instrumental drift is related neither to a change in a quantity being measured nor to a change of any recognized influence quantity.",
"notes": "",
"examples": "",
"sources": "- VIM/ISO:99 [ [RD18](https://www.bipm.org/en/publications/guides/vim.html) ]"
}
]
},
{
"term": "Restituted Orbit",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "Operational Orbit",
"definitions": [
{
"definition_no": 1,
"definition": "Orbit determination using delayed telemetry data with a one-day latency, computed from a three-day moving window and typically sampled every 60 seconds with lower precision than precise orbits.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)"
}
]
},
{
"term": "Business Continuity",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "An organisation's readiness to continue functioning during times of disruption.",
"notes": "",
"examples": "",
"sources": "- [WGISS Shared Collection Lifecycle Management Principles for Earth Observation Data](https://ceos.org/document_management/Working_Groups/WGISS/Documents/Shared%20Collection%20Lifecycle%20Management%20Principles%20for%20Earth%20Observation%20Data_March2025.pdf)"
}
]
},
{
"term": "Data Dictionary",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "A formal repository of terms used to describe data. The repository should contain information for all data elements and allowed values of those elements used in metadata specifications.",
"notes": "",
"examples": "",
"sources": "- CEOS CalVal Portal"
}
]
},
{
"term": "Representation Information",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Information enabling digital data to be interpreted and used, including structural, semantic, and format descriptions, provided formally (e.g., XFDU) or informally (e.g., text).",
"notes": "Representation Information: the information that maps a Data Object into more meaningful concepts. An example is the ASCII definition that describes how a sequence of bits (i.e., a Data Object) is mapped into a symbol.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Algorithm",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Series of steps or rules for solving a problem or performing a task, especially by a computer.",
"notes": "Algorithms implemented as software are delivered to science processing system to use as primary tools in the generation of science products. The term includes executable code, source code, job control scripts, and documentation.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- Oxford library\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "On-demand data set",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Collection of products that are generated in response to a user’s request. Such products could either be pre-defined or not.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Phenomenon",
"tags": "- base\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Entity with at least one Property referenced by an identifier.",
"notes": "",
"examples": "",
"sources": "- KCEO, modified after Wikipedia and the Columbia Encyclopaedia 2008"
},
{
"definition_no": 2,
"definition": "A phenomenon is a fact or event that has\nproperties\n.\nSource:\nmodified after Wikipedia and The Columbia Encyclopedia 2008",
"notes": "",
"examples": "",
"sources": "- CEOS CalVal Portal"
}
]
},
{
"term": "Preliminary Orbit",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Preliminary orbits are based on the fast delivery tracking data. They provide an improvement of the initial knowledge of the orbit but not the optimal fit.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)"
}
]
},
{
"term": "Time of Year",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Time of the year at which the variable is observed or simulated by a model.",
"notes": "",
"examples": "| Type | Entry format example | Valid unit |\n|-----------|----------------------|----------------|\n| timestamp | m/d | Not Applicable |\n| timerange | m/d - m/d | Not Applicable |",
"sources": "- KCEO"
}
]
},
{
"term": "Data Democracy",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Describes a methodological framework of values and actions that benefit and minimize any harm to the public or the typical user.",
"notes": "A data democracy breaks down into at least six principles:\n- The average end user can access information in any digital format.\n- Non-specialists should be able to gather and analyze data or engage in self-service without requiring outside help, specifically from IT.\n- Individual private data needs to be protected, as decreed by the [General Data Protection Regulation (GDPR)](https://eugdpr.org/) .\n- Data Quality is a must.\n- Technologies such as Augmented Analytics, NoSQL, dashboards, and self-service tools, like those created by Collibra, Teradata, and Unilog, play an important part in empowering nontechnical people in a Data Democracy.\n- [Data ethics](http://www.dataversity.net/what-are-data-ethics/) need to guide data democracies.",
"examples": "",
"sources": "- [Dataversity](https://www.dataversity.net/)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Information Product",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Product formed by selecting, acquiring, evaluating, analyzing, synthesizing, assessing, restructuring, aggregating, translating, packaging, or repackaging data and information from various sources.",
"notes": "",
"examples": "",
"sources": "- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Ingestion",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Process of accepting data from sources such as ground segment reception or processing, performing quality checks, extracting metadata including browse images, and forming a data product for archiving and cataloguing.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CCSDS – LTDP discussion and agreement (telecon 22 September 2014) ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_forReview.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DIngestion&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=CCSDS+%E2%80%93+LTDP+discussion+and+agreement+%28telecon+22+September+2014%29+ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)"
}
]
},
{
"term": "Data Center",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Facility that stores, maintains, and provides access to datasets, including data selection, replication, documentation, and tailored product generation.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS-WGISS Document: Auxiliary Data in the CEOS Community: Reference Guidelines Document Part 1: Current Usage (1996) accessible at wgiss.ceos.org/archive/archive.doc/ads200part1.doc](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DData%2BCenter&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=CEOS-WGISS+Document%3A+Auxiliary+Data+in+the+CEOS+Community%3A+Reference+Guidelines+Document+Part+1%3A+Current+Usage+%281996%29+accessible+at+wgiss.ceos.org%2Farchive%2Farchive.doc%2Fads200part1.doc)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Ad-hoc Order",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "A request that is generated by a Consumer for information the OAIS has indicated is currently available.",
"notes": "A general request for data from tape or disk cache without sub-setting or packaging; may become a subscription (standing order) repeating; or bulk order if exceed threshold - requires an order processor",
"examples": "",
"sources": "- CEOS CalVal Portal"
}
]
},
{
"term": "Data Transformation",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Process of converting data or information from one format to another, typically from a source system to a required destination format, including language or structural transformations for platform compatibility.",
"notes": "",
"examples": "",
"sources": "- CEOS CalVal Portal"
}
]
},
{
"term": "Data fusion",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Framework for combining data from multiple sources to produce higher-quality information, with quality defined by application context.",
"notes": "",
"examples": "",
"sources": "- Wald L., A European proposal for terms of reference in data fusion. International Archives of Photogrammetry and Remote Sensing, Vol. XXXII, Part 7, 651-654, 1998\n- [Wald L., Some terms of reference in data fusion. IEEE Transactions on Geosciences and Remote Sensing, 37, 3, 1190-1193, 1999.](https://ieeexplore.ieee.org/document/763269)"
}
]
},
{
"term": "Analytics",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Systematic computational analysis of data or statistics to discover, interpret, and communicate meaningful patterns for decision-making.",
"notes": "",
"examples": "",
"sources": "- [Oxford Definition of Analytics](https://www.lexico.com/en/definition/analytics) ; [Oracle: What is Analytics](https://www.oracle.com/business-analytics/what-is-analytics/) ;\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Frame",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Fixed-size product generated from a longer data segment, with fixed frames having predefined geographical footprints and floating frames starting at user-chosen positions.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_forReview.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DFrame&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)"
}
]
},
{
"term": "Environmental Process",
"tags": "- core\n- to be defined",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "",
"notes": "",
"examples": "",
"sources": ""
}
]
},
{
"term": "Mission Phase",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Mission Specific period characterized by a set of parameters (e.g. Repeat Cycle, instrument configuration, etc...)",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_forReview.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DMission%2BPhase&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)"
}
]
},
{
"term": "Earth Spheres",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Spheres dividing planet Earth into subsystems, which are collectives of (physical) matter sharing specific traits.",
"notes": "",
"examples": "- Atmosphere\n- Hydrosphere\n- Cryosphere\n- Biosphere\n- Lithosphere\n- Anthroposphere",
"sources": "- Hugget, R., et al., 2024, DOI: 10.1177/03091333241275465\n- Guth, P., et al., 2021, https://doi.org/10.3390/rs13183581\n- Martin, Y.E., et al., 2012"
}
]
},
{
"term": "Precision",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Closeness of agreement between indications or measured values obtained by replicate measurements on the same or similar objects under specified conditions.",
"notes": "",
"examples": "",
"sources": "- (1) ISO:19116 [ [RD8](https://www.iso.org/standard/37805.html) ]\n- (2) VIM/ISO:99 [ [RD18](https://www.bipm.org/en/publications/guides/vim.html) ]\n- (3) from [ACIX](https://www.mdpi.com/2072-4292/10/2/352)"
}
]
},
{
"term": "Telemetry",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Automated transmission of payload data (science, engineering) from a platform to receiving equipment via telemetry link, excluding commands, tracking, memory transfers, audio, or video.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS-WGISS Document: Auxiliary Data in the CEOS Community: Reference Guidelines Document Part 1: Current Usage (1996) accessible at wgiss.ceos.org/archive/archive.doc/ads200part1.doc](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DTelemetry&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=CEOS-WGISS+Document%3A+Auxiliary+Data+in+the+CEOS+Community%3A+Reference+Guidelines+Document+Part+1%3A+Current+Usage+%281996%29+accessible+at+wgiss.ceos.org%2Farchive%2Farchive.doc%2Fads200part1.doc)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Packaging Information",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "A description of the package, which allows the user to understand the structure of the information package. In the data set it is part of the documentation .",
"notes": "Packaging Information: the information that is used to bind and identify the components of an Information Package.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Geopositioning",
"tags": "- core\n- to be discussed",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Determination of the geographic Position of a point (0D) or linear (1D) Feature.",
"notes": "- Modified from: ISO 19130-1:2018, 3.36",
"examples": "",
"sources": ""
}
]
},
{
"term": "Earth Observation Product",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Direct output from standardized satellite data processing chains (indicative levels 2 and 3), representing fundamental geophysical and biophysical variables. These products demonstrate direct Traceability to original satellite measurements through rigorous Calibration and Validation processes. The processing methodology prioritizes the conversion of raw sensor data into quantifiable physical measurements, maintaining strict adherence to standardized processing protocols and Validation requirements.",
"notes": "",
"examples": "- Soil moisture from microwave sensors\n- Forest canopy height from LiDAR data",
"sources": "- KCEO"
}
]
},
{
"term": "Coverage Interval",
"tags": "- core\n- to be approved",
"synonyms": "Coverage extent",
"definitions": [
{
"definition_no": 1,
"definition": "Range or specific subset of values associated with a coverage dataset.",
"notes": "",
"examples": "",
"sources": "- KCEO"
}
]
},
{
"term": "Data Format",
"tags": "- core\n- to be approved",
"synonyms": "Data Formats",
"definitions": [
{
"definition_no": 1,
"definition": "Structured Data that is machine readable and can be automatically read and processed by a computer, such as HDF, NetCDF, CSV, JSON, XML, etc.",
"notes": "",
"examples": "",
"sources": "- CEOS Wiki\n\n- [Opendatahandbook.org](https://opendatahandbook.org/)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Information Package",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Logical container containing optional content information and associated preservation description information, with packaging and package description information for identification and search.",
"notes": "The Information Package contains the Content Information and associated Preservation Description Information which is needed to aid in the preservation of the Content Information. It has associated Packaging Information used to delimit and identify the Content Information and Preservation Description Information. It may have been packaged for a specific purpose such as the Submission Information Package, the Archival Information Package and the Dissemination Information Package.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [Reference Model for an Open Archival Information System (OAIS), Recommended Practice CCSDS 650.0-M-2, Magenta Book 2012](https://public.ccsds.org/pubs/650x0m2.pdf) ; [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Deprecated Product",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Products and collections that have been superseded by a newer version and are still available, but whose use is discouraged since they will be decommissioned in the future.",
"notes": "",
"examples": "",
"sources": "- [WGISS Shared Collection Lifecycle Management Principles for Earth Observation Data](https://ceos.org/document_management/Working_Groups/WGISS/Documents/Shared%20Collection%20Lifecycle%20Management%20Principles%20for%20Earth%20Observation%20Data_March2025.pdf)"
}
]
},
{
"term": "Downlink",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Data stream from the satellite to a receiving station during visibility of the satellite from the station. The data stream transmits the payload data and optionally telemetry and housekeeping data.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_forReview.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DDownlink&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Update Frequency",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Frequency at which the product is available to users.",
"notes": "- Also known in product catalogues as dissemination frequency.",
"examples": "",
"sources": "- KCEO"
}
]
},
{
"term": "Bias correction",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGISS",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Reconciling differences between sensors and/or products by a simple multiplication or addition of a correction factor. (unlike harmonisation / homogenisation which involve a recalibration of the sensor)",
"notes": "",
"examples": "",
"sources": "- CEOS CalVal Portal"
}
]
},
{
"term": "Migration",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Transfer of digital information to new hardware or software environments to preserve it and overcome technological obsolescence, excluding format conversion as reprocessing.",
"notes": "The transfer of digital information, while intending to preserve it, within the OAIS. It is distinguished from transfers in general by three attributes: • a focus on the preservation of the full information content; • a perspective that the new archival implementation of the information is a replacement for the old; and an understanding that full control and responsibility over all aspects of the transfer resides with the OAIS.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Data Record",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Data or information in a fixed form with consistent content, structure, and context; for Earth observation, it includes instrument data, browse data, ancillary and auxiliary data, calibration and validation data, and metadata.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Uncertainty of Measurement Method",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGISS",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Uncertainty associated with the method of measurement, as there can be other methods, some of them as yet unknown or in some way impractical, that would give systematically different results of apparently equal validity.",
"notes": "",
"examples": "",
"sources": "- GUM [ [RD4](https://www.bipm.org/utils/common/documents/jcgm/JCGM_100_2008_E.pdf) ], section F.2.5"
}
]
},
{
"term": "Laboratory Observation",
"tags": "- core\n- to be discussed",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Usually in-situ observations in which the Object or Phenomenon is isolated from other systems or altered in its original conditions or environment.",
"notes": "- It is important to consider that Laboratory Observations are typically conducted in controlled conditions, allowing for isolation or alteration of the Object or Phenomenon from its natural environment or other systems.",
"examples": "",
"sources": "- KCEO"
}
]
},
{
"term": "Collection Group",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Set of collections sharing a specific characteristic, e. g. same terms of conditions for access authorization",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_forReview.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DCollection%2BGroup&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)"
}
]
},
{
"term": "Consolidation",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Consolidation is the process to provide a set of products for long-term archiving and further processing. Consolidation is one of the tasks of data preservation and leads the generation of the Master Data Records.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Geodesy",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "The branch of applied mathematics that deals with the measurement of the shape and area of large tracts of country, the exact position of geographical points, and the curvature, shape, and dimensions of the earth.",
"notes": "",
"examples": "",
"sources": "- dictionary.com\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Ancillary Data",
"tags": "- core\n- to be approved\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Data acquired on the same platform as the main sensor but not from the sensor itself, used primarily for processing instrument data.",
"notes": "This can be divided into data referred to as spacecraft 'engineering', 'core housekeeping' or 'subsystem' data obtained from other parts of the platform, and includes parameters such as orbit position and velocity, attitude and its range of change, time, temperatures, pressures, jet firings, water dumps, internally produced magnetic fields, and other environmental measurements. Ancillary refers to data that exist purely to serve the data processing.",
"examples": "",
"sources": "- ESA/CEOS?, modified\n- EO Data Stewardship Glossary"
},
{
"definition_no": 2,
"definition": "Non-instrument data required for processing, including orbit, attitude, time, spacecraft engineering, calibration, quality, and external model data.",
"notes": "",
"examples": "",
"sources": "- CEOS-ARD PFS template 20220302"
},
{
"definition_no": 3,
"definition": "Data not from the sensor, provided in science telemetry, used to process instrument data and including spacecraft engineering, housekeeping, or subsystem parameters.",
"notes": "OASIS equivalent definition is ancillary data can be considered as a Digital Data Object (object composed of a set of bit sequences) part of a Content Information, related to other digital objects (i.e. Primary Data) through Context Information (the information that documents the relationships of the Content Information to its environment; this includes why the Content Information was created and how it relates to other Content Information objects) or as a compound digital object which contains a mixture of Provenance, Context and Representation Information related to a Primary Digital Data Object",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS-WGISS Document: Auxiliary Data in the CEOS Community: Reference Guidelines Document Part 1: Current Usage (1996) accessible at wgiss.ceos.org/archive/archive.doc/ads200part1.doc](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DAncillary%2BData&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=CEOS-WGISS+Document%3A+Auxiliary+Data+in+the+CEOS+Community%3A+Reference+Guidelines+Document+Part+1%3A+Current+Usage+%281996%29+accessible+at+wgiss.ceos.org%2Farchive%2Farchive.doc%2Fads200part1.doc)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Climate Projection",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Simulated response of the climate system to a scenario of future emission or concentration of greenhouse gases (GHGs) and aerosols, generally derived using climate models. Climate Projections are distinguished from climate predictions by their dependence on the emission/concentration/radiative forcing scenario used, which is in turn based on assumptions concerning, for example, future socioeconomic and technological developments that may or may not be realised.",
"notes": "",
"examples": "",
"sources": "- IPCC"
}
]
},
{
"term": "Analysis Ready Data",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGCV\n- WGClimate",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Processed data product geometrically referenced and minimally corrected to enable direct use without additional user processing.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Decommissioned Product",
"tags": "- core\n- to be approved",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Products and collections that have been superseded by new versions and are no longer available.",
"notes": "- Decommissioned products are no longer supported, i.e. corrections will not be made, new data will not be added, and support is not available.",
"examples": "",
"sources": "- [WGISS Shared Collection Lifecycle Management Principles for Earth Observation Data](https://ceos.org/document_management/Working_Groups/WGISS/Documents/Shared%20Collection%20Lifecycle%20Management%20Principles%20for%20Earth%20Observation%20Data_March2025.pdf)"
}
]
},
{
"term": "Proximity Computing",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Computing data physically close to its source to minimize remote processing and data transfer.",
"notes": "",
"examples": "",
"sources": "- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Archival Information Package",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "AIP",
"definitions": [
{
"definition_no": 1,
"definition": "Information package containing content and preservation description information preserved within an OAIS.",
"notes": "An Information Package, consisting of the Content Information and the associated Preservation Description Information (PDI), which is preserved within an OAIS.",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [Reference Model for an Open Archival Information System (OAIS), Recommended Practice CCSDS 650.0-M-2, Magenta Book 2012](https://public.ccsds.org/pubs/650x0m2.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}
]
},
{
"term": "Dissemination Request",
"tags": "- core\n- to be discussed\n- calval ingest\n- WGISS\n- WGCV",
"synonyms": "",
"definitions": [
{
"definition_no": 1,
"definition": "Request for dissemination of specific products, parameterized by delivery method, medium, address, and product selection criteria, often part of a bulk dissemination request.",
"notes": "",
"examples": "",
"sources": "- [CEOS/WGISS/DSIG/GLOS](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- [ESA PDGS Glossary, PGSI-GSEG-EOPG-LI-13-0033 (MM-PDGS Glossary Issue 2.0_forReview.docx)](https://calvalportal.ceos.org/web/guest/t-d_wiki?p_p_id=com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName=%2Fwiki%2Fedit_page&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_redirect=https%3A%2F%2Fcalvalportal.ceos.org%2Fweb%2Fguest%2Ft-d_wiki%3Fp_p_id%3Dcom_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_mvcRenderCommandName%3D%252Fwiki%252Fview_page%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeName%3DCEOS_Terms_and_Definitions%26_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title%3DDissemination%2BRequest&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_nodeId=668236&_com_liferay_wiki_web_portlet_WikiDisplayPortlet_INSTANCE_B9cyrDcwYNcn_title=ESA+PDGS+Glossary%2C+PGSI-GSEG-EOPG-LI-13-0033+%28MM-PDGS+Glossary+Issue+2.0_forReview.docx%29)\n- [CEOS EO Data Stewardship Glossary](https://ceos.org/document_management/Working_Groups/WGISS/Interest_Groups/Data_Stewardship/White_Papers/EO-DataStewardshipGlossary.pdf)\n- NESDIS Data Management Lexicon and Related Terms"
}