forked from radiantearth/stac-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfields.config.js
100 lines (98 loc) · 2.48 KB
/
fields.config.js
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
import { Registry } from '@radiantearth/stac-fields';
// Please consult https://github.com/radiantearth/stac-browser/blob/main/README.md#additional-metadata-fields for details.
Registry.addExtension('eopf', 'ESA EO Processing Framework');
Registry.addMetadataField('eopf:datastrip_id', {
label: 'Datastrip ID'
});
Registry.addMetadataField('eopf:datatake_id', {
label: 'Datatake ID'
});
Registry.addMetadataField('eopf:instrument_configuration_id', {
label: 'Instrument Configuration ID'
});
Registry.addMetadataField('eopf:origin_datetime', {
label: 'Origin Time',
format: 'Timestamp'
});
Registry.addMetadataField('statistics', {
label: 'Statistics',
properties: {
mean: 'Average',
maximum: {
label: 'Max.',
explain: 'Maxmimum value'
},
minimum: {
label: 'Min.',
explain: 'Minimum value'
},
stdev: {
label: 'Std. Dev.',
explain: 'Standard Deviation'
},
count: {
label: 'Count',
explain: 'Total number of values'
},
valid_percent: {
label: 'Valid',
explain: 'Percentage of valid values',
unit: '%'
},
water: {
label: 'Water',
explain: 'Coverage of water bodies',
unit: '%'
},
nodata: {
label: 'No Data',
explain: 'Percentage of the image with no data',
unit: '%'
},
saturated_defective: {
label: 'Saturated/Defective',
explain: 'Percentage of the image that is either saturated or defective',
unit: '%'
},
unclassified: {
label: 'Unclassified',
explain: 'Percentage of the image that is not classified',
unit: '%'
},
dark_area: {
label: 'Dark Area',
explain: 'Percentage of the image with dark areas',
unit: '%'
},
vegetation: {
label: 'Vegetation',
explain: 'Coverage of vegetated areas',
unit: '%'
},
not_vegetated: {
label: 'Not Vegetated',
explain: 'Coverage of non-vegetated areas',
unit: '%'
},
thin_cirrus: {
label: 'Thin Cirrus',
explain: 'Coverage of thin cirrus clouds',
unit: '%'
},
cloud_shadow: {
label: 'Cloud Shadow',
explain: 'Coverage of cloud shadows',
unit: '%'
},
high_proba_clouds: {
label: 'Clouds (high prob.)',
explain: 'Coverage of clouds with high probability',
unit: '%'
},
medium_proba_clouds: {
label: 'Cloud (med. prob.)',
explain: 'Coverage of clouds with medium probability',
unit: '%'
}
}
});